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
|
--!A cross-platform build utility based on Lua
--
-- Licensed 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-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file xpack_component.lua
--
-- imports
import("core.base.object")
import("core.base.option")
import("core.project.config")
import("core.project.project")
import("private.core.base.select_script")
-- define module
local xpack_component = xpack_component or object {_init = {"_name", "_info", "_package"}}
-- get name
function xpack_component:name()
return self._name
end
-- get values
function xpack_component:get(name)
if self._info then
return self._info:get(name)
end
end
-- set values
function xpack_component:set(name, ...)
if self._info then
self._info:apival_set(name, ...)
end
end
-- add values
function xpack_component:add(name, ...)
if self._info then
self._info:apival_add(name, ...)
end
end
-- get the extra configuration
function xpack_component:extraconf(name, item, key)
if self._info then
return self._info:extraconf(name, item, key)
end
end
-- get the component title
function xpack_component:title()
return self:get("title") or self:name()
end
-- get the component description
function xpack_component:description()
return self:get("description")
end
-- get xxx_script
function xpack_component:script(name, generic)
local script = self:get(name)
local result = select_script(script, {plat = self:package():plat(), arch = self:package():arch()}) or generic
return result
end
-- get targets
function xpack_component:targets()
local targets = self._targets
if not targets then
targets = {}
local targetnames = self:get("targets")
if targetnames then
for _, name in ipairs(targetnames) do
local target = project.target(name)
if target then
table.insert(targets, target)
else
raise("xpack_component(%s): target(%s) not found!", self:name(), name)
end
end
end
self._targets = targets
end
return targets
end
-- get the given target
function xpack_component:target(name)
local targetnames = self:get("targets")
if targetnames and table.contains(table.wrap(targetnames), name) then
return project.target(name)
end
end
-- get the copied files
function xpack_component:_copiedfiles(filetype, outputdir)
-- no copied files?
local copiedfiles = self:get(filetype)
if not copiedfiles then return end
-- get the extra information
local extrainfo = table.wrap(self:get("__extra_" .. filetype))
-- get the source paths and destinate paths
local srcfiles = {}
local dstfiles = {}
local fileinfos = {}
for _, copiedfile in ipairs(table.wrap(copiedfiles)) do
-- get the root directory
local rootdir, count = copiedfile:gsub("|.*$", ""):gsub("%(.*%)$", "")
if count == 0 then
rootdir = nil
end
if rootdir and rootdir:trim() == "" then
rootdir = "."
end
-- remove '(' and ')'
local srcpaths = copiedfile:gsub("[%(%)]", "")
if srcpaths then
-- get the source paths
srcpaths = os.match(srcpaths)
if srcpaths and #srcpaths > 0 then
-- add the source copied files
table.join2(srcfiles, srcpaths)
-- the copied directory exists?
if outputdir then
-- get the file info
local fileinfo = extrainfo[copiedfile] or {}
-- get the prefix directory
local prefixdir = fileinfo.prefixdir
if fileinfo.rootdir then
rootdir = fileinfo.rootdir
end
-- add the destinate copied files
for _, srcpath in ipairs(srcpaths) do
-- get the destinate directory
local dstdir = outputdir
if prefixdir then
dstdir = path.join(dstdir, prefixdir)
end
-- the destinate file
local dstfile = nil
if rootdir then
dstfile = path.absolute(path.relative(srcpath, rootdir), dstdir)
else
dstfile = path.join(dstdir, path.filename(srcpath))
end
assert(dstfile)
-- modify filename
if fileinfo.filename then
dstfile = path.join(path.directory(dstfile), fileinfo.filename)
end
-- add it
table.insert(dstfiles, dstfile)
table.insert(fileinfos, fileinfo)
end
end
end
end
end
return srcfiles, dstfiles, fileinfos
end
-- get the package
function xpack_component:package()
return self._package
end
-- get the install files
function xpack_component:installfiles()
return self:_copiedfiles("installfiles", self:package():installdir())
end
-- get the installed root directory, this is just a temporary sandbox installation path,
-- we may replace it with the actual installation path in the specfile
function xpack_component:install_rootdir()
return self:package():install_rootdir()
end
-- get the installed directory
function xpack_component:installdir(...)
return self:package():installdir(...)
end
-- get the source files
function xpack_component:sourcefiles()
return self:_copiedfiles("sourcefiles", self:package():sourcedir())
end
-- get the source root directory
function xpack_component:source_rootdir()
return self:package():souece_rootdir()
end
-- get the source directory
function xpack_component:sourcedir(...)
return self:package():sourcedir(...)
end
-- get the binary directory
function xpack_component:bindir()
return self:package():bindir()
end
-- get the library directory
function xpack_component:libdir()
return self:package():libdir()
end
-- get the include directory
function xpack_component:includedir()
return self:package():includedir()
end
-- pack from source files?
function xpack_component:from_source()
return self:package():from_source()
end
-- pack from binary files?
function xpack_component:from_binary()
return self:package():from_binary()
end
-- new a xpack_component
function new(name, info, package)
return xpack_component {name, info:clone(), package}
end
|