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
|
if not modules then modules = { } end modules ['mtx-rsync'] = {
version = 1.000,
comment = "companion to mtxrun.lua",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
-- This is an experimental script that will be extended over time and
-- is used by myself. An example or a copy spec:
--
--
-- local devdir = "m:/develop/services"
-- local orgdir = "m:/pod/m4all"
--
-- return {
-- {
-- origin = { devdir, "framework/scripts/d-dispatchers.lua"},
-- target = { orgdir, "framework/scripts" },
-- },
-- {
-- origin = { devdir, "framework/scripts/common/*"},
-- target = { orgdir, "framework/scripts/common" },
-- },
-- {
-- origin = { devdir, "framework/scripts/d-buildtool.lua" },
-- target = { orgdir, "framework/scripts" }
-- },
-- {
-- origin = { devdir, "framework/scripts/buildtool/*"},
-- target = { orgdir, "framework/scripts/buildtool" },
-- },
-- {
-- origin = { devdir, "framework/m4all*" },
-- target = { orgdir, "framework" },
-- },
-- {
-- origin = { devdir, "framework/configurations/*m4all*"},
-- target = { orgdir, "framework/configurations" },
-- },
-- {
-- recurse = true,
-- origin = { devdir, "context/tex/texmf-project/tex/context/user/m4all/*" },
-- target = { orgdir, "context/tex/texmf-project/tex/context/user/m4all" },
-- },
-- }
local helpinfo = [[
<?xml version="1.0"?>
<application>
<metadata>
<entry name="name">mtx-rsync</entry>
<entry name="detail">Rsync Helpers</entry>
<entry name="version">0.10</entry>
</metadata>
<flags>
<category name="basic">
<subcategory>
<flag name="job"><short>use given file as specification</short></flag>
<flag name="dryrun"><short>show what would happen</short></flag>
<flag name="force"><short>force run</short></flag>
</subcategory>
</category>
</flags>
</application>
]]
local application = logs.application {
name = "mtx-rsync",
banner = "Rsync Helpers 0.10",
helpinfo = helpinfo,
}
local format, gsub = string.format, string.gsub
local concat = table.concat
local report_message = logs.new("rsync message")
local report_dryrun = logs.new("rsync dryrun")
local report_normal = logs.new("rsync normal")
local report_command = logs.new("rsync command")
local cleanup
if os.platform == "mswin" then
os.setenv("CYGWIN","nontsec")
cleanup = function(name)
return (gsub(name,"([a-zA-Z]):/", "/cygdrive/%1/"))
end
else
cleanup = function(name)
return name
end
end
function rsynccommand(dryrun,recurse,origin,target)
local command = "rsync -ptlva "
if dryrun then
command = command .. "-n "
end
if recurse then
command = command .. "-r "
end
return format('%s %s %s',command,origin,target)
end
scripts = scripts or { }
scripts.rsync = scripts.rsync or { }
local rsync = scripts.rsync
rsync.mode = "command"
function rsync.run(origin,target,message,recurse)
if type(origin) == "table" then
origin = concat(origin,"/")
end
if type(target) == "table" then
target = concat(target,"/")
end
origin = cleanup(origin)
target = cleanup(target)
local path = gsub(target,"^/cygdrive/(.)","%1:")
if not lfs.isdir(path) then
report_message("creating target dir %s",path)
dir.makedirs(path) -- as rsync only creates them when --recursive
end
if message then
report_message(message)
end
if rsync.mode == "dryrun" then
local command = rsynccommand(true,recurse,origin,target)
report_dryrun(command.."\n")
os.execute(command)
elseif rsync.mode == "force" then
local command = rsynccommand(false,recurse,origin,target)
report_normal(command.."\n")
os.execute(command)
else
local command = rsynccommand(true,recurse,origin,target)
report_command(command)
end
end
function rsync.job(list)
if type(list) == "string" and lfs.isfile(list) then
list = dofile(list)
end
if type(list) ~= "table" then
report_message("invalid job specification")
return
end
for i=1,#list do
local li = list[i]
local origin = li.origin
local target = li.target
local message = li.message
local recurse = li.recurse
if origin and #origin > 0 and target and #target > 0 then -- string or table
rsync.run(origin,target,message,recurse)
else
report_message("invalid job specification at index %s",i)
end
end
end
if environment.ownscript then
-- stand alone
else
report(application.banner)
return rsync
end
local arguments = environment.arguments
local files = environment.files
if arguments.dryrun then
rsync.mode = "dryrun"
elseif arguments.force then
rsync.mode = "force"
end
if arguments.exporthelp then
application.export(arguments.exporthelp,environment.files[1])
elseif arguments.job then
rsync.job(files[1])
elseif files[1] and files[2] then
rsync.run(files[1],files[2])
else
application.help()
end
|