This file is indexed.

/usr/lib/ruby/1.8/ramaze/tool/bin.rb is in libramaze-ruby1.8 2010.06.18-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 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
123
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
#!/usr/bin/env ruby
### This module offers the functionality to start, stop, restart, create,
### Check status, or run a console of a ramaze application
### see ramaze -h for usage
module Ramaze
  module Tool
    module Bin
      module Helpers # Helper methods {{{

        def default_pidfile # {{{
          return @default_pidfile if @default_pidfile
          require "pathname"
          @default_pidfile = (Pathname.new(".").expand_path.basename.to_s + ".pid").strip
        end # }}}

        # We're really only concerned about win32ole, so we focus our check on its
        # ability to load that
        def is_windows?  # {{{
          return @is_win if @is_win
          begin
            require "win32ole"
          rescue LoadError
          end
          @is_win ||= Object.const_defined?("WIN32OLE")
        end # }}}

        # Find the path to rackup, by searching for -R (undocumented cli argument),
        # then checking RUBYLIB for the _first_ rack it can find there, finally
        # falling back to gems and looking for rackup in the gem bindir.
        # If we can't find rackup we're raising; not even #usage is sane without
        # rackup.
        def rackup_path # {{{
          return @rackup_path if @rackup_path
          # Use the supplied path if the user supplied -R
          if path_supplied = ARGV.delete("-R")
            @rackup_path = ARGV.delete(@ourargs[@ourargs.index("-R") + 1])
            if @rackup_path and File.file?(@rackup_path)
              return @rackup_path
            else
              $stderr.puts "rackup does not exist at #{@rackup_path} (given with -R)"
            end
          end
          # Check with 'which' on platforms which support it
          unless is_windows?
            @rackup_path = %x{which rackup}.to_s.chomp
            if @rackup_path.size > 0 and File.file?(@rackup_path)
              return @rackup_path
            end
          end
          # check for rackup in RUBYLIB
          libs = ENV["RUBYLIB"].to_s.split(is_windows? ? ";" : ":")
          if rack_lib = libs.detect { |r| r.match %r<(\\|/)rack\1> }
            require "pathname"
            @rackup_path = Pathname.new(rack_lib).parent.join("bin").join("rackup").expand_path
            return @rackup_path if File.file?(@rackup_path)
          end
          begin
            require "rubygems"
            require "rack"
            require "pathname"
            @rackup_path = Pathname.new(Gem.bindir).join("rackup").to_s
            return @rackup_path if File.file?(@rackup_path)
          rescue LoadError
            nil
          end
          @rackup_path = nil
          raise "Cannot find path to rackup, please supply full path to rackup with -R"
        end # }}}

        def is_running?(pid) # {{{
          if is_windows?
            wmi = WIN32OLE.connect("winmgmts://")
            processes, ours = wmi.ExecQuery("select * from win32_process where ProcessId = #{pid}"), []
            processes.each { |process| ours << process.Name }
            ours.first.nil?
          else
            begin
              prio = Process.getpriority(Process::PRIO_PROCESS, pid)
              true
            rescue Errno::ESRCH
              false
            end
          end
        end # }}}

        def check_running?(pid_file) # {{{
          return false unless File.file?(pid_file)
          is_running?(File.read(pid_file).to_i)
        end # }}}

        def find_pid(pid_file) # {{{
          if pid_file.nil? or not File.file?(pid_file)
            pid_file = default_pidfile
          end
          unless File.file?(pid_file)
            $stderr.puts "Could not find running process id."
            return false
          end
          pid_file
        end # }}}
      end # End helper methods }}}

      class Cmd # This class contains the command methods {{{
        include Helpers
        attr_accessor :command

        def initialize(args = nil)
          args ||= ARGV
          raise "arguments must be an array!" unless args.respond_to?(:detect)
          @ourargs = args.dup
          @command = args.detect { |arg| arg.match(/^(?:--?)?(?:start|stop|restart|create|h(?:elp)?|v(?:ersion)?|console|status)/) }
          if command.nil?
            @command = ""
          else
            args.delete(@command)
          end
          ARGV.replace(args)
        end

        # {{{ #run is called when we're interactive ($0 == __FILE__)
        def self.run(args = nil)
          cmd = new(args)
          case cmd.command
          when /^(?:--?)?status$/
            cmd.status(cmd.command)
          when /^(?:--?)?restart$/
            cmd.stop(cmd.command)
            cmd.start
          when /^(?:--?)?start$/
            cmd.start
          when /^(?:--?)?create$/
            cmd.create(cmd.command)
          when /^(?:--?)?stop$/
            if cmd.stop(cmd.command)
              puts "Ramazement has ended, go in peace."
              $stdout.flush
            else
              puts "Ramaze failed to stop (or was not running)"
            end
          when /^(?:--?)?console$/
            require "ramaze"
            require "irb"
            require "irb/completion"
            Ramaze.options.started = true
            require "start"
            IRB.start
            puts "Ramazement has ended, go in peace."
          when /^(?:--?)?h(elp)?$/
            puts cmd.usage
          when /^(?:--?)?v(ersion)?$/
            cmd.include_ramaze
            puts Ramaze::VERSION
            exit
          when /^$/
            puts "Must supply a valid command"
            puts cmd.usage
            exit 1
          else
            puts "#{command} not implemented"
            puts cmd.usage
            exit 1
          end
        end # }}}

        def include_ramaze # {{{
          begin
            $:.unshift File.join(File.dirname(__FILE__), '/../lib')
            require 'ramaze'
          rescue LoadError
            $:.shift

            begin
              require 'rubygems'
            rescue LoadError
            end
            require 'ramaze'
          end
        end # }}}

        def usage # {{{
          txt = [
            "\n  Usage:",
            "ramaze <start [PIDFILE]|stop [PIDFILE]|restart [PIDFILE]|status [PIDFILE]|create PROJECT|console> [ruby/rack options]\n",
            "Commands:\n",
            "  * All commands which take an optional PIDFILE (defaults to PROJECT.pid otherwise).",
            "  * All commands which start a ramaze instance will default to webrick on port 7000",
            "    unless you supply the rack options -p/--port PORT and/or * -s/--server SERVER.\n",
            " start   - Starts an instance of this application.\n",
            " stop    - Stops a running instance of this application.\n",
            " restart - Stops running instance of this application, then starts it back up.  Pidfile",
            "           (if supplied) is used for both stop and start.\n",
            " status  - Gives status of a running ramaze instance\n",
            " create  - Creates a new prototype Ramaze application in a directory named PROJECT in",
            "           the current directory.  ramaze create foo would make ./foo containing an",
            "           application prototype. Rack options are ignored here.\n",
            " console - Starts an irb console with app.rb (and irb completion) loaded. This command",
            "           ignores rack options, ARGV is passed on to IRB.\n\n\t"
          ].join("\n\t")

          if is_windows?
            txt << %x{ruby #{rackup_path} --help}.split("\n").reject { |line| line.match(/^Usage:/) }.join("\n\t")
          else
            txt << %x{#{rackup_path} --help}.split("\n").reject { |line| line.match(/^Usage:/) }.join("\n\t")
          end

          txt.gsub(/^\t$/, '')
        end # }}}

        ### Methods for commands {{{
        def start # {{{
          include_ramaze

          # Find the name of this app
          app_name = default_pidfile.sub(/\.pid$/,'')
          rack_args = []

          if daemonize = @ourargs.detect { |arg| arg.match(/^(-[dD]|--daemonize)$/) }
            if pid_arg = @ourargs.detect { |arg| arg.match(/^(-P|--pid)/) }
              puts "User supplied pid: #{pid_arg}"
              pid_file = @ourargs[@ourargs.index(pid_arg) + 1]
              puts "Starting daemon with user defined pidfile: #{pid_file}"
            else
              puts "Starting daemon with default pidfile: #{pid_file = default_pidfile}"
              rack_args += ["-P", pid_file]
            end
            if check_running?(pid_file)
              $stderr.puts "Ramaze is already running with pidfile: #{pid_file}"
              exit 127
            end
          end

          port = Ramaze.options.adapter.port.to_s
          rack_args += ["-p", port   ] if @ourargs.grep(/^(-p|--port)/).empty?

          handler = Ramaze.options.adapter.handler.to_s
          rack_args += ["-s", handler] if @ourargs.grep(/^(-s|--server)/).empty?

          if is_windows?
            exec("ruby", rackup_path.to_s, "config.ru", *(ARGV + rack_args))
          else
            exec(rackup_path.to_s, "config.ru", *(ARGV + rack_args))
          end
        end # }}}

        def create(command) # {{{
          opts = {}
          if forced = @ourargs.detect { |arg| arg.match(/^(--force)/) }
            puts "Overwriting any existing files as requested."
            opts[:force] = true
            @ourargs.delete(forced)
          end
          if amended = @ourargs.detect { |arg| arg.match(/^(--amend)/) }
            puts "Only amending missing files as requested."
            opts[:amend] = true
            @ourargs.delete(amended)
          end
          project_name = @ourargs[@ourargs.index(command) + 1]
          if project_name.nil?
            $stderr.puts "Must supply a project name" if project_name.nil?
            puts usage
            exit 1
          end
          include_ramaze
          require 'ramaze/tool/create'
          Ramaze::Tool::Create.create(project_name, opts)
        end # }}}

        def stop(command) # {{{
          unless pid_file = find_pid(@ourargs[@ourargs.index(command) + 1])
            $stderr.puts "No pid_file found!  Cannot stop ramaze (may not be started)."
            return false
          end
          pid = File.read(pid_file).to_i
          puts "Stopping pid #{pid}"
          Process.kill("INT", pid)
          sleep 2
          if is_running?(pid)
            $stderr.puts "Process #{pid} did not die, forcing it with -9"
            Process.kill(9, pid)
            File.unlink(pid_file) if File.file?(pid_file)
            true
          else
            File.unlink(pid_file) if File.file?(pid_file)
            true
          end
        end # }}}

        def status(command) # {{{
          unless pid_file = find_pid(@ourargs[@ourargs.index(command) + 1])
            $stderr.puts "No pid_file found! Ramaze may not be started."
            exit 1
          end
          puts "Pid file #{pid_file} found, PID is #{pid = File.read(pid_file)}"
          unless is_running?(pid.to_i)
            $stderr.puts "PID #{pid} is not running"
            exit 1
          end
          if is_windows?
            wmi = WIN32OLE.connect("winmgmts://")
            processes, ours = wmi.ExecQuery("select * from win32_process where ProcessId = #{pid}"), []
            processes.each { |p| ours << [p.Name, p.CommandLine, p.VirtualSize, p.CreationDate, p.ExecutablePath, p.Status ] }
            puts "Ramaze is running!\n\tName: %s\n\tCommand Line: %s\n\tVirtual Size: %s\n\tStarted: %s\n\tExec Path: %s\n\tStatus: %s" % ours.first
          else
            require "pathname"
            # Check for /proc
            if File.directory?(proc_dir = Pathname.new("/proc"))
              proc_dir = proc_dir.join(pid)
              # If we have a "stat" file, we'll assume linux and get as much info
              # as we can
              if File.file?(stat_file = proc_dir.join("stat"))
                stats = File.read(stat_file).split
                puts "Ramaze is running!\n\tCommand Line: %s\n\tVirtual Size: %s\n\tStarted: %s\n\tExec Path: %s\n\tStatus: %s" % [
                  File.read(proc_dir.join("cmdline")).split("\000").join(" "),
                  "%s k" % (stats[22].to_f / 1024),
                  File.mtime(proc_dir),
                  File.readlink(proc_dir.join("exe")),
                  stats[2]
                ]
                exit
              end
            end
            # Fallthrough status, just print a ps
            puts "Ramaze process #{pid} is running!"
            begin
              puts %x{ps l #{pid}}
            rescue
              puts "No further information available"
            end
          end
        end # }}}

        ### End of command methods }}}
      end # }}}
    end
  end
end

if $0 == __FILE__
  Ramaze::Tool::Bin::Cmd.run(ARGV)
end