PageRenderTime 66ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/sbweb/sbweb_logica/lib/symfony/util/sfDomCssSelector.class.php

http://opac-sbweb.googlecode.com/
PHP | 573 lines | 476 code | 59 blank | 38 comment | 80 complexity | 32ccf9322af368a86c3a61e6a921e162 MD5 | raw file
Possible License(s): LGPL-2.1, AGPL-3.0
  1. <?php
  2. /*
  3. * This file is part of the symfony package.
  4. * (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
  5. *
  6. * For the full copyright and license information, please view the LICENSE
  7. * file that was distributed with this source code.
  8. */
  9. /**
  10. * sfDomCssSelector allows to navigate a DOM with CSS selector.
  11. *
  12. * Based on getElementsBySelector version 0.4 - Simon Willison, March 25th 2003
  13. * http://simon.incutio.com/archive/2003/03/25/getElementsBySelector
  14. *
  15. * Some methods based on the jquery library
  16. *
  17. * @package symfony
  18. * @subpackage util
  19. * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  20. * @version SVN: $Id: sfDomCssSelector.class.php 14516 2009-01-06 20:07:40Z FabianLange $
  21. */
  22. class sfDomCssSelector
  23. {
  24. public $nodes = array();
  25. public function __construct($nodes)
  26. {
  27. if (!is_array($nodes))
  28. {
  29. $nodes = array($nodes);
  30. }
  31. $this->nodes = $nodes;
  32. }
  33. public function getNodes()
  34. {
  35. return $this->nodes;
  36. }
  37. public function getNode()
  38. {
  39. return $this->nodes ? $this->nodes[0] : null;
  40. }
  41. public function getValue()
  42. {
  43. return $this->nodes[0]->nodeValue;
  44. }
  45. public function getValues()
  46. {
  47. $values = array();
  48. foreach ($this->nodes as $node)
  49. {
  50. $values[] = $node->nodeValue;
  51. }
  52. return $values;
  53. }
  54. public function matchSingle($selector)
  55. {
  56. $nodes = $this->getElements($selector);
  57. return $nodes ? new sfDomCssSelector($nodes[0]) : new sfDomCssSelector(array());
  58. }
  59. public function matchAll($selector)
  60. {
  61. $nodes = $this->getElements($selector);
  62. return $nodes ? new sfDomCssSelector($nodes) : new sfDomCssSelector(array());
  63. }
  64. /* DEPRECATED */
  65. public function getTexts($selector)
  66. {
  67. $texts = array();
  68. foreach ($this->getElements($selector) as $element)
  69. {
  70. $texts[] = $element->nodeValue;
  71. }
  72. return $texts;
  73. }
  74. /* DEPRECATED */
  75. public function getElements($selector)
  76. {
  77. $nodes = array();
  78. foreach ($this->nodes as $node)
  79. {
  80. $result_nodes = $this->getElementsForNode($selector, $node);
  81. if ($result_nodes)
  82. {
  83. $nodes = array_merge($nodes, $result_nodes);
  84. }
  85. }
  86. foreach ($nodes as $node)
  87. {
  88. $node->removeAttribute('sf_matched');
  89. }
  90. return $nodes;
  91. }
  92. protected function getElementsForNode($selector, $root_node)
  93. {
  94. $all_nodes = array();
  95. foreach ($this->tokenize_selectors($selector) as $selector)
  96. {
  97. $nodes = array($root_node);
  98. foreach ($this->tokenize($selector) as $token)
  99. {
  100. $combinator = $token['combinator'];
  101. $selector = $token['selector'];
  102. $token = trim($token['name']);
  103. $pos = strpos($token, '#');
  104. if (false !== $pos && preg_match('/^[A-Za-z0-9]*$/', substr($token, 0, $pos)))
  105. {
  106. // Token is an ID selector
  107. $tagName = substr($token, 0, $pos);
  108. $id = substr($token, $pos + 1);
  109. $xpath = new DomXPath($root_node);
  110. $element = $xpath->query(sprintf("//*[@id = '%s']", $id))->item(0);
  111. if (!$element || ($tagName && strtolower($element->nodeName) != $tagName))
  112. {
  113. // tag with that ID not found
  114. return array();
  115. }
  116. // Set nodes to contain just this element
  117. $nodes = array($element);
  118. $nodes = $this->matchMultipleCustomSelectors($nodes, $selector);
  119. continue; // Skip to next token
  120. }
  121. $pos = strpos($token, '.');
  122. if (false !== $pos && preg_match('/^[A-Za-z0-9\*]*$/', substr($token, 0, $pos)))
  123. {
  124. // Token contains a class selector
  125. $tagName = substr($token, 0, $pos);
  126. if (!$tagName)
  127. {
  128. $tagName = '*';
  129. }
  130. $className = substr($token, $pos + 1);
  131. // Get elements matching tag, filter them for class selector
  132. $founds = $this->getElementsByTagName($nodes, $tagName, $combinator);
  133. $nodes = array();
  134. foreach ($founds as $found)
  135. {
  136. if (preg_match('/\b'.$className.'\b/', $found->getAttribute('class')))
  137. {
  138. $nodes[] = $found;
  139. }
  140. }
  141. $nodes = $this->matchMultipleCustomSelectors($nodes, $selector);
  142. continue; // Skip to next token
  143. }
  144. // Code to deal with attribute selectors
  145. if (preg_match('/^(\w+|\*)(\[.+\])$/', $token, $matches))
  146. {
  147. $tagName = $matches[1] ? $matches[1] : '*';
  148. preg_match_all('/
  149. \[
  150. ([\w\-]+) # attribute
  151. ([=~\|\^\$\*]?) # modifier (optional)
  152. =? # equal (optional)
  153. (
  154. "([^"]*)" # quoted value (optional)
  155. |
  156. ([^\]]*) # non quoted value (optional)
  157. )
  158. \]
  159. /x', $matches[2], $matches, PREG_SET_ORDER);
  160. // Grab all of the tagName elements within current node
  161. $founds = $this->getElementsByTagName($nodes, $tagName, $combinator);
  162. $nodes = array();
  163. foreach ($founds as $found)
  164. {
  165. $ok = false;
  166. foreach ($matches as $match)
  167. {
  168. $attrName = $match[1];
  169. $attrOperator = $match[2];
  170. $attrValue = $match[4];
  171. switch ($attrOperator)
  172. {
  173. case '=': // Equality
  174. $ok = $found->getAttribute($attrName) == $attrValue;
  175. break;
  176. case '~': // Match one of space seperated words
  177. $ok = preg_match('/\b'.preg_quote($attrValue, '/').'\b/', $found->getAttribute($attrName));
  178. break;
  179. case '|': // Match start with value followed by optional hyphen
  180. $ok = preg_match('/^'.preg_quote($attrValue, '/').'-?/', $found->getAttribute($attrName));
  181. break;
  182. case '^': // Match starts with value
  183. $ok = 0 === strpos($found->getAttribute($attrName), $attrValue);
  184. break;
  185. case '$': // Match ends with value
  186. $ok = $attrValue == substr($found->getAttribute($attrName), -strlen($attrValue));
  187. break;
  188. case '*': // Match ends with value
  189. $ok = false !== strpos($found->getAttribute($attrName), $attrValue);
  190. break;
  191. default :
  192. // Just test for existence of attribute
  193. $ok = $found->hasAttribute($attrName);
  194. }
  195. if (false == $ok)
  196. {
  197. break;
  198. }
  199. }
  200. if ($ok)
  201. {
  202. $nodes[] = $found;
  203. }
  204. }
  205. continue; // Skip to next token
  206. }
  207. // If we get here, token is JUST an element (not a class or ID selector)
  208. $nodes = $this->getElementsByTagName($nodes, $token, $combinator);
  209. $nodes = $this->matchMultipleCustomSelectors($nodes, $selector);
  210. }
  211. foreach ($nodes as $node)
  212. {
  213. if (!$node->getAttribute('sf_matched'))
  214. {
  215. $node->setAttribute('sf_matched', true);
  216. $all_nodes[] = $node;
  217. }
  218. }
  219. }
  220. return $all_nodes;
  221. }
  222. protected function getElementsByTagName($nodes, $tagName, $combinator = ' ')
  223. {
  224. $founds = array();
  225. foreach ($nodes as $node)
  226. {
  227. switch ($combinator)
  228. {
  229. case ' ':
  230. // Descendant selector
  231. foreach ($node->getElementsByTagName($tagName) as $element)
  232. {
  233. $founds[] = $element;
  234. }
  235. break;
  236. case '>':
  237. // Child selector
  238. foreach ($node->childNodes as $element)
  239. {
  240. if ($tagName == $element->nodeName)
  241. {
  242. $founds[] = $element;
  243. }
  244. }
  245. break;
  246. case '+':
  247. // Adjacent selector
  248. $element = $node->nextSibling;
  249. if ($element && '#text' == $element->nodeName)
  250. {
  251. $element = $element->nextSibling;
  252. }
  253. if ($element && $tagName == $element->nodeName)
  254. {
  255. $founds[] = $element;
  256. }
  257. break;
  258. default:
  259. throw new Exception(sprintf('Unrecognized combinator "%s".', $combinator));
  260. }
  261. }
  262. return $founds;
  263. }
  264. protected function tokenize_selectors($selector)
  265. {
  266. // split tokens by , except in an attribute selector
  267. $tokens = array();
  268. $quoted = false;
  269. $token = '';
  270. for ($i = 0, $max = strlen($selector); $i < $max; $i++)
  271. {
  272. if (',' == $selector[$i] && !$quoted)
  273. {
  274. $tokens[] = trim($token);
  275. $token = '';
  276. }
  277. else if ('"' == $selector[$i])
  278. {
  279. $token .= $selector[$i];
  280. $quoted = $quoted ? false : true;
  281. }
  282. else
  283. {
  284. $token .= $selector[$i];
  285. }
  286. }
  287. if ($token)
  288. {
  289. $tokens[] = trim($token);
  290. }
  291. return $tokens;
  292. }
  293. protected function tokenize($selector)
  294. {
  295. // split tokens by space except if space is in an attribute selector
  296. $tokens = array();
  297. $combinators = array(' ', '>', '+');
  298. $quoted = false;
  299. $token = array('combinator' => ' ', 'name' => '');
  300. for ($i = 0, $max = strlen($selector); $i < $max; $i++)
  301. {
  302. if (in_array($selector[$i], $combinators) && !$quoted)
  303. {
  304. // remove all whitespaces around the combinator
  305. $combinator = $selector[$i];
  306. while (in_array($selector[$i + 1], $combinators))
  307. {
  308. if (' ' != $selector[++$i])
  309. {
  310. $combinator = $selector[$i];
  311. }
  312. }
  313. $tokens[] = $token;
  314. $token = array('combinator' => $combinator, 'name' => '');
  315. }
  316. else if ('"' == $selector[$i])
  317. {
  318. $token['name'] .= $selector[$i];
  319. $quoted = $quoted ? false : true;
  320. }
  321. else
  322. {
  323. $token['name'] .= $selector[$i];
  324. }
  325. }
  326. if ($token['name'])
  327. {
  328. $tokens[] = $token;
  329. }
  330. foreach ($tokens as &$token)
  331. {
  332. list($token['name'], $token['selector']) = $this->tokenize_selector_name($token['name']);
  333. }
  334. return $tokens;
  335. }
  336. protected function tokenize_selector_name($token_name)
  337. {
  338. // split custom selector
  339. $quoted = false;
  340. $name = '';
  341. $selector = '';
  342. $in_selector = false;
  343. for ($i = 0, $max = strlen($token_name); $i < $max; $i++)
  344. {
  345. if ('"' == $token_name[$i])
  346. {
  347. $quoted = $quoted ? false : true;
  348. }
  349. if (!$quoted && ':' == $token_name[$i])
  350. {
  351. $in_selector = true;
  352. }
  353. if ($in_selector)
  354. {
  355. $selector .= $token_name[$i];
  356. }
  357. else
  358. {
  359. $name .= $token_name[$i];
  360. }
  361. }
  362. return array($name, $selector);
  363. }
  364. protected function matchMultipleCustomSelectors($nodes, $selector)
  365. {
  366. if (!$selector)
  367. {
  368. return $nodes;
  369. }
  370. foreach ($this->split_custom_selector($selector) as $selector) {
  371. $nodes = $this->matchCustomSelector($nodes, $selector);
  372. }
  373. return $nodes;
  374. }
  375. protected function matchCustomSelector($nodes, $selector)
  376. {
  377. if (!$selector)
  378. {
  379. return $nodes;
  380. }
  381. $selector = $this->tokenize_custom_selector($selector);
  382. $matchingNodes = array();
  383. for ($i = 0, $max = count($nodes); $i < $max; $i++)
  384. {
  385. switch ($selector['selector'])
  386. {
  387. case 'contains':
  388. if (false !== strpos($nodes[$i]->textContent, $selector['parameter']))
  389. {
  390. $matchingNodes[] = $nodes[$i];
  391. }
  392. break;
  393. case 'nth-child':
  394. if ($nodes[$i] === $this->nth($nodes[$i]->parentNode->firstChild, (integer) $selector['parameter']))
  395. {
  396. $matchingNodes[] = $nodes[$i];
  397. }
  398. break;
  399. case 'first-child':
  400. if ($nodes[$i] === $this->nth($nodes[$i]->parentNode->firstChild))
  401. {
  402. $matchingNodes[] = $nodes[$i];
  403. }
  404. break;
  405. case 'last-child':
  406. if ($nodes[$i] === $this->nth($nodes[$i]->parentNode->lastChild, 1, 'previousSibling'))
  407. {
  408. $matchingNodes[] = $nodes[$i];
  409. }
  410. break;
  411. case 'lt':
  412. if ($i < (integer) $selector['parameter'])
  413. {
  414. $matchingNodes[] = $nodes[$i];
  415. }
  416. break;
  417. case 'gt':
  418. if ($i > (integer) $selector['parameter'])
  419. {
  420. $matchingNodes[] = $nodes[$i];
  421. }
  422. break;
  423. case 'odd':
  424. if ($i % 2)
  425. {
  426. $matchingNodes[] = $nodes[$i];
  427. }
  428. break;
  429. case 'even':
  430. if (0 == $i % 2)
  431. {
  432. $matchingNodes[] = $nodes[$i];
  433. }
  434. break;
  435. case 'nth':
  436. case 'eq':
  437. if ($i == (integer) $selector['parameter'])
  438. {
  439. $matchingNodes[] = $nodes[$i];
  440. }
  441. break;
  442. case 'first':
  443. if ($i == 0)
  444. {
  445. $matchingNodes[] = $nodes[$i];
  446. }
  447. break;
  448. case 'last':
  449. if ($i == $max - 1)
  450. {
  451. $matchingNodes[] = $nodes[$i];
  452. }
  453. break;
  454. default:
  455. throw new Exception(sprintf('Unrecognized selector "%s".', $selector['selector']));
  456. }
  457. }
  458. return $matchingNodes;
  459. }
  460. protected function split_custom_selector($selectors)
  461. {
  462. if (!preg_match_all('/
  463. :
  464. (?:[a-zA-Z0-9\-]+)
  465. (?:
  466. \(
  467. (?:
  468. ("|\')(?:.*?)?\1
  469. |
  470. (?:.*?)
  471. )
  472. \)
  473. )?
  474. /x', $selectors, $matches, PREG_PATTERN_ORDER))
  475. {
  476. throw new Exception(sprintf('Unable to split custom selector "%s".', $selectors));
  477. }
  478. return $matches[0];
  479. }
  480. protected function tokenize_custom_selector($selector)
  481. {
  482. if (!preg_match('/
  483. ([a-zA-Z0-9\-]+)
  484. (?:
  485. \(
  486. (?:
  487. ("|\')(.*)?\2
  488. |
  489. (.*?)
  490. )
  491. \)
  492. )?
  493. /x', substr($selector, 1), $matches))
  494. {
  495. throw new Exception(sprintf('Unable to parse custom selector "%s".', $selector));
  496. }
  497. return array('selector' => $matches[1], 'parameter' => isset($matches[3]) ? ($matches[3] ? $matches[3] : $matches[4]) : '');
  498. }
  499. protected function nth($cur, $result = 1, $dir = 'nextSibling')
  500. {
  501. $num = 0;
  502. for (; $cur; $cur = $cur->$dir)
  503. {
  504. if (1 == $cur->nodeType)
  505. {
  506. ++$num;
  507. }
  508. if ($num == $result)
  509. {
  510. return $cur;
  511. }
  512. }
  513. }
  514. }