1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +02:00

Allow setting extra flags and renaming folder

This commit is contained in:
Laurent Cozic
2017-11-16 18:51:11 +00:00
parent eacd0e5cfd
commit 5098c03264
7 changed files with 131 additions and 89 deletions

View File

@@ -122,4 +122,73 @@ function wrap(text, indent, width) {
});
}
module.exports = { removeDiacritics, escapeFilename, wrap };
function splitCommandString(command) {
let args = [];
let state = "start"
let current = ""
let quote = "\""
let escapeNext = false;
for (let i = 0; i < command.length; i++) {
let c = command[i]
if (state == "quotes") {
if (c != quote) {
current += c
} else {
args.push(current)
current = ""
state = "start"
}
continue
}
if (escapeNext) {
current += c;
escapeNext = false;
continue;
}
if (c == "\\") {
escapeNext = true;
continue;
}
if (c == '"' || c == '\'') {
state = "quotes"
quote = c
continue
}
if (state == "arg") {
if (c == ' ' || c == '\t') {
args.push(current)
current = ""
state = "start"
} else {
current += c
}
continue
}
if (c != ' ' && c != "\t") {
state = "arg"
current += c
}
}
if (state == "quotes") {
throw new Error("Unclosed quote in command line: " + command)
}
if (current != "") {
args.push(current)
}
if (args.length <= 0) {
throw new Error("Empty command line")
}
return args;
}
module.exports = { removeDiacritics, escapeFilename, wrap, splitCommandString };