Module: Main::Program::InstanceMethods

Included in:
Main::Program
Defined in:
lib/main/program/instance_methods.rb

Instance Method Summary collapse

Instance Method Details

#abort(message = 'exit') ⇒ Object

Raises:

  • (SystemExit)


201
202
203
# File 'lib/main/program/instance_methods.rb', line 201

def abort(message = 'exit')
  raise SystemExit.new(message)
end

#after_initializeObject



48
# File 'lib/main/program/instance_methods.rb', line 48

def after_initialize() :hook end

#after_parse_parametersObject



176
# File 'lib/main/program/instance_methods.rb', line 176

def after_parse_parameters() :hook end

#after_runObject



184
# File 'lib/main/program/instance_methods.rb', line 184

def after_run() :hook end

#before_initializeObject



41
# File 'lib/main/program/instance_methods.rb', line 41

def before_initialize() :hook end

#before_parse_parametersObject



164
# File 'lib/main/program/instance_methods.rb', line 164

def before_parse_parameters() :hook end

#before_runObject



180
# File 'lib/main/program/instance_methods.rb', line 180

def before_run() :hook end

#fcall(object, method, *argv, &block) ⇒ Object



238
239
240
241
242
243
244
245
246
247
248
# File 'lib/main/program/instance_methods.rb', line 238

def fcall(object, method, *argv, &block)
  method = object.method(method)
  arity = m.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

#finalizeObject



58
59
60
61
# File 'lib/main/program/instance_methods.rb', line 58

def finalize
  @finalizers ||= []
  while((f = @finalizers.pop)); f.call; end
end

#handle_exception(e) ⇒ Object



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
# File 'lib/main/program/instance_methods.rb', line 205

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.message.respond_to?('abort')) or # see main/stdext.rb
              (SystemExit === e and e.message == 'exit'))
      stderr.puts e.message 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(( Integer(exit_status) rescue(exit_status ? 0 : 1) ))
end

#handle_exit(status) ⇒ Object



234
235
236
# File 'lib/main/program/instance_methods.rb', line 234

def handle_exit(status)
  exit(( Integer(status) rescue 1 ))
end

#help!(status = 0) ⇒ Object



192
193
194
195
# File 'lib/main/program/instance_methods.rb', line 192

def help!(status = 0)
  print usage.to_s
  exit(status)
end

#help?Boolean

Returns:

  • (Boolean)


197
198
199
# File 'lib/main/program/instance_methods.rb', line 197

def help?
  (params['help'] and params['help'].given?) or argv.first == 'help'
end

#initializeObject



47
# File 'lib/main/program/instance_methods.rb', line 47

def initialize() :hook end

#instance_eval_block(*argv, &block) ⇒ Object



258
259
260
261
262
263
264
265
# File 'lib/main/program/instance_methods.rb', line 258

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



74
75
76
77
78
79
80
81
82
83
84
85
# File 'lib/main/program/instance_methods.rb', line 74

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_initializeObject



42
43
44
45
46
# File 'lib/main/program/instance_methods.rb', line 42

def main_initialize()
  setup_finalizers
  setup_io_redirection
  setup_logging
end

#modesObject



188
189
190
# File 'lib/main/program/instance_methods.rb', line 188

def modes
  self.class.modes
end

#parse_parametersObject



165
166
167
168
169
170
171
172
173
174
175
# File 'lib/main/program/instance_methods.rb', line 165

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_initializeObject



49
# File 'lib/main/program/instance_methods.rb', line 49

def post_initialize() :hook end

#post_parse_parametersObject



177
# File 'lib/main/program/instance_methods.rb', line 177

def post_parse_parameters() :hook end

#post_runObject



185
# File 'lib/main/program/instance_methods.rb', line 185

def post_run() :hook end

#pre_initializeObject



40
# File 'lib/main/program/instance_methods.rb', line 40

def pre_initialize() :hook end

#pre_parse_parametersObject



163
# File 'lib/main/program/instance_methods.rb', line 163

def pre_parse_parameters() :hook end

#pre_runObject



179
# File 'lib/main/program/instance_methods.rb', line 179

def pre_run() :hook end

#runObject

Raises:

  • (NotImplementedError)


181
182
183
# File 'lib/main/program/instance_methods.rb', line 181

def run
  raise NotImplementedError, 'run not defined'
end

#setup_finalizersObject



51
52
53
54
55
56
# File 'lib/main/program/instance_methods.rb', line 51

def setup_finalizers
  @finalizers ||= []
  ObjectSpace.define_finalizer(self) do
    while((f = finalizers.pop)); f.call; end
  end
end

#setup_io_redirectionObject



63
64
65
66
67
# File 'lib/main/program/instance_methods.rb', line 63

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_restorationObject



87
88
89
90
91
92
93
94
95
96
97
98
# File 'lib/main/program/instance_methods.rb', line 87

def setup_io_restoration
return
  @finalizers ||= []
  [STDIN, STDOUT, STDERR].each do |io|
    dup = io.dup
    @finalizers.push(
      lambda do
        io.reopen(dup)
      end
    )
  end
end

#setup_loggingObject



69
70
71
72
# File 'lib/main/program/instance_methods.rb', line 69

def setup_logging
  log = self.class.logger || stderr
  self.logger = log
end

#stderr=(io) ⇒ Object



143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# File 'lib/main/program/instance_methods.rb', line 143

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



101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# File 'lib/main/program/instance_methods.rb', line 101

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



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# File 'lib/main/program/instance_methods.rb', line 122

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