Module: Docopt
- Defined in:
- lib/docopt.rb,
lib/docopt.rb
Defined Under Namespace
Classes: AnyOptions, Argument, ChildPattern, Command, DocoptLanguageError, Either, Exit, OneOrMore, Option, Optional, ParentPattern, Pattern, Required, TokenStream
Constant Summary
collapse
- VERSION =
'0.6.0'
Class Method Summary
collapse
-
.docopt(doc, params = {}) ⇒ Object
-
.dump_patterns(pattern, indent = 0) ⇒ Object
-
.extras(help, version, options, doc) ⇒ Object
-
.formal_usage(printable_usage) ⇒ Object
-
.parse_argv(tokens, options, options_first = false) ⇒ Object
-
.parse_atom(tokens, options) ⇒ Object
-
.parse_defaults(doc) ⇒ Object
-
.parse_expr(tokens, options) ⇒ Object
-
.parse_long(tokens, options) ⇒ Object
-
.parse_pattern(source, options) ⇒ Object
-
.parse_seq(tokens, options) ⇒ Object
-
.parse_shorts(tokens, options) ⇒ Object
-
.printable_usage(doc) ⇒ Object
Class Method Details
.docopt(doc, params = {}) ⇒ Object
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
|
# File 'lib/docopt.rb', line 645
def docopt(doc, params={})
default = {:version => nil, :argv => nil, :help => true, :options_first => false}
params = default.merge(params)
params[:argv] = ARGV if !params[:argv]
Exit.set_usage(printable_usage(doc))
options = parse_defaults(doc)
pattern = parse_pattern(formal_usage(Exit.usage), options)
argv = parse_argv(TokenStream.new(params[:argv], Exit), options, params[:options_first])
pattern_options = pattern.flat(Option).uniq
pattern.flat(AnyOptions).each do |ao|
doc_options = parse_defaults(doc)
ao.children = doc_options.reject { |o| pattern_options.include?(o) }.uniq
end
(params[:help], params[:version], argv, doc)
matched, left, collected = pattern.fix().match(argv)
collected ||= []
if matched and (left.count == 0)
return Hash[(pattern.flat + collected).map { |a| [a.name, a.value] }]
end
raise Exit
end
|
.dump_patterns(pattern, indent = 0) ⇒ Object
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
|
# File 'lib/docopt.rb', line 607
def dump_patterns(pattern, indent=0)
ws = " " * 4 * indent
out = ""
if pattern.class == Array
if pattern.count > 0
out << ws << "[\n"
for p in pattern
out << dump_patterns(p, indent+1).rstrip << "\n"
end
out << ws << "]\n"
else
out << ws << "[]\n"
end
elsif pattern.class.ancestors.include?(ParentPattern)
out << ws << pattern.class.name << "(\n"
for p in pattern.children
out << dump_patterns(p, indent+1).rstrip << "\n"
end
out << ws << ")\n"
else
out << ws << pattern.inspect
end
return out
end
|
634
635
636
637
638
639
640
641
642
643
|
# File 'lib/docopt.rb', line 634
def (help, version, options, doc)
if help and options.any? { |o| ['-h', '--help'].include?(o.name) && o.value }
Exit.set_usage(nil)
raise Exit, doc.strip
end
if version and options.any? { |o| o.name == '--version' && o.value }
Exit.set_usage(nil)
raise Exit, version
end
end
|
592
593
594
595
596
597
598
599
600
601
602
603
604
605
|
# File 'lib/docopt.rb', line 592
def formal_usage(printable_usage)
pu = printable_usage.split().drop(1)
ret = []
for s in pu.drop(1)
if s == pu[0]
ret << ') | ('
else
ret << s
end
end
return '( ' + ret.join(' ') + ' )'
end
|
.parse_argv(tokens, options, options_first = false) ⇒ Object
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
|
# File 'lib/docopt.rb', line 557
def parse_argv(tokens, options, options_first=false)
parsed = []
while tokens.current() != nil
if tokens.current() == '--'
return parsed + tokens.map { |v| Argument.new(nil, v) }
elsif tokens.current().start_with?('--')
parsed += parse_long(tokens, options)
elsif tokens.current().start_with?('-') and tokens.current() != '-'
parsed += parse_shorts(tokens, options)
elsif options_first
return parsed + tokens.map { |v| Argument.new(nil, v) }
else
parsed << Argument.new(nil, tokens.move())
end
end
return parsed
end
|
.parse_atom(tokens, options) ⇒ Object
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
|
# File 'lib/docopt.rb', line 525
def parse_atom(tokens, options)
token = tokens.current()
result = []
if ['(' , '['].include? token
tokens.move()
if token == '('
matching = ')'
pattern = Required
else
matching = ']'
pattern = Optional
end
result = pattern.new(*parse_expr(tokens, options))
if tokens.move() != matching
raise tokens.error, "unmatched '#{token}'"
end
return [result]
elsif token == 'options'
tokens.move()
return [AnyOptions.new]
elsif token.start_with?('--') and token != '--'
return parse_long(tokens, options)
elsif token.start_with?('-') and not ['-', '--'].include? token
return parse_shorts(tokens, options)
elsif token.start_with?('<') and token.end_with?('>') or (token.upcase == token && token.match(/[A-Z]/))
return [Argument.new(tokens.move())]
else
return [Command.new(tokens.move())]
end
end
|
.parse_defaults(doc) ⇒ Object
575
576
577
578
579
|
# File 'lib/docopt.rb', line 575
def parse_defaults(doc)
split = doc.split(/^ *(<\S+?>|-\S+?)/).drop(1)
split = split.each_slice(2).reject { |pair| pair.count != 2 }.map { |s1, s2| s1 + s2 }
split.select { |s| s.start_with?('-') }.map { |s| Option.parse(s) }
end
|
.parse_expr(tokens, options) ⇒ Object
496
497
498
499
500
501
502
503
504
505
506
507
508
509
|
# File 'lib/docopt.rb', line 496
def parse_expr(tokens, options)
seq = parse_seq(tokens, options)
if tokens.current() != '|'
return seq
end
result = seq.count > 1 ? [Required.new(*seq)] : seq
while tokens.current() == '|'
tokens.move()
seq = parse_seq(tokens, options)
result += seq.count > 1 ? [Required.new(*seq)] : seq
end
return result.count > 1 ? [Either.new(*result)] : result
end
|
.parse_long(tokens, options) ⇒ Object
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
|
# File 'lib/docopt.rb', line 397
def parse_long(tokens, options)
long, eq, value = tokens.move().partition('=')
unless long.start_with?('--')
raise RuntimeError
end
value = (eq == value and eq == '') ? nil : value
similar = options.select { |o| o.long and o.long == long }
if tokens.error == Exit and similar == []
similar = options.select { |o| o.long and o.long.start_with?(long) }
end
if similar.count > 1
ostr = similar.map { |o| o.long }.join(', ')
raise tokens.error, "#{long} is not a unique prefix: #{ostr}?"
elsif similar.count < 1
argcount = (eq == '=' ? 1 : 0)
o = Option.new(nil, long, argcount)
options << o
if tokens.error == Exit
o = Option.new(nil, long, argcount, (argcount == 1 ? value : true))
end
else
s0 = similar[0]
o = Option.new(s0.short, s0.long, s0.argcount, s0.value)
if o.argcount == 0
if !value.nil?
raise tokens.error, "#{o.long} must not have an argument"
end
else
if value.nil?
if tokens.current().nil?
raise tokens.error, "#{o.long} requires argument"
end
value = tokens.move()
end
end
if tokens.error == Exit
o.value = (!value.nil? ? value : true)
end
end
return [o]
end
|
.parse_pattern(source, options) ⇒ Object
485
486
487
488
489
490
491
492
493
|
# File 'lib/docopt.rb', line 485
def parse_pattern(source, options)
tokens = TokenStream.new(source.gsub(/([\[\]\(\)\|]|\.\.\.)/, ' \1 '), DocoptLanguageError)
result = parse_expr(tokens, options)
if tokens.current() != nil
raise tokens.error, "unexpected ending: #{tokens.join(" ")}"
end
return Required.new(*result)
end
|
.parse_seq(tokens, options) ⇒ Object
511
512
513
514
515
516
517
518
519
520
521
522
523
|
# File 'lib/docopt.rb', line 511
def parse_seq(tokens, options)
result = []
stop = [nil, ']', ')', '|']
while !stop.include?(tokens.current)
atom = parse_atom(tokens, options)
if tokens.current() == '...'
atom = [OneOrMore.new(*atom)]
tokens.move()
end
result += atom
end
return result
end
|
.parse_shorts(tokens, options) ⇒ Object
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
|
# File 'lib/docopt.rb', line 442
def parse_shorts(tokens, options)
token = tokens.move()
unless token.start_with?('-') && !token.start_with?('--')
raise RuntimeError
end
left = token[1..-1]
parsed = []
while left != ''
short, left = '-' + left[0], left[1..-1]
similar = options.select { |o| o.short == short }
if similar.count > 1
raise tokens.error, "#{short} is specified ambiguously #{similar.count} times"
elsif similar.count < 1
o = Option.new(short, nil, 0)
options << o
if tokens.error == Exit
o = Option.new(short, nil, 0, true)
end
else
s0 = similar[0]
o = Option.new(short, s0.long, s0.argcount, s0.value)
value = nil
if o.argcount != 0
if left == ''
if tokens.current().nil?
raise tokens.error, "#{short} requires argument"
end
value = tokens.move()
else
value = left
left = ''
end
end
if tokens.error == Exit
o.value = (!value.nil? ? value : true)
end
end
parsed << o
end
return parsed
end
|
.printable_usage(doc) ⇒ Object
581
582
583
584
585
586
587
588
589
590
|
# File 'lib/docopt.rb', line 581
def printable_usage(doc)
usage_split = doc.split(/([Uu][Ss][Aa][Gg][Ee]:)/)
if usage_split.count < 3
raise DocoptLanguageError, '"usage:" (case-insensitive) not found.'
end
if usage_split.count > 3
raise DocoptLanguageError, 'More than one "usage:" (case-insensitive).'
end
return usage_split.drop(1).join().split(/\n\s*\n/)[0].strip
end
|