forked from vtss/json-rpc-util
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vson
executable file
·689 lines (574 loc) · 15.1 KB
/
vson
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
#!/usr/bin/env ruby
require 'net/http'
require 'net/https'
require 'uri'
require 'json'
require 'optparse'
require 'net/http/digest_auth'
$dut = nil
$dut_user = "admin"
$dut_pass = ""
$dut_ssl = false
$spec_file = nil
$spec_name = "json_spec"
class ArrayCollaps
def initialize
@s = ""
end
def push_range
if @a.nil? or @b.nil?
return
end
if @s.size != 0
@s << ", "
end
if (@a != @b)
@s << "#{@a}-#{@b}"
else
@s << "#{@a}"
end
end
def add val
if @a.nil? or @b.nil?
@a = val
@b = val
return
end
if @b + 1 == val
@b = val
return
else
push_range
@a = val
@b = val
end
end
def str
push_range
tmp = @s
@a = @b = nil
@s = ""
return "[#{tmp}]"
end
end
def print_table2 t
t.each do |row|
row.each do |key, val|
if val.class == Hash
val.each do |k, v|
puts "#{k}: #{v}"
end
else
puts "#{key}: #{val}"
end
end
puts ""
end
end
def print_table t
if t.empty?
puts " [empty-table]"
return
end
size = {}
t.each do |row|
old_max = 0
row.each do |key, val|
if val.class == Hash
val.each do |k, v|
old_max = size[k.to_s] if not size[k.to_s].nil?
size[k.to_s] = [v.to_s.size, k.to_s.size, old_max].max
end
else
old_max = size[key.to_s] if not size[key.to_s].nil?
size[key.to_s] = [val.to_s.size, key.to_s.size, old_max].max
end
end
end
sum = 0
size.each do |k, v|
sum += v
end
if sum > 200
print_table2 t
return
end
line = " "
size.each do |k, v|
line += "%-#{v}s " % [k]
end
puts line
line = " "
size.each do |k, v|
v.times do |x|
line << "-"
end
line << " "
end
puts line
t.each do |row|
line = " "
row.each do |key, val|
if val.class == Hash
val.each do |k, v|
line += "%#{size[k]}s " % [v]
end
else
line += "%#{size[key]}s " % [val]
end
end
puts line
end
end
def print_hash m
max_key_size = 0
max_val_size = 0
m.each do |k, v|
max_key_size = [k.to_s.size, max_key_size].max
max_val_size = [v.to_s.size, max_val_size].max
end
m.each do |k, v|
puts " #{"%-#{max_key_size + 1}s" % "#{k.to_s}:"} #{"%#{max_val_size}s"%[v]}"
end
end
def stringify x
if x.class == Array
types = x.collect{|e| e.class}
types.uniq!
if types.size != 1
return "[#{x.join(", ")}]"
end
if types[0] == Fixnum
r = ArrayCollaps.new
x.each do |e|
r.add e
end
return r.str
end
return "[#{x.join(", ")}]"
end
return x.to_s
end
def stringify_key x
if x.class == Array
types = x.collect{|e| e.class}
types.uniq!
if types.size != 1
return "[#{x.join(", ")}]"
end
return "[#{x.join(", ")}]"
end
return x.to_s
end
def stringify_table x
x.each_index do |row|
x[row].each do |key, val|
if val.class == Hash
val.each do |k, v|
x[row][key][k] = stringify(v)
end
else
x[row][key] = stringify_key(val)
end
end
end
return x
end
def stringify_hash x
x.each do |k, v|
x[k] = stringify v
end
return x
end
def print x
begin
if x.class == Array
x = stringify_table x
print_table x
elsif x.class == Hash
x = stringify_hash x
print_hash x
else
puts(stringify(x))
end
rescue Exception => e
puts JSON.pretty_generate(x)
end
end
def http_post_request body
if $dut_ssl
uri = URI.parse "https://#{$dut}/json_spec"
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
request = Net::HTTP::Post.new("/json_rpc")
request.basic_auth $dut_user, $dut_pass
request.content_type = 'application/json'
request.body = body
resp = http.request(request)
else
http = Net::HTTP.start($dut, 80)
request = Net::HTTP::Post.new("/json_rpc")
request.basic_auth $dut_user, $dut_pass
request.content_type = 'application/json'
request.body = body
resp = http.request(request)
if resp['www-authenticate']
uri = URI.parse "http://#{$dut}/json_rpc"
uri.user = $dut_user
uri.password = $dut_pass
digest_auth = Net::HTTP::DigestAuth.new
auth = digest_auth.auth_header(uri, resp['www-authenticate'], "POST")
request.delete('Authorization')
request.add_field 'Authorization', auth
resp = http.request(request);
end
end
return resp.body
end
def download_spec host
puts "Downloading spec #{$spec_name} to file"
if $dut_ssl
uri = URI.parse "https://#{$dut}/#{$spec_name}"
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
request = Net::HTTP::Get.new("/#{$spec_name}")
request.basic_auth $dut_user, $dut_pass
request.content_type = 'application/json'
resp = http.request(request)
else
http = Net::HTTP.start($dut, 80)
request = Net::HTTP::Get.new("/#{$spec_name}")
request.basic_auth $dut_user, $dut_pass
request.content_type = 'application/json'
resp = http.request(request)
if resp['www-authenticate']
uri = URI.parse "http://#{$dut}/#{$spec_name}"
uri.user = $dut_user
uri.password = $dut_pass
digest_auth = Net::HTTP::DigestAuth.new
auth = digest_auth.auth_header(uri, resp['www-authenticate'], "GET")
request.delete('Authorization')
request.add_field 'Authorization', auth
resp = http.request(request);
end
end
return JSON.parse(resp.body)
end
def get_spec args
if $spec_file.nil?
return download_spec $dut
else
return JSON.parse(File.read(File.expand_path($spec_file)))
end
end
def cmd_grep args
spec = get_spec args
#spec["types"].each do |e|
# if not e["type-name"].match(args[:pattern]).nil?
# puts e
# end
#end
spec["methods"].each do |e|
if not e["method-name"].match(args[:pattern]).nil?
puts e["method-name"]
end
end
end
def cmd_update_spec args
spec = download_spec $dut
File.open(File.expand_path($spec_file), "w") do |f|
f.write(JSON.pretty_generate(spec))
end
end
def parse_arg type, val
encode = nil
if not type["encoding-type"].nil?
encode = type["encoding-type"]
end
if not type["json-encoding-type"].nil?
encode = type["json-encoding-type"]
end
raise "Can not determinate encoding type" if encode.nil?
case encode
when "String"
return val.to_s
when "Number"
return val.to_i
when "Boolean"
return true if val == "true"
return false if val == "false"
raise ArgumentError.new("Invalid value for Boolean: \"#{val}\"")
else
puts val
return JSON.parse(val)
end
end
def cmd_call args
spec = get_spec args
m = nil
spec["methods"].each do |e|
if e["method-name"] == args[:method]
m = e
break
end
end
types = {}
spec["types"].each do |e|
types[e["type-name"]] = e
end
if m.nil?
puts "No such method found in the spec. Method name: #{args[:method]}"
end
method = args[:method]
params = []
#todo...
if args[:args].size != 0
if m["params"].size != args[:args].size
puts "Wrong number of arguments! Got #{args[:args].size} expected #{m["params"].size}"
exit
end
m["params"].each do |p|
params << parse_arg(types[p["type"]], args[:args].shift)
end
end
puts "Calling #{method}:"
post_body = {'method' => args[:method], 'params' => params, 'id' => 'jsonrpc'}.to_json
if args[:dump_req]
puts " Post-body: #{post_body}"
end
resp_txt = nil
begin
resp_txt = http_post_request(post_body)
rescue Exception => e
puts "Error: #{method} #{e.message}"
puts " Post body: #{post_body}"
raise e
end
if args[:dump_res]
puts " Post-body: #{resp_txt}"
end
begin
resp = JSON.parse(resp_txt)
rescue Exception => e
puts "Parse error: #{method} #{e.message}"
puts " Response body: #{resp_txt}"
raise e
end
if args[:pretty]
begin
raise JSONRPCError, resp['error'] if resp['error']
print resp['result']
puts ""
rescue Exception => e
puts "Failed to call #{method} #{e.message}"
puts " Response body: #{resp_txt}"
puts
return nil
end
end
end
def cmd_spec args
spec = get_spec args
m = nil
spec["methods"].each do |e|
if e["method-name"] == args[:method]
m = e
break
end
end
if m.nil?
puts "No such method found in the spec. Method name: #{args[:method]}"
end
puts "Method name:\n #{m["method-name"]}\n"
types = {}
spec["types"].each do |e|
types[e["type-name"]] = e
end
method = args[:method]
cnt = 0
puts "Parameters:"
m["params"].each do |p|
puts " Param \##{cnt} #{p}"
puts " #{types[p["type"]]}"
cnt += 1
end
puts ""
cnt = 0
puts "Results:"
m["result"].each do |p|
puts " Result \##{cnt} #{p}"
puts " #{types[p["type"]]}"
cnt += 1
end
puts ""
end
global = OptionParser.new do |opts|
opts.banner = """Usage: vson [common-options] <command> [<args>]"""
opts.separator ""
opts.separator "Common-options:"
opts.on("-d", "--dut ADDRESS", "Hostname or IP address of the DUT") do |a|
$dut = a
end
opts.on("-u", "--dut-username USER", "Username for the HTTP session") do |a|
$dut_user = a
end
opts.on("-p", "--dut-password PASS", "Password for the HTTP session") do |a|
$dut_pass = a
end
opts.on("--ssl", "Use ssl/https connection") do
$dut_ssl = true
end
opts.on("--spec=[SPEC-NAME]", "Can be \"json_spec\" or \"json_spec_target_specific\"") do |sn|
if sn.nil?
$spec_name = "json_spec"
else
$spec_name = sn
end
end
opts.on("--spec-cache=[SPEC-FILE]", "Use a cached spec file. If no file is specified it will try use ~/.vtss-json-rpc.spec") do |s|
if s.nil?
$spec_file = "~/.vtss-json-rpc.spec"
else
$spec_file = s
end
end
opts.on("-c", "Use ~/.vtss-json-rpc.spec as cached spec file") do |s|
$spec_file = "~/.vtss-json-rpc.spec"
end
opts.on("-h", "--help", "Show this message") do
puts opts
exit
end
opts.separator ""
opts.separator """Commands:
call Call a json RPC function on target using the spec file.
update-spec Download the newest spec file from the target, and save it as a cache.
spec Inspect the spec file.
grep List type and methods who's name matches the pattern."""
end
global.order!
if ARGV.size == 0
puts "No command specified!"
puts
puts global
exit
end
$cmd = ARGV.shift
case $cmd
when "call"
args = {}
args[:dump_req] = false
args[:dump_res] = false
args[:pretty] = true
call_opts = OptionParser.new do |opts|
opts.banner = """Usage: vson call [Options] <method> [<args>]"""
opts.separator ""
opts.separator "Options:"
opts.on("--dump-requests", "Dump the raw requests") do
args[:dump_req] = true
end
opts.on("--dump-response", "Dump the raw response") do
args[:dump_res] = true
end
opts.on("--no-pretty-print", "Disable pretty printing the responses") do
args[:pretty] = false
end
opts.on("-h", "--help", "Show this message") do
puts opts
exit
end
opts.separator ""
opts.separator "Method: this is the json-rpc method to call."
end
call_opts.order!
if ARGV.size == 0
puts "No method name"
exit
end
if $dut.nil?
puts "No dut address!"
exit
end
args[:method] = ARGV.shift
args[:args] = ARGV
cmd_call args
exit
when "spec"
args = {}
call_opts = OptionParser.new do |opts|
opts.banner = """Usage: vson spec [Options] <method>"""
opts.separator ""
opts.separator "Options:"
opts.on("-h", "--help", "Show this message") do
puts opts
exit
end
opts.separator ""
opts.separator "Method: this is the json-rpc method to call."
end
call_opts.order!
if ARGV.size == 0
puts "No method name"
exit
end
if $dut.nil? and $spec_file.nil?
puts "No dut address and no cached spec file!"
exit
end
args[:method] = ARGV.shift
cmd_spec args
exit
when "update-spec"
args = {}
call_opts = OptionParser.new do |opts|
opts.banner = """Usage: vson update-spec [Options]"""
opts.separator ""
opts.separator "Options:"
opts.on("-h", "--help", "Show this message") do
puts opts
exit
end
end
call_opts.order!
if $dut.nil?
puts "No dut address!"
exit
end
if $spec_file.nil?
puts "A spec file is required!"
exit
end
cmd_update_spec args
exit
when "grep"
args = {}
call_opts = OptionParser.new do |opts|
opts.banner = """Usage: vson grep [Options] <pattern>"""
opts.separator ""
opts.separator "List type and methods who's name matches the pattern"
opts.separator ""
opts.separator "Options:"
opts.on("-h", "--help", "Show this message") do
puts opts
exit
end
end
call_opts.order!
if ARGV.size == 0
puts "No pattern"
exit
end
if $dut.nil? and $spec_file.nil?
puts "No dut address and no cached spec file!"
exit
end
args[:pattern] = ARGV.shift
args[:args] = ARGV
cmd_grep args
exit
else
puts "Invalid command: #{$cmd}"
exit
end