Module: Main::Program::InstanceMethods
- Included in:
- Main::Program
- Defined in:
- lib/main/program/instance_methods.rb
Instance Method Summary collapse
- #abort(message = 'exit') ⇒ Object
- #after_initialize ⇒ Object
- #after_parse_parameters ⇒ Object
- #after_run ⇒ Object
- #before_initialize ⇒ Object
- #before_parse_parameters ⇒ Object
- #before_run ⇒ Object
- #config(&block) ⇒ Object
- #db(&block) ⇒ Object
- #dotdir(&block) ⇒ Object
- #fcall(object, method, *argv, &block) ⇒ Object
- #finalize ⇒ Object
- #handle_exception(e) ⇒ Object
- #handle_exit(status) ⇒ Object
- #help!(status = 0) ⇒ Object
- #help? ⇒ Boolean
- #initialize ⇒ Object
- #input ⇒ Object
- #instance_eval_block(*argv, &block) ⇒ Object
- #logger=(log) ⇒ Object
- #main_initialize ⇒ Object
- #modes ⇒ Object
- #output ⇒ Object
- #parse_parameters ⇒ Object
- #post_initialize ⇒ Object
- #post_parse_parameters ⇒ Object
- #post_run ⇒ Object
- #pre_initialize ⇒ Object
- #pre_parse_parameters ⇒ Object
- #pre_run ⇒ Object
- #run ⇒ Object
- #setup_finalizers ⇒ Object
- #setup_io_redirection ⇒ Object
- #setup_io_restoration ⇒ Object
- #setup_logging ⇒ Object
- #stderr=(io) ⇒ Object
- #stdin=(io) ⇒ Object
- #stdout=(io) ⇒ Object
Instance Method Details
#abort(message = 'exit') ⇒ Object
202 203 204 |
# File 'lib/main/program/instance_methods.rb', line 202 def abort( = 'exit') raise SystemExit.new() end |
#after_initialize ⇒ Object
49 |
# File 'lib/main/program/instance_methods.rb', line 49 def after_initialize() :hook end |
#after_parse_parameters ⇒ Object
177 |
# File 'lib/main/program/instance_methods.rb', line 177 def after_parse_parameters() :hook end |
#after_run ⇒ Object
185 |
# File 'lib/main/program/instance_methods.rb', line 185 def after_run() :hook end |
#before_initialize ⇒ Object
42 |
# File 'lib/main/program/instance_methods.rb', line 42 def before_initialize() :hook end |
#before_parse_parameters ⇒ Object
165 |
# File 'lib/main/program/instance_methods.rb', line 165 def before_parse_parameters() :hook end |
#before_run ⇒ Object
181 |
# File 'lib/main/program/instance_methods.rb', line 181 def before_run() :hook end |
#config(&block) ⇒ Object
276 277 278 |
# File 'lib/main/program/instance_methods.rb', line 276 def config(&block) self.class.config(&block) end |
#db(&block) ⇒ Object
272 273 274 |
# File 'lib/main/program/instance_methods.rb', line 272 def db(&block) self.class.db(&block) end |
#dotdir(&block) ⇒ Object
268 269 270 |
# File 'lib/main/program/instance_methods.rb', line 268 def dotdir(&block) self.class.dotdir(&block) end |
#fcall(object, method, *argv, &block) ⇒ Object
239 240 241 242 243 244 245 246 247 248 249 |
# File 'lib/main/program/instance_methods.rb', line 239 def fcall(object, method, *argv, &block) method = object.method(method) arity = method.arity if arity >= 0 argv = argv[0, arity] else arity = arity.abs - 1 argv = argv[0, arity] + argv[arity .. -1] end method.call(*argv, &block) end |
#finalize ⇒ Object
60 61 62 63 |
# File 'lib/main/program/instance_methods.rb', line 60 def finalize @finalizers ||= [] while((f = @finalizers.pop)); f.call; end end |
#handle_exception(e) ⇒ Object
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 |
# File 'lib/main/program/instance_methods.rb', line 206 def handle_exception(e) if e.respond_to?(:error_handler_before) fcall(e, :error_handler_before, self) end if e.respond_to?(:error_handler_instead) fcall(e, :error_handler_instead, self) else if e.respond_to?(:status) exit_status(( e.status )) end if Softspoken === e or SystemExit === e quiet = ((SystemExit === e and e..respond_to?('abort')) or # see main/stdext.rb (SystemExit === e and e. == 'exit')) stderr.puts e. unless quiet else fatal{ e } end end if e.respond_to?(:error_handler_after) fcall(e, :error_handler_after, self) end exit_status(( exit_failure )) if exit_status == exit_success exit_status(( Util.integer(exit_status) rescue(exit_status ? 0 : 1) )) end |
#handle_exit(status) ⇒ Object
235 236 237 |
# File 'lib/main/program/instance_methods.rb', line 235 def handle_exit(status) exit(( Integer(status) rescue 1 )) end |
#help!(status = 0) ⇒ Object
193 194 195 196 |
# File 'lib/main/program/instance_methods.rb', line 193 def help!(status = 0) print usage.to_s exit(status) end |
#help? ⇒ Boolean
198 199 200 |
# File 'lib/main/program/instance_methods.rb', line 198 def help? (params['help'] and params['help'].given?) or argv.first == 'help' end |
#initialize ⇒ Object
48 |
# File 'lib/main/program/instance_methods.rb', line 48 def initialize() :hook end |
#input ⇒ Object
280 281 282 |
# File 'lib/main/program/instance_methods.rb', line 280 def input @input ||= params[:input].value if params[:input] end |
#instance_eval_block(*argv, &block) ⇒ Object
259 260 261 262 263 264 265 266 |
# File 'lib/main/program/instance_methods.rb', line 259 def instance_eval_block(*argv, &block) singleton_class = class << self self end singleton_class.module_eval{ define_method('__instance_eval_block', &block) } fcall(self, '__instance_eval_block', *argv, &block) end |
#logger=(log) ⇒ Object
76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/main/program/instance_methods.rb', line 76 def logger= log unless(defined?(@logger) and @logger == log) case log when ::Logger, Logger @logger = log else @logger = Logger.new(*log) @logger.level = logger_level end end @logger end |
#main_initialize ⇒ Object
43 44 45 46 47 |
# File 'lib/main/program/instance_methods.rb', line 43 def main_initialize() setup_finalizers setup_io_redirection setup_logging end |
#modes ⇒ Object
189 190 191 |
# File 'lib/main/program/instance_methods.rb', line 189 def modes self.class.modes end |
#output ⇒ Object
284 285 286 |
# File 'lib/main/program/instance_methods.rb', line 284 def output @output ||= params[:output].value if params[:output] end |
#parse_parameters ⇒ Object
166 167 168 169 170 171 172 173 174 175 176 |
# File 'lib/main/program/instance_methods.rb', line 166 def parse_parameters pre_parse_parameters before_parse_parameters self.class.parameters.parse(self) @params = Parameter::Table.new self.class.parameters.each{|p| @params[p.name.to_s] = p} after_parse_parameters post_parse_parameters end |
#post_initialize ⇒ Object
50 |
# File 'lib/main/program/instance_methods.rb', line 50 def post_initialize() :hook end |
#post_parse_parameters ⇒ Object
178 |
# File 'lib/main/program/instance_methods.rb', line 178 def post_parse_parameters() :hook end |
#post_run ⇒ Object
186 |
# File 'lib/main/program/instance_methods.rb', line 186 def post_run() :hook end |
#pre_initialize ⇒ Object
41 |
# File 'lib/main/program/instance_methods.rb', line 41 def pre_initialize() :hook end |
#pre_parse_parameters ⇒ Object
164 |
# File 'lib/main/program/instance_methods.rb', line 164 def pre_parse_parameters() :hook end |
#pre_run ⇒ Object
180 |
# File 'lib/main/program/instance_methods.rb', line 180 def pre_run() :hook end |
#run ⇒ Object
182 183 184 |
# File 'lib/main/program/instance_methods.rb', line 182 def run raise NotImplementedError, 'run not defined' end |
#setup_finalizers ⇒ Object
52 53 54 55 56 57 58 |
# File 'lib/main/program/instance_methods.rb', line 52 def setup_finalizers @finalizers ||= [] finalizers = @finalizers ObjectSpace.define_finalizer(self) do while((f = finalizers.pop)); f.call; end end end |
#setup_io_redirection ⇒ Object
65 66 67 68 69 |
# File 'lib/main/program/instance_methods.rb', line 65 def setup_io_redirection self.stdin = opts['stdin'] || opts[:stdin] || stdin self.stdout = opts['stdout'] || opts[:stdout] || stdout self.stderr = opts['stderr'] || opts[:stderr] || stderr end |
#setup_io_restoration ⇒ Object
89 90 91 92 93 94 95 96 97 98 99 |
# File 'lib/main/program/instance_methods.rb', line 89 def setup_io_restoration @finalizers ||= [] [STDIN, STDOUT, STDERR].each do |io| dup = io.dup @finalizers.push( lambda do io.reopen(dup) end ) end end |
#setup_logging ⇒ Object
71 72 73 74 |
# File 'lib/main/program/instance_methods.rb', line 71 def setup_logging log = self.class.logger || stderr self.logger = log end |
#stderr=(io) ⇒ Object
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
# File 'lib/main/program/instance_methods.rb', line 144 def stderr= io unless(defined?(@stderr) and (@stderr == io)) @stderr = if io.respond_to?('write') io else fd = open(io.to_s, 'w+') @finalizers.push(lambda{ fd.close }) fd end begin STDERR.reopen(@stderr) rescue $stderr = @stderr ::Object.send(:remove_const, 'STDERR') ::Object.send(:const_set, 'STDERR', @stderr) end end end |
#stdin=(io) ⇒ Object
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
# File 'lib/main/program/instance_methods.rb', line 102 def stdin= io unless(defined?(@stdin) and (@stdin == io)) @stdin = if io.respond_to?('read') io else fd = open(io.to_s, 'r+') @finalizers.push(lambda{ fd.close }) fd end begin STDIN.reopen(@stdin) rescue $stdin = @stdin ::Object.send(:remove_const, 'STDIN') ::Object.send(:const_set, 'STDIN', @stdin) end end end |
#stdout=(io) ⇒ Object
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
# File 'lib/main/program/instance_methods.rb', line 123 def stdout= io unless(defined?(@stdout) and (@stdout == io)) @stdout = if io.respond_to?('write') io else fd = open(io.to_s, 'w+') @finalizers.push(lambda{ fd.close }) fd end begin STDOUT.reopen(@stdout) rescue $stdout = @stdout ::Object.send(:remove_const, 'STDOUT') ::Object.send(:const_set, 'STDOUT', @stdout) end end end |