rwx/sh/core/code.awk

256 lines
4.8 KiB
Awk
Raw Normal View History

2025-08-02 01:19:38 +02:00
# code
2025-08-02 02:57:21 +02:00
# functions
2025-07-13 20:43:18 +02:00
function alias_eval(alias, name, type) {
2025-08-02 01:19:38 +02:00
text = alias "() { "
if (type == "function") {
text = text name " \"${@}\""
} else if (type == "variable") {
text = text "echo \"${" name "}\""
}
print text "; }"
2025-07-13 18:56:54 +02:00
}
2025-08-02 02:42:26 +02:00
function append(string) {
2025-08-02 01:19:38 +02:00
if (doc) {
doc = doc "\n"
}
2025-08-02 02:42:26 +02:00
doc = doc string
2025-07-06 03:16:41 +02:00
}
2025-07-13 18:56:54 +02:00
function extract(string, type) {
2025-08-02 01:19:38 +02:00
if (type == "alias") {
split(string, array, "#=")
return trim(array[2])
} else if (type == "command") {
split(string, array, "#/")
return trim(array[2])
} else if (type == "doc") {
split(string, array, "#")
return trim(array[2])
} else if (type == "function") {
split(string, array, "(")
return trim(array[1])
} else if (type == "module") {
split(string, array, "#\\.")
return trim(array[2])
} else if (type == "shebang") {
split(string, array, "#!")
return trim(array[2])
} else if ((type == "constant") || (type == "variable")) {
split(string, array, "=")
return trim(array[1])
}
2025-07-11 15:52:38 +02:00
}
2025-07-06 09:42:23 +02:00
function output(name, type) {
2025-08-02 01:19:38 +02:00
print "↙ " type
print name
print doc
exit
2025-07-06 03:16:41 +02:00
}
function reset() {
2025-08-02 01:19:38 +02:00
if (f == "") {
doc = ""
}
2025-07-06 03:16:41 +02:00
}
2025-07-13 18:56:54 +02:00
function trim(string) {
2025-08-02 01:19:38 +02:00
text = string
sub("^[\t ]*", "", text)
sub("[\t ]*$", "", text)
return text
2025-07-13 18:56:54 +02:00
}
2025-08-02 02:57:21 +02:00
# begin
2025-07-06 03:16:41 +02:00
BEGIN {
2025-08-02 02:57:21 +02:00
RE_ANY = "(.*)"
RE_BEGIN = "^"
RE_CONST = "([_A-Z][_0-9A-Z]*)"
RE_SET = "=.*"
RE_SPACE = "[[:space:]]"
RE_TSK = "(FIXME|TODO)"
RE_VAR = "([_a-z][_0-9a-z]*)"
RE_SPACES = RE_SPACE "*"
RE_END = RE_SPACES "$"
RE_FUNC = RE_SPACES "\\(" RE_SPACES "\\)" RE_SPACES "{"
re["alias"] = RE_BEGIN "#=" RE_SPACES RE_VAR RE_END
re["binary"] = RE_BEGIN "#\\|" RE_SPACES RE_VAR RE_END
RE_CLOSE = RE_BEGIN "}" RE_SPACES RE_END
re["command"] = RE_BEGIN "#/" RE_SPACES RE_VAR RE_END
RE_COMMENT = RE_BEGIN "#" RE_ANY RE_END
re["constant"] = RE_BEGIN RE_CONST RE_SET RE_END
RE_DOC = RE_BEGIN RE_SPACES "#" RE_SPACE RE_ANY RE_END
re["function"] = RE_BEGIN RE_VAR RE_FUNC RE_END
RE_MODULE = RE_BEGIN "#\\." RE_SPACES RE_ANY RE_END
RE_SHEBANG = RE_BEGIN "#!" RE_SPACES RE_ANY RE_END
RE_TASK = RE_BEGIN RE_SPACES "#" RE_SPACES RE_TSK RE_ANY RE_END
re["variable"] = RE_BEGIN RE_VAR RE_SET RE_END
f = ""
match_alias = 0
match_command = 0
match_module = 0
match_task = 0
reset()
2025-07-06 03:16:41 +02:00
}
2025-08-02 02:57:21 +02:00
# main
2025-07-06 03:16:41 +02:00
{
2025-08-02 02:57:21 +02:00
if (action == "filter") {
if (match($0, re[target])) {
unique[extract($0, target)] = ""
}
} else if (action == "tasks") {
line++
if (match($0, RE_MODULE)) {
line = 1
if (output_tasks) {
print ""
print output_module
print output_tasks
output_tasks = ""
2025-08-02 01:19:38 +02:00
}
2025-08-02 02:57:21 +02:00
doc = ""
match_task = 0
output_module = ". " extract($0, "module")
} else if (match($0, RE_TASK)) {
if (target) {
if (target == extract($0, "task")) {
2025-08-02 01:19:38 +02:00
match_task = 1
}
} else {
2025-08-02 02:57:21 +02:00
match_task = 1
}
append(line ": " $0)
} else if (match($0, RE_COMMENT)) {
append(line ": " $0)
} else {
if (match_task) {
output_tasks = output_tasks "\n" doc
}
doc = ""
match_task = 0
}
} else if (action == "eval") {
if (match($0, re[target])) {
append(extract($0, target))
} else if (match($0, re["function"])) {
split(doc, array, "\n")
for (item in array) {
alias_eval(array[item], extract($0, "function"), "function")
2025-08-02 01:19:38 +02:00
}
2025-08-02 02:57:21 +02:00
reset()
} else {
reset()
}
} else if (action == "function") {
if (match($0, re["command"])) {
append(extract($0, "command"))
} else if (match($0, re["function"])) {
split(doc, array, "\n")
for (item in array) {
if (array[item] == target) {
print extract($0, "function")
exit
2025-08-02 01:19:38 +02:00
}
2025-08-02 02:57:21 +02:00
}
reset()
} else {
reset()
}
} else if (action == "doc") {
# doc
if (match($0, RE_SHEBANG)) {
append("! " extract($0, "shebang"))
} else if (match($0, RE_DOC)) {
if (f) {
append($0)
2025-08-02 01:19:38 +02:00
} else {
2025-08-02 02:57:21 +02:00
append(extract($0, "doc"))
2025-08-02 01:19:38 +02:00
}
2025-08-02 02:57:21 +02:00
} else if (match($0, re["alias"])) {
matched = extract($0, "alias")
append("= " matched)
if (matched == target) {
match_alias = 1
}
} else if (match($0, re["command"])) {
matched = extract($0, "command")
append("/ " matched)
if (matched == target) {
match_command = 1
}
# set
} else if (match($0, re["constant"])) {
matched = extract($0, "constant")
if (matched == target) {
output(matched, "constant")
} else {
2025-08-02 01:19:38 +02:00
reset()
2025-08-02 02:57:21 +02:00
}
} else if (match($0, re["variable"])) {
matched = extract($0, "variable")
if (matched == target) {
output(matched, "variable")
2025-08-02 01:19:38 +02:00
} else {
reset()
}
2025-08-02 02:57:21 +02:00
# others
} else if (match($0, RE_MODULE)) {
reset()
if (extract($0, "module") == target) {
match_module = 1
}
} else if (match($0, re["function"])) {
f = extract($0, "function")
} else if (match($0, RE_CLOSE)) {
if (match_alias) {
print "= " target
output(f, "function")
} else if (match_command) {
print "/ " target
output(f, "function")
} else if (f == target) {
output(f, "function")
} else {
f = ""
2025-08-02 01:19:38 +02:00
reset()
2025-08-02 02:57:21 +02:00
}
} else {
if (match_module) {
output(target, "module")
2025-08-02 01:19:38 +02:00
} else {
2025-08-02 02:57:21 +02:00
reset()
2025-08-02 01:19:38 +02:00
}
}
2025-07-06 03:16:41 +02:00
}
2025-07-08 15:26:34 +02:00
2025-08-02 02:57:21 +02:00
}
# end
2025-07-08 15:26:34 +02:00
END {
2025-08-02 02:57:21 +02:00
if (action == "filter") {
for (item in unique) {
print item
2025-08-02 01:19:38 +02:00
}
2025-07-08 15:26:34 +02:00
}
2025-08-02 02:57:21 +02:00
}