Profile.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\HttpKernel\Profiler;
  11. use Symfony\Component\HttpKernel\DataCollector\DataCollectorInterface;
  12. /**
  13. * Profile.
  14. *
  15. * @author Fabien Potencier <fabien@symfony.com>
  16. */
  17. class Profile
  18. {
  19. private $token;
  20. /**
  21. * @var DataCollectorInterface[]
  22. */
  23. private $collectors = [];
  24. private $ip;
  25. private $method;
  26. private $url;
  27. private $time;
  28. private $statusCode;
  29. /**
  30. * @var Profile
  31. */
  32. private $parent;
  33. /**
  34. * @var Profile[]
  35. */
  36. private $children = [];
  37. public function __construct(string $token)
  38. {
  39. $this->token = $token;
  40. }
  41. public function setToken(string $token)
  42. {
  43. $this->token = $token;
  44. }
  45. /**
  46. * Gets the token.
  47. *
  48. * @return string
  49. */
  50. public function getToken()
  51. {
  52. return $this->token;
  53. }
  54. /**
  55. * Sets the parent token.
  56. */
  57. public function setParent(self $parent)
  58. {
  59. $this->parent = $parent;
  60. }
  61. /**
  62. * Returns the parent profile.
  63. *
  64. * @return self|null
  65. */
  66. public function getParent()
  67. {
  68. return $this->parent;
  69. }
  70. /**
  71. * Returns the parent token.
  72. *
  73. * @return string|null
  74. */
  75. public function getParentToken()
  76. {
  77. return $this->parent ? $this->parent->getToken() : null;
  78. }
  79. /**
  80. * Returns the IP.
  81. *
  82. * @return string|null
  83. */
  84. public function getIp()
  85. {
  86. return $this->ip;
  87. }
  88. public function setIp(?string $ip)
  89. {
  90. $this->ip = $ip;
  91. }
  92. /**
  93. * Returns the request method.
  94. *
  95. * @return string|null
  96. */
  97. public function getMethod()
  98. {
  99. return $this->method;
  100. }
  101. public function setMethod(string $method)
  102. {
  103. $this->method = $method;
  104. }
  105. /**
  106. * Returns the URL.
  107. *
  108. * @return string|null
  109. */
  110. public function getUrl()
  111. {
  112. return $this->url;
  113. }
  114. public function setUrl(?string $url)
  115. {
  116. $this->url = $url;
  117. }
  118. /**
  119. * @return int
  120. */
  121. public function getTime()
  122. {
  123. return $this->time ?? 0;
  124. }
  125. public function setTime(int $time)
  126. {
  127. $this->time = $time;
  128. }
  129. public function setStatusCode(int $statusCode)
  130. {
  131. $this->statusCode = $statusCode;
  132. }
  133. /**
  134. * @return int|null
  135. */
  136. public function getStatusCode()
  137. {
  138. return $this->statusCode;
  139. }
  140. /**
  141. * Finds children profilers.
  142. *
  143. * @return self[]
  144. */
  145. public function getChildren()
  146. {
  147. return $this->children;
  148. }
  149. /**
  150. * Sets children profiler.
  151. *
  152. * @param Profile[] $children
  153. */
  154. public function setChildren(array $children)
  155. {
  156. $this->children = [];
  157. foreach ($children as $child) {
  158. $this->addChild($child);
  159. }
  160. }
  161. /**
  162. * Adds the child token.
  163. */
  164. public function addChild(self $child)
  165. {
  166. $this->children[] = $child;
  167. $child->setParent($this);
  168. }
  169. public function getChildByToken(string $token): ?self
  170. {
  171. foreach ($this->children as $child) {
  172. if ($token === $child->getToken()) {
  173. return $child;
  174. }
  175. }
  176. return null;
  177. }
  178. /**
  179. * Gets a Collector by name.
  180. *
  181. * @return DataCollectorInterface
  182. *
  183. * @throws \InvalidArgumentException if the collector does not exist
  184. */
  185. public function getCollector(string $name)
  186. {
  187. if (!isset($this->collectors[$name])) {
  188. throw new \InvalidArgumentException(sprintf('Collector "%s" does not exist.', $name));
  189. }
  190. return $this->collectors[$name];
  191. }
  192. /**
  193. * Gets the Collectors associated with this profile.
  194. *
  195. * @return DataCollectorInterface[]
  196. */
  197. public function getCollectors()
  198. {
  199. return $this->collectors;
  200. }
  201. /**
  202. * Sets the Collectors associated with this profile.
  203. *
  204. * @param DataCollectorInterface[] $collectors
  205. */
  206. public function setCollectors(array $collectors)
  207. {
  208. $this->collectors = [];
  209. foreach ($collectors as $collector) {
  210. $this->addCollector($collector);
  211. }
  212. }
  213. /**
  214. * Adds a Collector.
  215. */
  216. public function addCollector(DataCollectorInterface $collector)
  217. {
  218. $this->collectors[$collector->getName()] = $collector;
  219. }
  220. /**
  221. * @return bool
  222. */
  223. public function hasCollector(string $name)
  224. {
  225. return isset($this->collectors[$name]);
  226. }
  227. /**
  228. * @return array
  229. */
  230. public function __sleep()
  231. {
  232. return ['token', 'parent', 'children', 'collectors', 'ip', 'method', 'url', 'time', 'statusCode'];
  233. }
  234. }