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
|
--!The Make-like install Utility based on Lua
--
-- Licensed to the Apache Software Foundation (ASF) under one
-- or more contributor license agreements. See the NOTICE file
-- distributed with this work for additional information
-- regarding copyright ownership. The ASF licenses this file
-- to you under the Apache License, Version 2.0 (the
-- "License"); you may not use this file except in compliance
-- with the License. You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
-- Copyright (C) 2015 - 2018, TBOOX Open Source Group.
--
-- @author ruki
-- @file install.lua
--
-- imports
import("core.base.global")
import("core.project.config")
import("uninstall")
-- copy files to the prefix directory
function _copy(mode, pattern)
-- do install
local prefixdir = _g.prefixdir
local installdir = _g.installdir
local relative_pathes = _g.relative_pathes
for _, sourcepath in ipairs(os.match(path.join(installdir, pattern), mode)) do
-- get relative path
local relative_path = path.relative(sourcepath, installdir)
-- trace
vprint("copying %s ..", relative_path)
-- copy file to the prefix directory
os.cp(sourcepath, path.absolute(relative_path, prefixdir))
-- save this relative path
table.insert(relative_pathes, relative_path)
end
end
-- copy directories to the prefix directory
function _copy_dirs(pattern)
_copy('d', pattern)
end
-- copy files to the prefix directory
function _copy_files(pattern)
_copy('f', pattern)
end
-- copy files and directories to the prefix directory
function _copy_filedirs(pattern)
_copy('a', pattern)
end
-- find the prefix info file of the previous package
function _find_prefixfile(originpath)
local parentdir = path.directory(originpath)
while parentdir and os.isdir(parentdir) and parentdir ~= "/" do
local relative_path = path.relative(parentdir, path.join(global.directory(), "installed"))
local prefixfile_local = path.join(config.directory(), "prefix", "info", relative_path, "info.txt")
if os.isfile(prefixfile_local) then
return prefixfile_local
end
local prefixfile_global = path.join(global.directory(), "prefix", "info", relative_path, "info.txt")
if os.isfile(prefixfile_global) then
return prefixfile_global
end
parentdir = path.directory(parentdir)
end
end
-- do link
function _do_link(sourcepath, relativepath)
-- link conflicts?
local destpath = path.absolute(relativepath, _g.prefixdir)
if os.islink(destpath) then
-- get the original path of destpath
local originpath = os.readlink(destpath)
if os.isdir(sourcepath) and os.isdir(originpath) then
-- trace
vprint("unlinking %s ..", relativepath)
-- find the prefix info file of the previous package
local prefixfile = _find_prefixfile(originpath)
-- get the prefix info
local prefixinfo = nil
if prefixfile and os.isfile(prefixfile) then
prefixinfo = io.load(prefixfile)
end
-- remove the previous link
os.rm(destpath)
if prefixinfo then
for idx, installfile in ipairs(prefixinfo.installed) do
if installfile == relativepath then
table.remove(prefixinfo.installed, idx)
break
end
end
end
-- expand and relink the previous directories
for _, filedir in ipairs(os.filedirs(path.join(originpath, "*"))) do
-- get file or directory name
local filename = path.filename(filedir)
-- trace
vprint("relinking %s ..", path.join(relativepath, filename))
-- do link
os.ln(filedir, path.join(destpath, filename))
-- save this relative path
table.insert(prefixinfo.installed, path.join(relativepath, filename))
end
-- update the previous prefix info file
if prefixinfo then
io.save(prefixfile, prefixinfo)
end
-- link the child pathes
for _, filedir in ipairs(os.filedirs(path.join(sourcepath, "*"))) do
_do_link(filedir, path.join(relativepath, path.filename(filedir)))
end
else
-- link conflicts
os.raise("cannot link %s => %s", sourcepath, destpath)
end
elseif os.isdir(destpath) then
-- link the child pathes
for _, filedir in ipairs(os.filedirs(path.join(sourcepath, "*"))) do
_do_link(filedir, path.join(relativepath, path.filename(filedir)))
end
else
-- trace
vprint("linking %s ..", relativepath)
-- do link
os.ln(sourcepath, destpath)
-- save this relative path
table.insert(_g.relative_pathes, relativepath)
end
end
-- link files to the prefix directory
function _link(mode, pattern)
local installdir = _g.installdir
for _, sourcepath in ipairs(os.match(path.join(installdir, pattern), mode)) do
_do_link(sourcepath, path.relative(sourcepath, installdir))
end
end
-- link directories to the prefix directory
function _link_dirs(pattern)
_link('d', pattern)
end
-- link files to the prefix directory
function _link_files(pattern)
_link('f', pattern)
end
-- link files and directories to the prefix directory
function _link_filedirs(pattern)
_link('a', pattern)
end
-- install package with link
function _install_with_link(package)
_link_files("bin/*")
_link_files("sbin/*")
_link_filedirs("include/*")
_link_filedirs("lib/*")
_link_filedirs("share/*|info")
_link_filedirs("share/info/*|dir")
end
-- install package without link (windows)
function _install_without_link(package)
if package:kind() == "binary" then
_copy_filedirs("**")
else
_copy_filedirs("lib/**")
_copy_filedirs("include/**")
end
end
-- install package to the prefix directory
function main(package)
-- init some pathes
_g.prefixdir = package:prefixdir()
_g.installdir = package:installdir()
_g.relative_pathes = {}
-- trace
vprint("installing %s to %s ..", _g.installdir, _g.prefixdir)
-- install to the prefix directory
local relative_pathes = {}
try
{
function ()
-- install package
if is_host("windows") then
_install_without_link(package)
else
_install_with_link(package)
end
end,
catch
{
function (errors)
raise(errors)
end
},
finally
{
function ()
-- save the prefix info to file
local prefixinfo = package:prefixinfo()
prefixinfo.installed = _g.relative_pathes
io.save(package:prefixfile(), prefixinfo)
-- register this package
package:register()
end
}
}
end
|