mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 17:34:34 +00:00
68 lines
2.3 KiB
Odin
68 lines
2.3 KiB
Odin
package strings
|
|
|
|
import "core:runtime"
|
|
|
|
// custom string entry struct
|
|
Intern_Entry :: struct {
|
|
len: int,
|
|
str: [1]byte, // string is allocated inline with the entry to keep allocations simple
|
|
}
|
|
|
|
// "intern" is a more memory efficient string map
|
|
// `allocator` is used to allocate the actual `Intern_Entry` strings
|
|
Intern :: struct {
|
|
allocator: runtime.Allocator,
|
|
entries: map[string]^Intern_Entry,
|
|
}
|
|
|
|
// initialize the entries map and set the allocator for the string entries
|
|
intern_init :: proc(m: ^Intern, allocator := context.allocator, map_allocator := context.allocator) {
|
|
m.allocator = allocator
|
|
m.entries = make(map[string]^Intern_Entry, 16, map_allocator)
|
|
}
|
|
|
|
// free the map and all its content allocated using the `.allocator`
|
|
intern_destroy :: proc(m: ^Intern) {
|
|
for _, value in m.entries {
|
|
free(value, m.allocator)
|
|
}
|
|
delete(m.entries)
|
|
}
|
|
|
|
// returns the `text` string from the intern map - gets set if it didnt exist yet
|
|
// the returned string lives as long as the map entry lives
|
|
intern_get :: proc(m: ^Intern, text: string) -> (str: string, err: runtime.Allocator_Error) {
|
|
entry := _intern_get_entry(m, text) or_return
|
|
#no_bounds_check return string(entry.str[:entry.len]), nil
|
|
}
|
|
|
|
// returns the `text` cstring from the intern map - gets set if it didnt exist yet
|
|
// the returned cstring lives as long as the map entry lives
|
|
intern_get_cstring :: proc(m: ^Intern, text: string) -> (str: cstring, err: runtime.Allocator_Error) {
|
|
entry := _intern_get_entry(m, text) or_return
|
|
return cstring(&entry.str[0]), nil
|
|
}
|
|
|
|
// looks up wether the `text` string exists in the map, returns the entry
|
|
// sets & allocates the entry if it wasnt set yet
|
|
_intern_get_entry :: proc(m: ^Intern, text: string) -> (new_entry: ^Intern_Entry, err: runtime.Allocator_Error) #no_bounds_check {
|
|
if prev, ok := m.entries[text]; ok {
|
|
return prev, nil
|
|
}
|
|
if m.allocator.procedure == nil {
|
|
m.allocator = context.allocator
|
|
}
|
|
|
|
entry_size := int(offset_of(Intern_Entry, str)) + len(text) + 1
|
|
bytes := runtime.mem_alloc(entry_size, align_of(Intern_Entry), m.allocator) or_return
|
|
new_entry = (^Intern_Entry)(raw_data(bytes))
|
|
|
|
new_entry.len = len(text)
|
|
copy(new_entry.str[:new_entry.len], text)
|
|
new_entry.str[new_entry.len] = 0
|
|
|
|
key := string(new_entry.str[:new_entry.len])
|
|
m.entries[key] = new_entry
|
|
return new_entry, nil
|
|
}
|