@@ -50,6 +50,7 @@ bool readListFromValMap(TDst *pDst, const TMap &vm, const char *key)
50
50
// / transformation properties set on cmd-line
51
51
struct TransformerProps {
52
52
TStringList prefixCmd; // /< cmd-line operands
53
+ bool shellForm; // /< if true, write shell form of RUN lines
53
54
bool verbose; // /< if true, print in/out of each transformation
54
55
};
55
56
@@ -162,20 +163,50 @@ void appendShellExec(TStringList *pExecList, const std::string &str)
162
163
pExecList->push_back (str);
163
164
}
164
165
165
- // / precede each back-slash and each quote by back-slash
166
- std::string runQuoteArg (std::string arg)
166
+ // / precede selected special chars by back-slash
167
+ std::string runQuoteArg (std::string arg, const bool escapeTick= false )
167
168
{
168
169
boost::algorithm::replace_all (arg, " \\ " , " \\\\ " );
169
170
boost::algorithm::replace_all (arg, " \" " , " \\\" " );
170
171
boost::algorithm::replace_all (arg, " \n " , " \\ n" );
171
172
boost::algorithm::replace_all (arg, " \t " , " \\ t" );
173
+
174
+ if (escapeTick)
175
+ boost::algorithm::replace_all (arg, " '" , " \\ '" );
176
+
172
177
return arg;
173
178
}
174
179
180
+ // / construct "'cmd' 'arg1' 'arg2' ..." from execList
181
+ std::string runShellCmdFromExecList (const TStringList &execList)
182
+ {
183
+ std::string cmd;
184
+
185
+ int i = 0 ;
186
+ for (const std::string &arg : execList) {
187
+ if (i++)
188
+ // space-separator
189
+ cmd += " " ;
190
+
191
+ const std::string quoted = runQuoteArg (arg, /* escapeTick */ true );
192
+ if (quoted != arg)
193
+ // construct $'...'
194
+ cmd += " $" ;
195
+
196
+ // append the quoted arg
197
+ cmd += " '" + quoted + " '" ;
198
+ }
199
+
200
+ return cmd;
201
+ }
202
+
175
203
// / construct transformed RUN command from execList
176
204
std::string DockerFileTransformer::runCmdFromExecList (
177
205
const TStringList &execList)
178
206
{
207
+ if (this ->tp_ .shellForm )
208
+ return runShellCmdFromExecList (execList);
209
+
179
210
// construct ["cmd", "arg1", "arg2", ...] from execList
180
211
std::string runLine = " [" ;
181
212
int i = 0 ;
@@ -337,6 +368,8 @@ int main(int argc, char *argv[])
337
368
desc.add_options ()
338
369
(" in-place,i" , po::value<std::string>(),
339
370
" modify the specified file in-place" )
371
+ (" shell-form" , " write transformed RUN lines using the shell form"
372
+ " (rather than exec form, which is the default format)" )
340
373
(" verbose" , " print transformations to standard error output" );
341
374
342
375
desc.add_options ()
@@ -376,6 +409,7 @@ int main(int argc, char *argv[])
376
409
377
410
// read cmd-line flags
378
411
TransformerProps tp;
412
+ tp.shellForm = !!vm.count (" shell-form" );
379
413
tp.verbose = !!vm.count (" verbose" );
380
414
381
415
// read the prefix command
0 commit comments