summaryrefslogtreecommitdiff
path: root/xmake/actions/require/impl/action/prefix/install.lua
blob: acc8ef40eda86bcd020a9edf10523dad808b7d7e (plain)
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
341
342
343
344
345
346
347
348
349
350
351
352
--!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("core.project.target")
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)

        -- fix conflicts
        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

        -- fix broken link path
        elseif os.isdir(sourcepath) and not os.exists(originpath) then

            -- remove the broken link path
            os.rm(destpath)

            -- trace
            vprint("linking %s ..", relativepath)

            -- do link
            os.ln(sourcepath, destpath)

            -- save this relative path
            table.insert(_g.relative_pathes, relativepath)
        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

-- patch pkgconfig if not exists
function _patch_pkgconfig(package)

    -- get lib/pkgconfig/*.pc file
    local pcfile = path.join(package:installdir("lib", "pkgconfig"), package:name() .. ".pc")
    if os.isfile(pcfile) then
        return 
    end

    -- trace
    vprint("patching %s ..", pcfile)

    -- get libs
    local libs = ""
    for _, linkdir in ipairs(package:getvar("linkdirs")) do
        libs = libs .. "-L" .. linkdir
    end
    libs = libs .. " -L${libdir}"
    local links = package:getvar("links")
    if links then
        for _, link in ipairs(links) do
            libs = libs .. " -l" .. link
        end
    else
        local found = false
        for _, libfile in ipairs(os.files(path.join(package:installdir("lib"), "*.a"))) do
            local link = target.linkname(path.filename(libfile))
            if link then
                libs = libs .. " -l" .. link
                found = true
            end
        end
        if not found then
            for _, libfile in ipairs(os.files(path.join(package:installdir("lib"), "*.so"))) do
                local link = target.linkname(path.filename(libfile))
                if link then
                    libs = libs .. " -l" .. link
                end
            end
        end
    end
    for _, link in ipairs(package:getvar("syslinks")) do
        libs = libs .. " -l" .. link
    end

    -- cflags 
    local cflags = ""
    for _, includedir in ipairs(package:getvar("includedirs")) do
        cflags = cflags .. "-I" .. includedir
    end
    cflags = cflags .. " -I${includedir}"

    -- patch a *.pc file
    local file = io.open(pcfile, 'w')
    if file then
        file:print("prefix=%s", package:prefixdir())
        file:print("exec_prefix=${prefix}")
        file:print("libdir=${exec_prefix}/lib")
        file:print("includedir=${prefix}/include")
        file:print("")
        file:print("Name: %s", package:name())
        file:print("Description: %s", package:description())
        file:print("Version: %s", package:version_str())
        file:print("Libs: %s", libs)
        file:print("Libs.private: ")
        file:print("Cflags: %s", cflags)
        file:close()
    end
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
function _install(package)

    -- patch pkgconfig if not exists
    if not is_plat("windows") then
        _patch_pkgconfig(package)
    end

    -- install package to the prefix directory
    if is_host("windows") then
        _install_without_link(package)
    else
        _install_with_link(package)
    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)
        end,
        finally
        {
            function (ok, errors)
                -- 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()

                -- continue to raise errors
                if not ok then
                    raise(errors)
                end
            end
        }
    }
end