upr 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.gitignore +18 -0
- data/COPYING +339 -0
- data/GIT-VERSION-GEN +40 -0
- data/GNUmakefile +150 -0
- data/LICENSE +55 -0
- data/README +108 -0
- data/Rakefile +119 -0
- data/bin/upr-drb +6 -0
- data/examples/rails_app-2.3.4/Rakefile +10 -0
- data/examples/rails_app-2.3.4/app/controllers/application_controller.rb +3 -0
- data/examples/rails_app-2.3.4/app/controllers/files_controller.rb +41 -0
- data/examples/rails_app-2.3.4/app/helpers/application_helper.rb +3 -0
- data/examples/rails_app-2.3.4/app/models/upr_status.rb +35 -0
- data/examples/rails_app-2.3.4/app/views/files/index.html.erb +66 -0
- data/examples/rails_app-2.3.4/config.ru +3 -0
- data/examples/rails_app-2.3.4/config/boot.rb +110 -0
- data/examples/rails_app-2.3.4/config/database.yml +22 -0
- data/examples/rails_app-2.3.4/config/environment.rb +52 -0
- data/examples/rails_app-2.3.4/config/environments/development.rb +17 -0
- data/examples/rails_app-2.3.4/config/environments/production.rb +28 -0
- data/examples/rails_app-2.3.4/config/environments/test.rb +28 -0
- data/examples/rails_app-2.3.4/config/initializers/new_rails_defaults.rb +21 -0
- data/examples/rails_app-2.3.4/config/routes.rb +43 -0
- data/examples/rails_app-2.3.4/db/.gitignore +2 -0
- data/examples/rails_app-2.3.4/db/migrate/19700000000000_add_upr_status.rb +14 -0
- data/examples/rails_app-2.3.4/db/seeds.rb +7 -0
- data/examples/rails_app-2.3.4/lib/tasks/upr_status.rake +8 -0
- data/examples/rails_app-2.3.4/public/404.html +30 -0
- data/examples/rails_app-2.3.4/public/422.html +30 -0
- data/examples/rails_app-2.3.4/public/500.html +30 -0
- data/examples/rails_app-2.3.4/public/favicon.ico +0 -0
- data/examples/rails_app-2.3.4/public/javascripts/application.js +2 -0
- data/examples/rails_app-2.3.4/public/javascripts/controls.js +963 -0
- data/examples/rails_app-2.3.4/public/javascripts/dragdrop.js +973 -0
- data/examples/rails_app-2.3.4/public/javascripts/effects.js +1128 -0
- data/examples/rails_app-2.3.4/public/javascripts/prototype.js +4320 -0
- data/examples/rails_app-2.3.4/public/javascripts/upr.js +119 -0
- data/examples/rails_app-2.3.4/public/robots.txt +5 -0
- data/examples/rails_app-2.3.4/rainbows_config.rb +13 -0
- data/examples/rails_app-2.3.4/test/test_helper.rb +38 -0
- data/lib/upr.rb +35 -0
- data/lib/upr/input_wrapper.rb +110 -0
- data/lib/upr/monitor.rb +41 -0
- data/local.mk.sample +30 -0
- data/setup.rb +1586 -0
- data/upr.gemspec +40 -0
- metadata +127 -0
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* completely stolen off mongrel_upload_progress and by somebody
|
|
3
|
+
* with little JavaScript interest/knowledge
|
|
4
|
+
*/
|
|
5
|
+
var UploadProgress = {
|
|
6
|
+
uploading: null,
|
|
7
|
+
monitor: function(upid) {
|
|
8
|
+
if(!this.periodicExecuter) {
|
|
9
|
+
this.periodicExecuter = new PeriodicalExecuter(function() {
|
|
10
|
+
if(!UploadProgress.uploading) return;
|
|
11
|
+
new Ajax.Request('/files/progress?upload_id=' + upid);
|
|
12
|
+
}, 3);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
this.uploading = true;
|
|
16
|
+
this.StatusBar.create();
|
|
17
|
+
},
|
|
18
|
+
|
|
19
|
+
update: function(total, current) {
|
|
20
|
+
if(!this.uploading) return;
|
|
21
|
+
if(!total)
|
|
22
|
+
total = 2147483647;
|
|
23
|
+
var status = current / total;
|
|
24
|
+
var statusHTML = status.toPercentage();
|
|
25
|
+
$('results').innerHTML = statusHTML + "<br /><small>" + current.toHumanSize() + ' of ' + total.toHumanSize() + " uploaded.</small>";
|
|
26
|
+
this.StatusBar.update(status, statusHTML);
|
|
27
|
+
},
|
|
28
|
+
|
|
29
|
+
finish: function() {
|
|
30
|
+
this.uploading = false;
|
|
31
|
+
this.StatusBar.finish();
|
|
32
|
+
$('results').innerHTML = 'finished!';
|
|
33
|
+
},
|
|
34
|
+
|
|
35
|
+
cancel: function(msg) {
|
|
36
|
+
if(!this.uploading) return;
|
|
37
|
+
this.uploading = false;
|
|
38
|
+
if(this.StatusBar.statusText) this.StatusBar.statusText.innerHTML = msg || 'canceled';
|
|
39
|
+
},
|
|
40
|
+
|
|
41
|
+
StatusBar: {
|
|
42
|
+
statusBar: null,
|
|
43
|
+
statusText: null,
|
|
44
|
+
statusBarWidth: 500,
|
|
45
|
+
|
|
46
|
+
create: function() {
|
|
47
|
+
this.statusBar = this._createStatus('status-bar');
|
|
48
|
+
this.statusText = this._createStatus('status-text');
|
|
49
|
+
this.statusText.innerHTML = '0%';
|
|
50
|
+
this.statusBar.style.width = '0';
|
|
51
|
+
},
|
|
52
|
+
|
|
53
|
+
update: function(status, statusHTML) {
|
|
54
|
+
this.statusText.innerHTML = statusHTML;
|
|
55
|
+
this.statusBar.style.width = Math.floor(this.statusBarWidth * status);
|
|
56
|
+
},
|
|
57
|
+
|
|
58
|
+
finish: function() {
|
|
59
|
+
this.statusText.innerHTML = '100%';
|
|
60
|
+
this.statusBar.style.width = '100%';
|
|
61
|
+
},
|
|
62
|
+
|
|
63
|
+
_createStatus: function(id) {
|
|
64
|
+
el = $(id);
|
|
65
|
+
if(!el) {
|
|
66
|
+
el = document.createElement('span');
|
|
67
|
+
el.setAttribute('id', id);
|
|
68
|
+
$('progress-bar').appendChild(el);
|
|
69
|
+
}
|
|
70
|
+
return el;
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
|
|
74
|
+
FileField: {
|
|
75
|
+
add: function() {
|
|
76
|
+
new Insertion.Bottom('file-fields', '<p style="display:none"><input id="data" name="data" type="file" /> <a href="#" onclick="UploadProgress.FileField.remove(this);return false;">x</a></p>')
|
|
77
|
+
$$('#file-fields p').last().visualEffect('blind_down', {duration:0.3});
|
|
78
|
+
},
|
|
79
|
+
|
|
80
|
+
remove: function(anchor) {
|
|
81
|
+
anchor.parentNode.visualEffect('drop_out', {duration:0.25});
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
Number.prototype.bytes = function() { return this; };
|
|
87
|
+
Number.prototype.kilobytes = function() { return this * 1024; };
|
|
88
|
+
Number.prototype.megabytes = function() { return this * (1024).kilobytes(); };
|
|
89
|
+
Number.prototype.gigabytes = function() { return this * (1024).megabytes(); };
|
|
90
|
+
Number.prototype.terabytes = function() { return this * (1024).gigabytes(); };
|
|
91
|
+
Number.prototype.petabytes = function() { return this * (1024).terabytes(); };
|
|
92
|
+
Number.prototype.exabytes = function() { return this * (1024).petabytes(); };
|
|
93
|
+
['byte', 'kilobyte', 'megabyte', 'gigabyte', 'terabyte', 'petabyte', 'exabyte'].each(function(meth) {
|
|
94
|
+
Number.prototype[meth] = Number.prototype[meth+'s'];
|
|
95
|
+
});
|
|
96
|
+
|
|
97
|
+
Number.prototype.toPrecision = function() {
|
|
98
|
+
var precision = arguments[0] || 2;
|
|
99
|
+
var s = Math.round(this * Math.pow(10, precision)).toString();
|
|
100
|
+
var pos = s.length - precision;
|
|
101
|
+
var last = s.substr(pos, precision);
|
|
102
|
+
return s.substr(0, pos) + (last.match("^0{" + precision + "}$") ? '' : '.' + last);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
// (1/10).toPercentage()
|
|
106
|
+
// # => '10%'
|
|
107
|
+
Number.prototype.toPercentage = function() {
|
|
108
|
+
return (this * 100).toPrecision() + '%';
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
Number.prototype.toHumanSize = function() {
|
|
112
|
+
if(this < (1).kilobyte()) return this + " Bytes";
|
|
113
|
+
if(this < (1).megabyte()) return (this / (1).kilobyte()).toPrecision() + ' KB';
|
|
114
|
+
if(this < (1).gigabytes()) return (this / (1).megabyte()).toPrecision() + ' MB';
|
|
115
|
+
if(this < (1).terabytes()) return (this / (1).gigabytes()).toPrecision() + ' GB';
|
|
116
|
+
if(this < (1).petabytes()) return (this / (1).terabytes()).toPrecision() + ' TB';
|
|
117
|
+
if(this < (1).exabytes()) return (this / (1).petabytes()).toPrecision() + ' PB';
|
|
118
|
+
return (this / (1).exabytes()).toPrecision() + ' EB';
|
|
119
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# we need thread-safety for Rails with Revactor
|
|
2
|
+
ENV["RAILS_ENV"] = "production"
|
|
3
|
+
|
|
4
|
+
listen 8080
|
|
5
|
+
# we're lazy and are just using the Moneta::Memory store
|
|
6
|
+
worker_processes 1
|
|
7
|
+
Rainbows! do
|
|
8
|
+
use :Revactor
|
|
9
|
+
worker_connections 1000
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
# unclobber the Rails override of the logger formatter :<
|
|
13
|
+
Configurator::DEFAULTS[:logger].formatter = Logger::Formatter.new
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
ENV["RAILS_ENV"] = "test"
|
|
2
|
+
require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
|
|
3
|
+
require 'test_help'
|
|
4
|
+
|
|
5
|
+
class ActiveSupport::TestCase
|
|
6
|
+
# Transactional fixtures accelerate your tests by wrapping each test method
|
|
7
|
+
# in a transaction that's rolled back on completion. This ensures that the
|
|
8
|
+
# test database remains unchanged so your fixtures don't have to be reloaded
|
|
9
|
+
# between every test method. Fewer database queries means faster tests.
|
|
10
|
+
#
|
|
11
|
+
# Read Mike Clark's excellent walkthrough at
|
|
12
|
+
# http://clarkware.com/cgi/blosxom/2005/10/24#Rails10FastTesting
|
|
13
|
+
#
|
|
14
|
+
# Every Active Record database supports transactions except MyISAM tables
|
|
15
|
+
# in MySQL. Turn off transactional fixtures in this case; however, if you
|
|
16
|
+
# don't care one way or the other, switching from MyISAM to InnoDB tables
|
|
17
|
+
# is recommended.
|
|
18
|
+
#
|
|
19
|
+
# The only drawback to using transactional fixtures is when you actually
|
|
20
|
+
# need to test transactions. Since your test is bracketed by a transaction,
|
|
21
|
+
# any transactions started in your code will be automatically rolled back.
|
|
22
|
+
self.use_transactional_fixtures = true
|
|
23
|
+
|
|
24
|
+
# Instantiated fixtures are slow, but give you @david where otherwise you
|
|
25
|
+
# would need people(:david). If you don't want to migrate your existing
|
|
26
|
+
# test cases which use the @david style and don't mind the speed hit (each
|
|
27
|
+
# instantiated fixtures translates to a database query per test method),
|
|
28
|
+
# then set this back to true.
|
|
29
|
+
self.use_instantiated_fixtures = false
|
|
30
|
+
|
|
31
|
+
# Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
|
|
32
|
+
#
|
|
33
|
+
# Note: You'll currently still have to declare fixtures explicitly in integration tests
|
|
34
|
+
# -- they do not yet inherit this setting
|
|
35
|
+
fixtures :all
|
|
36
|
+
|
|
37
|
+
# Add more helper methods to be used by all tests here...
|
|
38
|
+
end
|
data/lib/upr.rb
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# -*- encoding: binary -*-
|
|
2
|
+
|
|
3
|
+
require 'moneta'
|
|
4
|
+
module Upr
|
|
5
|
+
|
|
6
|
+
# Upr version number
|
|
7
|
+
VERSION = '0.1.0'
|
|
8
|
+
|
|
9
|
+
# this is what we store in the Moneta-backed monitor
|
|
10
|
+
class Status < Struct.new(:seen, :length)
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
autoload :Monitor, 'upr/monitor'
|
|
14
|
+
autoload :InputWrapper, 'upr/input_wrapper'
|
|
15
|
+
|
|
16
|
+
# Initializes a new instance of Upr::InputWrapper. Usage in config.ru:
|
|
17
|
+
#
|
|
18
|
+
# use Upr, :path_info => %w(/upload),
|
|
19
|
+
# :drb => "druby://192.168.0.1:666",
|
|
20
|
+
# :frequency => 1
|
|
21
|
+
#
|
|
22
|
+
# This middleware MUST be be loaded before any parameter parsers
|
|
23
|
+
# like ActionController::ParamsParser in Rails.
|
|
24
|
+
#
|
|
25
|
+
# For use in RAILS_ROOT/config/environment.rb, the following
|
|
26
|
+
# works insdie the Rails::Initializer.run block:
|
|
27
|
+
#
|
|
28
|
+
# config.middleware.insert_before('ActionController::ParamsParser',
|
|
29
|
+
# 'Upr', :path_info => '/', :drb => "druby://192.168.0.1:666")
|
|
30
|
+
#
|
|
31
|
+
def self.new(*args)
|
|
32
|
+
InputWrapper.new(*args)
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
end
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
# -*- encoding: binary -*-
|
|
2
|
+
|
|
3
|
+
module Upr
|
|
4
|
+
|
|
5
|
+
# the underlying middlware for for wrapping env["rack.input"],
|
|
6
|
+
# this should typically be installed before other middlewares
|
|
7
|
+
# that may wrap env["rack.input"] in the middleware chain.
|
|
8
|
+
class InputWrapper < Struct.new(:app, :path_info, :frequency, :backend,
|
|
9
|
+
:input, :pos, :seen, :content_length,
|
|
10
|
+
:upload_id, :mtime)
|
|
11
|
+
|
|
12
|
+
def initialize(app, options = {})
|
|
13
|
+
super(app,
|
|
14
|
+
Array(options[:path_info] || nil),
|
|
15
|
+
options[:frequency] || 3,
|
|
16
|
+
options[:backend])
|
|
17
|
+
|
|
18
|
+
# support :drb for compatibility with mongrel_upload_progress
|
|
19
|
+
if options[:drb]
|
|
20
|
+
backend and raise ArgumentError, ":backend and :drb are incompatible"
|
|
21
|
+
require 'drb'
|
|
22
|
+
DRb.start_service
|
|
23
|
+
self.backend = DRbObject.new(nil, options[:drb])
|
|
24
|
+
elsif String === backend
|
|
25
|
+
# allow people to use strings in case their backend gets
|
|
26
|
+
# lazy-loaded (like an ActiveRecord model)
|
|
27
|
+
self.backend = eval(backend)
|
|
28
|
+
else
|
|
29
|
+
self.backend ||= Upr::Monitor.new
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
def call(env)
|
|
34
|
+
if path_info.empty? || path_info.include?(env["PATH_INFO"])
|
|
35
|
+
# benefit curl users...
|
|
36
|
+
/\A100-continue\z/i =~ env['HTTP_EXPECT'] and return [ 100, {}, [] ]
|
|
37
|
+
|
|
38
|
+
length = env["CONTENT_LENGTH"] and length = length.to_i
|
|
39
|
+
env["TRANSFER_ENCODING"] =~ %r{\Achunked\z}i and length = nil
|
|
40
|
+
if length.nil? || length > 0
|
|
41
|
+
req = Rack::Request.new(env)
|
|
42
|
+
|
|
43
|
+
# can't blindly parse params here since we don't want to read
|
|
44
|
+
# the POST body if there is one, so only parse stuff in the
|
|
45
|
+
# query string...
|
|
46
|
+
if uid = req.GET["upload_id"]
|
|
47
|
+
return dup._call(env, uid, length)
|
|
48
|
+
end
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
app.call(env)
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
def _call(env, uid, length)
|
|
55
|
+
self.upload_id = env["upr.upload_id"] = uid
|
|
56
|
+
self.mtime = self.pos = self.seen = 0
|
|
57
|
+
self.input = env["rack.input"]
|
|
58
|
+
env["rack.input"] = self
|
|
59
|
+
self.content_length = length
|
|
60
|
+
backend.start(upload_id, length)
|
|
61
|
+
|
|
62
|
+
app.call(env)
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
def _incr(nr)
|
|
66
|
+
self.pos += nr
|
|
67
|
+
if (nr = pos - seen) > 0 && mtime <= (Time.now.to_i - frequency)
|
|
68
|
+
backend.incr(upload_id, nr)
|
|
69
|
+
self.seen = pos
|
|
70
|
+
self.mtime = Time.now.to_i
|
|
71
|
+
end
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
def size
|
|
75
|
+
rv = input.size
|
|
76
|
+
|
|
77
|
+
# we had an unknown length and just had to read in everything to get it
|
|
78
|
+
if content_length.nil?
|
|
79
|
+
_incr(rv - seen)
|
|
80
|
+
self.content_length = rv
|
|
81
|
+
end
|
|
82
|
+
rv
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
def rewind
|
|
86
|
+
self.pos = 0
|
|
87
|
+
input.rewind
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
def gets
|
|
91
|
+
rv = input.gets
|
|
92
|
+
_incr(rv.size) unless rv.nil?
|
|
93
|
+
rv
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
def read(*args)
|
|
97
|
+
rv = input.read(*args)
|
|
98
|
+
_incr(rv.size) unless rv.nil?
|
|
99
|
+
rv
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
def each(&block)
|
|
103
|
+
input.each do |chunk| # usually just a line
|
|
104
|
+
_incr(chunk.size)
|
|
105
|
+
yield chunk
|
|
106
|
+
end
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
end
|
|
110
|
+
end
|
data/lib/upr/monitor.rb
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# -*- encoding: binary -*-
|
|
2
|
+
module Upr
|
|
3
|
+
|
|
4
|
+
# Keeps track of the status of all currently processing uploads
|
|
5
|
+
# This uses any {Moneta}[http://github.com/wycats/moneta]
|
|
6
|
+
# store to monitor upload progress.
|
|
7
|
+
#
|
|
8
|
+
# Usage (in config.ru with Moneta::Memory store):
|
|
9
|
+
# require 'upr'
|
|
10
|
+
# require 'moneta/memory'
|
|
11
|
+
# use Upr, :backend => Upr::MonetaMonitor.new(Moneta::Memory.new)
|
|
12
|
+
# run YourApplication.new
|
|
13
|
+
class Monitor < Struct.new(:moneta)
|
|
14
|
+
# nuke anything not read/updated in 10 seconds
|
|
15
|
+
OPT = { :expires_in => 10 }
|
|
16
|
+
|
|
17
|
+
def initialize(moneta_store = nil)
|
|
18
|
+
super
|
|
19
|
+
if moneta_store.nil?
|
|
20
|
+
require 'moneta/memory' # moneta does not autoload :<
|
|
21
|
+
self.moneta = Moneta::Memory.new
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
def start(upid, length)
|
|
26
|
+
moneta.store(upid, Status.new(0, length), OPT)
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
def read(upid)
|
|
30
|
+
moneta.update_key(upid, OPT)
|
|
31
|
+
moneta[upid]
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
def incr(upid, nr)
|
|
35
|
+
status = moneta[upid]
|
|
36
|
+
status.seen += nr
|
|
37
|
+
moneta.store(upid, status, OPT)
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
end
|
|
41
|
+
end
|
data/local.mk.sample
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# this is the local.mk file used by Eric Wong on his dev boxes.
|
|
2
|
+
# GNUmakefile will source local.mk in the top-level source tree
|
|
3
|
+
# if it is present.
|
|
4
|
+
#
|
|
5
|
+
# This is depends on a bunch of GNU-isms from bash, sed, touch.
|
|
6
|
+
|
|
7
|
+
latest: NEWS
|
|
8
|
+
@awk 'BEGIN{RS="=== ";ORS=""}NR==2{sub(/\n$$/,"");print RS""$$0 }' $<
|
|
9
|
+
|
|
10
|
+
# publishes docs to http://upr.bogomips.org
|
|
11
|
+
publish_doc:
|
|
12
|
+
-git set-file-times
|
|
13
|
+
$(RM) -r doc
|
|
14
|
+
$(MAKE) doc
|
|
15
|
+
$(MAKE) -s latest > doc/LATEST
|
|
16
|
+
find doc/images doc/js -type f | \
|
|
17
|
+
TZ=UTC xargs touch -d '1970-01-01 00:00:00' doc/rdoc.css
|
|
18
|
+
$(MAKE) doc_gz
|
|
19
|
+
chmod 644 $$(find doc -type f)
|
|
20
|
+
rsync -av --delete doc/ dcvr:/srv/upr/
|
|
21
|
+
git ls-files | xargs touch
|
|
22
|
+
|
|
23
|
+
# Create gzip variants of the same timestamp as the original so nginx
|
|
24
|
+
# "gzip_static on" can serve the gzipped versions directly.
|
|
25
|
+
doc_gz: suf := html js css
|
|
26
|
+
doc_gz: docs = $(shell find doc -type f ! -regex '^.*\.\(gif\|jpg\|png\|gz\)$$')
|
|
27
|
+
doc_gz:
|
|
28
|
+
touch doc/NEWS.atom.xml -d "$$(awk 'NR==1{print $$4,$$5,$$6}' NEWS)"
|
|
29
|
+
for i in $(docs); do \
|
|
30
|
+
gzip --rsyncable -9 < $$i > $$i.gz; touch -r $$i $$i.gz; done
|
data/setup.rb
ADDED
|
@@ -0,0 +1,1586 @@
|
|
|
1
|
+
# -*- encoding: binary -*-
|
|
2
|
+
#
|
|
3
|
+
# setup.rb
|
|
4
|
+
#
|
|
5
|
+
# Copyright (c) 2000-2005 Minero Aoki
|
|
6
|
+
#
|
|
7
|
+
# This program is free software.
|
|
8
|
+
# You can distribute/modify this program under the terms of
|
|
9
|
+
# the GNU LGPL, Lesser General Public License version 2.1.
|
|
10
|
+
#
|
|
11
|
+
|
|
12
|
+
unless Enumerable.method_defined?(:map) # Ruby 1.4.6
|
|
13
|
+
module Enumerable
|
|
14
|
+
alias map collect
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
unless File.respond_to?(:read) # Ruby 1.6
|
|
19
|
+
def File.read(fname)
|
|
20
|
+
open(fname) {|f|
|
|
21
|
+
return f.read
|
|
22
|
+
}
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
unless Errno.const_defined?(:ENOTEMPTY) # Windows?
|
|
27
|
+
module Errno
|
|
28
|
+
class ENOTEMPTY
|
|
29
|
+
# We do not raise this exception, implementation is not needed.
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
def File.binread(fname)
|
|
35
|
+
open(fname, 'rb') {|f|
|
|
36
|
+
return f.read
|
|
37
|
+
}
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
# for corrupted Windows' stat(2)
|
|
41
|
+
def File.dir?(path)
|
|
42
|
+
File.directory?((path[-1,1] == '/') ? path : path + '/')
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
class ConfigTable
|
|
47
|
+
|
|
48
|
+
include Enumerable
|
|
49
|
+
|
|
50
|
+
def initialize(rbconfig)
|
|
51
|
+
@rbconfig = rbconfig
|
|
52
|
+
@items = []
|
|
53
|
+
@table = {}
|
|
54
|
+
# options
|
|
55
|
+
@install_prefix = nil
|
|
56
|
+
@config_opt = nil
|
|
57
|
+
@verbose = true
|
|
58
|
+
@no_harm = false
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
attr_accessor :install_prefix
|
|
62
|
+
attr_accessor :config_opt
|
|
63
|
+
|
|
64
|
+
attr_writer :verbose
|
|
65
|
+
|
|
66
|
+
def verbose?
|
|
67
|
+
@verbose
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
attr_writer :no_harm
|
|
71
|
+
|
|
72
|
+
def no_harm?
|
|
73
|
+
@no_harm
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
def [](key)
|
|
77
|
+
lookup(key).resolve(self)
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
def []=(key, val)
|
|
81
|
+
lookup(key).set val
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
def names
|
|
85
|
+
@items.map {|i| i.name }
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
def each(&block)
|
|
89
|
+
@items.each(&block)
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
def key?(name)
|
|
93
|
+
@table.key?(name)
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
def lookup(name)
|
|
97
|
+
@table[name] or setup_rb_error "no such config item: #{name}"
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
def add(item)
|
|
101
|
+
@items.push item
|
|
102
|
+
@table[item.name] = item
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
def remove(name)
|
|
106
|
+
item = lookup(name)
|
|
107
|
+
@items.delete_if {|i| i.name == name }
|
|
108
|
+
@table.delete_if {|name, i| i.name == name }
|
|
109
|
+
item
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
def load_script(path, inst = nil)
|
|
113
|
+
if File.file?(path)
|
|
114
|
+
MetaConfigEnvironment.new(self, inst).instance_eval File.read(path), path
|
|
115
|
+
end
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
def savefile
|
|
119
|
+
'.config'
|
|
120
|
+
end
|
|
121
|
+
|
|
122
|
+
def load_savefile
|
|
123
|
+
begin
|
|
124
|
+
File.foreach(savefile()) do |line|
|
|
125
|
+
k, v = *line.split(/=/, 2)
|
|
126
|
+
self[k] = v.strip
|
|
127
|
+
end
|
|
128
|
+
rescue Errno::ENOENT
|
|
129
|
+
setup_rb_error $!.message + "\n#{File.basename($0)} config first"
|
|
130
|
+
end
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
def save
|
|
134
|
+
@items.each {|i| i.value }
|
|
135
|
+
File.open(savefile(), 'w') {|f|
|
|
136
|
+
@items.each do |i|
|
|
137
|
+
f.printf "%s=%s\n", i.name, i.value if i.value? and i.value
|
|
138
|
+
end
|
|
139
|
+
}
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
def load_standard_entries
|
|
143
|
+
standard_entries(@rbconfig).each do |ent|
|
|
144
|
+
add ent
|
|
145
|
+
end
|
|
146
|
+
end
|
|
147
|
+
|
|
148
|
+
def standard_entries(rbconfig)
|
|
149
|
+
c = rbconfig
|
|
150
|
+
|
|
151
|
+
rubypath = File.join(c['bindir'], c['ruby_install_name'] + c['EXEEXT'])
|
|
152
|
+
|
|
153
|
+
major = c['MAJOR'].to_i
|
|
154
|
+
minor = c['MINOR'].to_i
|
|
155
|
+
teeny = c['TEENY'].to_i
|
|
156
|
+
version = "#{major}.#{minor}"
|
|
157
|
+
|
|
158
|
+
# ruby ver. >= 1.4.4?
|
|
159
|
+
newpath_p = ((major >= 2) or
|
|
160
|
+
((major == 1) and
|
|
161
|
+
((minor >= 5) or
|
|
162
|
+
((minor == 4) and (teeny >= 4)))))
|
|
163
|
+
|
|
164
|
+
if c['rubylibdir']
|
|
165
|
+
# V > 1.6.3
|
|
166
|
+
libruby = "#{c['prefix']}/lib/ruby"
|
|
167
|
+
librubyver = c['rubylibdir']
|
|
168
|
+
librubyverarch = c['archdir']
|
|
169
|
+
siteruby = c['sitedir']
|
|
170
|
+
siterubyver = c['sitelibdir']
|
|
171
|
+
siterubyverarch = c['sitearchdir']
|
|
172
|
+
elsif newpath_p
|
|
173
|
+
# 1.4.4 <= V <= 1.6.3
|
|
174
|
+
libruby = "#{c['prefix']}/lib/ruby"
|
|
175
|
+
librubyver = "#{c['prefix']}/lib/ruby/#{version}"
|
|
176
|
+
librubyverarch = "#{c['prefix']}/lib/ruby/#{version}/#{c['arch']}"
|
|
177
|
+
siteruby = c['sitedir']
|
|
178
|
+
siterubyver = "$siteruby/#{version}"
|
|
179
|
+
siterubyverarch = "$siterubyver/#{c['arch']}"
|
|
180
|
+
else
|
|
181
|
+
# V < 1.4.4
|
|
182
|
+
libruby = "#{c['prefix']}/lib/ruby"
|
|
183
|
+
librubyver = "#{c['prefix']}/lib/ruby/#{version}"
|
|
184
|
+
librubyverarch = "#{c['prefix']}/lib/ruby/#{version}/#{c['arch']}"
|
|
185
|
+
siteruby = "#{c['prefix']}/lib/ruby/#{version}/site_ruby"
|
|
186
|
+
siterubyver = siteruby
|
|
187
|
+
siterubyverarch = "$siterubyver/#{c['arch']}"
|
|
188
|
+
end
|
|
189
|
+
parameterize = lambda {|path|
|
|
190
|
+
path.sub(/\A#{Regexp.quote(c['prefix'])}/, '$prefix')
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
if arg = c['configure_args'].split.detect {|arg| /--with-make-prog=/ =~ arg }
|
|
194
|
+
makeprog = arg.sub(/'/, '').split(/=/, 2)[1]
|
|
195
|
+
else
|
|
196
|
+
makeprog = 'make'
|
|
197
|
+
end
|
|
198
|
+
|
|
199
|
+
[
|
|
200
|
+
ExecItem.new('installdirs', 'std/site/home',
|
|
201
|
+
'std: install under libruby; site: install under site_ruby; home: install under $HOME')\
|
|
202
|
+
{|val, table|
|
|
203
|
+
case val
|
|
204
|
+
when 'std'
|
|
205
|
+
table['rbdir'] = '$librubyver'
|
|
206
|
+
table['sodir'] = '$librubyverarch'
|
|
207
|
+
when 'site'
|
|
208
|
+
table['rbdir'] = '$siterubyver'
|
|
209
|
+
table['sodir'] = '$siterubyverarch'
|
|
210
|
+
when 'home'
|
|
211
|
+
setup_rb_error '$HOME was not set' unless ENV['HOME']
|
|
212
|
+
table['prefix'] = ENV['HOME']
|
|
213
|
+
table['rbdir'] = '$libdir/ruby'
|
|
214
|
+
table['sodir'] = '$libdir/ruby'
|
|
215
|
+
end
|
|
216
|
+
},
|
|
217
|
+
PathItem.new('prefix', 'path', c['prefix'],
|
|
218
|
+
'path prefix of target environment'),
|
|
219
|
+
PathItem.new('bindir', 'path', parameterize.call(c['bindir']),
|
|
220
|
+
'the directory for commands'),
|
|
221
|
+
PathItem.new('libdir', 'path', parameterize.call(c['libdir']),
|
|
222
|
+
'the directory for libraries'),
|
|
223
|
+
PathItem.new('datadir', 'path', parameterize.call(c['datadir']),
|
|
224
|
+
'the directory for shared data'),
|
|
225
|
+
PathItem.new('mandir', 'path', parameterize.call(c['mandir']),
|
|
226
|
+
'the directory for man pages'),
|
|
227
|
+
PathItem.new('sysconfdir', 'path', parameterize.call(c['sysconfdir']),
|
|
228
|
+
'the directory for system configuration files'),
|
|
229
|
+
PathItem.new('localstatedir', 'path', parameterize.call(c['localstatedir']),
|
|
230
|
+
'the directory for local state data'),
|
|
231
|
+
PathItem.new('libruby', 'path', libruby,
|
|
232
|
+
'the directory for ruby libraries'),
|
|
233
|
+
PathItem.new('librubyver', 'path', librubyver,
|
|
234
|
+
'the directory for standard ruby libraries'),
|
|
235
|
+
PathItem.new('librubyverarch', 'path', librubyverarch,
|
|
236
|
+
'the directory for standard ruby extensions'),
|
|
237
|
+
PathItem.new('siteruby', 'path', siteruby,
|
|
238
|
+
'the directory for version-independent aux ruby libraries'),
|
|
239
|
+
PathItem.new('siterubyver', 'path', siterubyver,
|
|
240
|
+
'the directory for aux ruby libraries'),
|
|
241
|
+
PathItem.new('siterubyverarch', 'path', siterubyverarch,
|
|
242
|
+
'the directory for aux ruby binaries'),
|
|
243
|
+
PathItem.new('rbdir', 'path', '$siterubyver',
|
|
244
|
+
'the directory for ruby scripts'),
|
|
245
|
+
PathItem.new('sodir', 'path', '$siterubyverarch',
|
|
246
|
+
'the directory for ruby extentions'),
|
|
247
|
+
PathItem.new('rubypath', 'path', rubypath,
|
|
248
|
+
'the path to set to #! line'),
|
|
249
|
+
ProgramItem.new('rubyprog', 'name', rubypath,
|
|
250
|
+
'the ruby program using for installation'),
|
|
251
|
+
ProgramItem.new('makeprog', 'name', makeprog,
|
|
252
|
+
'the make program to compile ruby extentions'),
|
|
253
|
+
SelectItem.new('shebang', 'all/ruby/never', 'ruby',
|
|
254
|
+
'shebang line (#!) editing mode'),
|
|
255
|
+
BoolItem.new('without-ext', 'yes/no', 'no',
|
|
256
|
+
'does not compile/install ruby extentions')
|
|
257
|
+
]
|
|
258
|
+
end
|
|
259
|
+
private :standard_entries
|
|
260
|
+
|
|
261
|
+
def load_multipackage_entries
|
|
262
|
+
multipackage_entries().each do |ent|
|
|
263
|
+
add ent
|
|
264
|
+
end
|
|
265
|
+
end
|
|
266
|
+
|
|
267
|
+
def multipackage_entries
|
|
268
|
+
[
|
|
269
|
+
PackageSelectionItem.new('with', 'name,name...', '', 'ALL',
|
|
270
|
+
'package names that you want to install'),
|
|
271
|
+
PackageSelectionItem.new('without', 'name,name...', '', 'NONE',
|
|
272
|
+
'package names that you do not want to install')
|
|
273
|
+
]
|
|
274
|
+
end
|
|
275
|
+
private :multipackage_entries
|
|
276
|
+
|
|
277
|
+
ALIASES = {
|
|
278
|
+
'std-ruby' => 'librubyver',
|
|
279
|
+
'stdruby' => 'librubyver',
|
|
280
|
+
'rubylibdir' => 'librubyver',
|
|
281
|
+
'archdir' => 'librubyverarch',
|
|
282
|
+
'site-ruby-common' => 'siteruby', # For backward compatibility
|
|
283
|
+
'site-ruby' => 'siterubyver', # For backward compatibility
|
|
284
|
+
'bin-dir' => 'bindir',
|
|
285
|
+
'bin-dir' => 'bindir',
|
|
286
|
+
'rb-dir' => 'rbdir',
|
|
287
|
+
'so-dir' => 'sodir',
|
|
288
|
+
'data-dir' => 'datadir',
|
|
289
|
+
'ruby-path' => 'rubypath',
|
|
290
|
+
'ruby-prog' => 'rubyprog',
|
|
291
|
+
'ruby' => 'rubyprog',
|
|
292
|
+
'make-prog' => 'makeprog',
|
|
293
|
+
'make' => 'makeprog'
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
def fixup
|
|
297
|
+
ALIASES.each do |ali, name|
|
|
298
|
+
@table[ali] = @table[name]
|
|
299
|
+
end
|
|
300
|
+
@items.freeze
|
|
301
|
+
@table.freeze
|
|
302
|
+
@options_re = /\A--(#{@table.keys.join('|')})(?:=(.*))?\z/
|
|
303
|
+
end
|
|
304
|
+
|
|
305
|
+
def parse_opt(opt)
|
|
306
|
+
m = @options_re.match(opt) or setup_rb_error "config: unknown option #{opt}"
|
|
307
|
+
m.to_a[1,2]
|
|
308
|
+
end
|
|
309
|
+
|
|
310
|
+
def dllext
|
|
311
|
+
@rbconfig['DLEXT']
|
|
312
|
+
end
|
|
313
|
+
|
|
314
|
+
def value_config?(name)
|
|
315
|
+
lookup(name).value?
|
|
316
|
+
end
|
|
317
|
+
|
|
318
|
+
class Item
|
|
319
|
+
def initialize(name, template, default, desc)
|
|
320
|
+
@name = name.freeze
|
|
321
|
+
@template = template
|
|
322
|
+
@value = default
|
|
323
|
+
@default = default
|
|
324
|
+
@description = desc
|
|
325
|
+
end
|
|
326
|
+
|
|
327
|
+
attr_reader :name
|
|
328
|
+
attr_reader :description
|
|
329
|
+
|
|
330
|
+
attr_accessor :default
|
|
331
|
+
alias help_default default
|
|
332
|
+
|
|
333
|
+
def help_opt
|
|
334
|
+
"--#{@name}=#{@template}"
|
|
335
|
+
end
|
|
336
|
+
|
|
337
|
+
def value?
|
|
338
|
+
true
|
|
339
|
+
end
|
|
340
|
+
|
|
341
|
+
def value
|
|
342
|
+
@value
|
|
343
|
+
end
|
|
344
|
+
|
|
345
|
+
def resolve(table)
|
|
346
|
+
@value.gsub(%r<\$([^/]+)>) { table[$1] }
|
|
347
|
+
end
|
|
348
|
+
|
|
349
|
+
def set(val)
|
|
350
|
+
@value = check(val)
|
|
351
|
+
end
|
|
352
|
+
|
|
353
|
+
private
|
|
354
|
+
|
|
355
|
+
def check(val)
|
|
356
|
+
setup_rb_error "config: --#{name} requires argument" unless val
|
|
357
|
+
val
|
|
358
|
+
end
|
|
359
|
+
end
|
|
360
|
+
|
|
361
|
+
class BoolItem < Item
|
|
362
|
+
def config_type
|
|
363
|
+
'bool'
|
|
364
|
+
end
|
|
365
|
+
|
|
366
|
+
def help_opt
|
|
367
|
+
"--#{@name}"
|
|
368
|
+
end
|
|
369
|
+
|
|
370
|
+
private
|
|
371
|
+
|
|
372
|
+
def check(val)
|
|
373
|
+
return 'yes' unless val
|
|
374
|
+
case val
|
|
375
|
+
when /\Ay(es)?\z/i, /\At(rue)?\z/i then 'yes'
|
|
376
|
+
when /\An(o)?\z/i, /\Af(alse)\z/i then 'no'
|
|
377
|
+
else
|
|
378
|
+
setup_rb_error "config: --#{@name} accepts only yes/no for argument"
|
|
379
|
+
end
|
|
380
|
+
end
|
|
381
|
+
end
|
|
382
|
+
|
|
383
|
+
class PathItem < Item
|
|
384
|
+
def config_type
|
|
385
|
+
'path'
|
|
386
|
+
end
|
|
387
|
+
|
|
388
|
+
private
|
|
389
|
+
|
|
390
|
+
def check(path)
|
|
391
|
+
setup_rb_error "config: --#{@name} requires argument" unless path
|
|
392
|
+
path[0,1] == '$' ? path : File.expand_path(path)
|
|
393
|
+
end
|
|
394
|
+
end
|
|
395
|
+
|
|
396
|
+
class ProgramItem < Item
|
|
397
|
+
def config_type
|
|
398
|
+
'program'
|
|
399
|
+
end
|
|
400
|
+
end
|
|
401
|
+
|
|
402
|
+
class SelectItem < Item
|
|
403
|
+
def initialize(name, selection, default, desc)
|
|
404
|
+
super
|
|
405
|
+
@ok = selection.split('/')
|
|
406
|
+
end
|
|
407
|
+
|
|
408
|
+
def config_type
|
|
409
|
+
'select'
|
|
410
|
+
end
|
|
411
|
+
|
|
412
|
+
private
|
|
413
|
+
|
|
414
|
+
def check(val)
|
|
415
|
+
unless @ok.include?(val.strip)
|
|
416
|
+
setup_rb_error "config: use --#{@name}=#{@template} (#{val})"
|
|
417
|
+
end
|
|
418
|
+
val.strip
|
|
419
|
+
end
|
|
420
|
+
end
|
|
421
|
+
|
|
422
|
+
class ExecItem < Item
|
|
423
|
+
def initialize(name, selection, desc, &block)
|
|
424
|
+
super name, selection, nil, desc
|
|
425
|
+
@ok = selection.split('/')
|
|
426
|
+
@action = block
|
|
427
|
+
end
|
|
428
|
+
|
|
429
|
+
def config_type
|
|
430
|
+
'exec'
|
|
431
|
+
end
|
|
432
|
+
|
|
433
|
+
def value?
|
|
434
|
+
false
|
|
435
|
+
end
|
|
436
|
+
|
|
437
|
+
def resolve(table)
|
|
438
|
+
setup_rb_error "$#{name()} wrongly used as option value"
|
|
439
|
+
end
|
|
440
|
+
|
|
441
|
+
undef set
|
|
442
|
+
|
|
443
|
+
def evaluate(val, table)
|
|
444
|
+
v = val.strip.downcase
|
|
445
|
+
unless @ok.include?(v)
|
|
446
|
+
setup_rb_error "invalid option --#{@name}=#{val} (use #{@template})"
|
|
447
|
+
end
|
|
448
|
+
@action.call v, table
|
|
449
|
+
end
|
|
450
|
+
end
|
|
451
|
+
|
|
452
|
+
class PackageSelectionItem < Item
|
|
453
|
+
def initialize(name, template, default, help_default, desc)
|
|
454
|
+
super name, template, default, desc
|
|
455
|
+
@help_default = help_default
|
|
456
|
+
end
|
|
457
|
+
|
|
458
|
+
attr_reader :help_default
|
|
459
|
+
|
|
460
|
+
def config_type
|
|
461
|
+
'package'
|
|
462
|
+
end
|
|
463
|
+
|
|
464
|
+
private
|
|
465
|
+
|
|
466
|
+
def check(val)
|
|
467
|
+
unless File.dir?("packages/#{val}")
|
|
468
|
+
setup_rb_error "config: no such package: #{val}"
|
|
469
|
+
end
|
|
470
|
+
val
|
|
471
|
+
end
|
|
472
|
+
end
|
|
473
|
+
|
|
474
|
+
class MetaConfigEnvironment
|
|
475
|
+
def initialize(config, installer)
|
|
476
|
+
@config = config
|
|
477
|
+
@installer = installer
|
|
478
|
+
end
|
|
479
|
+
|
|
480
|
+
def config_names
|
|
481
|
+
@config.names
|
|
482
|
+
end
|
|
483
|
+
|
|
484
|
+
def config?(name)
|
|
485
|
+
@config.key?(name)
|
|
486
|
+
end
|
|
487
|
+
|
|
488
|
+
def bool_config?(name)
|
|
489
|
+
@config.lookup(name).config_type == 'bool'
|
|
490
|
+
end
|
|
491
|
+
|
|
492
|
+
def path_config?(name)
|
|
493
|
+
@config.lookup(name).config_type == 'path'
|
|
494
|
+
end
|
|
495
|
+
|
|
496
|
+
def value_config?(name)
|
|
497
|
+
@config.lookup(name).config_type != 'exec'
|
|
498
|
+
end
|
|
499
|
+
|
|
500
|
+
def add_config(item)
|
|
501
|
+
@config.add item
|
|
502
|
+
end
|
|
503
|
+
|
|
504
|
+
def add_bool_config(name, default, desc)
|
|
505
|
+
@config.add BoolItem.new(name, 'yes/no', default ? 'yes' : 'no', desc)
|
|
506
|
+
end
|
|
507
|
+
|
|
508
|
+
def add_path_config(name, default, desc)
|
|
509
|
+
@config.add PathItem.new(name, 'path', default, desc)
|
|
510
|
+
end
|
|
511
|
+
|
|
512
|
+
def set_config_default(name, default)
|
|
513
|
+
@config.lookup(name).default = default
|
|
514
|
+
end
|
|
515
|
+
|
|
516
|
+
def remove_config(name)
|
|
517
|
+
@config.remove(name)
|
|
518
|
+
end
|
|
519
|
+
|
|
520
|
+
# For only multipackage
|
|
521
|
+
def packages
|
|
522
|
+
raise '[setup.rb fatal] multi-package metaconfig API packages() called for single-package; contact application package vendor' unless @installer
|
|
523
|
+
@installer.packages
|
|
524
|
+
end
|
|
525
|
+
|
|
526
|
+
# For only multipackage
|
|
527
|
+
def declare_packages(list)
|
|
528
|
+
raise '[setup.rb fatal] multi-package metaconfig API declare_packages() called for single-package; contact application package vendor' unless @installer
|
|
529
|
+
@installer.packages = list
|
|
530
|
+
end
|
|
531
|
+
end
|
|
532
|
+
|
|
533
|
+
end # class ConfigTable
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
# This module requires: #verbose?, #no_harm?
|
|
537
|
+
module FileOperations
|
|
538
|
+
|
|
539
|
+
def mkdir_p(dirname, prefix = nil)
|
|
540
|
+
dirname = prefix + File.expand_path(dirname) if prefix
|
|
541
|
+
$stderr.puts "mkdir -p #{dirname}" if verbose?
|
|
542
|
+
return if no_harm?
|
|
543
|
+
|
|
544
|
+
# Does not check '/', it's too abnormal.
|
|
545
|
+
dirs = File.expand_path(dirname).split(%r<(?=/)>)
|
|
546
|
+
if /\A[a-z]:\z/i =~ dirs[0]
|
|
547
|
+
disk = dirs.shift
|
|
548
|
+
dirs[0] = disk + dirs[0]
|
|
549
|
+
end
|
|
550
|
+
dirs.each_index do |idx|
|
|
551
|
+
path = dirs[0..idx].join('')
|
|
552
|
+
Dir.mkdir path unless File.dir?(path)
|
|
553
|
+
end
|
|
554
|
+
end
|
|
555
|
+
|
|
556
|
+
def rm_f(path)
|
|
557
|
+
$stderr.puts "rm -f #{path}" if verbose?
|
|
558
|
+
return if no_harm?
|
|
559
|
+
force_remove_file path
|
|
560
|
+
end
|
|
561
|
+
|
|
562
|
+
def rm_rf(path)
|
|
563
|
+
$stderr.puts "rm -rf #{path}" if verbose?
|
|
564
|
+
return if no_harm?
|
|
565
|
+
remove_tree path
|
|
566
|
+
end
|
|
567
|
+
|
|
568
|
+
def remove_tree(path)
|
|
569
|
+
if File.symlink?(path)
|
|
570
|
+
remove_file path
|
|
571
|
+
elsif File.dir?(path)
|
|
572
|
+
remove_tree0 path
|
|
573
|
+
else
|
|
574
|
+
force_remove_file path
|
|
575
|
+
end
|
|
576
|
+
end
|
|
577
|
+
|
|
578
|
+
def remove_tree0(path)
|
|
579
|
+
Dir.foreach(path) do |ent|
|
|
580
|
+
next if ent == '.'
|
|
581
|
+
next if ent == '..'
|
|
582
|
+
entpath = "#{path}/#{ent}"
|
|
583
|
+
if File.symlink?(entpath)
|
|
584
|
+
remove_file entpath
|
|
585
|
+
elsif File.dir?(entpath)
|
|
586
|
+
remove_tree0 entpath
|
|
587
|
+
else
|
|
588
|
+
force_remove_file entpath
|
|
589
|
+
end
|
|
590
|
+
end
|
|
591
|
+
begin
|
|
592
|
+
Dir.rmdir path
|
|
593
|
+
rescue Errno::ENOTEMPTY
|
|
594
|
+
# directory may not be empty
|
|
595
|
+
end
|
|
596
|
+
end
|
|
597
|
+
|
|
598
|
+
def move_file(src, dest)
|
|
599
|
+
force_remove_file dest
|
|
600
|
+
begin
|
|
601
|
+
File.rename src, dest
|
|
602
|
+
rescue
|
|
603
|
+
File.open(dest, 'wb') {|f|
|
|
604
|
+
f.write File.binread(src)
|
|
605
|
+
}
|
|
606
|
+
File.chmod File.stat(src).mode, dest
|
|
607
|
+
File.unlink src
|
|
608
|
+
end
|
|
609
|
+
end
|
|
610
|
+
|
|
611
|
+
def force_remove_file(path)
|
|
612
|
+
begin
|
|
613
|
+
remove_file path
|
|
614
|
+
rescue
|
|
615
|
+
end
|
|
616
|
+
end
|
|
617
|
+
|
|
618
|
+
def remove_file(path)
|
|
619
|
+
File.chmod 0777, path
|
|
620
|
+
File.unlink path
|
|
621
|
+
end
|
|
622
|
+
|
|
623
|
+
def install(from, dest, mode, prefix = nil)
|
|
624
|
+
$stderr.puts "install #{from} #{dest}" if verbose?
|
|
625
|
+
return if no_harm?
|
|
626
|
+
|
|
627
|
+
realdest = prefix ? prefix + File.expand_path(dest) : dest
|
|
628
|
+
realdest = File.join(realdest, File.basename(from)) if File.dir?(realdest)
|
|
629
|
+
str = File.binread(from)
|
|
630
|
+
if diff?(str, realdest)
|
|
631
|
+
verbose_off {
|
|
632
|
+
rm_f realdest if File.exist?(realdest)
|
|
633
|
+
}
|
|
634
|
+
File.open(realdest, 'wb') {|f|
|
|
635
|
+
f.write str
|
|
636
|
+
}
|
|
637
|
+
File.chmod mode, realdest
|
|
638
|
+
|
|
639
|
+
File.open("#{objdir_root()}/InstalledFiles", 'a') {|f|
|
|
640
|
+
if prefix
|
|
641
|
+
f.puts realdest.sub(prefix, '')
|
|
642
|
+
else
|
|
643
|
+
f.puts realdest
|
|
644
|
+
end
|
|
645
|
+
}
|
|
646
|
+
end
|
|
647
|
+
end
|
|
648
|
+
|
|
649
|
+
def diff?(new_content, path)
|
|
650
|
+
return true unless File.exist?(path)
|
|
651
|
+
new_content != File.binread(path)
|
|
652
|
+
end
|
|
653
|
+
|
|
654
|
+
def command(*args)
|
|
655
|
+
$stderr.puts args.join(' ') if verbose?
|
|
656
|
+
system(*args) or raise RuntimeError,
|
|
657
|
+
"system(#{args.map{|a| a.inspect }.join(' ')}) failed"
|
|
658
|
+
end
|
|
659
|
+
|
|
660
|
+
def ruby(*args)
|
|
661
|
+
command config('rubyprog'), *args
|
|
662
|
+
end
|
|
663
|
+
|
|
664
|
+
def make(task = nil)
|
|
665
|
+
command(*[config('makeprog'), task].compact)
|
|
666
|
+
end
|
|
667
|
+
|
|
668
|
+
def extdir?(dir)
|
|
669
|
+
File.exist?("#{dir}/MANIFEST") or File.exist?("#{dir}/extconf.rb")
|
|
670
|
+
end
|
|
671
|
+
|
|
672
|
+
def files_of(dir)
|
|
673
|
+
Dir.open(dir) {|d|
|
|
674
|
+
return d.select {|ent| File.file?("#{dir}/#{ent}") }
|
|
675
|
+
}
|
|
676
|
+
end
|
|
677
|
+
|
|
678
|
+
DIR_REJECT = %w( . .. CVS SCCS RCS CVS.adm .svn )
|
|
679
|
+
|
|
680
|
+
def directories_of(dir)
|
|
681
|
+
Dir.open(dir) {|d|
|
|
682
|
+
return d.select {|ent| File.dir?("#{dir}/#{ent}") } - DIR_REJECT
|
|
683
|
+
}
|
|
684
|
+
end
|
|
685
|
+
|
|
686
|
+
end
|
|
687
|
+
|
|
688
|
+
|
|
689
|
+
# This module requires: #srcdir_root, #objdir_root, #relpath
|
|
690
|
+
module HookScriptAPI
|
|
691
|
+
|
|
692
|
+
def get_config(key)
|
|
693
|
+
@config[key]
|
|
694
|
+
end
|
|
695
|
+
|
|
696
|
+
alias config get_config
|
|
697
|
+
|
|
698
|
+
# obsolete: use metaconfig to change configuration
|
|
699
|
+
def set_config(key, val)
|
|
700
|
+
@config[key] = val
|
|
701
|
+
end
|
|
702
|
+
|
|
703
|
+
#
|
|
704
|
+
# srcdir/objdir (works only in the package directory)
|
|
705
|
+
#
|
|
706
|
+
|
|
707
|
+
def curr_srcdir
|
|
708
|
+
"#{srcdir_root()}/#{relpath()}"
|
|
709
|
+
end
|
|
710
|
+
|
|
711
|
+
def curr_objdir
|
|
712
|
+
"#{objdir_root()}/#{relpath()}"
|
|
713
|
+
end
|
|
714
|
+
|
|
715
|
+
def srcfile(path)
|
|
716
|
+
"#{curr_srcdir()}/#{path}"
|
|
717
|
+
end
|
|
718
|
+
|
|
719
|
+
def srcexist?(path)
|
|
720
|
+
File.exist?(srcfile(path))
|
|
721
|
+
end
|
|
722
|
+
|
|
723
|
+
def srcdirectory?(path)
|
|
724
|
+
File.dir?(srcfile(path))
|
|
725
|
+
end
|
|
726
|
+
|
|
727
|
+
def srcfile?(path)
|
|
728
|
+
File.file?(srcfile(path))
|
|
729
|
+
end
|
|
730
|
+
|
|
731
|
+
def srcentries(path = '.')
|
|
732
|
+
Dir.open("#{curr_srcdir()}/#{path}") {|d|
|
|
733
|
+
return d.to_a - %w(. ..)
|
|
734
|
+
}
|
|
735
|
+
end
|
|
736
|
+
|
|
737
|
+
def srcfiles(path = '.')
|
|
738
|
+
srcentries(path).select {|fname|
|
|
739
|
+
File.file?(File.join(curr_srcdir(), path, fname))
|
|
740
|
+
}
|
|
741
|
+
end
|
|
742
|
+
|
|
743
|
+
def srcdirectories(path = '.')
|
|
744
|
+
srcentries(path).select {|fname|
|
|
745
|
+
File.dir?(File.join(curr_srcdir(), path, fname))
|
|
746
|
+
}
|
|
747
|
+
end
|
|
748
|
+
|
|
749
|
+
end
|
|
750
|
+
|
|
751
|
+
|
|
752
|
+
class ToplevelInstaller
|
|
753
|
+
|
|
754
|
+
Version = '3.4.1'
|
|
755
|
+
Copyright = 'Copyright (c) 2000-2005 Minero Aoki'
|
|
756
|
+
|
|
757
|
+
TASKS = [
|
|
758
|
+
[ 'all', 'do config, setup, then install' ],
|
|
759
|
+
[ 'config', 'saves your configurations' ],
|
|
760
|
+
[ 'show', 'shows current configuration' ],
|
|
761
|
+
[ 'setup', 'compiles ruby extentions and others' ],
|
|
762
|
+
[ 'install', 'installs files' ],
|
|
763
|
+
[ 'test', 'run all tests in test/' ],
|
|
764
|
+
[ 'clean', "does `make clean' for each extention" ],
|
|
765
|
+
[ 'distclean',"does `make distclean' for each extention" ]
|
|
766
|
+
]
|
|
767
|
+
|
|
768
|
+
def ToplevelInstaller.invoke
|
|
769
|
+
config = ConfigTable.new(load_rbconfig())
|
|
770
|
+
config.load_standard_entries
|
|
771
|
+
config.load_multipackage_entries if multipackage?
|
|
772
|
+
config.fixup
|
|
773
|
+
klass = (multipackage?() ? ToplevelInstallerMulti : ToplevelInstaller)
|
|
774
|
+
klass.new(File.dirname($0), config).invoke
|
|
775
|
+
end
|
|
776
|
+
|
|
777
|
+
def ToplevelInstaller.multipackage?
|
|
778
|
+
File.dir?(File.dirname($0) + '/packages')
|
|
779
|
+
end
|
|
780
|
+
|
|
781
|
+
def ToplevelInstaller.load_rbconfig
|
|
782
|
+
if arg = ARGV.detect {|arg| /\A--rbconfig=/ =~ arg }
|
|
783
|
+
ARGV.delete(arg)
|
|
784
|
+
load File.expand_path(arg.split(/=/, 2)[1])
|
|
785
|
+
$".push 'rbconfig.rb'
|
|
786
|
+
else
|
|
787
|
+
require 'rbconfig'
|
|
788
|
+
end
|
|
789
|
+
::Config::CONFIG
|
|
790
|
+
end
|
|
791
|
+
|
|
792
|
+
def initialize(ardir_root, config)
|
|
793
|
+
@ardir = File.expand_path(ardir_root)
|
|
794
|
+
@config = config
|
|
795
|
+
# cache
|
|
796
|
+
@valid_task_re = nil
|
|
797
|
+
end
|
|
798
|
+
|
|
799
|
+
def config(key)
|
|
800
|
+
@config[key]
|
|
801
|
+
end
|
|
802
|
+
|
|
803
|
+
def inspect
|
|
804
|
+
"#<#{self.class} #{__id__()}>"
|
|
805
|
+
end
|
|
806
|
+
|
|
807
|
+
def invoke
|
|
808
|
+
run_metaconfigs
|
|
809
|
+
case task = parsearg_global()
|
|
810
|
+
when nil, 'all'
|
|
811
|
+
parsearg_config
|
|
812
|
+
init_installers
|
|
813
|
+
exec_config
|
|
814
|
+
exec_setup
|
|
815
|
+
exec_install
|
|
816
|
+
else
|
|
817
|
+
case task
|
|
818
|
+
when 'config', 'test'
|
|
819
|
+
;
|
|
820
|
+
when 'clean', 'distclean'
|
|
821
|
+
@config.load_savefile if File.exist?(@config.savefile)
|
|
822
|
+
else
|
|
823
|
+
@config.load_savefile
|
|
824
|
+
end
|
|
825
|
+
__send__ "parsearg_#{task}"
|
|
826
|
+
init_installers
|
|
827
|
+
__send__ "exec_#{task}"
|
|
828
|
+
end
|
|
829
|
+
end
|
|
830
|
+
|
|
831
|
+
def run_metaconfigs
|
|
832
|
+
@config.load_script "#{@ardir}/metaconfig"
|
|
833
|
+
end
|
|
834
|
+
|
|
835
|
+
def init_installers
|
|
836
|
+
@installer = Installer.new(@config, @ardir, File.expand_path('.'))
|
|
837
|
+
end
|
|
838
|
+
|
|
839
|
+
#
|
|
840
|
+
# Hook Script API bases
|
|
841
|
+
#
|
|
842
|
+
|
|
843
|
+
def srcdir_root
|
|
844
|
+
@ardir
|
|
845
|
+
end
|
|
846
|
+
|
|
847
|
+
def objdir_root
|
|
848
|
+
'.'
|
|
849
|
+
end
|
|
850
|
+
|
|
851
|
+
def relpath
|
|
852
|
+
'.'
|
|
853
|
+
end
|
|
854
|
+
|
|
855
|
+
#
|
|
856
|
+
# Option Parsing
|
|
857
|
+
#
|
|
858
|
+
|
|
859
|
+
def parsearg_global
|
|
860
|
+
while arg = ARGV.shift
|
|
861
|
+
case arg
|
|
862
|
+
when /\A\w+\z/
|
|
863
|
+
setup_rb_error "invalid task: #{arg}" unless valid_task?(arg)
|
|
864
|
+
return arg
|
|
865
|
+
when '-q', '--quiet'
|
|
866
|
+
@config.verbose = false
|
|
867
|
+
when '--verbose'
|
|
868
|
+
@config.verbose = true
|
|
869
|
+
when '--help'
|
|
870
|
+
print_usage $stdout
|
|
871
|
+
exit 0
|
|
872
|
+
when '--version'
|
|
873
|
+
puts "#{File.basename($0)} version #{Version}"
|
|
874
|
+
exit 0
|
|
875
|
+
when '--copyright'
|
|
876
|
+
puts Copyright
|
|
877
|
+
exit 0
|
|
878
|
+
else
|
|
879
|
+
setup_rb_error "unknown global option '#{arg}'"
|
|
880
|
+
end
|
|
881
|
+
end
|
|
882
|
+
nil
|
|
883
|
+
end
|
|
884
|
+
|
|
885
|
+
def valid_task?(t)
|
|
886
|
+
valid_task_re() =~ t
|
|
887
|
+
end
|
|
888
|
+
|
|
889
|
+
def valid_task_re
|
|
890
|
+
@valid_task_re ||= /\A(?:#{TASKS.map {|task,desc| task }.join('|')})\z/
|
|
891
|
+
end
|
|
892
|
+
|
|
893
|
+
def parsearg_no_options
|
|
894
|
+
unless ARGV.empty?
|
|
895
|
+
task = caller(0).first.slice(%r<`parsearg_(\w+)'>, 1)
|
|
896
|
+
setup_rb_error "#{task}: unknown options: #{ARGV.join(' ')}"
|
|
897
|
+
end
|
|
898
|
+
end
|
|
899
|
+
|
|
900
|
+
alias parsearg_show parsearg_no_options
|
|
901
|
+
alias parsearg_setup parsearg_no_options
|
|
902
|
+
alias parsearg_test parsearg_no_options
|
|
903
|
+
alias parsearg_clean parsearg_no_options
|
|
904
|
+
alias parsearg_distclean parsearg_no_options
|
|
905
|
+
|
|
906
|
+
def parsearg_config
|
|
907
|
+
evalopt = []
|
|
908
|
+
set = []
|
|
909
|
+
@config.config_opt = []
|
|
910
|
+
while i = ARGV.shift
|
|
911
|
+
if /\A--?\z/ =~ i
|
|
912
|
+
@config.config_opt = ARGV.dup
|
|
913
|
+
break
|
|
914
|
+
end
|
|
915
|
+
name, value = *@config.parse_opt(i)
|
|
916
|
+
if @config.value_config?(name)
|
|
917
|
+
@config[name] = value
|
|
918
|
+
else
|
|
919
|
+
evalopt.push [name, value]
|
|
920
|
+
end
|
|
921
|
+
set.push name
|
|
922
|
+
end
|
|
923
|
+
evalopt.each do |name, value|
|
|
924
|
+
@config.lookup(name).evaluate value, @config
|
|
925
|
+
end
|
|
926
|
+
# Check if configuration is valid
|
|
927
|
+
set.each do |n|
|
|
928
|
+
@config[n] if @config.value_config?(n)
|
|
929
|
+
end
|
|
930
|
+
end
|
|
931
|
+
|
|
932
|
+
def parsearg_install
|
|
933
|
+
@config.no_harm = false
|
|
934
|
+
@config.install_prefix = ''
|
|
935
|
+
while a = ARGV.shift
|
|
936
|
+
case a
|
|
937
|
+
when '--no-harm'
|
|
938
|
+
@config.no_harm = true
|
|
939
|
+
when /\A--prefix=/
|
|
940
|
+
path = a.split(/=/, 2)[1]
|
|
941
|
+
path = File.expand_path(path) unless path[0,1] == '/'
|
|
942
|
+
@config.install_prefix = path
|
|
943
|
+
else
|
|
944
|
+
setup_rb_error "install: unknown option #{a}"
|
|
945
|
+
end
|
|
946
|
+
end
|
|
947
|
+
end
|
|
948
|
+
|
|
949
|
+
def print_usage(out)
|
|
950
|
+
out.puts 'Typical Installation Procedure:'
|
|
951
|
+
out.puts " $ ruby #{File.basename $0} config"
|
|
952
|
+
out.puts " $ ruby #{File.basename $0} setup"
|
|
953
|
+
out.puts " # ruby #{File.basename $0} install (may require root privilege)"
|
|
954
|
+
out.puts
|
|
955
|
+
out.puts 'Detailed Usage:'
|
|
956
|
+
out.puts " ruby #{File.basename $0} <global option>"
|
|
957
|
+
out.puts " ruby #{File.basename $0} [<global options>] <task> [<task options>]"
|
|
958
|
+
|
|
959
|
+
fmt = " %-24s %s\n"
|
|
960
|
+
out.puts
|
|
961
|
+
out.puts 'Global options:'
|
|
962
|
+
out.printf fmt, '-q,--quiet', 'suppress message outputs'
|
|
963
|
+
out.printf fmt, ' --verbose', 'output messages verbosely'
|
|
964
|
+
out.printf fmt, ' --help', 'print this message'
|
|
965
|
+
out.printf fmt, ' --version', 'print version and quit'
|
|
966
|
+
out.printf fmt, ' --copyright', 'print copyright and quit'
|
|
967
|
+
out.puts
|
|
968
|
+
out.puts 'Tasks:'
|
|
969
|
+
TASKS.each do |name, desc|
|
|
970
|
+
out.printf fmt, name, desc
|
|
971
|
+
end
|
|
972
|
+
|
|
973
|
+
fmt = " %-24s %s [%s]\n"
|
|
974
|
+
out.puts
|
|
975
|
+
out.puts 'Options for CONFIG or ALL:'
|
|
976
|
+
@config.each do |item|
|
|
977
|
+
out.printf fmt, item.help_opt, item.description, item.help_default
|
|
978
|
+
end
|
|
979
|
+
out.printf fmt, '--rbconfig=path', 'rbconfig.rb to load',"running ruby's"
|
|
980
|
+
out.puts
|
|
981
|
+
out.puts 'Options for INSTALL:'
|
|
982
|
+
out.printf fmt, '--no-harm', 'only display what to do if given', 'off'
|
|
983
|
+
out.printf fmt, '--prefix=path', 'install path prefix', ''
|
|
984
|
+
out.puts
|
|
985
|
+
end
|
|
986
|
+
|
|
987
|
+
#
|
|
988
|
+
# Task Handlers
|
|
989
|
+
#
|
|
990
|
+
|
|
991
|
+
def exec_config
|
|
992
|
+
@installer.exec_config
|
|
993
|
+
@config.save # must be final
|
|
994
|
+
end
|
|
995
|
+
|
|
996
|
+
def exec_setup
|
|
997
|
+
@installer.exec_setup
|
|
998
|
+
end
|
|
999
|
+
|
|
1000
|
+
def exec_install
|
|
1001
|
+
@installer.exec_install
|
|
1002
|
+
end
|
|
1003
|
+
|
|
1004
|
+
def exec_test
|
|
1005
|
+
@installer.exec_test
|
|
1006
|
+
end
|
|
1007
|
+
|
|
1008
|
+
def exec_show
|
|
1009
|
+
@config.each do |i|
|
|
1010
|
+
printf "%-20s %s\n", i.name, i.value if i.value?
|
|
1011
|
+
end
|
|
1012
|
+
end
|
|
1013
|
+
|
|
1014
|
+
def exec_clean
|
|
1015
|
+
@installer.exec_clean
|
|
1016
|
+
end
|
|
1017
|
+
|
|
1018
|
+
def exec_distclean
|
|
1019
|
+
@installer.exec_distclean
|
|
1020
|
+
end
|
|
1021
|
+
|
|
1022
|
+
end # class ToplevelInstaller
|
|
1023
|
+
|
|
1024
|
+
|
|
1025
|
+
class ToplevelInstallerMulti < ToplevelInstaller
|
|
1026
|
+
|
|
1027
|
+
include FileOperations
|
|
1028
|
+
|
|
1029
|
+
def initialize(ardir_root, config)
|
|
1030
|
+
super
|
|
1031
|
+
@packages = directories_of("#{@ardir}/packages")
|
|
1032
|
+
raise 'no package exists' if @packages.empty?
|
|
1033
|
+
@root_installer = Installer.new(@config, @ardir, File.expand_path('.'))
|
|
1034
|
+
end
|
|
1035
|
+
|
|
1036
|
+
def run_metaconfigs
|
|
1037
|
+
@config.load_script "#{@ardir}/metaconfig", self
|
|
1038
|
+
@packages.each do |name|
|
|
1039
|
+
@config.load_script "#{@ardir}/packages/#{name}/metaconfig"
|
|
1040
|
+
end
|
|
1041
|
+
end
|
|
1042
|
+
|
|
1043
|
+
attr_reader :packages
|
|
1044
|
+
|
|
1045
|
+
def packages=(list)
|
|
1046
|
+
raise 'package list is empty' if list.empty?
|
|
1047
|
+
list.each do |name|
|
|
1048
|
+
raise "directory packages/#{name} does not exist"\
|
|
1049
|
+
unless File.dir?("#{@ardir}/packages/#{name}")
|
|
1050
|
+
end
|
|
1051
|
+
@packages = list
|
|
1052
|
+
end
|
|
1053
|
+
|
|
1054
|
+
def init_installers
|
|
1055
|
+
@installers = {}
|
|
1056
|
+
@packages.each do |pack|
|
|
1057
|
+
@installers[pack] = Installer.new(@config,
|
|
1058
|
+
"#{@ardir}/packages/#{pack}",
|
|
1059
|
+
"packages/#{pack}")
|
|
1060
|
+
end
|
|
1061
|
+
with = extract_selection(config('with'))
|
|
1062
|
+
without = extract_selection(config('without'))
|
|
1063
|
+
@selected = @installers.keys.select {|name|
|
|
1064
|
+
(with.empty? or with.include?(name)) \
|
|
1065
|
+
and not without.include?(name)
|
|
1066
|
+
}
|
|
1067
|
+
end
|
|
1068
|
+
|
|
1069
|
+
def extract_selection(list)
|
|
1070
|
+
a = list.split(/,/)
|
|
1071
|
+
a.each do |name|
|
|
1072
|
+
setup_rb_error "no such package: #{name}" unless @installers.key?(name)
|
|
1073
|
+
end
|
|
1074
|
+
a
|
|
1075
|
+
end
|
|
1076
|
+
|
|
1077
|
+
def print_usage(f)
|
|
1078
|
+
super
|
|
1079
|
+
f.puts 'Inluded packages:'
|
|
1080
|
+
f.puts ' ' + @packages.sort.join(' ')
|
|
1081
|
+
f.puts
|
|
1082
|
+
end
|
|
1083
|
+
|
|
1084
|
+
#
|
|
1085
|
+
# Task Handlers
|
|
1086
|
+
#
|
|
1087
|
+
|
|
1088
|
+
def exec_config
|
|
1089
|
+
run_hook 'pre-config'
|
|
1090
|
+
each_selected_installers {|inst| inst.exec_config }
|
|
1091
|
+
run_hook 'post-config'
|
|
1092
|
+
@config.save # must be final
|
|
1093
|
+
end
|
|
1094
|
+
|
|
1095
|
+
def exec_setup
|
|
1096
|
+
run_hook 'pre-setup'
|
|
1097
|
+
each_selected_installers {|inst| inst.exec_setup }
|
|
1098
|
+
run_hook 'post-setup'
|
|
1099
|
+
end
|
|
1100
|
+
|
|
1101
|
+
def exec_install
|
|
1102
|
+
run_hook 'pre-install'
|
|
1103
|
+
each_selected_installers {|inst| inst.exec_install }
|
|
1104
|
+
run_hook 'post-install'
|
|
1105
|
+
end
|
|
1106
|
+
|
|
1107
|
+
def exec_test
|
|
1108
|
+
run_hook 'pre-test'
|
|
1109
|
+
each_selected_installers {|inst| inst.exec_test }
|
|
1110
|
+
run_hook 'post-test'
|
|
1111
|
+
end
|
|
1112
|
+
|
|
1113
|
+
def exec_clean
|
|
1114
|
+
rm_f @config.savefile
|
|
1115
|
+
run_hook 'pre-clean'
|
|
1116
|
+
each_selected_installers {|inst| inst.exec_clean }
|
|
1117
|
+
run_hook 'post-clean'
|
|
1118
|
+
end
|
|
1119
|
+
|
|
1120
|
+
def exec_distclean
|
|
1121
|
+
rm_f @config.savefile
|
|
1122
|
+
run_hook 'pre-distclean'
|
|
1123
|
+
each_selected_installers {|inst| inst.exec_distclean }
|
|
1124
|
+
run_hook 'post-distclean'
|
|
1125
|
+
end
|
|
1126
|
+
|
|
1127
|
+
#
|
|
1128
|
+
# lib
|
|
1129
|
+
#
|
|
1130
|
+
|
|
1131
|
+
def each_selected_installers
|
|
1132
|
+
Dir.mkdir 'packages' unless File.dir?('packages')
|
|
1133
|
+
@selected.each do |pack|
|
|
1134
|
+
$stderr.puts "Processing the package `#{pack}' ..." if verbose?
|
|
1135
|
+
Dir.mkdir "packages/#{pack}" unless File.dir?("packages/#{pack}")
|
|
1136
|
+
Dir.chdir "packages/#{pack}"
|
|
1137
|
+
yield @installers[pack]
|
|
1138
|
+
Dir.chdir '../..'
|
|
1139
|
+
end
|
|
1140
|
+
end
|
|
1141
|
+
|
|
1142
|
+
def run_hook(id)
|
|
1143
|
+
@root_installer.run_hook id
|
|
1144
|
+
end
|
|
1145
|
+
|
|
1146
|
+
# module FileOperations requires this
|
|
1147
|
+
def verbose?
|
|
1148
|
+
@config.verbose?
|
|
1149
|
+
end
|
|
1150
|
+
|
|
1151
|
+
# module FileOperations requires this
|
|
1152
|
+
def no_harm?
|
|
1153
|
+
@config.no_harm?
|
|
1154
|
+
end
|
|
1155
|
+
|
|
1156
|
+
end # class ToplevelInstallerMulti
|
|
1157
|
+
|
|
1158
|
+
|
|
1159
|
+
class Installer
|
|
1160
|
+
|
|
1161
|
+
FILETYPES = %w( bin lib ext data conf man )
|
|
1162
|
+
|
|
1163
|
+
include FileOperations
|
|
1164
|
+
include HookScriptAPI
|
|
1165
|
+
|
|
1166
|
+
def initialize(config, srcroot, objroot)
|
|
1167
|
+
@config = config
|
|
1168
|
+
@srcdir = File.expand_path(srcroot)
|
|
1169
|
+
@objdir = File.expand_path(objroot)
|
|
1170
|
+
@currdir = '.'
|
|
1171
|
+
end
|
|
1172
|
+
|
|
1173
|
+
def inspect
|
|
1174
|
+
"#<#{self.class} #{File.basename(@srcdir)}>"
|
|
1175
|
+
end
|
|
1176
|
+
|
|
1177
|
+
def noop(rel)
|
|
1178
|
+
end
|
|
1179
|
+
|
|
1180
|
+
#
|
|
1181
|
+
# Hook Script API base methods
|
|
1182
|
+
#
|
|
1183
|
+
|
|
1184
|
+
def srcdir_root
|
|
1185
|
+
@srcdir
|
|
1186
|
+
end
|
|
1187
|
+
|
|
1188
|
+
def objdir_root
|
|
1189
|
+
@objdir
|
|
1190
|
+
end
|
|
1191
|
+
|
|
1192
|
+
def relpath
|
|
1193
|
+
@currdir
|
|
1194
|
+
end
|
|
1195
|
+
|
|
1196
|
+
#
|
|
1197
|
+
# Config Access
|
|
1198
|
+
#
|
|
1199
|
+
|
|
1200
|
+
# module FileOperations requires this
|
|
1201
|
+
def verbose?
|
|
1202
|
+
@config.verbose?
|
|
1203
|
+
end
|
|
1204
|
+
|
|
1205
|
+
# module FileOperations requires this
|
|
1206
|
+
def no_harm?
|
|
1207
|
+
@config.no_harm?
|
|
1208
|
+
end
|
|
1209
|
+
|
|
1210
|
+
def verbose_off
|
|
1211
|
+
begin
|
|
1212
|
+
save, @config.verbose = @config.verbose?, false
|
|
1213
|
+
yield
|
|
1214
|
+
ensure
|
|
1215
|
+
@config.verbose = save
|
|
1216
|
+
end
|
|
1217
|
+
end
|
|
1218
|
+
|
|
1219
|
+
#
|
|
1220
|
+
# TASK config
|
|
1221
|
+
#
|
|
1222
|
+
|
|
1223
|
+
def exec_config
|
|
1224
|
+
exec_task_traverse 'config'
|
|
1225
|
+
end
|
|
1226
|
+
|
|
1227
|
+
alias config_dir_bin noop
|
|
1228
|
+
alias config_dir_lib noop
|
|
1229
|
+
|
|
1230
|
+
def config_dir_ext(rel)
|
|
1231
|
+
extconf if extdir?(curr_srcdir())
|
|
1232
|
+
end
|
|
1233
|
+
|
|
1234
|
+
alias config_dir_data noop
|
|
1235
|
+
alias config_dir_conf noop
|
|
1236
|
+
alias config_dir_man noop
|
|
1237
|
+
|
|
1238
|
+
def extconf
|
|
1239
|
+
ruby "#{curr_srcdir()}/extconf.rb", *@config.config_opt
|
|
1240
|
+
end
|
|
1241
|
+
|
|
1242
|
+
#
|
|
1243
|
+
# TASK setup
|
|
1244
|
+
#
|
|
1245
|
+
|
|
1246
|
+
def exec_setup
|
|
1247
|
+
exec_task_traverse 'setup'
|
|
1248
|
+
end
|
|
1249
|
+
|
|
1250
|
+
def setup_dir_bin(rel)
|
|
1251
|
+
files_of(curr_srcdir()).each do |fname|
|
|
1252
|
+
update_shebang_line "#{curr_srcdir()}/#{fname}"
|
|
1253
|
+
end
|
|
1254
|
+
end
|
|
1255
|
+
|
|
1256
|
+
alias setup_dir_lib noop
|
|
1257
|
+
|
|
1258
|
+
def setup_dir_ext(rel)
|
|
1259
|
+
make if extdir?(curr_srcdir())
|
|
1260
|
+
end
|
|
1261
|
+
|
|
1262
|
+
alias setup_dir_data noop
|
|
1263
|
+
alias setup_dir_conf noop
|
|
1264
|
+
alias setup_dir_man noop
|
|
1265
|
+
|
|
1266
|
+
def update_shebang_line(path)
|
|
1267
|
+
return if no_harm?
|
|
1268
|
+
return if config('shebang') == 'never'
|
|
1269
|
+
old = Shebang.load(path)
|
|
1270
|
+
if old
|
|
1271
|
+
$stderr.puts "warning: #{path}: Shebang line includes too many args. It is not portable and your program may not work." if old.args.size > 1
|
|
1272
|
+
new = new_shebang(old)
|
|
1273
|
+
return if new.to_s == old.to_s
|
|
1274
|
+
else
|
|
1275
|
+
return unless config('shebang') == 'all'
|
|
1276
|
+
new = Shebang.new(config('rubypath'))
|
|
1277
|
+
end
|
|
1278
|
+
$stderr.puts "updating shebang: #{File.basename(path)}" if verbose?
|
|
1279
|
+
open_atomic_writer(path) {|output|
|
|
1280
|
+
File.open(path, 'rb') {|f|
|
|
1281
|
+
f.gets if old # discard
|
|
1282
|
+
output.puts new.to_s
|
|
1283
|
+
output.print f.read
|
|
1284
|
+
}
|
|
1285
|
+
}
|
|
1286
|
+
end
|
|
1287
|
+
|
|
1288
|
+
def new_shebang(old)
|
|
1289
|
+
if /\Aruby/ =~ File.basename(old.cmd)
|
|
1290
|
+
Shebang.new(config('rubypath'), old.args)
|
|
1291
|
+
elsif File.basename(old.cmd) == 'env' and old.args.first == 'ruby'
|
|
1292
|
+
Shebang.new(config('rubypath'), old.args[1..-1])
|
|
1293
|
+
else
|
|
1294
|
+
return old unless config('shebang') == 'all'
|
|
1295
|
+
Shebang.new(config('rubypath'))
|
|
1296
|
+
end
|
|
1297
|
+
end
|
|
1298
|
+
|
|
1299
|
+
def open_atomic_writer(path, &block)
|
|
1300
|
+
tmpfile = File.basename(path) + '.tmp'
|
|
1301
|
+
begin
|
|
1302
|
+
File.open(tmpfile, 'wb', &block)
|
|
1303
|
+
File.rename tmpfile, File.basename(path)
|
|
1304
|
+
ensure
|
|
1305
|
+
File.unlink tmpfile if File.exist?(tmpfile)
|
|
1306
|
+
end
|
|
1307
|
+
end
|
|
1308
|
+
|
|
1309
|
+
class Shebang
|
|
1310
|
+
def Shebang.load(path)
|
|
1311
|
+
line = nil
|
|
1312
|
+
File.open(path) {|f|
|
|
1313
|
+
line = f.gets
|
|
1314
|
+
}
|
|
1315
|
+
return nil unless /\A#!/ =~ line
|
|
1316
|
+
parse(line)
|
|
1317
|
+
end
|
|
1318
|
+
|
|
1319
|
+
def Shebang.parse(line)
|
|
1320
|
+
cmd, *args = *line.strip.sub(/\A\#!/, '').split(' ')
|
|
1321
|
+
new(cmd, args)
|
|
1322
|
+
end
|
|
1323
|
+
|
|
1324
|
+
def initialize(cmd, args = [])
|
|
1325
|
+
@cmd = cmd
|
|
1326
|
+
@args = args
|
|
1327
|
+
end
|
|
1328
|
+
|
|
1329
|
+
attr_reader :cmd
|
|
1330
|
+
attr_reader :args
|
|
1331
|
+
|
|
1332
|
+
def to_s
|
|
1333
|
+
"#! #{@cmd}" + (@args.empty? ? '' : " #{@args.join(' ')}")
|
|
1334
|
+
end
|
|
1335
|
+
end
|
|
1336
|
+
|
|
1337
|
+
#
|
|
1338
|
+
# TASK install
|
|
1339
|
+
#
|
|
1340
|
+
|
|
1341
|
+
def exec_install
|
|
1342
|
+
rm_f 'InstalledFiles'
|
|
1343
|
+
exec_task_traverse 'install'
|
|
1344
|
+
end
|
|
1345
|
+
|
|
1346
|
+
def install_dir_bin(rel)
|
|
1347
|
+
install_files targetfiles(), "#{config('bindir')}/#{rel}", 0755
|
|
1348
|
+
end
|
|
1349
|
+
|
|
1350
|
+
def install_dir_lib(rel)
|
|
1351
|
+
install_files libfiles(), "#{config('rbdir')}/#{rel}", 0644
|
|
1352
|
+
end
|
|
1353
|
+
|
|
1354
|
+
def install_dir_ext(rel)
|
|
1355
|
+
return unless extdir?(curr_srcdir())
|
|
1356
|
+
install_files rubyextentions('.'),
|
|
1357
|
+
"#{config('sodir')}/#{File.dirname(rel)}",
|
|
1358
|
+
0555
|
|
1359
|
+
end
|
|
1360
|
+
|
|
1361
|
+
def install_dir_data(rel)
|
|
1362
|
+
install_files targetfiles(), "#{config('datadir')}/#{rel}", 0644
|
|
1363
|
+
end
|
|
1364
|
+
|
|
1365
|
+
def install_dir_conf(rel)
|
|
1366
|
+
# FIXME: should not remove current config files
|
|
1367
|
+
# (rename previous file to .old/.org)
|
|
1368
|
+
install_files targetfiles(), "#{config('sysconfdir')}/#{rel}", 0644
|
|
1369
|
+
end
|
|
1370
|
+
|
|
1371
|
+
def install_dir_man(rel)
|
|
1372
|
+
install_files targetfiles(), "#{config('mandir')}/#{rel}", 0644
|
|
1373
|
+
end
|
|
1374
|
+
|
|
1375
|
+
def install_files(list, dest, mode)
|
|
1376
|
+
mkdir_p dest, @config.install_prefix
|
|
1377
|
+
list.each do |fname|
|
|
1378
|
+
install fname, dest, mode, @config.install_prefix
|
|
1379
|
+
end
|
|
1380
|
+
end
|
|
1381
|
+
|
|
1382
|
+
def libfiles
|
|
1383
|
+
glob_reject(%w(*.y *.output), targetfiles())
|
|
1384
|
+
end
|
|
1385
|
+
|
|
1386
|
+
def rubyextentions(dir)
|
|
1387
|
+
ents = glob_select("*.#{@config.dllext}", targetfiles())
|
|
1388
|
+
if ents.empty?
|
|
1389
|
+
setup_rb_error "no ruby extention exists: 'ruby #{$0} setup' first"
|
|
1390
|
+
end
|
|
1391
|
+
ents
|
|
1392
|
+
end
|
|
1393
|
+
|
|
1394
|
+
def targetfiles
|
|
1395
|
+
mapdir(existfiles() - hookfiles())
|
|
1396
|
+
end
|
|
1397
|
+
|
|
1398
|
+
def mapdir(ents)
|
|
1399
|
+
ents.map {|ent|
|
|
1400
|
+
if File.exist?(ent)
|
|
1401
|
+
then ent # objdir
|
|
1402
|
+
else "#{curr_srcdir()}/#{ent}" # srcdir
|
|
1403
|
+
end
|
|
1404
|
+
}
|
|
1405
|
+
end
|
|
1406
|
+
|
|
1407
|
+
# picked up many entries from cvs-1.11.1/src/ignore.c
|
|
1408
|
+
JUNK_FILES = %w(
|
|
1409
|
+
core RCSLOG tags TAGS .make.state
|
|
1410
|
+
.nse_depinfo #* .#* cvslog.* ,* .del-* *.olb
|
|
1411
|
+
*~ *.old *.bak *.BAK *.orig *.rej _$* *$
|
|
1412
|
+
|
|
1413
|
+
*.org *.in .*
|
|
1414
|
+
)
|
|
1415
|
+
|
|
1416
|
+
def existfiles
|
|
1417
|
+
glob_reject(JUNK_FILES, (files_of(curr_srcdir()) | files_of('.')))
|
|
1418
|
+
end
|
|
1419
|
+
|
|
1420
|
+
def hookfiles
|
|
1421
|
+
%w( pre-%s post-%s pre-%s.rb post-%s.rb ).map {|fmt|
|
|
1422
|
+
%w( config setup install clean ).map {|t| sprintf(fmt, t) }
|
|
1423
|
+
}.flatten
|
|
1424
|
+
end
|
|
1425
|
+
|
|
1426
|
+
def glob_select(pat, ents)
|
|
1427
|
+
re = globs2re([pat])
|
|
1428
|
+
ents.select {|ent| re =~ ent }
|
|
1429
|
+
end
|
|
1430
|
+
|
|
1431
|
+
def glob_reject(pats, ents)
|
|
1432
|
+
re = globs2re(pats)
|
|
1433
|
+
ents.reject {|ent| re =~ ent }
|
|
1434
|
+
end
|
|
1435
|
+
|
|
1436
|
+
GLOB2REGEX = {
|
|
1437
|
+
'.' => '\.',
|
|
1438
|
+
'$' => '\$',
|
|
1439
|
+
'#' => '\#',
|
|
1440
|
+
'*' => '.*'
|
|
1441
|
+
}
|
|
1442
|
+
|
|
1443
|
+
def globs2re(pats)
|
|
1444
|
+
/\A(?:#{
|
|
1445
|
+
pats.map {|pat| pat.gsub(/[\.\$\#\*]/) {|ch| GLOB2REGEX[ch] } }.join('|')
|
|
1446
|
+
})\z/
|
|
1447
|
+
end
|
|
1448
|
+
|
|
1449
|
+
#
|
|
1450
|
+
# TASK test
|
|
1451
|
+
#
|
|
1452
|
+
|
|
1453
|
+
TESTDIR = 'test'
|
|
1454
|
+
|
|
1455
|
+
def exec_test
|
|
1456
|
+
unless File.directory?('test')
|
|
1457
|
+
$stderr.puts 'no test in this package' if verbose?
|
|
1458
|
+
return
|
|
1459
|
+
end
|
|
1460
|
+
$stderr.puts 'Running tests...' if verbose?
|
|
1461
|
+
begin
|
|
1462
|
+
require 'test/unit'
|
|
1463
|
+
rescue LoadError
|
|
1464
|
+
setup_rb_error 'test/unit cannot loaded. You need Ruby 1.8 or later to invoke this task.'
|
|
1465
|
+
end
|
|
1466
|
+
runner = Test::Unit::AutoRunner.new(true)
|
|
1467
|
+
runner.to_run << TESTDIR
|
|
1468
|
+
runner.run
|
|
1469
|
+
end
|
|
1470
|
+
|
|
1471
|
+
#
|
|
1472
|
+
# TASK clean
|
|
1473
|
+
#
|
|
1474
|
+
|
|
1475
|
+
def exec_clean
|
|
1476
|
+
exec_task_traverse 'clean'
|
|
1477
|
+
rm_f @config.savefile
|
|
1478
|
+
rm_f 'InstalledFiles'
|
|
1479
|
+
end
|
|
1480
|
+
|
|
1481
|
+
alias clean_dir_bin noop
|
|
1482
|
+
alias clean_dir_lib noop
|
|
1483
|
+
alias clean_dir_data noop
|
|
1484
|
+
alias clean_dir_conf noop
|
|
1485
|
+
alias clean_dir_man noop
|
|
1486
|
+
|
|
1487
|
+
def clean_dir_ext(rel)
|
|
1488
|
+
return unless extdir?(curr_srcdir())
|
|
1489
|
+
make 'clean' if File.file?('Makefile')
|
|
1490
|
+
end
|
|
1491
|
+
|
|
1492
|
+
#
|
|
1493
|
+
# TASK distclean
|
|
1494
|
+
#
|
|
1495
|
+
|
|
1496
|
+
def exec_distclean
|
|
1497
|
+
exec_task_traverse 'distclean'
|
|
1498
|
+
rm_f @config.savefile
|
|
1499
|
+
rm_f 'InstalledFiles'
|
|
1500
|
+
end
|
|
1501
|
+
|
|
1502
|
+
alias distclean_dir_bin noop
|
|
1503
|
+
alias distclean_dir_lib noop
|
|
1504
|
+
|
|
1505
|
+
def distclean_dir_ext(rel)
|
|
1506
|
+
return unless extdir?(curr_srcdir())
|
|
1507
|
+
make 'distclean' if File.file?('Makefile')
|
|
1508
|
+
end
|
|
1509
|
+
|
|
1510
|
+
alias distclean_dir_data noop
|
|
1511
|
+
alias distclean_dir_conf noop
|
|
1512
|
+
alias distclean_dir_man noop
|
|
1513
|
+
|
|
1514
|
+
#
|
|
1515
|
+
# Traversing
|
|
1516
|
+
#
|
|
1517
|
+
|
|
1518
|
+
def exec_task_traverse(task)
|
|
1519
|
+
run_hook "pre-#{task}"
|
|
1520
|
+
FILETYPES.each do |type|
|
|
1521
|
+
if type == 'ext' and config('without-ext') == 'yes'
|
|
1522
|
+
$stderr.puts 'skipping ext/* by user option' if verbose?
|
|
1523
|
+
next
|
|
1524
|
+
end
|
|
1525
|
+
traverse task, type, "#{task}_dir_#{type}"
|
|
1526
|
+
end
|
|
1527
|
+
run_hook "post-#{task}"
|
|
1528
|
+
end
|
|
1529
|
+
|
|
1530
|
+
def traverse(task, rel, mid)
|
|
1531
|
+
dive_into(rel) {
|
|
1532
|
+
run_hook "pre-#{task}"
|
|
1533
|
+
__send__ mid, rel.sub(%r[\A.*?(?:/|\z)], '')
|
|
1534
|
+
directories_of(curr_srcdir()).each do |d|
|
|
1535
|
+
traverse task, "#{rel}/#{d}", mid
|
|
1536
|
+
end
|
|
1537
|
+
run_hook "post-#{task}"
|
|
1538
|
+
}
|
|
1539
|
+
end
|
|
1540
|
+
|
|
1541
|
+
def dive_into(rel)
|
|
1542
|
+
return unless File.dir?("#{@srcdir}/#{rel}")
|
|
1543
|
+
|
|
1544
|
+
dir = File.basename(rel)
|
|
1545
|
+
Dir.mkdir dir unless File.dir?(dir)
|
|
1546
|
+
prevdir = Dir.pwd
|
|
1547
|
+
Dir.chdir dir
|
|
1548
|
+
$stderr.puts '---> ' + rel if verbose?
|
|
1549
|
+
@currdir = rel
|
|
1550
|
+
yield
|
|
1551
|
+
Dir.chdir prevdir
|
|
1552
|
+
$stderr.puts '<--- ' + rel if verbose?
|
|
1553
|
+
@currdir = File.dirname(rel)
|
|
1554
|
+
end
|
|
1555
|
+
|
|
1556
|
+
def run_hook(id)
|
|
1557
|
+
path = [ "#{curr_srcdir()}/#{id}",
|
|
1558
|
+
"#{curr_srcdir()}/#{id}.rb" ].detect {|cand| File.file?(cand) }
|
|
1559
|
+
return unless path
|
|
1560
|
+
begin
|
|
1561
|
+
instance_eval File.read(path), path, 1
|
|
1562
|
+
rescue
|
|
1563
|
+
raise if $DEBUG
|
|
1564
|
+
setup_rb_error "hook #{path} failed:\n" + $!.message
|
|
1565
|
+
end
|
|
1566
|
+
end
|
|
1567
|
+
|
|
1568
|
+
end # class Installer
|
|
1569
|
+
|
|
1570
|
+
|
|
1571
|
+
class SetupError < StandardError; end
|
|
1572
|
+
|
|
1573
|
+
def setup_rb_error(msg)
|
|
1574
|
+
raise SetupError, msg
|
|
1575
|
+
end
|
|
1576
|
+
|
|
1577
|
+
if $0 == __FILE__
|
|
1578
|
+
begin
|
|
1579
|
+
ToplevelInstaller.invoke
|
|
1580
|
+
rescue SetupError
|
|
1581
|
+
raise if $DEBUG
|
|
1582
|
+
$stderr.puts $!.message
|
|
1583
|
+
$stderr.puts "Try 'ruby #{$0} --help' for detailed usage."
|
|
1584
|
+
exit 1
|
|
1585
|
+
end
|
|
1586
|
+
end
|