FnDispatcher.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407
  1. <?php
  2. namespace JmesPath;
  3. /**
  4. * Dispatches to named JMESPath functions using a single function that has the
  5. * following signature:
  6. *
  7. * mixed $result = fn(string $function_name, array $args)
  8. */
  9. class FnDispatcher
  10. {
  11. /**
  12. * Gets a cached instance of the default function implementations.
  13. *
  14. * @return FnDispatcher
  15. */
  16. public static function getInstance()
  17. {
  18. static $instance = null;
  19. if (!$instance) {
  20. $instance = new self();
  21. }
  22. return $instance;
  23. }
  24. /**
  25. * @param string $fn Function name.
  26. * @param array $args Function arguments.
  27. *
  28. * @return mixed
  29. */
  30. public function __invoke($fn, array $args)
  31. {
  32. return $this->{'fn_' . $fn}($args);
  33. }
  34. private function fn_abs(array $args)
  35. {
  36. $this->validate('abs', $args, [['number']]);
  37. return abs($args[0]);
  38. }
  39. private function fn_avg(array $args)
  40. {
  41. $this->validate('avg', $args, [['array']]);
  42. $sum = $this->reduce('avg:0', $args[0], ['number'], function ($a, $b) {
  43. return Utils::add($a, $b);
  44. });
  45. return $args[0] ? ($sum / count($args[0])) : null;
  46. }
  47. private function fn_ceil(array $args)
  48. {
  49. $this->validate('ceil', $args, [['number']]);
  50. return ceil($args[0]);
  51. }
  52. private function fn_contains(array $args)
  53. {
  54. $this->validate('contains', $args, [['string', 'array'], ['any']]);
  55. if (is_array($args[0])) {
  56. return in_array($args[1], $args[0]);
  57. } elseif (is_string($args[1])) {
  58. return mb_strpos($args[0], $args[1], 0, 'UTF-8') !== false;
  59. } else {
  60. return null;
  61. }
  62. }
  63. private function fn_ends_with(array $args)
  64. {
  65. $this->validate('ends_with', $args, [['string'], ['string']]);
  66. list($search, $suffix) = $args;
  67. return $suffix === '' || mb_substr($search, -mb_strlen($suffix, 'UTF-8'), null, 'UTF-8') === $suffix;
  68. }
  69. private function fn_floor(array $args)
  70. {
  71. $this->validate('floor', $args, [['number']]);
  72. return floor($args[0]);
  73. }
  74. private function fn_not_null(array $args)
  75. {
  76. if (!$args) {
  77. throw new \RuntimeException(
  78. "not_null() expects 1 or more arguments, 0 were provided"
  79. );
  80. }
  81. return array_reduce($args, function ($carry, $item) {
  82. return $carry !== null ? $carry : $item;
  83. });
  84. }
  85. private function fn_join(array $args)
  86. {
  87. $this->validate('join', $args, [['string'], ['array']]);
  88. $fn = function ($a, $b, $i) use ($args) {
  89. return $i ? ($a . $args[0] . $b) : $b;
  90. };
  91. return $this->reduce('join:0', $args[1], ['string'], $fn);
  92. }
  93. private function fn_keys(array $args)
  94. {
  95. $this->validate('keys', $args, [['object']]);
  96. return array_keys((array) $args[0]);
  97. }
  98. private function fn_length(array $args)
  99. {
  100. $this->validate('length', $args, [['string', 'array', 'object']]);
  101. return is_string($args[0]) ? mb_strlen($args[0], 'UTF-8') : count((array) $args[0]);
  102. }
  103. private function fn_max(array $args)
  104. {
  105. $this->validate('max', $args, [['array']]);
  106. $fn = function ($a, $b) {
  107. return $a >= $b ? $a : $b;
  108. };
  109. return $this->reduce('max:0', $args[0], ['number', 'string'], $fn);
  110. }
  111. private function fn_max_by(array $args)
  112. {
  113. $this->validate('max_by', $args, [['array'], ['expression']]);
  114. $expr = $this->wrapExpression('max_by:1', $args[1], ['number', 'string']);
  115. $fn = function ($carry, $item, $index) use ($expr) {
  116. return $index
  117. ? ($expr($carry) >= $expr($item) ? $carry : $item)
  118. : $item;
  119. };
  120. return $this->reduce('max_by:1', $args[0], ['any'], $fn);
  121. }
  122. private function fn_min(array $args)
  123. {
  124. $this->validate('min', $args, [['array']]);
  125. $fn = function ($a, $b, $i) {
  126. return $i && $a <= $b ? $a : $b;
  127. };
  128. return $this->reduce('min:0', $args[0], ['number', 'string'], $fn);
  129. }
  130. private function fn_min_by(array $args)
  131. {
  132. $this->validate('min_by', $args, [['array'], ['expression']]);
  133. $expr = $this->wrapExpression('min_by:1', $args[1], ['number', 'string']);
  134. $i = -1;
  135. $fn = function ($a, $b) use ($expr, &$i) {
  136. return ++$i ? ($expr($a) <= $expr($b) ? $a : $b) : $b;
  137. };
  138. return $this->reduce('min_by:1', $args[0], ['any'], $fn);
  139. }
  140. private function fn_reverse(array $args)
  141. {
  142. $this->validate('reverse', $args, [['array', 'string']]);
  143. if (is_array($args[0])) {
  144. return array_reverse($args[0]);
  145. } elseif (is_string($args[0])) {
  146. return strrev($args[0]);
  147. } else {
  148. throw new \RuntimeException('Cannot reverse provided argument');
  149. }
  150. }
  151. private function fn_sum(array $args)
  152. {
  153. $this->validate('sum', $args, [['array']]);
  154. $fn = function ($a, $b) {
  155. return Utils::add($a, $b);
  156. };
  157. return $this->reduce('sum:0', $args[0], ['number'], $fn);
  158. }
  159. private function fn_sort(array $args)
  160. {
  161. $this->validate('sort', $args, [['array']]);
  162. $valid = ['string', 'number'];
  163. return Utils::stableSort($args[0], function ($a, $b) use ($valid) {
  164. $this->validateSeq('sort:0', $valid, $a, $b);
  165. return strnatcmp($a, $b);
  166. });
  167. }
  168. private function fn_sort_by(array $args)
  169. {
  170. $this->validate('sort_by', $args, [['array'], ['expression']]);
  171. $expr = $args[1];
  172. $valid = ['string', 'number'];
  173. return Utils::stableSort(
  174. $args[0],
  175. function ($a, $b) use ($expr, $valid) {
  176. $va = $expr($a);
  177. $vb = $expr($b);
  178. $this->validateSeq('sort_by:0', $valid, $va, $vb);
  179. return strnatcmp($va, $vb);
  180. }
  181. );
  182. }
  183. private function fn_starts_with(array $args)
  184. {
  185. $this->validate('starts_with', $args, [['string'], ['string']]);
  186. list($search, $prefix) = $args;
  187. return $prefix === '' || mb_strpos($search, $prefix, 0, 'UTF-8') === 0;
  188. }
  189. private function fn_type(array $args)
  190. {
  191. $this->validateArity('type', count($args), 1);
  192. return Utils::type($args[0]);
  193. }
  194. private function fn_to_string(array $args)
  195. {
  196. $this->validateArity('to_string', count($args), 1);
  197. $v = $args[0];
  198. if (is_string($v)) {
  199. return $v;
  200. } elseif (is_object($v)
  201. && !($v instanceof \JsonSerializable)
  202. && method_exists($v, '__toString')
  203. ) {
  204. return (string) $v;
  205. }
  206. return json_encode($v);
  207. }
  208. private function fn_to_number(array $args)
  209. {
  210. $this->validateArity('to_number', count($args), 1);
  211. $value = $args[0];
  212. $type = Utils::type($value);
  213. if ($type == 'number') {
  214. return $value;
  215. } elseif ($type == 'string' && is_numeric($value)) {
  216. return mb_strpos($value, '.', 0, 'UTF-8') ? (float) $value : (int) $value;
  217. } else {
  218. return null;
  219. }
  220. }
  221. private function fn_values(array $args)
  222. {
  223. $this->validate('values', $args, [['array', 'object']]);
  224. return array_values((array) $args[0]);
  225. }
  226. private function fn_merge(array $args)
  227. {
  228. if (!$args) {
  229. throw new \RuntimeException(
  230. "merge() expects 1 or more arguments, 0 were provided"
  231. );
  232. }
  233. return call_user_func_array('array_replace', $args);
  234. }
  235. private function fn_to_array(array $args)
  236. {
  237. $this->validate('to_array', $args, [['any']]);
  238. return Utils::isArray($args[0]) ? $args[0] : [$args[0]];
  239. }
  240. private function fn_map(array $args)
  241. {
  242. $this->validate('map', $args, [['expression'], ['any']]);
  243. $result = [];
  244. foreach ($args[1] as $a) {
  245. $result[] = $args[0]($a);
  246. }
  247. return $result;
  248. }
  249. private function typeError($from, $msg)
  250. {
  251. if (mb_strpos($from, ':', 0, 'UTF-8')) {
  252. list($fn, $pos) = explode(':', $from);
  253. throw new \RuntimeException(
  254. sprintf('Argument %d of %s %s', $pos, $fn, $msg)
  255. );
  256. } else {
  257. throw new \RuntimeException(
  258. sprintf('Type error: %s %s', $from, $msg)
  259. );
  260. }
  261. }
  262. private function validateArity($from, $given, $expected)
  263. {
  264. if ($given != $expected) {
  265. $err = "%s() expects {$expected} arguments, {$given} were provided";
  266. throw new \RuntimeException(sprintf($err, $from));
  267. }
  268. }
  269. private function validate($from, $args, $types = [])
  270. {
  271. $this->validateArity($from, count($args), count($types));
  272. foreach ($args as $index => $value) {
  273. if (!isset($types[$index]) || !$types[$index]) {
  274. continue;
  275. }
  276. $this->validateType("{$from}:{$index}", $value, $types[$index]);
  277. }
  278. }
  279. private function validateType($from, $value, array $types)
  280. {
  281. if ($types[0] == 'any'
  282. || in_array(Utils::type($value), $types)
  283. || ($value === [] && in_array('object', $types))
  284. ) {
  285. return;
  286. }
  287. $msg = 'must be one of the following types: ' . implode(', ', $types)
  288. . '. ' . Utils::type($value) . ' found';
  289. $this->typeError($from, $msg);
  290. }
  291. /**
  292. * Validates value A and B, ensures they both are correctly typed, and of
  293. * the same type.
  294. *
  295. * @param string $from String of function:argument_position
  296. * @param array $types Array of valid value types.
  297. * @param mixed $a Value A
  298. * @param mixed $b Value B
  299. */
  300. private function validateSeq($from, array $types, $a, $b)
  301. {
  302. $ta = Utils::type($a);
  303. $tb = Utils::type($b);
  304. if ($ta !== $tb) {
  305. $msg = "encountered a type mismatch in sequence: {$ta}, {$tb}";
  306. $this->typeError($from, $msg);
  307. }
  308. $typeMatch = ($types && $types[0] == 'any') || in_array($ta, $types);
  309. if (!$typeMatch) {
  310. $msg = 'encountered a type error in sequence. The argument must be '
  311. . 'an array of ' . implode('|', $types) . ' types. '
  312. . "Found {$ta}, {$tb}.";
  313. $this->typeError($from, $msg);
  314. }
  315. }
  316. /**
  317. * Reduces and validates an array of values to a single value using a fn.
  318. *
  319. * @param string $from String of function:argument_position
  320. * @param array $values Values to reduce.
  321. * @param array $types Array of valid value types.
  322. * @param callable $reduce Reduce function that accepts ($carry, $item).
  323. *
  324. * @return mixed
  325. */
  326. private function reduce($from, array $values, array $types, callable $reduce)
  327. {
  328. $i = -1;
  329. return array_reduce(
  330. $values,
  331. function ($carry, $item) use ($from, $types, $reduce, &$i) {
  332. if (++$i > 0) {
  333. $this->validateSeq($from, $types, $carry, $item);
  334. }
  335. return $reduce($carry, $item, $i);
  336. }
  337. );
  338. }
  339. /**
  340. * Validates the return values of expressions as they are applied.
  341. *
  342. * @param string $from Function name : position
  343. * @param callable $expr Expression function to validate.
  344. * @param array $types Array of acceptable return type values.
  345. *
  346. * @return callable Returns a wrapped function
  347. */
  348. private function wrapExpression($from, callable $expr, array $types)
  349. {
  350. list($fn, $pos) = explode(':', $from);
  351. $from = "The expression return value of argument {$pos} of {$fn}";
  352. return function ($value) use ($from, $expr, $types) {
  353. $value = $expr($value);
  354. $this->validateType($from, $value, $types);
  355. return $value;
  356. };
  357. }
  358. /** @internal Pass function name validation off to runtime */
  359. public function __call($name, $args)
  360. {
  361. $name = str_replace('fn_', '', $name);
  362. throw new \RuntimeException("Call to undefined function {$name}");
  363. }
  364. }