summaryrefslogtreecommitdiff
path: root/vendor/mtdowling/jmespath.php/bin
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2022-11-23 21:14:33 +0300
committerAndrew Dolgov <[email protected]>2022-11-23 21:14:33 +0300
commit0c8af4992cb0f7589dcafaad65ada12753c64594 (patch)
tree18e83d068c3e7dd2499331de977782b382279396 /vendor/mtdowling/jmespath.php/bin
initial
Diffstat (limited to 'vendor/mtdowling/jmespath.php/bin')
-rwxr-xr-xvendor/mtdowling/jmespath.php/bin/jp.php74
-rwxr-xr-xvendor/mtdowling/jmespath.php/bin/perf.php68
2 files changed, 142 insertions, 0 deletions
diff --git a/vendor/mtdowling/jmespath.php/bin/jp.php b/vendor/mtdowling/jmespath.php/bin/jp.php
new file mode 100755
index 0000000..c8433b5
--- /dev/null
+++ b/vendor/mtdowling/jmespath.php/bin/jp.php
@@ -0,0 +1,74 @@
+#!/usr/bin/env php
+<?php
+
+if (file_exists(__DIR__ . '/../vendor/autoload.php')) {
+ require __DIR__ . '/../vendor/autoload.php';
+} elseif (file_exists(__DIR__ . '/../../../autoload.php')) {
+ require __DIR__ . '/../../../autoload.php';
+} elseif (file_exists(__DIR__ . '/../autoload.php')) {
+ require __DIR__ . '/../autoload.php';
+} else {
+ throw new RuntimeException('Unable to locate autoload.php file.');
+}
+
+use JmesPath\Env;
+use JmesPath\DebugRuntime;
+
+$description = <<<EOT
+Runs a JMESPath expression on the provided input or a test case.
+
+Provide the JSON input and expression:
+ echo '{}' | jp.php expression
+
+Or provide the path to a compliance script, a suite, and test case number:
+ jp.php --script path_to_script --suite test_suite_number --case test_case_number [expression]
+
+EOT;
+
+$args = [];
+$currentKey = null;
+for ($i = 1, $total = count($argv); $i < $total; $i++) {
+ if ($i % 2) {
+ if (substr($argv[$i], 0, 2) == '--') {
+ $currentKey = str_replace('--', '', $argv[$i]);
+ } else {
+ $currentKey = trim($argv[$i]);
+ }
+ } else {
+ $args[$currentKey] = $argv[$i];
+ $currentKey = null;
+ }
+}
+
+$expression = $currentKey;
+
+if (isset($args['file']) || isset($args['suite']) || isset($args['case'])) {
+ if (!isset($args['file']) || !isset($args['suite']) || !isset($args['case'])) {
+ die($description);
+ }
+ // Manually run a compliance test
+ $path = realpath($args['file']);
+ file_exists($path) or die('File not found at ' . $path);
+ $json = json_decode(file_get_contents($path), true);
+ $set = $json[$args['suite']];
+ $data = $set['given'];
+ if (!isset($expression)) {
+ $expression = $set['cases'][$args['case']]['expression'];
+ echo "Expects\n=======\n";
+ if (isset($set['cases'][$args['case']]['result'])) {
+ echo json_encode($set['cases'][$args['case']]['result'], JSON_PRETTY_PRINT) . "\n\n";
+ } elseif (isset($set['cases'][$args['case']]['error'])) {
+ echo "{$set['cases'][$argv['case']]['error']} error\n\n";
+ } else {
+ echo "NULL\n\n";
+ }
+ }
+} elseif (isset($expression)) {
+ // Pass in an expression and STDIN as a standalone argument
+ $data = json_decode(stream_get_contents(STDIN), true);
+} else {
+ die($description);
+}
+
+$runtime = new DebugRuntime(Env::createRuntime());
+$runtime($expression, $data);
diff --git a/vendor/mtdowling/jmespath.php/bin/perf.php b/vendor/mtdowling/jmespath.php/bin/perf.php
new file mode 100755
index 0000000..aa93959
--- /dev/null
+++ b/vendor/mtdowling/jmespath.php/bin/perf.php
@@ -0,0 +1,68 @@
+#!/usr/bin/env php
+<?php
+
+if (file_exists(__DIR__ . '/../vendor/autoload.php')) {
+ require __DIR__ . '/../vendor/autoload.php';
+} elseif (file_exists(__DIR__ . '/../../../autoload.php')) {
+ require __DIR__ . '/../../../autoload.php';
+} else {
+ throw new RuntimeException('Unable to locate autoload.php file.');
+}
+
+$xdebug = new \Composer\XdebugHandler\XdebugHandler('perf.php');
+$xdebug->check();
+unset($xdebug);
+
+$dir = isset($argv[1]) ? $argv[1] : __DIR__ . '/../tests/compliance/perf';
+is_dir($dir) or die('Dir not found: ' . $dir);
+// Warm up the runner
+\JmesPath\Env::search('foo', []);
+
+$total = 0;
+foreach (glob($dir . '/*.json') as $file) {
+ $total += runSuite($file);
+}
+echo "\nTotal time: {$total}\n";
+
+function runSuite($file)
+{
+ $contents = file_get_contents($file);
+ $json = json_decode($contents, true);
+ $total = 0;
+ foreach ($json as $suite) {
+ foreach ($suite['cases'] as $case) {
+ $total += runCase(
+ $suite['given'],
+ $case['expression'],
+ $case['name']
+ );
+ }
+ }
+ return $total;
+}
+
+function runCase($given, $expression, $name)
+{
+ $best = 99999;
+ $runtime = \JmesPath\Env::createRuntime();
+
+ for ($i = 0; $i < 100; $i++) {
+ $t = microtime(true);
+ $runtime($expression, $given);
+ $tryTime = (microtime(true) - $t) * 1000;
+ if ($tryTime < $best) {
+ $best = $tryTime;
+ }
+ if (!getenv('CACHE')) {
+ $runtime = \JmesPath\Env::createRuntime();
+ // Delete compiled scripts if not caching.
+ if ($runtime instanceof \JmesPath\CompilerRuntime) {
+ array_map('unlink', glob(sys_get_temp_dir() . '/jmespath_*.php'));
+ }
+ }
+ }
+
+ printf("time: %07.4fms name: %s\n", $best, $name);
+
+ return $best;
+}