File: eg1.pl

package info (click to toggle)
libjson-path-perl 1.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 692 kB
  • sloc: perl: 891; javascript: 62; sh: 3; makefile: 2
file content (59 lines) | stat: -rw-r--r-- 1,269 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
use 5.010;
use JSON::MaybeXS;
use Scalar::Util qw[blessed];
use lib "../lib";
use JSON::Path;

my $json = JSON::MaybeXS->new( pretty => 1 );
my $object = $json->decode(<<'JSON');
{
	"store": {
		"book": [
			{
				"category": "reference",
				"author":   "Nigel Rees",
				"title":    "Sayings of the Century",
				"price":    8.95
			},
			{
				"category": "fiction",
				"author":   "Evelyn Waugh",
				"title":    "Sword of Honour",
				"price":    12.99
			},
			{
				"category": "fiction",
				"author":   "Herman Melville",
				"title":    "Moby Dick",
				"isbn":     "0-553-21311-3",
				"price":    8.99
			},
			{
				"category": "fiction",
				"author":   "J. R. R. Tolkien",
				"title":    "The Lord of the Rings",
				"isbn":     "0-395-19395-8",
				"price":    22.99
			}
		],
		"bicycle": {
			"color": "red",
			"price": 19.95
		}
	}
}
JSON

$JSON::Path::Safe = 0;

foreach ('$.store.book[0].title', '$.store.book[*].author', '$..author', '$..book[-1:]',
	'$..book[?($_->{author} =~ /tolkien/i)]')
{
	my $jpath = JSON::Path->new($_);
	say $jpath;
	say $json->encode([$jpath->values($object)]);
	say $json->encode([$jpath->paths($object)]);
	say [$jpath->values($object)]->[0]->nodePath
		if blessed([$jpath->values($object)]->[0]);
	say '-' x 40;
}