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
|
--!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, Xmake Open Source Community.
--
-- @author ruki
-- @file main.lua
--
-- imports
import("core.base.option")
import("core.base.global")
import("devel.git")
import("net.fasturl")
import("private.action.require.impl.environment")
-- get plugin urls
function _plugin_urls()
local urls = option.get("plugins")
if urls then
local result = {}
for _, url in ipairs(urls) do
table.insert(result, git.asgiturl(url) or url)
end
urls = result
else
urls = {
"https://github.com/xmake-io/xmake-plugins.git",
"https://gitlab.com/tboox/xmake-plugins.git",
"https://gitee.com/tboox/xmake-plugins.git"}
urls = fasturl.add(urls)
urls = fasturl.sort(urls)
end
return urls
end
-- get manifest path
function _manifest_path()
return path.join(global.directory(), "plugins", "manifest.txt")
end
-- load manifest
function _load_manifest()
local manifest_path = _manifest_path()
if os.isfile(manifest_path) then
return io.load(manifest_path)
end
end
-- save manifest
function _save_manifest(manifest)
io.save(_manifest_path(), manifest)
end
-- install the plugin by name from the repository.
-- Repository plugins are loaded directly from the checkout;
-- ensure the repository is up to date with `xrepo update-repo`.
function _install_name(name)
print("plugin %s will be loaded from the repository after xrepo update-repo.", name)
end
-- install plugins
function _install()
-- install the plugin by name from the repository?
local name = option.get("plugins")
if name and not os.isdir(name) and not name:find("[/\\:]") then
return _install_name(name)
end
-- enter environment
environment.enter()
try
{
function ()
-- do install
local urls = _plugin_urls()
local tmpdir = os.tmpfile() .. ".dir"
local plugindir = path.join(global.directory(), "plugins")
local installed_url
for _, url in ipairs(urls) do
cprint("installing plugins from %s ..", url)
git.clone(url, {verbose = option.get("verbose"), outputdir = tmpdir})
installed_url = url
break
end
for _, filepath in ipairs(os.files(path.join(tmpdir, "*", "xmake.lua"))) do
local srcdir = path.directory(filepath)
local name = path.filename(srcdir)
local dstdir = path.join(plugindir, name)
assert(not os.isdir(dstdir), "plugin(%s) already exists!", name)
os.vcp(srcdir, dstdir)
cprint(" ${yellow}->${clear} %s", name)
end
os.tryrm(tmpdir)
-- save manifest
if installed_url then
local manifest = _load_manifest() or {}
manifest.urls = manifest.urls or {}
table.join2(manifest.urls, installed_url)
_save_manifest(manifest)
end
cprint("${bright}all plugins have been installed in %s!", plugindir)
end,
catch
{
function (errors)
raise(errors)
end
}
}
-- leave environment
environment.leave()
end
-- update plugins
function _update()
-- enter environment
environment.enter()
try
{
function ()
-- do update
local manifest = _load_manifest()
assert(manifest and manifest.urls, "3rd plugins not found!")
local urls = manifest.urls
local plugindir = path.join(global.directory(), "plugins")
for _, url in ipairs(urls) do
cprint("updating plugins from %s ..", url)
local tmpdir = os.tmpfile() .. ".dir"
git.clone(url, {verbose = option.get("verbose"), outputdir = tmpdir})
for _, filepath in ipairs(os.files(path.join(tmpdir, "*", "xmake.lua"))) do
local srcdir = path.directory(filepath)
local name = path.filename(srcdir)
local dstdir = path.join(plugindir, name)
os.tryrm(dstdir)
os.vcp(srcdir, dstdir)
cprint(" ${yellow}->${clear} %s", name)
end
os.tryrm(tmpdir)
end
cprint("${bright}all plugins have been updated in %s!", plugindir)
end,
catch
{
function (errors)
raise(errors)
end
}
}
-- leave environment
environment.leave()
end
-- remove the given installed plugin (from ~/.xmake/plugins/)
function _remove()
local name = assert(option.get("plugins"), "please specify the plugin name to be removed!")
assert(name ~= "" and name ~= "." and not name:find("..", 1, true) and not name:find("[/\\:]"), "invalid plugin name(%s)!", name)
local plugindir = path.join(global.directory(), "plugins", name)
assert(os.isdir(plugindir), "plugin(%s) not found!", name)
os.rmdir(plugindir)
cprint("${color.success}remove plugin(%s) ok!", name)
end
-- list all installed plugins (manual + repository)
function _list()
local seen = {}
-- manually installed plugins
local plugindir = path.join(global.directory(), "plugins")
cprint("plugins in ${bright}%s${clear}:", plugindir)
local found = false
for _, dir in ipairs(os.dirs(path.join(plugindir, "*")) or {}) do
if os.isfile(path.join(dir, "xmake.lua")) then
local name = path.filename(dir)
seen[name] = true
found = true
cprint(" ${color.dump.string}%s${clear}", name)
end
end
if not found then
print(" (none)")
end
-- repository plugins (from scanned repos)
local reposdir = path.join(global.directory(), "repositories")
for _, dir in ipairs(os.dirs(path.join(reposdir, "*")) or {}) do
local rplugindir = path.join(dir, "plugins")
if os.isdir(rplugindir) then
local reponame = path.filename(dir)
cprint("plugins in repository ${bright}%s${clear}:", reponame)
local repofound = false
for _, subdir in ipairs(os.dirs(path.join(rplugindir, "*")) or {}) do
if os.isfile(path.join(subdir, "xmake.lua")) and not seen[path.filename(subdir)] then
seen[path.filename(subdir)] = true
repofound = true
cprint(" ${color.dump.string}%s${clear}", path.filename(subdir))
end
end
if not repofound then
print(" (none)")
end
end
end
-- local checkout plugins
local repodir = os.getenv("XMAKE_MAIN_REPO")
if repodir and os.isdir(repodir) then
local rplugindir = path.join(repodir, "plugins")
if os.isdir(rplugindir) then
cprint("plugins in ${bright}XMAKE_MAIN_REPO${clear}:")
local repofound = false
for _, subdir in ipairs(os.dirs(path.join(rplugindir, "*")) or {}) do
if os.isfile(path.join(subdir, "xmake.lua")) and not seen[path.filename(subdir)] then
seen[path.filename(subdir)] = true
repofound = true
cprint(" ${color.dump.string}%s${clear}", path.filename(subdir))
end
end
if not repofound then
print(" (none)")
end
end
end
end
-- clear all installed plugins
function _clear()
local plugindir = path.join(global.directory(), "plugins")
if os.isdir(plugindir) then
os.rmdir(plugindir)
end
cprint("${color.success}clear all installed plugins ok!")
end
function main()
if option.get("install") then
_install()
elseif option.get("update") then
_update()
elseif option.get("remove") then
_remove()
elseif option.get("list") then
_list()
elseif option.get("clear") then
_clear()
end
end
|