-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathoptions.m
88 lines (69 loc) · 2.66 KB
/
options.m
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
%---------------------------------------------------------------------------%
% vim: ft=mercury ts=4 sw=4 et
%---------------------------------------------------------------------------%
% Copyright (C) 1998-2000, 2003 The University of Melbourne.
% Copyright (C) 2020, 2022 The Mercury team.
% This file may only be copied under the terms of the GNU General
% Public License - see the file COPYING in the Mercury Distribution.
%---------------------------------------------------------------------------%
:- module options.
:- interface.
:- import_module getopt.
:- import_module io.
:- import_module list.
%---------------------------------------------------------------------------%
:- type option
---> help
; verbose
% Debugging options
; dump_action
; dump_first
; dump_follow
; dump_goto
; dump_items
; dump_rules.
:- type options == option_table(option).
:- type maybe_options == maybe_option_table(option).
:- pred parse_options(maybe_options::out, list(string)::out,
io::di, io::uo) is det.
%---------------------------------------------------------------------------%
%---------------------------------------------------------------------------%
:- implementation.
:- import_module bool.
:- import_module char.
%---------------------------------------------------------------------------%
parse_options(MOpts, Args, !IO) :-
io.command_line_arguments(Args0, !IO),
OptionOpts = option_ops_multi(short, long, defaults),
getopt.process_options(OptionOpts, Args0, Args, MOpts0),
MOpts = convert_to_maybe_option_table(MOpts0).
:- pred short(char::in, option::out) is semidet.
short('h', help).
short('v', verbose).
short('a', dump_action).
short('f', dump_first).
short('F', dump_follow).
short('g', dump_goto).
short('i', dump_items).
short('r', dump_rules).
:- pred long(string::in, option::out) is semidet.
long("help", help).
long("verbose", verbose).
long("dump-action", dump_action).
long("dump-first", dump_first).
long("dump-follow", dump_follow).
long("dump-goto", dump_goto).
long("dump-items", dump_items).
long("dump-rules", dump_rules).
:- pred defaults(option::out, option_data::out) is multi.
defaults(help, bool(no)).
defaults(verbose, bool(no)).
defaults(dump_action, bool(no)).
defaults(dump_first, bool(no)).
defaults(dump_follow, bool(no)).
defaults(dump_goto, bool(no)).
defaults(dump_items, bool(no)).
defaults(dump_rules, bool(no)).
%---------------------------------------------------------------------------%
:- end_module options.
%---------------------------------------------------------------------------%