Class: TaskJuggler::Tj3AppBase
Instance Method Summary
collapse
#critical, #debug, #error, #fatal, #info, #warning
Constructor Details
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# File 'lib/taskjuggler/Tj3AppBase.rb', line 30
def initialize
@optsSummaryWidth = 22
@optsSummaryIndent = 5
@silent = false
@configFile = nil
@mandatoryArgs = +''
@mininumRubyVersion = '1.9.2'
Term::ANSIColor.coloring = STDOUT.tty?
MessageHandlerInstance.instance.reset
end
|
Instance Method Details
#main(argv = ARGV) ⇒ Object
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
|
# File 'lib/taskjuggler/Tj3AppBase.rb', line 124
def main(argv = ARGV)
if Gem::Version.new(RUBY_VERSION.dup) <
Gem::Version.new(@mininumRubyVersion)
error('tj3app_ruby_version',
'This program requires at least Ruby version ' +
"#{@mininumRubyVersion}!")
end
intHandler = Kernel.trap('INT') do
begin
fatal('tj3app_user_abort', "Aborting on user request!")
rescue RuntimeError
exit 1
end
end
retVal = 0
begin
args = processArguments(argv)
Kernel.trap('INT', intHandler) if $DEBUG
unless @silent
puts "#{AppConfig.softwareName} v#{AppConfig.version} - " +
"#{AppConfig.packageInfo}\n\n" +
"Copyright (c) #{AppConfig.copyright.join(', ')}\n" +
" by #{AppConfig.authors.join(', ')}\n\n" +
"#{AppConfig.license}\n"
end
@rc = RuntimeConfig.new(AppConfig.packageName, @configFile)
begin
MessageHandlerInstance.instance.trapSetup = true
retVal = appMain(args)
MessageHandlerInstance.instance.trapSetup = false
rescue TjRuntimeError
return 1
end
rescue Exception => e
if e.is_a?(SystemExit) || e.is_a?(Interrupt)
$stderr.puts e.backtrace.join("\n") if $DEBUG
1
else
fatal('crash_trap', "#{e}\n#{e.backtrace.join("\n")}\n\n" +
"#{'*' * 79}\nYou have triggered a bug in " +
"#{AppConfig.softwareName} version #{AppConfig.version}!\n" +
"Please see the user manual on how to get this bug fixed!\n" +
"http://www.taskjuggler.org/tj3/manual/Reporting_Bugs.html#" +
"Reporting_Bugs_and_Feature_Requests\n" +
"#{'*' * 79}\n")
end
end
retVal
end
|
#processArguments(argv) ⇒ Object
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
|
# File 'lib/taskjuggler/Tj3AppBase.rb', line 50
def processArguments(argv)
@opts = OptionParser.new
@opts.summary_width = @optsSummaryWidth
@opts.summary_indent = ' ' * @optsSummaryIndent
@opts.banner = "Copyright (c) #{AppConfig.copyright.join(', ')}\n" +
" by #{AppConfig.authors.join(', ')}\n\n" +
"#{AppConfig.license}\n" +
"For more info about #{AppConfig.softwareName} see " +
"#{AppConfig.contact}\n\n" +
"Usage: #{AppConfig.appName} [options] " +
"#{@mandatoryArgs}\n\n"
@opts.separator "\nOptions:"
@opts.on('-c', '--config <FILE>', String,
format('Use the specified YAML configuration file')) do |arg|
@configFile = arg
end
@opts.on('--silent',
format("Don't show program and progress information")) do
@silent = true
MessageHandlerInstance.instance.outputLevel = :warning
TaskJuggler::Log.silent = true
end
@opts.on('--no-color',
format("Don't use ANSI contol sequences to color the terminal output. Colors should\nonly be used when spooling to an ANSI terminal. In case the detection fails,\nyou can use this option to force colors to be off.\n"
)) do
Term::ANSIColor::coloring = false
end
@opts.on('--debug', format('Enable Ruby debug mode')) do
$DEBUG = true
end
yield
@opts.on_tail('-h', '--help', format('Show this message')) do
puts @opts.to_s
quit
end
@opts.on_tail('--version', format('Show version info')) do
puts "#{AppConfig.appName} (#{AppConfig.softwareName}) #{AppConfig.version}\n"
quit
end
begin
files = @opts.parse(argv)
rescue OptionParser::ParseError => msg
puts @opts.to_s + "\n"
error('tj3app_bad_cmd_options', msg.message)
end
files
end
|