210 lines
5.7 KiB
Odin
210 lines
5.7 KiB
Odin
/*
|
|
zlib License
|
|
|
|
(C) 2026 Simon Kellet
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
warranty. In no event will the authors be held liable for any damages
|
|
arising from the use of this software.
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
including commercial applications, and to alter it and redistribute it
|
|
freely, subject to the following restrictions:
|
|
|
|
1. The origin of this software must not be misrepresented; you must not
|
|
claim that you wrote the original software. If you use this software
|
|
in a product, an acknowledgment in the product documentation would be
|
|
appreciated but is not required.
|
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
misrepresented as being the original software.
|
|
3. This notice may not be removed or altered from any source distribution.
|
|
*/
|
|
|
|
#+vet explicit-allocators
|
|
package fleg
|
|
|
|
import "base:runtime"
|
|
import "core:fmt"
|
|
import "core:os"
|
|
import "core:strconv"
|
|
import "core:strings"
|
|
|
|
FORCE_HELP_ON_EMPTY_ARGS := false
|
|
FLAG_START_CHAR := "-"
|
|
FLAG_SEP_CHAR := "="
|
|
|
|
Flag_Value_Ptr :: union {
|
|
^bool,
|
|
^int,
|
|
^string,
|
|
^f32,
|
|
^f64,
|
|
}
|
|
|
|
Flag :: struct {
|
|
name: string,
|
|
value: Flag_Value_Ptr,
|
|
usage: string,
|
|
parsed: bool, // sck: flag to check if it has been parsed
|
|
}
|
|
|
|
// Global dynamic array of Flags
|
|
all_flags: [dynamic]Flag
|
|
|
|
// runtime allocator for the flags
|
|
flag_allocator: runtime.Allocator
|
|
|
|
// sck: Used to create a customer allocator
|
|
init_custom_allocator :: proc(allocator: runtime.Allocator) {
|
|
destroy() // sck: make sure to destory the old allocations
|
|
|
|
flag_allocator = allocator
|
|
all_flags = make([dynamic]Flag, flag_allocator)
|
|
}
|
|
|
|
destroy :: proc() {
|
|
delete(all_flags)
|
|
all_flags = {} // sck: needed?
|
|
}
|
|
|
|
print_flags :: proc() {
|
|
for f in all_flags {
|
|
fmt.printfln("%s: %v: %s", f.name, f.value, f.usage)
|
|
}
|
|
}
|
|
|
|
print_usage :: proc() {
|
|
fmt.println("\tUsage: ")
|
|
fmt.println("\n\tFlag format for this program:")
|
|
fmt.printfln("\t%s<flag>%s<value>\n", FLAG_START_CHAR, FLAG_SEP_CHAR)
|
|
for f in all_flags {
|
|
switch v in f.value {
|
|
case ^bool:
|
|
fmt.printfln("\t%s%s:\n\t\t%s (default: %v)\n", FLAG_START_CHAR, f.name, f.usage, v^)
|
|
case ^int:
|
|
fmt.printfln("\t%s%s:\n\t\t%s (default: %d)\n", FLAG_START_CHAR, f.name, f.usage, v^)
|
|
case ^string:
|
|
fmt.printfln("\t%s%s:\n\t\t%s (default: %s)\n", FLAG_START_CHAR, f.name, f.usage, v^)
|
|
case ^f32:
|
|
fmt.printfln("\t%s%s:\n\t\t%s (default: %f)\n", FLAG_START_CHAR, f.name, f.usage, v^)
|
|
case ^f64:
|
|
fmt.printfln("\t%s%s:\n\t\t%s (default: %f)\n", FLAG_START_CHAR, f.name, f.usage, v^)
|
|
}
|
|
}
|
|
os.exit(0)
|
|
}
|
|
|
|
BoolVar :: proc(ptr: ^bool, name: string, default: bool, usage: string) {
|
|
ptr^ = default
|
|
append(&all_flags, Flag{name = name, value = ptr, usage = usage})
|
|
}
|
|
|
|
IntVar :: proc(ptr: ^int, name: string, default: int, usage: string) {
|
|
ptr^ = default
|
|
append(&all_flags, Flag{name = name, value = ptr, usage = usage})
|
|
}
|
|
|
|
StringVar :: proc(ptr: ^string, name: string, default: string, usage: string) {
|
|
ptr^ = default
|
|
append(&all_flags, Flag{name = name, value = ptr, usage = usage})
|
|
}
|
|
|
|
Float32Var :: proc(ptr: ^f32, name: string, default: f32, usage: string) {
|
|
ptr^ = default
|
|
append(&all_flags, Flag{name = name, value = ptr, usage = usage})
|
|
}
|
|
|
|
Float64Var :: proc(ptr: ^f64, name: string, default: f64, usage: string) {
|
|
ptr^ = default
|
|
append(&all_flags, Flag{name = name, value = ptr, usage = usage})
|
|
}
|
|
|
|
parse_flags :: proc() {
|
|
// sck: We cannot have the start and seperator formats being the same
|
|
// ...leads to parsing errors...
|
|
if FLAG_START_CHAR == FLAG_SEP_CHAR {
|
|
fmt.println("[ERROR]: FLAG_START_CHAR and FLAG_SEP_CHAR cannot be the same!")
|
|
fmt.printfln("\t FLAG_START_CHAR= \"%s\"\t FLAG_SEP_CHAR= \"%s\"", FLAG_START_CHAR, FLAG_SEP_CHAR)
|
|
os.exit(1)
|
|
}
|
|
if len(os.args) < 2 && FORCE_HELP_ON_EMPTY_ARGS {print_usage()}
|
|
|
|
for &a in os.args {
|
|
if a == "-h" || a == "-help" || a == "--help" {print_usage()}
|
|
// sck: if the user has a custom flag format, copy that to the help flag too.
|
|
if a == fmt.aprintf("%s%s", FLAG_START_CHAR, "help", allocator = flag_allocator) {print_usage()}
|
|
if a == fmt.aprintf("%s%s", FLAG_START_CHAR, "h", allocator = flag_allocator) {print_usage()}
|
|
|
|
if a == os.args[0] {continue}
|
|
|
|
for &f in all_flags {
|
|
if f.parsed {continue}
|
|
a = strings.trim_prefix(a, FLAG_START_CHAR)
|
|
|
|
name := a
|
|
value: string
|
|
|
|
split := strings.index_any(a, FLAG_SEP_CHAR)
|
|
if split >= 0 {
|
|
name = a[:split]
|
|
value = a[split + 1:]
|
|
} else {
|
|
name = a
|
|
fmt.printf("[INFO]: Could not read flag: %s. ", name)
|
|
fmt.printfln("Want %s<flag>%s<value>\n", FLAG_START_CHAR, FLAG_SEP_CHAR)
|
|
break
|
|
}
|
|
|
|
if name == f.name && !f.parsed {
|
|
f.parsed = true
|
|
switch &v in f.value {
|
|
case ^bool:
|
|
if value == "" {break}
|
|
parsed, ok := strconv.parse_bool(value)
|
|
if !ok {
|
|
fmt.fprintfln(os.stderr, "[ERROR] Failed to parse flag %s: got %T, wanted bool",
|
|
f.name, value)
|
|
os.exit(1)
|
|
}
|
|
v^ = parsed
|
|
|
|
case ^int:
|
|
if value == "" {break}
|
|
parsed, ok := strconv.parse_int(value)
|
|
if !ok {
|
|
fmt.fprintfln(os.stderr, "[ERROR] Failed to parse flag %s: got %T, wanted int",
|
|
f.name, value)
|
|
os.exit(1)
|
|
}
|
|
v^ = parsed
|
|
|
|
case ^string:
|
|
if value == "" {break}
|
|
// TODO: validate string?
|
|
v^ = value
|
|
|
|
case ^f32:
|
|
if value == "" {break}
|
|
parsed, ok := strconv.parse_f32(value)
|
|
if !ok {
|
|
fmt.fprintfln(os.stderr, "[ERROR] Failed to parse flag %s: got %T, wanted f32",
|
|
f.name, value)
|
|
os.exit(1)
|
|
}
|
|
v^ = parsed
|
|
|
|
case ^f64:
|
|
if value == "" {break}
|
|
parsed, ok := strconv.parse_f64(value)
|
|
if !ok {
|
|
fmt.fprintfln(os.stderr, "[ERROR] Failed to parse flag %s: got %T, wanted f64",
|
|
f.name, value)
|
|
os.exit(1)
|
|
}
|
|
v^ = parsed
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|