Path seperator cleanup
This commit is contained in:
+221
-230
@@ -1,4 +1,4 @@
|
|||||||
// Generated by the DN single header generator 2026-07-30 18:59:43
|
// Generated by the DN single header generator 2026-07-31 22:40:42
|
||||||
|
|
||||||
// DN: Single header generator commented out => #if defined(_CLANGD)
|
// DN: Single header generator commented out => #if defined(_CLANGD)
|
||||||
// #define DN_WITH_TESTS 1
|
// #define DN_WITH_TESTS 1
|
||||||
@@ -3259,22 +3259,22 @@ DN_API void DN_Str8x1024AppendFmtV(DN_Str8x1024 *str, DN_FMT_ATTRIB char const *
|
|||||||
DN_FmtVAppend(str->data, &str->count, sizeof(str->data), fmt, args);
|
DN_FmtVAppend(str->data, &str->count, sizeof(str->data), fmt, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
DN_API DN_Str8x32 DN_Str8x32FromU64(DN_U64 val, char separator)
|
DN_API DN_Str8x32 DN_Str8x32FromU64(DN_U64 val, char seperator)
|
||||||
{
|
{
|
||||||
DN_Str8x32 result = {};
|
DN_Str8x32 result = {};
|
||||||
DN_Str8x32 temp = DN_Str8x32FromFmt("%" PRIu64, val);
|
DN_Str8x32 temp = DN_Str8x32FromFmt("%" PRIu64, val);
|
||||||
DN_USize temp_index = 0;
|
DN_USize temp_index = 0;
|
||||||
|
|
||||||
// NOTE: Write the digits the first, up to [0, 2] digits that do not need a thousandth separator
|
// NOTE: Write the digits the first, up to [0, 2] digits that do not need a thousandth seperator
|
||||||
DN_USize range_without_separator = temp.count % 3;
|
DN_USize range_without_seperator = temp.count % 3;
|
||||||
for (; temp_index < range_without_separator; temp_index++)
|
for (; temp_index < range_without_seperator; temp_index++)
|
||||||
result.data[result.count++] = temp.data[temp_index];
|
result.data[result.count++] = temp.data[temp_index];
|
||||||
|
|
||||||
// NOTE: Write the subsequent digits and every 3rd digit, add the seperator
|
// NOTE: Write the subsequent digits and every 3rd digit, add the seperator
|
||||||
DN_USize digit_counter = 0;
|
DN_USize digit_counter = 0;
|
||||||
for (; temp_index < temp.count; temp_index++, digit_counter++) {
|
for (; temp_index < temp.count; temp_index++, digit_counter++) {
|
||||||
if (separator && temp_index && (digit_counter % 3 == 0))
|
if (seperator && temp_index && (digit_counter % 3 == 0))
|
||||||
result.data[result.count++] = separator;
|
result.data[result.count++] = seperator;
|
||||||
result.data[result.count++] = temp.data[temp_index];
|
result.data[result.count++] = temp.data[temp_index];
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
@@ -3758,8 +3758,8 @@ DN_API DN_Str8 DN_Str8TrimByteOrderMark(DN_Str8 string)
|
|||||||
|
|
||||||
DN_API DN_Str8 DN_Str8FileNameFromPath(DN_Str8 path)
|
DN_API DN_Str8 DN_Str8FileNameFromPath(DN_Str8 path)
|
||||||
{
|
{
|
||||||
DN_Str8 separators[] = {DN_Str8Lit("/"), DN_Str8Lit("\\")};
|
DN_Str8 seperators[] = {DN_Str8Lit("/"), DN_Str8Lit("\\")};
|
||||||
DN_Str8BSplitResult split = DN_Str8BSplitLastArray(path, separators, DN_ArrayCountU(separators));
|
DN_Str8BSplitResult split = DN_Str8BSplitLastArray(path, seperators, DN_ArrayCountU(seperators));
|
||||||
DN_Str8 result = split.rhs.count ? split.rhs : split.lhs;
|
DN_Str8 result = split.rhs.count ? split.rhs : split.lhs;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@@ -3787,8 +3787,8 @@ DN_API DN_Str8 DN_Str8FileExtension(DN_Str8 path)
|
|||||||
|
|
||||||
DN_API DN_Str8 DN_Str8FileDirectoryFromPath(DN_Str8 path)
|
DN_API DN_Str8 DN_Str8FileDirectoryFromPath(DN_Str8 path)
|
||||||
{
|
{
|
||||||
DN_Str8 separators[] = {DN_Str8Lit("/"), DN_Str8Lit("\\")};
|
DN_Str8 seperators[] = {DN_Str8Lit("/"), DN_Str8Lit("\\")};
|
||||||
DN_Str8BSplitResult split = DN_Str8BSplitLastArray(path, separators, DN_ArrayCountU(separators));
|
DN_Str8BSplitResult split = DN_Str8BSplitLastArray(path, seperators, DN_ArrayCountU(seperators));
|
||||||
DN_Str8 result = split.rhs.count == 0 ? DN_Str8Lit(".") : split.lhs;
|
DN_Str8 result = split.rhs.count == 0 ? DN_Str8Lit(".") : split.lhs;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@@ -4087,7 +4087,7 @@ DN_API DN_Str8 DN_Str8LineBreakAllocator(DN_Str8 src, DN_USize desired_width, DN
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if adding this word (plus separator space) would overflow
|
// Check if adding this word (plus seperator space) would overflow
|
||||||
DN_USize combined_length = curr_line_length + 1 + split.lhs.count;
|
DN_USize combined_length = curr_line_length + 1 + split.lhs.count;
|
||||||
if (combined_length > desired_width) {
|
if (combined_length > desired_width) {
|
||||||
// Commit current line, start new line with current word
|
// Commit current line, start new line with current word
|
||||||
@@ -4455,7 +4455,7 @@ DN_API DN_Str8Slice DN_Str8SplitAllocAVX512F(DN_Arena *arena, DN_Str8 string, DN
|
|||||||
}
|
}
|
||||||
#endif // DN_STR8_AVX512F
|
#endif // DN_STR8_AVX512F
|
||||||
|
|
||||||
DN_API DN_Str8 DN_Str8SliceRender(DN_Str8Slice slice, DN_Str8 separator, DN_Arena *arena)
|
DN_API DN_Str8 DN_Str8SliceRender(DN_Str8Slice slice, DN_Str8 seperator, DN_Arena *arena)
|
||||||
{
|
{
|
||||||
DN_Str8 result = {};
|
DN_Str8 result = {};
|
||||||
if (!arena)
|
if (!arena)
|
||||||
@@ -4464,7 +4464,7 @@ DN_API DN_Str8 DN_Str8SliceRender(DN_Str8Slice slice, DN_Str8 separator, DN_Aren
|
|||||||
DN_USize total_size = 0;
|
DN_USize total_size = 0;
|
||||||
for (DN_USize index = 0; index < slice.count; index++) {
|
for (DN_USize index = 0; index < slice.count; index++) {
|
||||||
if (index)
|
if (index)
|
||||||
total_size += separator.count;
|
total_size += seperator.count;
|
||||||
DN_Str8 item = slice.data[index];
|
DN_Str8 item = slice.data[index];
|
||||||
total_size += item.count;
|
total_size += item.count;
|
||||||
}
|
}
|
||||||
@@ -4474,8 +4474,8 @@ DN_API DN_Str8 DN_Str8SliceRender(DN_Str8Slice slice, DN_Str8 separator, DN_Aren
|
|||||||
DN_USize write_index = 0;
|
DN_USize write_index = 0;
|
||||||
for (DN_USize index = 0; index < slice.count; index++) {
|
for (DN_USize index = 0; index < slice.count; index++) {
|
||||||
if (index) {
|
if (index) {
|
||||||
DN_Memcpy(result.data + write_index, separator.data, separator.count);
|
DN_Memcpy(result.data + write_index, seperator.data, seperator.count);
|
||||||
write_index += separator.count;
|
write_index += seperator.count;
|
||||||
}
|
}
|
||||||
DN_Str8 item = slice.data[index];
|
DN_Str8 item = slice.data[index];
|
||||||
DN_Memcpy(result.data + write_index, item.data, item.count);
|
DN_Memcpy(result.data + write_index, item.data, item.count);
|
||||||
@@ -4594,7 +4594,7 @@ DN_API bool DN_Str16Eq(DN_Str16 lhs, DN_Str16 rhs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
DN_API DN_Str16 DN_Str16SliceRender(DN_Str16Slice slice, DN_Str16 separator, DN_Arena *arena)
|
DN_API DN_Str16 DN_Str16SliceRender(DN_Str16Slice slice, DN_Str16 seperator, DN_Arena *arena)
|
||||||
{
|
{
|
||||||
DN_Str16 result = {};
|
DN_Str16 result = {};
|
||||||
if (!arena)
|
if (!arena)
|
||||||
@@ -4603,7 +4603,7 @@ DN_API DN_Str16 DN_Str16SliceRender(DN_Str16Slice slice, DN_Str16 separator, DN_
|
|||||||
DN_USize total_size = 0;
|
DN_USize total_size = 0;
|
||||||
for (DN_USize index = 0; index < slice.count; index++) {
|
for (DN_USize index = 0; index < slice.count; index++) {
|
||||||
if (index)
|
if (index)
|
||||||
total_size += separator.count;
|
total_size += seperator.count;
|
||||||
DN_Str16 item = slice.data[index];
|
DN_Str16 item = slice.data[index];
|
||||||
total_size += item.count;
|
total_size += item.count;
|
||||||
}
|
}
|
||||||
@@ -4613,8 +4613,8 @@ DN_API DN_Str16 DN_Str16SliceRender(DN_Str16Slice slice, DN_Str16 separator, DN_
|
|||||||
DN_USize write_index = 0;
|
DN_USize write_index = 0;
|
||||||
for (DN_USize index = 0; index < slice.count; index++) {
|
for (DN_USize index = 0; index < slice.count; index++) {
|
||||||
if (index) {
|
if (index) {
|
||||||
DN_Memcpy(result.data + write_index, separator.data, separator.count * sizeof(result.data[0]));
|
DN_Memcpy(result.data + write_index, seperator.data, seperator.count * sizeof(result.data[0]));
|
||||||
write_index += separator.count;
|
write_index += seperator.count;
|
||||||
}
|
}
|
||||||
DN_Str16 item = slice.data[index];
|
DN_Str16 item = slice.data[index];
|
||||||
DN_Memcpy(result.data + write_index, item.data, item.count * sizeof(result.data[0]));
|
DN_Memcpy(result.data + write_index, item.data, item.count * sizeof(result.data[0]));
|
||||||
@@ -4916,6 +4916,188 @@ DN_API DN_Str8 DN_Str8FromStr8BuilderDelimitArena(DN_Str8Builder const *builder,
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DN_API bool DN_PathAddRef(DN_Path *path, DN_Str8 add, DN_Arena *arena)
|
||||||
|
{
|
||||||
|
if (!arena || !path)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if (add.count == 0)
|
||||||
|
return true;
|
||||||
|
|
||||||
|
DN_Str8 const delimiter_array[] = {
|
||||||
|
DN_Str8Lit("\\"),
|
||||||
|
DN_Str8Lit("/")};
|
||||||
|
|
||||||
|
if (path->links_size == 0)
|
||||||
|
path->has_prefix_path_seperator = (add.data[0] == '/');
|
||||||
|
|
||||||
|
for (;;) {
|
||||||
|
DN_Str8BSplitResult delimiter = DN_Str8BSplitArray(add, delimiter_array, DN_ArrayCountU(delimiter_array));
|
||||||
|
for (; delimiter.lhs.data; delimiter = DN_Str8BSplitArray(delimiter.rhs, delimiter_array, DN_ArrayCountU(delimiter_array))) {
|
||||||
|
if (delimiter.lhs.count <= 0)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
DN_Str8Link *link = DN_ArenaNew(arena, DN_Str8Link, DN_ZMem_Yes);
|
||||||
|
if (!link)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
link->string = delimiter.lhs;
|
||||||
|
link->prev = path->tail;
|
||||||
|
if (path->tail)
|
||||||
|
path->tail->next = link;
|
||||||
|
else
|
||||||
|
path->head = link;
|
||||||
|
path->tail = link;
|
||||||
|
path->links_size += 1;
|
||||||
|
path->string_size += delimiter.lhs.count;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!delimiter.lhs.data)
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
DN_API bool DN_PathAdd(DN_Path *path, DN_Str8 add, DN_Arena *arena)
|
||||||
|
{
|
||||||
|
DN_Str8 copy = DN_Str8FromStr8Arena(add, arena);
|
||||||
|
bool result = copy.count ? true : DN_PathAddRef(path, copy, arena);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
DN_API bool DN_PathAddF(DN_Path *path, DN_Arena *arena, DN_FMT_ATTRIB char const *fmt, ...)
|
||||||
|
{
|
||||||
|
va_list args;
|
||||||
|
va_start(args, fmt);
|
||||||
|
DN_Str8 add = DN_Str8FmtVArena(arena, fmt, args);
|
||||||
|
va_end(args);
|
||||||
|
bool result = DN_PathAddRef(path, add, arena);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
DN_API bool DN_PathPop(DN_Path *path)
|
||||||
|
{
|
||||||
|
if (!path)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if (path->tail) {
|
||||||
|
DN_Assert(path->head);
|
||||||
|
path->links_size -= 1;
|
||||||
|
path->string_size -= path->tail->string.count;
|
||||||
|
path->tail = path->tail->prev;
|
||||||
|
if (path->tail)
|
||||||
|
path->tail->next = nullptr;
|
||||||
|
else
|
||||||
|
path->head = nullptr;
|
||||||
|
} else {
|
||||||
|
DN_Assert(!path->head);
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
DN_API DN_Str8 DN_Str8FromPath(DN_Path const *path, DN_Str8 path_seperator, DN_Allocator allocator)
|
||||||
|
{
|
||||||
|
DN_Str8 result = {};
|
||||||
|
if (!path || path->links_size <= 0)
|
||||||
|
return result;
|
||||||
|
|
||||||
|
// NOTE: Each link except the last one needs the path seperator appended to it, '/' or '\\'
|
||||||
|
DN_USize string_size = (path->has_prefix_path_seperator ? path_seperator.count : 0) + path->string_size + ((path->links_size - 1) * path_seperator.count);
|
||||||
|
result = DN_Str8AllocAllocator(string_size, DN_ZMem_No, allocator);
|
||||||
|
if (result.data) {
|
||||||
|
char *dest = result.data;
|
||||||
|
if (path->has_prefix_path_seperator) {
|
||||||
|
DN_Memcpy(dest, path_seperator.data, path_seperator.count);
|
||||||
|
dest += path_seperator.count;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (DN_Str8Link *link = path->head; link; link = link->next) {
|
||||||
|
DN_Str8 string = link->string;
|
||||||
|
DN_Memcpy(dest, string.data, string.count);
|
||||||
|
dest += string.count;
|
||||||
|
|
||||||
|
if (link != path->tail) {
|
||||||
|
DN_Memcpy(dest, path_seperator.data, path_seperator.count);
|
||||||
|
dest += path_seperator.count;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
result.data[string_size] = 0;
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
DN_API DN_Str8 DN_Str8FmtVPathArena(DN_Str8 path_seperator, DN_Arena *arena, DN_FMT_ATTRIB char const *fmt, va_list args)
|
||||||
|
{
|
||||||
|
DN_TcScratch scratch = DN_TcScratchBeginArena(&arena, 1);
|
||||||
|
DN_Str8 path = DN_Str8FmtVArena(arena, fmt, args);
|
||||||
|
DN_Path fs_path = {};
|
||||||
|
DN_PathAddRef(&fs_path, path, &scratch.arena);
|
||||||
|
DN_Allocator allocator = DN_AllocatorFromArena(arena);
|
||||||
|
DN_Str8 result = DN_Str8FromPath(&fs_path, path_seperator, allocator);
|
||||||
|
DN_TcScratchEnd(&scratch);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
DN_API DN_Str8 DN_Str8FmtPathArena(DN_Str8 path_seperator, DN_Arena *arena, DN_FMT_ATTRIB char const *fmt, ...)
|
||||||
|
{
|
||||||
|
DN_TcScratch scratch = DN_TcScratchBeginArena(&arena, 1);
|
||||||
|
va_list args;
|
||||||
|
va_start(args, fmt);
|
||||||
|
DN_Str8 path = DN_Str8FmtVArena(arena, fmt, args);
|
||||||
|
va_end(args);
|
||||||
|
|
||||||
|
DN_Path fs_path = {};
|
||||||
|
DN_PathAddRef(&fs_path, path, &scratch.arena);
|
||||||
|
|
||||||
|
DN_Allocator allocator = DN_AllocatorFromArena(arena);
|
||||||
|
DN_Str8 result = DN_Str8FromPath(&fs_path, path_seperator, allocator);
|
||||||
|
DN_TcScratchEnd(&scratch);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
DN_API DN_Str8 DN_Str8FmtVPathPool(DN_Str8 path_seperator, DN_Pool *pool, DN_FMT_ATTRIB char const *fmt, va_list args)
|
||||||
|
{
|
||||||
|
DN_TcScratch scratch = DN_TcScratchBeginArena(&pool->arena, 1);
|
||||||
|
DN_Str8 path = DN_Str8FmtVPool(pool, fmt, args);
|
||||||
|
DN_Path fs_path = {};
|
||||||
|
DN_PathAddRef(&fs_path, path, &scratch.arena);
|
||||||
|
DN_Allocator allocator = DN_AllocatorFromPool(pool);
|
||||||
|
DN_Str8 result = DN_Str8FromPath(&fs_path, path_seperator, allocator);
|
||||||
|
DN_TcScratchEnd(&scratch);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
DN_API DN_Str8 DN_Str8FmtPathPool(DN_Str8 path_seperator, DN_Pool *pool, DN_FMT_ATTRIB char const *fmt, ...)
|
||||||
|
{
|
||||||
|
va_list args;
|
||||||
|
va_start(args, fmt);
|
||||||
|
DN_Str8 result = DN_Str8FmtVPathPool(path_seperator, pool, fmt, args);
|
||||||
|
va_end(args);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
DN_API DN_Str8 DN_Str8FmtOsPathPool(DN_Pool *pool, DN_FMT_ATTRIB char const *fmt, ...)
|
||||||
|
{
|
||||||
|
va_list args;
|
||||||
|
va_start(args, fmt);
|
||||||
|
DN_Str8 result = DN_Str8FmtVPathPool(DN_OsPathSeperatorStr8, pool, fmt, args);
|
||||||
|
va_end(args);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
DN_API DN_Str8 DN_Str8FmtOsPathArena(DN_Arena *arena, DN_FMT_ATTRIB char const *fmt, ...)
|
||||||
|
{
|
||||||
|
va_list args;
|
||||||
|
va_start(args, fmt);
|
||||||
|
DN_Str8 result = DN_Str8FmtVPathArena(DN_OsPathSeperatorStr8, arena, fmt, args);
|
||||||
|
va_end(args);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// NOTE: DN_UTF
|
// NOTE: DN_UTF
|
||||||
DN_API int DN_UTF8Encode(DN_U8 utf8[4], DN_U32 codepoint)
|
DN_API int DN_UTF8Encode(DN_U8 utf8[4], DN_U32 codepoint)
|
||||||
{
|
{
|
||||||
@@ -6792,6 +6974,12 @@ DN_API DN_V2F32 DN_V2F32Lerp(DN_V2F32 a, DN_F32 t, DN_V2F32 b)
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DN_API DN_V2F32 DN_V2F32Rotate(DN_V2F32 v, DN_F32 cos_a, DN_F32 sin_a)
|
||||||
|
{
|
||||||
|
DN_V2F32 result = DN_V2F32From2N(v.x * cos_a - v.y * sin_a, v.x * sin_a + v.y * cos_a);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
DN_API bool operator!=(DN_V2F32 lhs, DN_V2F32 rhs)
|
DN_API bool operator!=(DN_V2F32 lhs, DN_V2F32 rhs)
|
||||||
{
|
{
|
||||||
bool result = !(lhs == rhs);
|
bool result = !(lhs == rhs);
|
||||||
@@ -11607,7 +11795,7 @@ static void DN_OS_LoggerSetFilePathNoMutex_(DN_OSLogger *logger, DN_Pool *pool,
|
|||||||
logger->file_path = {};
|
logger->file_path = {};
|
||||||
}
|
}
|
||||||
DN_OS_FileClose(&logger->file);
|
DN_OS_FileClose(&logger->file);
|
||||||
logger->file_path = DN_OS_PathFmtPool(pool, "%.*s", DN_Str8PrintFmt(file_path));
|
logger->file_path = DN_Str8FmtOsPathPool(pool, "%.*s", DN_Str8PrintFmt(file_path));
|
||||||
|
|
||||||
// NOTE: Clear the sticky file error flag if it was set
|
// NOTE: Clear the sticky file error flag if it was set
|
||||||
logger->flags &= ~DN_OSLoggerFlags_FileError;
|
logger->flags &= ~DN_OSLoggerFlags_FileError;
|
||||||
@@ -11630,7 +11818,7 @@ static void DN_OS_DoLogFileSetupAndRotation_(DN_OSLogger *logger)
|
|||||||
// NOTE: Set a default file path to log to if it's not been set yet
|
// NOTE: Set a default file path to log to if it's not been set yet
|
||||||
if (logger->file_path.count == 0) {
|
if (logger->file_path.count == 0) {
|
||||||
DN_Str8 exe_dir = DN_OS_ExeDir(&scratch.arena);
|
DN_Str8 exe_dir = DN_OS_ExeDir(&scratch.arena);
|
||||||
DN_Str8 default_file_path = DN_OS_PathFmtArena(&scratch.arena, "%.*s/dn.log", DN_Str8PrintFmt(exe_dir));
|
DN_Str8 default_file_path = DN_Str8FmtOsPathArena(&scratch.arena, "%.*s/dn.log", DN_Str8PrintFmt(exe_dir));
|
||||||
DN_OS_LoggerSetFilePathNoMutex_(logger, DN_TcMainPool(), default_file_path);
|
DN_OS_LoggerSetFilePathNoMutex_(logger, DN_TcMainPool(), default_file_path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -11829,26 +12017,26 @@ DN_API DN_Arena DN_OS_ArenaFromHeapBasic(DN_U64 size, DN_MemFlags flags)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// NOTE: Date
|
// NOTE: Date
|
||||||
DN_API DN_Str8x32 DN_OS_DateLocalTimeStr8(DN_Date time, char date_separator, char hms_separator)
|
DN_API DN_Str8x32 DN_OS_DateLocalTimeStr8(DN_Date time, char date_seperator, char hms_seperator)
|
||||||
{
|
{
|
||||||
DN_Str8x32 result = DN_Str8x32FromFmt("%hu%c%02hhu%c%02hhu %02hhu%c%02hhu%c%02hhu",
|
DN_Str8x32 result = DN_Str8x32FromFmt("%hu%c%02hhu%c%02hhu %02hhu%c%02hhu%c%02hhu",
|
||||||
time.year,
|
time.year,
|
||||||
date_separator,
|
date_seperator,
|
||||||
time.month,
|
time.month,
|
||||||
date_separator,
|
date_seperator,
|
||||||
time.day,
|
time.day,
|
||||||
time.hour,
|
time.hour,
|
||||||
hms_separator,
|
hms_seperator,
|
||||||
time.minutes,
|
time.minutes,
|
||||||
hms_separator,
|
hms_seperator,
|
||||||
time.seconds);
|
time.seconds);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
DN_API DN_Str8x32 DN_OS_DateLocalTimeStr8Now(char date_separator, char hms_separator)
|
DN_API DN_Str8x32 DN_OS_DateLocalTimeStr8Now(char date_seperator, char hms_seperator)
|
||||||
{
|
{
|
||||||
DN_Date time = DN_OS_DateLocalTimeNow();
|
DN_Date time = DN_OS_DateLocalTimeNow();
|
||||||
DN_Str8x32 result = DN_OS_DateLocalTimeStr8(time, date_separator, hms_separator);
|
DN_Str8x32 result = DN_OS_DateLocalTimeStr8(time, date_seperator, hms_seperator);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -11859,8 +12047,8 @@ DN_API DN_Str8 DN_OS_ExeDir(DN_Arena *arena)
|
|||||||
return result;
|
return result;
|
||||||
DN_TcScratch scratch = DN_TcScratchBeginArena(&arena, 1);
|
DN_TcScratch scratch = DN_TcScratchBeginArena(&arena, 1);
|
||||||
DN_Str8 exe_path = DN_OS_ExePath(&scratch.arena);
|
DN_Str8 exe_path = DN_OS_ExePath(&scratch.arena);
|
||||||
DN_Str8 separators[] = {DN_Str8Lit("/"), DN_Str8Lit("\\")};
|
DN_Str8 seperators[] = {DN_Str8Lit("/"), DN_Str8Lit("\\")};
|
||||||
DN_Str8BSplitResult split = DN_Str8BSplitLastArray(exe_path, separators, DN_ArrayCountU(separators));
|
DN_Str8BSplitResult split = DN_Str8BSplitLastArray(exe_path, seperators, DN_ArrayCountU(seperators));
|
||||||
result = DN_Str8FromStr8Arena(split.lhs, arena);
|
result = DN_Str8FromStr8Arena(split.lhs, arena);
|
||||||
DN_TcScratchEnd(&scratch);
|
DN_TcScratchEnd(&scratch);
|
||||||
return result;
|
return result;
|
||||||
@@ -12189,201 +12377,6 @@ DN_API bool DN_OS_PathIsOlderThan(DN_Str8 path, DN_Str8 check_against)
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
DN_API bool DN_OS_PathAddRef(DN_Arena *arena, DN_OSPath *fs_path, DN_Str8 path)
|
|
||||||
{
|
|
||||||
if (!arena || !fs_path || path.count == 0)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
if (path.count <= 0)
|
|
||||||
return true;
|
|
||||||
|
|
||||||
DN_Str8 const delimiter_array[] = {
|
|
||||||
DN_Str8Lit("\\"),
|
|
||||||
DN_Str8Lit("/")};
|
|
||||||
|
|
||||||
if (fs_path->links_size == 0)
|
|
||||||
fs_path->has_prefix_path_separator = (path.data[0] == '/');
|
|
||||||
|
|
||||||
for (;;) {
|
|
||||||
DN_Str8BSplitResult delimiter = DN_Str8BSplitArray(path, delimiter_array, DN_ArrayCountU(delimiter_array));
|
|
||||||
for (; delimiter.lhs.data; delimiter = DN_Str8BSplitArray(delimiter.rhs, delimiter_array, DN_ArrayCountU(delimiter_array))) {
|
|
||||||
if (delimiter.lhs.count <= 0)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
DN_OSPathLink *link = DN_ArenaNew(arena, DN_OSPathLink, DN_ZMem_Yes);
|
|
||||||
if (!link)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
link->string = delimiter.lhs;
|
|
||||||
link->prev = fs_path->tail;
|
|
||||||
if (fs_path->tail)
|
|
||||||
fs_path->tail->next = link;
|
|
||||||
else
|
|
||||||
fs_path->head = link;
|
|
||||||
fs_path->tail = link;
|
|
||||||
fs_path->links_size += 1;
|
|
||||||
fs_path->string_size += delimiter.lhs.count;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!delimiter.lhs.data)
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API bool DN_OS_PathAdd(DN_Arena *arena, DN_OSPath *fs_path, DN_Str8 path)
|
|
||||||
{
|
|
||||||
DN_Str8 copy = DN_Str8FromStr8Arena(path, arena);
|
|
||||||
bool result = copy.count ? true : DN_OS_PathAddRef(arena, fs_path, copy);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API bool DN_OS_PathAddF(DN_Arena *arena, DN_OSPath *fs_path, DN_FMT_ATTRIB char const *fmt, ...)
|
|
||||||
{
|
|
||||||
va_list args;
|
|
||||||
va_start(args, fmt);
|
|
||||||
DN_Str8 path = DN_Str8FmtVArena(arena, fmt, args);
|
|
||||||
va_end(args);
|
|
||||||
bool result = DN_OS_PathAddRef(arena, fs_path, path);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API bool DN_OS_PathPop(DN_OSPath *fs_path)
|
|
||||||
{
|
|
||||||
if (!fs_path)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
if (fs_path->tail) {
|
|
||||||
DN_Assert(fs_path->head);
|
|
||||||
fs_path->links_size -= 1;
|
|
||||||
fs_path->string_size -= fs_path->tail->string.count;
|
|
||||||
fs_path->tail = fs_path->tail->prev;
|
|
||||||
if (fs_path->tail)
|
|
||||||
fs_path->tail->next = nullptr;
|
|
||||||
else
|
|
||||||
fs_path->head = nullptr;
|
|
||||||
} else {
|
|
||||||
DN_Assert(!fs_path->head);
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API DN_Str8 DN_OS_PathBuildWithSeparatorAllocator(DN_Allocator allocator, DN_OSPath const *fs_path, DN_Str8 path_separator)
|
|
||||||
{
|
|
||||||
DN_Str8 result = {};
|
|
||||||
if (!fs_path || fs_path->links_size <= 0)
|
|
||||||
return result;
|
|
||||||
|
|
||||||
// NOTE: Each link except the last one needs the path separator appended to it, '/' or '\\'
|
|
||||||
DN_USize string_size = (fs_path->has_prefix_path_separator ? path_separator.count : 0) + fs_path->string_size + ((fs_path->links_size - 1) * path_separator.count);
|
|
||||||
result = DN_Str8AllocAllocator(string_size, DN_ZMem_No, allocator);
|
|
||||||
if (result.data) {
|
|
||||||
char *dest = result.data;
|
|
||||||
if (fs_path->has_prefix_path_separator) {
|
|
||||||
DN_Memcpy(dest, path_separator.data, path_separator.count);
|
|
||||||
dest += path_separator.count;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (DN_OSPathLink *link = fs_path->head; link; link = link->next) {
|
|
||||||
DN_Str8 string = link->string;
|
|
||||||
DN_Memcpy(dest, string.data, string.count);
|
|
||||||
dest += string.count;
|
|
||||||
|
|
||||||
if (link != fs_path->tail) {
|
|
||||||
DN_Memcpy(dest, path_separator.data, path_separator.count);
|
|
||||||
dest += path_separator.count;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
result.data[string_size] = 0;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API DN_Str8 DN_OS_PathToArena(DN_Arena *arena, DN_Str8 path, DN_Str8 path_separator)
|
|
||||||
{
|
|
||||||
DN_OSPath fs_path = {};
|
|
||||||
DN_OS_PathAddRef(arena, &fs_path, path);
|
|
||||||
DN_Allocator allocator = DN_AllocatorFromArena(arena);
|
|
||||||
DN_Str8 result = DN_OS_PathBuildWithSeparatorAllocator(allocator, &fs_path, path_separator);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API DN_Str8 DN_OS_PathToPool(DN_Pool *pool, DN_Str8 path, DN_Str8 path_separator)
|
|
||||||
{
|
|
||||||
DN_TcScratch scratch = DN_TcScratchBeginArena(&pool->arena, 1);
|
|
||||||
DN_OSPath fs_path = {};
|
|
||||||
DN_OS_PathAddRef(&scratch.arena, &fs_path, path);
|
|
||||||
|
|
||||||
DN_Allocator allocator = DN_AllocatorFromPool(pool);
|
|
||||||
DN_Str8 result = DN_OS_PathBuildWithSeparatorAllocator(allocator, &fs_path, path_separator);
|
|
||||||
DN_TcScratchEnd(&scratch);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API DN_Str8 DN_OS_PathToFmtArena(DN_Arena *arena, DN_Str8 path_separator, DN_FMT_ATTRIB char const *fmt, ...)
|
|
||||||
{
|
|
||||||
DN_TcScratch scratch = DN_TcScratchBeginArena(&arena, 1);
|
|
||||||
va_list args;
|
|
||||||
va_start(args, fmt);
|
|
||||||
DN_Str8 path = DN_Str8FmtVArena(&scratch.arena, fmt, args);
|
|
||||||
va_end(args);
|
|
||||||
DN_Str8 result = DN_OS_PathToArena(arena, path, path_separator);
|
|
||||||
DN_TcScratchEnd(&scratch);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API DN_Str8 DN_OS_PathToFmtPool(DN_Pool *pool, DN_Str8 path_separator, DN_FMT_ATTRIB char const *fmt, ...)
|
|
||||||
{
|
|
||||||
DN_TcScratch scratch = DN_TcScratchBeginArena(&pool->arena, 1);
|
|
||||||
va_list args;
|
|
||||||
va_start(args, fmt);
|
|
||||||
DN_Str8 path = DN_Str8FmtVArena(&scratch.arena, fmt, args);
|
|
||||||
va_end(args);
|
|
||||||
|
|
||||||
DN_Str8 result = DN_OS_PathToPool(pool, path, path_separator);
|
|
||||||
DN_TcScratchEnd(&scratch);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API DN_Str8 DN_OS_PathArena(DN_Arena *arena, DN_Str8 path)
|
|
||||||
{
|
|
||||||
DN_Str8 result = DN_OS_PathToArena(arena, path, DN_OSPathSeparatorStr8);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API DN_Str8 DN_OS_PathPool(DN_Pool *pool, DN_Str8 path)
|
|
||||||
{
|
|
||||||
DN_Str8 result = DN_OS_PathToPool(pool, path, DN_OSPathSeparatorStr8);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API DN_Str8 DN_OS_PathFmtArena(DN_Arena *arena, DN_FMT_ATTRIB char const *fmt, ...)
|
|
||||||
{
|
|
||||||
DN_TcScratch scratch = DN_TcScratchBeginArena(&arena, 1);
|
|
||||||
va_list args;
|
|
||||||
va_start(args, fmt);
|
|
||||||
DN_Str8 path = DN_Str8FmtVArena(&scratch.arena, fmt, args);
|
|
||||||
va_end(args);
|
|
||||||
DN_Str8 result = DN_OS_PathArena(arena, path);
|
|
||||||
DN_TcScratchEnd(&scratch);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API DN_Str8 DN_OS_PathFmtPool(DN_Pool *pool, DN_FMT_ATTRIB char const *fmt, ...)
|
|
||||||
{
|
|
||||||
DN_TcScratch scratch = DN_TcScratchBeginArena(&pool->arena, 1);
|
|
||||||
va_list args;
|
|
||||||
va_start(args, fmt);
|
|
||||||
DN_Str8 path = DN_Str8FmtVArena(&scratch.arena, fmt, args);
|
|
||||||
va_end(args);
|
|
||||||
DN_Str8 result = DN_OS_PathPool(pool, path);
|
|
||||||
DN_TcScratchEnd(&scratch);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API DN_OSExecArgs DN_OS_ExecArgsDefault()
|
DN_API DN_OSExecArgs DN_OS_ExecArgsDefault()
|
||||||
{
|
{
|
||||||
DN_OSExecArgs result = {};
|
DN_OSExecArgs result = {};
|
||||||
@@ -14641,8 +14634,6 @@ DN_API DN_OSPosixProcSelfStatus DN_OS_PosixProcSelfStatus()
|
|||||||
}
|
}
|
||||||
#elif defined(DN_PLATFORM_WIN32)
|
#elif defined(DN_PLATFORM_WIN32)
|
||||||
// DN: Single header generator commented out => #include "OS/dn_os_w32.cpp"
|
// DN: Single header generator commented out => #include "OS/dn_os_w32.cpp"
|
||||||
#define DN_OS_W32_CPP
|
|
||||||
|
|
||||||
// DN: Single header generator commented out => #if defined(_CLANGD)
|
// DN: Single header generator commented out => #if defined(_CLANGD)
|
||||||
// #define DN_WITH_OS 1
|
// #define DN_WITH_OS 1
|
||||||
// #include "../dn.h"
|
// #include "../dn.h"
|
||||||
@@ -15292,9 +15283,9 @@ DN_API bool DN_OS_PathIterateDir(DN_Str8 path, DN_OSDirIterator *it)
|
|||||||
// add those characters in this branch, so overwrite the null
|
// add those characters in this branch, so overwrite the null
|
||||||
// character, add the glob and re-null terminate the buffer.
|
// character, add the glob and re-null terminate the buffer.
|
||||||
if (needs_asterisks)
|
if (needs_asterisks)
|
||||||
adjusted_path = DN_OS_PathFmtArena(&scratch.arena, "%.*s*", DN_Str8PrintFmt(path));
|
adjusted_path = DN_Str8FmtOsPathArena(&scratch.arena, "%.*s*", DN_Str8PrintFmt(path));
|
||||||
else
|
else
|
||||||
adjusted_path = DN_OS_PathFmtArena(&scratch.arena, "%.*s/*", DN_Str8PrintFmt(path));
|
adjusted_path = DN_Str8FmtOsPathArena(&scratch.arena, "%.*s/*", DN_Str8PrintFmt(path));
|
||||||
}
|
}
|
||||||
|
|
||||||
path16 = DN_OS_W32Str8ToStr16(&scratch.arena, adjusted_path);
|
path16 = DN_OS_W32Str8ToStr16(&scratch.arena, adjusted_path);
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
// Generated by the DN single header generator 2026-07-30 18:59:42
|
// Generated by the DN single header generator 2026-07-31 22:40:42
|
||||||
|
|
||||||
#if !defined(DN_H)
|
#if !defined(DN_H)
|
||||||
#define DN_H
|
#define DN_H
|
||||||
@@ -1505,6 +1505,25 @@ enum DN_Str8BuilderAdd
|
|||||||
DN_Str8BuilderAdd_Prepend,
|
DN_Str8BuilderAdd_Prepend,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#if !defined(DN_OsPathSeperator)
|
||||||
|
#if defined(DN_PLATFORM_WIN32)
|
||||||
|
#define DN_OsPathSeperator "\\"
|
||||||
|
#else
|
||||||
|
#define DN_OsPathSeperator "/"
|
||||||
|
#endif
|
||||||
|
#define DN_OsPathSeperatorStr8 DN_Str8Lit(DN_OsPathSeperator)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
typedef struct DN_Path DN_Path;
|
||||||
|
struct DN_Path
|
||||||
|
{
|
||||||
|
bool has_prefix_path_seperator;
|
||||||
|
DN_Str8Link *head;
|
||||||
|
DN_Str8Link *tail;
|
||||||
|
DN_USize string_size;
|
||||||
|
DN_U16 links_size;
|
||||||
|
};
|
||||||
|
|
||||||
typedef DN_U32 DN_AgeUnit;
|
typedef DN_U32 DN_AgeUnit;
|
||||||
enum DN_AgeUnit_
|
enum DN_AgeUnit_
|
||||||
{
|
{
|
||||||
@@ -4228,7 +4247,6 @@ enum DN_OSFileRotateFlags_
|
|||||||
DN_OSFileRotateFlags_KeepBaseFile = 1 << 0,
|
DN_OSFileRotateFlags_KeepBaseFile = 1 << 0,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
enum DN_OSPathInfoType
|
enum DN_OSPathInfoType
|
||||||
{
|
{
|
||||||
DN_OSPathInfoType_Unknown,
|
DN_OSPathInfoType_Unknown,
|
||||||
@@ -4287,34 +4305,6 @@ enum DN_OSFileAccess_
|
|||||||
DN_OSFileAccess_All = DN_OSFileAccess_ReadWrite | DN_OSFileAccess_Execute | DN_OSFileAccess_AppendOnly,
|
DN_OSFileAccess_All = DN_OSFileAccess_ReadWrite | DN_OSFileAccess_Execute | DN_OSFileAccess_AppendOnly,
|
||||||
};
|
};
|
||||||
|
|
||||||
// NOTE: DN_OSPath
|
|
||||||
#if !defined(DN_OSPathSeparator)
|
|
||||||
#if defined(DN_PLATFORM_WIN32)
|
|
||||||
#define DN_OSPathSeparator "\\"
|
|
||||||
#else
|
|
||||||
#define DN_OSPathSeparator "/"
|
|
||||||
#endif
|
|
||||||
#define DN_OSPathSeparatorStr8 DN_Str8Lit(DN_OSPathSeparator)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
typedef struct DN_OSPathLink DN_OSPathLink;
|
|
||||||
struct DN_OSPathLink
|
|
||||||
{
|
|
||||||
DN_Str8 string;
|
|
||||||
DN_OSPathLink *next;
|
|
||||||
DN_OSPathLink *prev;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct DN_OSPath DN_OSPath;
|
|
||||||
struct DN_OSPath
|
|
||||||
{
|
|
||||||
bool has_prefix_path_separator;
|
|
||||||
DN_OSPathLink *head;
|
|
||||||
DN_OSPathLink *tail;
|
|
||||||
DN_USize string_size;
|
|
||||||
DN_U16 links_size;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef DN_U32 DN_OSExecFlags;
|
typedef DN_U32 DN_OSExecFlags;
|
||||||
enum DN_OSExecFlags_
|
enum DN_OSExecFlags_
|
||||||
{
|
{
|
||||||
@@ -5029,7 +5019,7 @@ DN_API void DN_Str8x512AppendFmtV
|
|||||||
DN_API void DN_Str8x1024AppendFmt (DN_Str8x1024 *str, DN_FMT_ATTRIB char const *fmt, ...);
|
DN_API void DN_Str8x1024AppendFmt (DN_Str8x1024 *str, DN_FMT_ATTRIB char const *fmt, ...);
|
||||||
DN_API void DN_Str8x1024AppendFmtV (DN_Str8x1024 *str, DN_FMT_ATTRIB char const *fmt, va_list args);
|
DN_API void DN_Str8x1024AppendFmtV (DN_Str8x1024 *str, DN_FMT_ATTRIB char const *fmt, va_list args);
|
||||||
|
|
||||||
DN_API DN_Str8x32 DN_Str8x32FromU64 (DN_U64 val, char separator);
|
DN_API DN_Str8x32 DN_Str8x32FromU64 (DN_U64 val, char seperator);
|
||||||
DN_API bool DN_Str8Is (DN_Str8 string, DN_Str8IsFlags flags);
|
DN_API bool DN_Str8Is (DN_Str8 string, DN_Str8IsFlags flags);
|
||||||
DN_API char * DN_Str8End (DN_Str8 string);
|
DN_API char * DN_Str8End (DN_Str8 string);
|
||||||
DN_API DN_Str8 DN_Str8Subset (DN_Str8 string, DN_USize offset, DN_USize count);
|
DN_API DN_Str8 DN_Str8Subset (DN_Str8 string, DN_USize offset, DN_USize count);
|
||||||
@@ -5105,13 +5095,13 @@ DN_API DN_USize DN_Str8SplitAVX512F
|
|||||||
DN_API DN_Str8Slice DN_Str8SplitAllocAVX512F (DN_Arena *arena, DN_Str8 string, DN_Str8 delimiter, DN_Str8SplitFlags flags);
|
DN_API DN_Str8Slice DN_Str8SplitAllocAVX512F (DN_Arena *arena, DN_Str8 string, DN_Str8 delimiter, DN_Str8SplitFlags flags);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
DN_API DN_Str8 DN_Str8SliceRender (DN_Str8Slice array, DN_Str8 separator, DN_Arena *arena);
|
DN_API DN_Str8 DN_Str8SliceRender (DN_Str8Slice array, DN_Str8 seperator, DN_Arena *arena);
|
||||||
DN_API DN_Str8 DN_Str8RenderSpaceSep (DN_Str8Slice array, DN_Arena *arena);
|
DN_API DN_Str8 DN_Str8RenderSpaceSep (DN_Str8Slice array, DN_Arena *arena);
|
||||||
DN_API int DN_Str8CompareNatural (DN_Str8 lhs, DN_Str8 rhs, DN_Str8EqCase eq_case);
|
DN_API int DN_Str8CompareNatural (DN_Str8 lhs, DN_Str8 rhs, DN_Str8EqCase eq_case);
|
||||||
DN_API int DN_Str8CompareLexicographic (DN_Str8 lhs, DN_Str8 rhs, DN_Str8EqCase eq_case);
|
DN_API int DN_Str8CompareLexicographic (DN_Str8 lhs, DN_Str8 rhs, DN_Str8EqCase eq_case);
|
||||||
|
|
||||||
DN_API bool DN_Str16Eq (DN_Str16 lhs, DN_Str16 rhs);
|
DN_API bool DN_Str16Eq (DN_Str16 lhs, DN_Str16 rhs);
|
||||||
DN_API DN_Str16 DN_Str16SliceRender (DN_Str16Slice array, DN_Str16 separator, DN_Arena *arena);
|
DN_API DN_Str16 DN_Str16SliceRender (DN_Str16Slice array, DN_Str16 seperator, DN_Arena *arena);
|
||||||
DN_API DN_Str16 DN_Str16RenderSpaceSep (DN_Str16Slice array, DN_Arena *arena);
|
DN_API DN_Str16 DN_Str16RenderSpaceSep (DN_Str16Slice array, DN_Arena *arena);
|
||||||
|
|
||||||
DN_API DN_Str8Builder DN_Str8BuilderFromArena (DN_Arena *arena);
|
DN_API DN_Str8Builder DN_Str8BuilderFromArena (DN_Arena *arena);
|
||||||
@@ -5147,6 +5137,18 @@ DN_API DN_Str8 DN_Str8FromStr8BuilderArena
|
|||||||
DN_API DN_Str8 DN_Str8FromStr8BuilderDelimitAllocator (DN_Str8Builder const *builder, DN_Str8 delimiter, DN_Allocator allocator);
|
DN_API DN_Str8 DN_Str8FromStr8BuilderDelimitAllocator (DN_Str8Builder const *builder, DN_Str8 delimiter, DN_Allocator allocator);
|
||||||
DN_API DN_Str8 DN_Str8FromStr8BuilderDelimitArena (DN_Str8Builder const *builder, DN_Str8 delimiter, DN_Arena *arena);
|
DN_API DN_Str8 DN_Str8FromStr8BuilderDelimitArena (DN_Str8Builder const *builder, DN_Str8 delimiter, DN_Arena *arena);
|
||||||
|
|
||||||
|
DN_API bool DN_PathAddRef (DN_Path *path, DN_Str8 add, DN_Arena *arena);
|
||||||
|
DN_API bool DN_PathAdd (DN_Path *path, DN_Str8 add, DN_Arena *arena);
|
||||||
|
DN_API bool DN_PathAddF (DN_Path *path, DN_FMT_ATTRIB char const *fmt, ...);
|
||||||
|
DN_API bool DN_PathPop (DN_Path *path);
|
||||||
|
DN_API DN_Str8 DN_Str8FromPath (DN_Path const *path, DN_Str8 path_seperator, DN_Allocator allocator);
|
||||||
|
DN_API DN_Str8 DN_Str8FmtPathVArena (DN_Str8 path_seperator, DN_Arena *arena, char const *fmt, va_list args);
|
||||||
|
DN_API DN_Str8 DN_Str8FmtPathArena (DN_Str8 path_seperator, DN_Arena *arena, DN_FMT_ATTRIB char const *fmt, ...);
|
||||||
|
DN_API DN_Str8 DN_Str8FmtPathVPool (DN_Str8 path_seperator, DN_Pool *pool, char const *fmt, va_list args);
|
||||||
|
DN_API DN_Str8 DN_Str8FmtPathPool (DN_Str8 path_seperator, DN_Pool *pool, DN_FMT_ATTRIB char const *fmt, ...);
|
||||||
|
DN_API DN_Str8 DN_Str8FmtOsPathArena (DN_Arena *arena, DN_FMT_ATTRIB char const *fmt, ...);
|
||||||
|
DN_API DN_Str8 DN_Str8FmtOsPathPool (DN_Pool *pool, DN_FMT_ATTRIB char const *fmt, ...);
|
||||||
|
|
||||||
DN_API int DN_UTF8Encode (DN_U8 utf8[4], DN_U32 codepoint);
|
DN_API int DN_UTF8Encode (DN_U8 utf8[4], DN_U32 codepoint);
|
||||||
DN_API int DN_UTF16Encode (DN_U16 utf16[2], DN_U32 codepoint);
|
DN_API int DN_UTF16Encode (DN_U16 utf16[2], DN_U32 codepoint);
|
||||||
DN_API DN_UTF8DecodeResult DN_UTF8Decode (DN_Str8 stream);
|
DN_API DN_UTF8DecodeResult DN_UTF8Decode (DN_Str8 stream);
|
||||||
@@ -5437,10 +5439,16 @@ DN_API DN_V2U16& operator/=
|
|||||||
DN_API DN_V2U16& operator-= (DN_V2U16& lhs, DN_V2U16 rhs);
|
DN_API DN_V2U16& operator-= (DN_V2U16& lhs, DN_V2U16 rhs);
|
||||||
DN_API DN_V2U16& operator+= (DN_V2U16& lhs, DN_V2U16 rhs);
|
DN_API DN_V2U16& operator+= (DN_V2U16& lhs, DN_V2U16 rhs);
|
||||||
|
|
||||||
|
// NOTE: DN_V2F32
|
||||||
|
// API
|
||||||
|
// DN_V2F32Rotate
|
||||||
|
// Rotate a vector using the precomputed cosine and sine value of the angle (e.g.
|
||||||
|
// `cos_a => cos(your_angle * 2.f * DN_PiF32)` and `sin_a => sinf(your_angle * 2.f * DN_PiF32)`)
|
||||||
#define DN_V2U32Zero DN_Literal(DN_V2U32){{(DN_U32)(0), (DN_U32)(0)}}
|
#define DN_V2U32Zero DN_Literal(DN_V2U32){{(DN_U32)(0), (DN_U32)(0)}}
|
||||||
#define DN_V2U32One DN_Literal(DN_V2U32){{(DN_U32)(1), (DN_U32)(1)}}
|
#define DN_V2U32One DN_Literal(DN_V2U32){{(DN_U32)(1), (DN_U32)(1)}}
|
||||||
#define DN_V2U32From1N(x) DN_Literal(DN_V2U32){{(DN_U32)(x), (DN_U32)(x)}}
|
#define DN_V2U32From1N(x) DN_Literal(DN_V2U32){{(DN_U32)(x), (DN_U32)(x)}}
|
||||||
#define DN_V2U32From2N(x, y) DN_Literal(DN_V2U32){{(DN_U32)(x), (DN_U32)(y)}}
|
#define DN_V2U32From2N(x, y) DN_Literal(DN_V2U32){{(DN_U32)(x), (DN_U32)(y)}}
|
||||||
|
#define DN_V2U32FromV2(v2) DN_Literal(DN_V2U32){{(DN_U32)(v2.x), (DN_U32)(v2.y)}}
|
||||||
|
|
||||||
#define DN_V2F32Zero DN_Literal(DN_V2F32){{(DN_F32)(0), (DN_F32)(0)}}
|
#define DN_V2F32Zero DN_Literal(DN_V2F32){{(DN_F32)(0), (DN_F32)(0)}}
|
||||||
#define DN_V2F32One DN_Literal(DN_V2F32){{(DN_F32)(1), (DN_F32)(1)}}
|
#define DN_V2F32One DN_Literal(DN_V2F32){{(DN_F32)(1), (DN_F32)(1)}}
|
||||||
@@ -5449,6 +5457,7 @@ DN_API DN_V2U16& operator+=
|
|||||||
#define DN_V2F32FromV2(xy) DN_Literal(DN_V2F32){{(DN_F32)(xy).x, (DN_F32)(xy).y}}
|
#define DN_V2F32FromV2(xy) DN_Literal(DN_V2F32){{(DN_F32)(xy).x, (DN_F32)(xy).y}}
|
||||||
|
|
||||||
DN_API DN_V2F32 DN_V2F32Lerp (DN_V2F32 a, DN_F32 t, DN_V2F32 b);
|
DN_API DN_V2F32 DN_V2F32Lerp (DN_V2F32 a, DN_F32 t, DN_V2F32 b);
|
||||||
|
DN_API DN_V2F32 DN_V2F32Rotate (DN_V2F32 v, DN_F32 cos_a, DN_F32 sin_a);
|
||||||
|
|
||||||
DN_API bool operator!= (DN_V2F32 lhs, DN_V2F32 rhs);
|
DN_API bool operator!= (DN_V2F32 lhs, DN_V2F32 rhs);
|
||||||
DN_API bool operator== (DN_V2F32 lhs, DN_V2F32 rhs);
|
DN_API bool operator== (DN_V2F32 lhs, DN_V2F32 rhs);
|
||||||
@@ -6534,8 +6543,8 @@ DN_API void * DN_OS_MemAlloc (D
|
|||||||
DN_API void DN_OS_MemDealloc (void *ptr);
|
DN_API void DN_OS_MemDealloc (void *ptr);
|
||||||
|
|
||||||
DN_API DN_Date DN_OS_DateLocalTimeNow ();
|
DN_API DN_Date DN_OS_DateLocalTimeNow ();
|
||||||
DN_API DN_Str8x32 DN_OS_DateLocalTimeStr8Now (char date_separator = '-', char hms_separator = ':');
|
DN_API DN_Str8x32 DN_OS_DateLocalTimeStr8Now (char date_seperator = '-', char hms_seperator = ':');
|
||||||
DN_API DN_Str8x32 DN_OS_DateLocalTimeStr8 (DN_Date time, char date_separator = '-', char hms_separator = ':');
|
DN_API DN_Str8x32 DN_OS_DateLocalTimeStr8 (DN_Date time, char date_seperator = '-', char hms_seperator = ':');
|
||||||
DN_API DN_U64 DN_OS_DateUnixTimeNs ();
|
DN_API DN_U64 DN_OS_DateUnixTimeNs ();
|
||||||
#define DN_OS_DateUnixTimeUs() (DN_OS_DateUnixTimeNs() / 1000)
|
#define DN_OS_DateUnixTimeUs() (DN_OS_DateUnixTimeNs() / 1000)
|
||||||
#define DN_OS_DateUnixTimeMs() (DN_OS_DateUnixTimeNs() / (1000 * 1000))
|
#define DN_OS_DateUnixTimeMs() (DN_OS_DateUnixTimeNs() / (1000 * 1000))
|
||||||
@@ -6634,24 +6643,6 @@ DN_API bool DN_OS_PathIsDir (D
|
|||||||
DN_API bool DN_OS_PathMakeDir (DN_Str8 path);
|
DN_API bool DN_OS_PathMakeDir (DN_Str8 path);
|
||||||
DN_API bool DN_OS_PathIterateDir (DN_Str8 path, DN_OSDirIterator *it);
|
DN_API bool DN_OS_PathIterateDir (DN_Str8 path, DN_OSDirIterator *it);
|
||||||
|
|
||||||
DN_API bool DN_OS_PathAddRef (DN_Arena *arena, DN_OSPath *fs_path, DN_Str8 path);
|
|
||||||
DN_API bool DN_OS_PathAdd (DN_Arena *arena, DN_OSPath *fs_path, DN_Str8 path);
|
|
||||||
DN_API bool DN_OS_PathAddF (DN_Arena *arena, DN_OSPath *fs_path, DN_FMT_ATTRIB char const *fmt, ...);
|
|
||||||
DN_API bool DN_OS_PathPop (DN_OSPath *fs_path);
|
|
||||||
DN_API DN_Str8 DN_OS_PathBuildWithSeparatorAllocator (DN_Allocator allocator, DN_OSPath const *fs_path, DN_Str8 path_separator);
|
|
||||||
DN_API DN_Str8 DN_OS_PathToArena (DN_Arena *arena, DN_Str8 path, DN_Str8 path_separtor);
|
|
||||||
DN_API DN_Str8 DN_OS_PathToPool (DN_Pool *pool, DN_Str8 path, DN_Str8 path_separtor);
|
|
||||||
DN_API DN_Str8 DN_OS_PathToFmtArena (DN_Arena *arena, DN_Str8 path_separator, DN_FMT_ATTRIB char const *fmt, ...);
|
|
||||||
DN_API DN_Str8 DN_OS_PathToFmtPool (DN_Pool *pool, DN_Str8 path_separator, DN_FMT_ATTRIB char const *fmt, ...);
|
|
||||||
DN_API DN_Str8 DN_OS_PathArena (DN_Arena *arena, DN_Str8 path);
|
|
||||||
DN_API DN_Str8 DN_OS_PathPool (DN_Pool *pool, DN_Str8 path);
|
|
||||||
DN_API DN_Str8 DN_OS_PathFmtArena (DN_Arena *arena, DN_FMT_ATTRIB char const *fmt, ...);
|
|
||||||
DN_API DN_Str8 DN_OS_PathFmtPool (DN_Pool *pool, DN_FMT_ATTRIB char const *fmt, ...);
|
|
||||||
|
|
||||||
#define DN_OS_PathBuildFwdSlash(allocator, fs_path) DN_OS_PathBuildWithSeparatorAllocator(allocator, fs_path, DN_Str8Lit("/"))
|
|
||||||
#define DN_OS_PathBuildBackSlash(allocator, fs_path) DN_OS_PathBuildWithSeparatorAllocator(allocator, fs_path, DN_Str8Lit("\\"))
|
|
||||||
#define DN_OS_PathBuild(allocator, fs_path) DN_OS_PathBuildWithSeparatorAllocator(allocator, fs_path, DN_OSPathSeparatorStr8)
|
|
||||||
|
|
||||||
DN_API void DN_OS_Exit (int32_t exit_code);
|
DN_API void DN_OS_Exit (int32_t exit_code);
|
||||||
DN_API DN_OSExecArgs DN_OS_ExecArgsDefault ();
|
DN_API DN_OSExecArgs DN_OS_ExecArgsDefault ();
|
||||||
DN_API DN_OSExecResult DN_OS_ExecPump (DN_OSExecAsyncHandle handle, char *stdout_buffer, size_t *stdout_size, char *stderr_buffer, size_t *stderr_size, DN_U32 timeout_ms, DN_ErrSink *err);
|
DN_API DN_OSExecResult DN_OS_ExecPump (DN_OSExecAsyncHandle handle, char *stdout_buffer, size_t *stdout_size, char *stderr_buffer, size_t *stderr_size, DN_U32 timeout_ms, DN_ErrSink *err);
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
#define DN_OS_W32_CPP
|
|
||||||
|
|
||||||
#if defined(_CLANGD)
|
#if defined(_CLANGD)
|
||||||
#define DN_WITH_OS 1
|
#define DN_WITH_OS 1
|
||||||
#include "../dn.h"
|
#include "../dn.h"
|
||||||
@@ -649,9 +647,9 @@ DN_API bool DN_OS_PathIterateDir(DN_Str8 path, DN_OSDirIterator *it)
|
|||||||
// add those characters in this branch, so overwrite the null
|
// add those characters in this branch, so overwrite the null
|
||||||
// character, add the glob and re-null terminate the buffer.
|
// character, add the glob and re-null terminate the buffer.
|
||||||
if (needs_asterisks)
|
if (needs_asterisks)
|
||||||
adjusted_path = DN_OS_PathFmtArena(&scratch.arena, "%.*s*", DN_Str8PrintFmt(path));
|
adjusted_path = DN_Str8FmtOsPathArena(&scratch.arena, "%.*s*", DN_Str8PrintFmt(path));
|
||||||
else
|
else
|
||||||
adjusted_path = DN_OS_PathFmtArena(&scratch.arena, "%.*s/*", DN_Str8PrintFmt(path));
|
adjusted_path = DN_Str8FmtOsPathArena(&scratch.arena, "%.*s/*", DN_Str8PrintFmt(path));
|
||||||
}
|
}
|
||||||
|
|
||||||
path16 = DN_OS_W32Str8ToStr16(&scratch.arena, adjusted_path);
|
path16 = DN_OS_W32Str8ToStr16(&scratch.arena, adjusted_path);
|
||||||
|
|||||||
+212
-225
@@ -3257,22 +3257,22 @@ DN_API void DN_Str8x1024AppendFmtV(DN_Str8x1024 *str, DN_FMT_ATTRIB char const *
|
|||||||
DN_FmtVAppend(str->data, &str->count, sizeof(str->data), fmt, args);
|
DN_FmtVAppend(str->data, &str->count, sizeof(str->data), fmt, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
DN_API DN_Str8x32 DN_Str8x32FromU64(DN_U64 val, char separator)
|
DN_API DN_Str8x32 DN_Str8x32FromU64(DN_U64 val, char seperator)
|
||||||
{
|
{
|
||||||
DN_Str8x32 result = {};
|
DN_Str8x32 result = {};
|
||||||
DN_Str8x32 temp = DN_Str8x32FromFmt("%" PRIu64, val);
|
DN_Str8x32 temp = DN_Str8x32FromFmt("%" PRIu64, val);
|
||||||
DN_USize temp_index = 0;
|
DN_USize temp_index = 0;
|
||||||
|
|
||||||
// NOTE: Write the digits the first, up to [0, 2] digits that do not need a thousandth separator
|
// NOTE: Write the digits the first, up to [0, 2] digits that do not need a thousandth seperator
|
||||||
DN_USize range_without_separator = temp.count % 3;
|
DN_USize range_without_seperator = temp.count % 3;
|
||||||
for (; temp_index < range_without_separator; temp_index++)
|
for (; temp_index < range_without_seperator; temp_index++)
|
||||||
result.data[result.count++] = temp.data[temp_index];
|
result.data[result.count++] = temp.data[temp_index];
|
||||||
|
|
||||||
// NOTE: Write the subsequent digits and every 3rd digit, add the seperator
|
// NOTE: Write the subsequent digits and every 3rd digit, add the seperator
|
||||||
DN_USize digit_counter = 0;
|
DN_USize digit_counter = 0;
|
||||||
for (; temp_index < temp.count; temp_index++, digit_counter++) {
|
for (; temp_index < temp.count; temp_index++, digit_counter++) {
|
||||||
if (separator && temp_index && (digit_counter % 3 == 0))
|
if (seperator && temp_index && (digit_counter % 3 == 0))
|
||||||
result.data[result.count++] = separator;
|
result.data[result.count++] = seperator;
|
||||||
result.data[result.count++] = temp.data[temp_index];
|
result.data[result.count++] = temp.data[temp_index];
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
@@ -3756,8 +3756,8 @@ DN_API DN_Str8 DN_Str8TrimByteOrderMark(DN_Str8 string)
|
|||||||
|
|
||||||
DN_API DN_Str8 DN_Str8FileNameFromPath(DN_Str8 path)
|
DN_API DN_Str8 DN_Str8FileNameFromPath(DN_Str8 path)
|
||||||
{
|
{
|
||||||
DN_Str8 separators[] = {DN_Str8Lit("/"), DN_Str8Lit("\\")};
|
DN_Str8 seperators[] = {DN_Str8Lit("/"), DN_Str8Lit("\\")};
|
||||||
DN_Str8BSplitResult split = DN_Str8BSplitLastArray(path, separators, DN_ArrayCountU(separators));
|
DN_Str8BSplitResult split = DN_Str8BSplitLastArray(path, seperators, DN_ArrayCountU(seperators));
|
||||||
DN_Str8 result = split.rhs.count ? split.rhs : split.lhs;
|
DN_Str8 result = split.rhs.count ? split.rhs : split.lhs;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@@ -3785,8 +3785,8 @@ DN_API DN_Str8 DN_Str8FileExtension(DN_Str8 path)
|
|||||||
|
|
||||||
DN_API DN_Str8 DN_Str8FileDirectoryFromPath(DN_Str8 path)
|
DN_API DN_Str8 DN_Str8FileDirectoryFromPath(DN_Str8 path)
|
||||||
{
|
{
|
||||||
DN_Str8 separators[] = {DN_Str8Lit("/"), DN_Str8Lit("\\")};
|
DN_Str8 seperators[] = {DN_Str8Lit("/"), DN_Str8Lit("\\")};
|
||||||
DN_Str8BSplitResult split = DN_Str8BSplitLastArray(path, separators, DN_ArrayCountU(separators));
|
DN_Str8BSplitResult split = DN_Str8BSplitLastArray(path, seperators, DN_ArrayCountU(seperators));
|
||||||
DN_Str8 result = split.rhs.count == 0 ? DN_Str8Lit(".") : split.lhs;
|
DN_Str8 result = split.rhs.count == 0 ? DN_Str8Lit(".") : split.lhs;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@@ -4085,7 +4085,7 @@ DN_API DN_Str8 DN_Str8LineBreakAllocator(DN_Str8 src, DN_USize desired_width, DN
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if adding this word (plus separator space) would overflow
|
// Check if adding this word (plus seperator space) would overflow
|
||||||
DN_USize combined_length = curr_line_length + 1 + split.lhs.count;
|
DN_USize combined_length = curr_line_length + 1 + split.lhs.count;
|
||||||
if (combined_length > desired_width) {
|
if (combined_length > desired_width) {
|
||||||
// Commit current line, start new line with current word
|
// Commit current line, start new line with current word
|
||||||
@@ -4453,7 +4453,7 @@ DN_API DN_Str8Slice DN_Str8SplitAllocAVX512F(DN_Arena *arena, DN_Str8 string, DN
|
|||||||
}
|
}
|
||||||
#endif // DN_STR8_AVX512F
|
#endif // DN_STR8_AVX512F
|
||||||
|
|
||||||
DN_API DN_Str8 DN_Str8SliceRender(DN_Str8Slice slice, DN_Str8 separator, DN_Arena *arena)
|
DN_API DN_Str8 DN_Str8SliceRender(DN_Str8Slice slice, DN_Str8 seperator, DN_Arena *arena)
|
||||||
{
|
{
|
||||||
DN_Str8 result = {};
|
DN_Str8 result = {};
|
||||||
if (!arena)
|
if (!arena)
|
||||||
@@ -4462,7 +4462,7 @@ DN_API DN_Str8 DN_Str8SliceRender(DN_Str8Slice slice, DN_Str8 separator, DN_Aren
|
|||||||
DN_USize total_size = 0;
|
DN_USize total_size = 0;
|
||||||
for (DN_USize index = 0; index < slice.count; index++) {
|
for (DN_USize index = 0; index < slice.count; index++) {
|
||||||
if (index)
|
if (index)
|
||||||
total_size += separator.count;
|
total_size += seperator.count;
|
||||||
DN_Str8 item = slice.data[index];
|
DN_Str8 item = slice.data[index];
|
||||||
total_size += item.count;
|
total_size += item.count;
|
||||||
}
|
}
|
||||||
@@ -4472,8 +4472,8 @@ DN_API DN_Str8 DN_Str8SliceRender(DN_Str8Slice slice, DN_Str8 separator, DN_Aren
|
|||||||
DN_USize write_index = 0;
|
DN_USize write_index = 0;
|
||||||
for (DN_USize index = 0; index < slice.count; index++) {
|
for (DN_USize index = 0; index < slice.count; index++) {
|
||||||
if (index) {
|
if (index) {
|
||||||
DN_Memcpy(result.data + write_index, separator.data, separator.count);
|
DN_Memcpy(result.data + write_index, seperator.data, seperator.count);
|
||||||
write_index += separator.count;
|
write_index += seperator.count;
|
||||||
}
|
}
|
||||||
DN_Str8 item = slice.data[index];
|
DN_Str8 item = slice.data[index];
|
||||||
DN_Memcpy(result.data + write_index, item.data, item.count);
|
DN_Memcpy(result.data + write_index, item.data, item.count);
|
||||||
@@ -4592,7 +4592,7 @@ DN_API bool DN_Str16Eq(DN_Str16 lhs, DN_Str16 rhs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
DN_API DN_Str16 DN_Str16SliceRender(DN_Str16Slice slice, DN_Str16 separator, DN_Arena *arena)
|
DN_API DN_Str16 DN_Str16SliceRender(DN_Str16Slice slice, DN_Str16 seperator, DN_Arena *arena)
|
||||||
{
|
{
|
||||||
DN_Str16 result = {};
|
DN_Str16 result = {};
|
||||||
if (!arena)
|
if (!arena)
|
||||||
@@ -4601,7 +4601,7 @@ DN_API DN_Str16 DN_Str16SliceRender(DN_Str16Slice slice, DN_Str16 separator, DN_
|
|||||||
DN_USize total_size = 0;
|
DN_USize total_size = 0;
|
||||||
for (DN_USize index = 0; index < slice.count; index++) {
|
for (DN_USize index = 0; index < slice.count; index++) {
|
||||||
if (index)
|
if (index)
|
||||||
total_size += separator.count;
|
total_size += seperator.count;
|
||||||
DN_Str16 item = slice.data[index];
|
DN_Str16 item = slice.data[index];
|
||||||
total_size += item.count;
|
total_size += item.count;
|
||||||
}
|
}
|
||||||
@@ -4611,8 +4611,8 @@ DN_API DN_Str16 DN_Str16SliceRender(DN_Str16Slice slice, DN_Str16 separator, DN_
|
|||||||
DN_USize write_index = 0;
|
DN_USize write_index = 0;
|
||||||
for (DN_USize index = 0; index < slice.count; index++) {
|
for (DN_USize index = 0; index < slice.count; index++) {
|
||||||
if (index) {
|
if (index) {
|
||||||
DN_Memcpy(result.data + write_index, separator.data, separator.count * sizeof(result.data[0]));
|
DN_Memcpy(result.data + write_index, seperator.data, seperator.count * sizeof(result.data[0]));
|
||||||
write_index += separator.count;
|
write_index += seperator.count;
|
||||||
}
|
}
|
||||||
DN_Str16 item = slice.data[index];
|
DN_Str16 item = slice.data[index];
|
||||||
DN_Memcpy(result.data + write_index, item.data, item.count * sizeof(result.data[0]));
|
DN_Memcpy(result.data + write_index, item.data, item.count * sizeof(result.data[0]));
|
||||||
@@ -4914,6 +4914,188 @@ DN_API DN_Str8 DN_Str8FromStr8BuilderDelimitArena(DN_Str8Builder const *builder,
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DN_API bool DN_PathAddRef(DN_Path *path, DN_Str8 add, DN_Arena *arena)
|
||||||
|
{
|
||||||
|
if (!arena || !path)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if (add.count == 0)
|
||||||
|
return true;
|
||||||
|
|
||||||
|
DN_Str8 const delimiter_array[] = {
|
||||||
|
DN_Str8Lit("\\"),
|
||||||
|
DN_Str8Lit("/")};
|
||||||
|
|
||||||
|
if (path->links_size == 0)
|
||||||
|
path->has_prefix_path_seperator = (add.data[0] == '/');
|
||||||
|
|
||||||
|
for (;;) {
|
||||||
|
DN_Str8BSplitResult delimiter = DN_Str8BSplitArray(add, delimiter_array, DN_ArrayCountU(delimiter_array));
|
||||||
|
for (; delimiter.lhs.data; delimiter = DN_Str8BSplitArray(delimiter.rhs, delimiter_array, DN_ArrayCountU(delimiter_array))) {
|
||||||
|
if (delimiter.lhs.count <= 0)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
DN_Str8Link *link = DN_ArenaNew(arena, DN_Str8Link, DN_ZMem_Yes);
|
||||||
|
if (!link)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
link->string = delimiter.lhs;
|
||||||
|
link->prev = path->tail;
|
||||||
|
if (path->tail)
|
||||||
|
path->tail->next = link;
|
||||||
|
else
|
||||||
|
path->head = link;
|
||||||
|
path->tail = link;
|
||||||
|
path->links_size += 1;
|
||||||
|
path->string_size += delimiter.lhs.count;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!delimiter.lhs.data)
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
DN_API bool DN_PathAdd(DN_Path *path, DN_Str8 add, DN_Arena *arena)
|
||||||
|
{
|
||||||
|
DN_Str8 copy = DN_Str8FromStr8Arena(add, arena);
|
||||||
|
bool result = copy.count ? true : DN_PathAddRef(path, copy, arena);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
DN_API bool DN_PathAddF(DN_Path *path, DN_Arena *arena, DN_FMT_ATTRIB char const *fmt, ...)
|
||||||
|
{
|
||||||
|
va_list args;
|
||||||
|
va_start(args, fmt);
|
||||||
|
DN_Str8 add = DN_Str8FmtVArena(arena, fmt, args);
|
||||||
|
va_end(args);
|
||||||
|
bool result = DN_PathAddRef(path, add, arena);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
DN_API bool DN_PathPop(DN_Path *path)
|
||||||
|
{
|
||||||
|
if (!path)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if (path->tail) {
|
||||||
|
DN_Assert(path->head);
|
||||||
|
path->links_size -= 1;
|
||||||
|
path->string_size -= path->tail->string.count;
|
||||||
|
path->tail = path->tail->prev;
|
||||||
|
if (path->tail)
|
||||||
|
path->tail->next = nullptr;
|
||||||
|
else
|
||||||
|
path->head = nullptr;
|
||||||
|
} else {
|
||||||
|
DN_Assert(!path->head);
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
DN_API DN_Str8 DN_Str8FromPath(DN_Path const *path, DN_Str8 path_seperator, DN_Allocator allocator)
|
||||||
|
{
|
||||||
|
DN_Str8 result = {};
|
||||||
|
if (!path || path->links_size <= 0)
|
||||||
|
return result;
|
||||||
|
|
||||||
|
// NOTE: Each link except the last one needs the path seperator appended to it, '/' or '\\'
|
||||||
|
DN_USize string_size = (path->has_prefix_path_seperator ? path_seperator.count : 0) + path->string_size + ((path->links_size - 1) * path_seperator.count);
|
||||||
|
result = DN_Str8AllocAllocator(string_size, DN_ZMem_No, allocator);
|
||||||
|
if (result.data) {
|
||||||
|
char *dest = result.data;
|
||||||
|
if (path->has_prefix_path_seperator) {
|
||||||
|
DN_Memcpy(dest, path_seperator.data, path_seperator.count);
|
||||||
|
dest += path_seperator.count;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (DN_Str8Link *link = path->head; link; link = link->next) {
|
||||||
|
DN_Str8 string = link->string;
|
||||||
|
DN_Memcpy(dest, string.data, string.count);
|
||||||
|
dest += string.count;
|
||||||
|
|
||||||
|
if (link != path->tail) {
|
||||||
|
DN_Memcpy(dest, path_seperator.data, path_seperator.count);
|
||||||
|
dest += path_seperator.count;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
result.data[string_size] = 0;
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
DN_API DN_Str8 DN_Str8FmtVPathArena(DN_Str8 path_seperator, DN_Arena *arena, DN_FMT_ATTRIB char const *fmt, va_list args)
|
||||||
|
{
|
||||||
|
DN_TcScratch scratch = DN_TcScratchBeginArena(&arena, 1);
|
||||||
|
DN_Str8 path = DN_Str8FmtVArena(arena, fmt, args);
|
||||||
|
DN_Path fs_path = {};
|
||||||
|
DN_PathAddRef(&fs_path, path, &scratch.arena);
|
||||||
|
DN_Allocator allocator = DN_AllocatorFromArena(arena);
|
||||||
|
DN_Str8 result = DN_Str8FromPath(&fs_path, path_seperator, allocator);
|
||||||
|
DN_TcScratchEnd(&scratch);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
DN_API DN_Str8 DN_Str8FmtPathArena(DN_Str8 path_seperator, DN_Arena *arena, DN_FMT_ATTRIB char const *fmt, ...)
|
||||||
|
{
|
||||||
|
DN_TcScratch scratch = DN_TcScratchBeginArena(&arena, 1);
|
||||||
|
va_list args;
|
||||||
|
va_start(args, fmt);
|
||||||
|
DN_Str8 path = DN_Str8FmtVArena(arena, fmt, args);
|
||||||
|
va_end(args);
|
||||||
|
|
||||||
|
DN_Path fs_path = {};
|
||||||
|
DN_PathAddRef(&fs_path, path, &scratch.arena);
|
||||||
|
|
||||||
|
DN_Allocator allocator = DN_AllocatorFromArena(arena);
|
||||||
|
DN_Str8 result = DN_Str8FromPath(&fs_path, path_seperator, allocator);
|
||||||
|
DN_TcScratchEnd(&scratch);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
DN_API DN_Str8 DN_Str8FmtVPathPool(DN_Str8 path_seperator, DN_Pool *pool, DN_FMT_ATTRIB char const *fmt, va_list args)
|
||||||
|
{
|
||||||
|
DN_TcScratch scratch = DN_TcScratchBeginArena(&pool->arena, 1);
|
||||||
|
DN_Str8 path = DN_Str8FmtVPool(pool, fmt, args);
|
||||||
|
DN_Path fs_path = {};
|
||||||
|
DN_PathAddRef(&fs_path, path, &scratch.arena);
|
||||||
|
DN_Allocator allocator = DN_AllocatorFromPool(pool);
|
||||||
|
DN_Str8 result = DN_Str8FromPath(&fs_path, path_seperator, allocator);
|
||||||
|
DN_TcScratchEnd(&scratch);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
DN_API DN_Str8 DN_Str8FmtPathPool(DN_Str8 path_seperator, DN_Pool *pool, DN_FMT_ATTRIB char const *fmt, ...)
|
||||||
|
{
|
||||||
|
va_list args;
|
||||||
|
va_start(args, fmt);
|
||||||
|
DN_Str8 result = DN_Str8FmtVPathPool(path_seperator, pool, fmt, args);
|
||||||
|
va_end(args);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
DN_API DN_Str8 DN_Str8FmtOsPathPool(DN_Pool *pool, DN_FMT_ATTRIB char const *fmt, ...)
|
||||||
|
{
|
||||||
|
va_list args;
|
||||||
|
va_start(args, fmt);
|
||||||
|
DN_Str8 result = DN_Str8FmtVPathPool(DN_OsPathSeperatorStr8, pool, fmt, args);
|
||||||
|
va_end(args);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
DN_API DN_Str8 DN_Str8FmtOsPathArena(DN_Arena *arena, DN_FMT_ATTRIB char const *fmt, ...)
|
||||||
|
{
|
||||||
|
va_list args;
|
||||||
|
va_start(args, fmt);
|
||||||
|
DN_Str8 result = DN_Str8FmtVPathArena(DN_OsPathSeperatorStr8, arena, fmt, args);
|
||||||
|
va_end(args);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// NOTE: DN_UTF
|
// NOTE: DN_UTF
|
||||||
DN_API int DN_UTF8Encode(DN_U8 utf8[4], DN_U32 codepoint)
|
DN_API int DN_UTF8Encode(DN_U8 utf8[4], DN_U32 codepoint)
|
||||||
{
|
{
|
||||||
@@ -11611,7 +11793,7 @@ static void DN_OS_LoggerSetFilePathNoMutex_(DN_OSLogger *logger, DN_Pool *pool,
|
|||||||
logger->file_path = {};
|
logger->file_path = {};
|
||||||
}
|
}
|
||||||
DN_OS_FileClose(&logger->file);
|
DN_OS_FileClose(&logger->file);
|
||||||
logger->file_path = DN_OS_PathFmtPool(pool, "%.*s", DN_Str8PrintFmt(file_path));
|
logger->file_path = DN_Str8FmtOsPathPool(pool, "%.*s", DN_Str8PrintFmt(file_path));
|
||||||
|
|
||||||
// NOTE: Clear the sticky file error flag if it was set
|
// NOTE: Clear the sticky file error flag if it was set
|
||||||
logger->flags &= ~DN_OSLoggerFlags_FileError;
|
logger->flags &= ~DN_OSLoggerFlags_FileError;
|
||||||
@@ -11634,7 +11816,7 @@ static void DN_OS_DoLogFileSetupAndRotation_(DN_OSLogger *logger)
|
|||||||
// NOTE: Set a default file path to log to if it's not been set yet
|
// NOTE: Set a default file path to log to if it's not been set yet
|
||||||
if (logger->file_path.count == 0) {
|
if (logger->file_path.count == 0) {
|
||||||
DN_Str8 exe_dir = DN_OS_ExeDir(&scratch.arena);
|
DN_Str8 exe_dir = DN_OS_ExeDir(&scratch.arena);
|
||||||
DN_Str8 default_file_path = DN_OS_PathFmtArena(&scratch.arena, "%.*s/dn.log", DN_Str8PrintFmt(exe_dir));
|
DN_Str8 default_file_path = DN_Str8FmtOsPathArena(&scratch.arena, "%.*s/dn.log", DN_Str8PrintFmt(exe_dir));
|
||||||
DN_OS_LoggerSetFilePathNoMutex_(logger, DN_TcMainPool(), default_file_path);
|
DN_OS_LoggerSetFilePathNoMutex_(logger, DN_TcMainPool(), default_file_path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -11833,26 +12015,26 @@ DN_API DN_Arena DN_OS_ArenaFromHeapBasic(DN_U64 size, DN_MemFlags flags)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// NOTE: Date
|
// NOTE: Date
|
||||||
DN_API DN_Str8x32 DN_OS_DateLocalTimeStr8(DN_Date time, char date_separator, char hms_separator)
|
DN_API DN_Str8x32 DN_OS_DateLocalTimeStr8(DN_Date time, char date_seperator, char hms_seperator)
|
||||||
{
|
{
|
||||||
DN_Str8x32 result = DN_Str8x32FromFmt("%hu%c%02hhu%c%02hhu %02hhu%c%02hhu%c%02hhu",
|
DN_Str8x32 result = DN_Str8x32FromFmt("%hu%c%02hhu%c%02hhu %02hhu%c%02hhu%c%02hhu",
|
||||||
time.year,
|
time.year,
|
||||||
date_separator,
|
date_seperator,
|
||||||
time.month,
|
time.month,
|
||||||
date_separator,
|
date_seperator,
|
||||||
time.day,
|
time.day,
|
||||||
time.hour,
|
time.hour,
|
||||||
hms_separator,
|
hms_seperator,
|
||||||
time.minutes,
|
time.minutes,
|
||||||
hms_separator,
|
hms_seperator,
|
||||||
time.seconds);
|
time.seconds);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
DN_API DN_Str8x32 DN_OS_DateLocalTimeStr8Now(char date_separator, char hms_separator)
|
DN_API DN_Str8x32 DN_OS_DateLocalTimeStr8Now(char date_seperator, char hms_seperator)
|
||||||
{
|
{
|
||||||
DN_Date time = DN_OS_DateLocalTimeNow();
|
DN_Date time = DN_OS_DateLocalTimeNow();
|
||||||
DN_Str8x32 result = DN_OS_DateLocalTimeStr8(time, date_separator, hms_separator);
|
DN_Str8x32 result = DN_OS_DateLocalTimeStr8(time, date_seperator, hms_seperator);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -11863,8 +12045,8 @@ DN_API DN_Str8 DN_OS_ExeDir(DN_Arena *arena)
|
|||||||
return result;
|
return result;
|
||||||
DN_TcScratch scratch = DN_TcScratchBeginArena(&arena, 1);
|
DN_TcScratch scratch = DN_TcScratchBeginArena(&arena, 1);
|
||||||
DN_Str8 exe_path = DN_OS_ExePath(&scratch.arena);
|
DN_Str8 exe_path = DN_OS_ExePath(&scratch.arena);
|
||||||
DN_Str8 separators[] = {DN_Str8Lit("/"), DN_Str8Lit("\\")};
|
DN_Str8 seperators[] = {DN_Str8Lit("/"), DN_Str8Lit("\\")};
|
||||||
DN_Str8BSplitResult split = DN_Str8BSplitLastArray(exe_path, separators, DN_ArrayCountU(separators));
|
DN_Str8BSplitResult split = DN_Str8BSplitLastArray(exe_path, seperators, DN_ArrayCountU(seperators));
|
||||||
result = DN_Str8FromStr8Arena(split.lhs, arena);
|
result = DN_Str8FromStr8Arena(split.lhs, arena);
|
||||||
DN_TcScratchEnd(&scratch);
|
DN_TcScratchEnd(&scratch);
|
||||||
return result;
|
return result;
|
||||||
@@ -12193,201 +12375,6 @@ DN_API bool DN_OS_PathIsOlderThan(DN_Str8 path, DN_Str8 check_against)
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
DN_API bool DN_OS_PathAddRef(DN_Arena *arena, DN_OSPath *fs_path, DN_Str8 path)
|
|
||||||
{
|
|
||||||
if (!arena || !fs_path || path.count == 0)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
if (path.count <= 0)
|
|
||||||
return true;
|
|
||||||
|
|
||||||
DN_Str8 const delimiter_array[] = {
|
|
||||||
DN_Str8Lit("\\"),
|
|
||||||
DN_Str8Lit("/")};
|
|
||||||
|
|
||||||
if (fs_path->links_size == 0)
|
|
||||||
fs_path->has_prefix_path_separator = (path.data[0] == '/');
|
|
||||||
|
|
||||||
for (;;) {
|
|
||||||
DN_Str8BSplitResult delimiter = DN_Str8BSplitArray(path, delimiter_array, DN_ArrayCountU(delimiter_array));
|
|
||||||
for (; delimiter.lhs.data; delimiter = DN_Str8BSplitArray(delimiter.rhs, delimiter_array, DN_ArrayCountU(delimiter_array))) {
|
|
||||||
if (delimiter.lhs.count <= 0)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
DN_OSPathLink *link = DN_ArenaNew(arena, DN_OSPathLink, DN_ZMem_Yes);
|
|
||||||
if (!link)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
link->string = delimiter.lhs;
|
|
||||||
link->prev = fs_path->tail;
|
|
||||||
if (fs_path->tail)
|
|
||||||
fs_path->tail->next = link;
|
|
||||||
else
|
|
||||||
fs_path->head = link;
|
|
||||||
fs_path->tail = link;
|
|
||||||
fs_path->links_size += 1;
|
|
||||||
fs_path->string_size += delimiter.lhs.count;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!delimiter.lhs.data)
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API bool DN_OS_PathAdd(DN_Arena *arena, DN_OSPath *fs_path, DN_Str8 path)
|
|
||||||
{
|
|
||||||
DN_Str8 copy = DN_Str8FromStr8Arena(path, arena);
|
|
||||||
bool result = copy.count ? true : DN_OS_PathAddRef(arena, fs_path, copy);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API bool DN_OS_PathAddF(DN_Arena *arena, DN_OSPath *fs_path, DN_FMT_ATTRIB char const *fmt, ...)
|
|
||||||
{
|
|
||||||
va_list args;
|
|
||||||
va_start(args, fmt);
|
|
||||||
DN_Str8 path = DN_Str8FmtVArena(arena, fmt, args);
|
|
||||||
va_end(args);
|
|
||||||
bool result = DN_OS_PathAddRef(arena, fs_path, path);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API bool DN_OS_PathPop(DN_OSPath *fs_path)
|
|
||||||
{
|
|
||||||
if (!fs_path)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
if (fs_path->tail) {
|
|
||||||
DN_Assert(fs_path->head);
|
|
||||||
fs_path->links_size -= 1;
|
|
||||||
fs_path->string_size -= fs_path->tail->string.count;
|
|
||||||
fs_path->tail = fs_path->tail->prev;
|
|
||||||
if (fs_path->tail)
|
|
||||||
fs_path->tail->next = nullptr;
|
|
||||||
else
|
|
||||||
fs_path->head = nullptr;
|
|
||||||
} else {
|
|
||||||
DN_Assert(!fs_path->head);
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API DN_Str8 DN_OS_PathBuildWithSeparatorAllocator(DN_Allocator allocator, DN_OSPath const *fs_path, DN_Str8 path_separator)
|
|
||||||
{
|
|
||||||
DN_Str8 result = {};
|
|
||||||
if (!fs_path || fs_path->links_size <= 0)
|
|
||||||
return result;
|
|
||||||
|
|
||||||
// NOTE: Each link except the last one needs the path separator appended to it, '/' or '\\'
|
|
||||||
DN_USize string_size = (fs_path->has_prefix_path_separator ? path_separator.count : 0) + fs_path->string_size + ((fs_path->links_size - 1) * path_separator.count);
|
|
||||||
result = DN_Str8AllocAllocator(string_size, DN_ZMem_No, allocator);
|
|
||||||
if (result.data) {
|
|
||||||
char *dest = result.data;
|
|
||||||
if (fs_path->has_prefix_path_separator) {
|
|
||||||
DN_Memcpy(dest, path_separator.data, path_separator.count);
|
|
||||||
dest += path_separator.count;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (DN_OSPathLink *link = fs_path->head; link; link = link->next) {
|
|
||||||
DN_Str8 string = link->string;
|
|
||||||
DN_Memcpy(dest, string.data, string.count);
|
|
||||||
dest += string.count;
|
|
||||||
|
|
||||||
if (link != fs_path->tail) {
|
|
||||||
DN_Memcpy(dest, path_separator.data, path_separator.count);
|
|
||||||
dest += path_separator.count;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
result.data[string_size] = 0;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API DN_Str8 DN_OS_PathToArena(DN_Arena *arena, DN_Str8 path, DN_Str8 path_separator)
|
|
||||||
{
|
|
||||||
DN_OSPath fs_path = {};
|
|
||||||
DN_OS_PathAddRef(arena, &fs_path, path);
|
|
||||||
DN_Allocator allocator = DN_AllocatorFromArena(arena);
|
|
||||||
DN_Str8 result = DN_OS_PathBuildWithSeparatorAllocator(allocator, &fs_path, path_separator);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API DN_Str8 DN_OS_PathToPool(DN_Pool *pool, DN_Str8 path, DN_Str8 path_separator)
|
|
||||||
{
|
|
||||||
DN_TcScratch scratch = DN_TcScratchBeginArena(&pool->arena, 1);
|
|
||||||
DN_OSPath fs_path = {};
|
|
||||||
DN_OS_PathAddRef(&scratch.arena, &fs_path, path);
|
|
||||||
|
|
||||||
DN_Allocator allocator = DN_AllocatorFromPool(pool);
|
|
||||||
DN_Str8 result = DN_OS_PathBuildWithSeparatorAllocator(allocator, &fs_path, path_separator);
|
|
||||||
DN_TcScratchEnd(&scratch);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API DN_Str8 DN_OS_PathToFmtArena(DN_Arena *arena, DN_Str8 path_separator, DN_FMT_ATTRIB char const *fmt, ...)
|
|
||||||
{
|
|
||||||
DN_TcScratch scratch = DN_TcScratchBeginArena(&arena, 1);
|
|
||||||
va_list args;
|
|
||||||
va_start(args, fmt);
|
|
||||||
DN_Str8 path = DN_Str8FmtVArena(&scratch.arena, fmt, args);
|
|
||||||
va_end(args);
|
|
||||||
DN_Str8 result = DN_OS_PathToArena(arena, path, path_separator);
|
|
||||||
DN_TcScratchEnd(&scratch);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API DN_Str8 DN_OS_PathToFmtPool(DN_Pool *pool, DN_Str8 path_separator, DN_FMT_ATTRIB char const *fmt, ...)
|
|
||||||
{
|
|
||||||
DN_TcScratch scratch = DN_TcScratchBeginArena(&pool->arena, 1);
|
|
||||||
va_list args;
|
|
||||||
va_start(args, fmt);
|
|
||||||
DN_Str8 path = DN_Str8FmtVArena(&scratch.arena, fmt, args);
|
|
||||||
va_end(args);
|
|
||||||
|
|
||||||
DN_Str8 result = DN_OS_PathToPool(pool, path, path_separator);
|
|
||||||
DN_TcScratchEnd(&scratch);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API DN_Str8 DN_OS_PathArena(DN_Arena *arena, DN_Str8 path)
|
|
||||||
{
|
|
||||||
DN_Str8 result = DN_OS_PathToArena(arena, path, DN_OSPathSeparatorStr8);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API DN_Str8 DN_OS_PathPool(DN_Pool *pool, DN_Str8 path)
|
|
||||||
{
|
|
||||||
DN_Str8 result = DN_OS_PathToPool(pool, path, DN_OSPathSeparatorStr8);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API DN_Str8 DN_OS_PathFmtArena(DN_Arena *arena, DN_FMT_ATTRIB char const *fmt, ...)
|
|
||||||
{
|
|
||||||
DN_TcScratch scratch = DN_TcScratchBeginArena(&arena, 1);
|
|
||||||
va_list args;
|
|
||||||
va_start(args, fmt);
|
|
||||||
DN_Str8 path = DN_Str8FmtVArena(&scratch.arena, fmt, args);
|
|
||||||
va_end(args);
|
|
||||||
DN_Str8 result = DN_OS_PathArena(arena, path);
|
|
||||||
DN_TcScratchEnd(&scratch);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API DN_Str8 DN_OS_PathFmtPool(DN_Pool *pool, DN_FMT_ATTRIB char const *fmt, ...)
|
|
||||||
{
|
|
||||||
DN_TcScratch scratch = DN_TcScratchBeginArena(&pool->arena, 1);
|
|
||||||
va_list args;
|
|
||||||
va_start(args, fmt);
|
|
||||||
DN_Str8 path = DN_Str8FmtVArena(&scratch.arena, fmt, args);
|
|
||||||
va_end(args);
|
|
||||||
DN_Str8 result = DN_OS_PathPool(pool, path);
|
|
||||||
DN_TcScratchEnd(&scratch);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DN_API DN_OSExecArgs DN_OS_ExecArgsDefault()
|
DN_API DN_OSExecArgs DN_OS_ExecArgsDefault()
|
||||||
{
|
{
|
||||||
DN_OSExecArgs result = {};
|
DN_OSExecArgs result = {};
|
||||||
|
|||||||
+36
-52
@@ -1503,6 +1503,25 @@ enum DN_Str8BuilderAdd
|
|||||||
DN_Str8BuilderAdd_Prepend,
|
DN_Str8BuilderAdd_Prepend,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#if !defined(DN_OsPathSeperator)
|
||||||
|
#if defined(DN_PLATFORM_WIN32)
|
||||||
|
#define DN_OsPathSeperator "\\"
|
||||||
|
#else
|
||||||
|
#define DN_OsPathSeperator "/"
|
||||||
|
#endif
|
||||||
|
#define DN_OsPathSeperatorStr8 DN_Str8Lit(DN_OsPathSeperator)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
typedef struct DN_Path DN_Path;
|
||||||
|
struct DN_Path
|
||||||
|
{
|
||||||
|
bool has_prefix_path_seperator;
|
||||||
|
DN_Str8Link *head;
|
||||||
|
DN_Str8Link *tail;
|
||||||
|
DN_USize string_size;
|
||||||
|
DN_U16 links_size;
|
||||||
|
};
|
||||||
|
|
||||||
typedef DN_U32 DN_AgeUnit;
|
typedef DN_U32 DN_AgeUnit;
|
||||||
enum DN_AgeUnit_
|
enum DN_AgeUnit_
|
||||||
{
|
{
|
||||||
@@ -2298,7 +2317,6 @@ enum DN_OSFileRotateFlags_
|
|||||||
DN_OSFileRotateFlags_KeepBaseFile = 1 << 0,
|
DN_OSFileRotateFlags_KeepBaseFile = 1 << 0,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
enum DN_OSPathInfoType
|
enum DN_OSPathInfoType
|
||||||
{
|
{
|
||||||
DN_OSPathInfoType_Unknown,
|
DN_OSPathInfoType_Unknown,
|
||||||
@@ -2357,34 +2375,6 @@ enum DN_OSFileAccess_
|
|||||||
DN_OSFileAccess_All = DN_OSFileAccess_ReadWrite | DN_OSFileAccess_Execute | DN_OSFileAccess_AppendOnly,
|
DN_OSFileAccess_All = DN_OSFileAccess_ReadWrite | DN_OSFileAccess_Execute | DN_OSFileAccess_AppendOnly,
|
||||||
};
|
};
|
||||||
|
|
||||||
// NOTE: DN_OSPath
|
|
||||||
#if !defined(DN_OSPathSeparator)
|
|
||||||
#if defined(DN_PLATFORM_WIN32)
|
|
||||||
#define DN_OSPathSeparator "\\"
|
|
||||||
#else
|
|
||||||
#define DN_OSPathSeparator "/"
|
|
||||||
#endif
|
|
||||||
#define DN_OSPathSeparatorStr8 DN_Str8Lit(DN_OSPathSeparator)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
typedef struct DN_OSPathLink DN_OSPathLink;
|
|
||||||
struct DN_OSPathLink
|
|
||||||
{
|
|
||||||
DN_Str8 string;
|
|
||||||
DN_OSPathLink *next;
|
|
||||||
DN_OSPathLink *prev;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct DN_OSPath DN_OSPath;
|
|
||||||
struct DN_OSPath
|
|
||||||
{
|
|
||||||
bool has_prefix_path_separator;
|
|
||||||
DN_OSPathLink *head;
|
|
||||||
DN_OSPathLink *tail;
|
|
||||||
DN_USize string_size;
|
|
||||||
DN_U16 links_size;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef DN_U32 DN_OSExecFlags;
|
typedef DN_U32 DN_OSExecFlags;
|
||||||
enum DN_OSExecFlags_
|
enum DN_OSExecFlags_
|
||||||
{
|
{
|
||||||
@@ -3099,7 +3089,7 @@ DN_API void DN_Str8x512AppendFmtV
|
|||||||
DN_API void DN_Str8x1024AppendFmt (DN_Str8x1024 *str, DN_FMT_ATTRIB char const *fmt, ...);
|
DN_API void DN_Str8x1024AppendFmt (DN_Str8x1024 *str, DN_FMT_ATTRIB char const *fmt, ...);
|
||||||
DN_API void DN_Str8x1024AppendFmtV (DN_Str8x1024 *str, DN_FMT_ATTRIB char const *fmt, va_list args);
|
DN_API void DN_Str8x1024AppendFmtV (DN_Str8x1024 *str, DN_FMT_ATTRIB char const *fmt, va_list args);
|
||||||
|
|
||||||
DN_API DN_Str8x32 DN_Str8x32FromU64 (DN_U64 val, char separator);
|
DN_API DN_Str8x32 DN_Str8x32FromU64 (DN_U64 val, char seperator);
|
||||||
DN_API bool DN_Str8Is (DN_Str8 string, DN_Str8IsFlags flags);
|
DN_API bool DN_Str8Is (DN_Str8 string, DN_Str8IsFlags flags);
|
||||||
DN_API char * DN_Str8End (DN_Str8 string);
|
DN_API char * DN_Str8End (DN_Str8 string);
|
||||||
DN_API DN_Str8 DN_Str8Subset (DN_Str8 string, DN_USize offset, DN_USize count);
|
DN_API DN_Str8 DN_Str8Subset (DN_Str8 string, DN_USize offset, DN_USize count);
|
||||||
@@ -3175,13 +3165,13 @@ DN_API DN_USize DN_Str8SplitAVX512F
|
|||||||
DN_API DN_Str8Slice DN_Str8SplitAllocAVX512F (DN_Arena *arena, DN_Str8 string, DN_Str8 delimiter, DN_Str8SplitFlags flags);
|
DN_API DN_Str8Slice DN_Str8SplitAllocAVX512F (DN_Arena *arena, DN_Str8 string, DN_Str8 delimiter, DN_Str8SplitFlags flags);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
DN_API DN_Str8 DN_Str8SliceRender (DN_Str8Slice array, DN_Str8 separator, DN_Arena *arena);
|
DN_API DN_Str8 DN_Str8SliceRender (DN_Str8Slice array, DN_Str8 seperator, DN_Arena *arena);
|
||||||
DN_API DN_Str8 DN_Str8RenderSpaceSep (DN_Str8Slice array, DN_Arena *arena);
|
DN_API DN_Str8 DN_Str8RenderSpaceSep (DN_Str8Slice array, DN_Arena *arena);
|
||||||
DN_API int DN_Str8CompareNatural (DN_Str8 lhs, DN_Str8 rhs, DN_Str8EqCase eq_case);
|
DN_API int DN_Str8CompareNatural (DN_Str8 lhs, DN_Str8 rhs, DN_Str8EqCase eq_case);
|
||||||
DN_API int DN_Str8CompareLexicographic (DN_Str8 lhs, DN_Str8 rhs, DN_Str8EqCase eq_case);
|
DN_API int DN_Str8CompareLexicographic (DN_Str8 lhs, DN_Str8 rhs, DN_Str8EqCase eq_case);
|
||||||
|
|
||||||
DN_API bool DN_Str16Eq (DN_Str16 lhs, DN_Str16 rhs);
|
DN_API bool DN_Str16Eq (DN_Str16 lhs, DN_Str16 rhs);
|
||||||
DN_API DN_Str16 DN_Str16SliceRender (DN_Str16Slice array, DN_Str16 separator, DN_Arena *arena);
|
DN_API DN_Str16 DN_Str16SliceRender (DN_Str16Slice array, DN_Str16 seperator, DN_Arena *arena);
|
||||||
DN_API DN_Str16 DN_Str16RenderSpaceSep (DN_Str16Slice array, DN_Arena *arena);
|
DN_API DN_Str16 DN_Str16RenderSpaceSep (DN_Str16Slice array, DN_Arena *arena);
|
||||||
|
|
||||||
DN_API DN_Str8Builder DN_Str8BuilderFromArena (DN_Arena *arena);
|
DN_API DN_Str8Builder DN_Str8BuilderFromArena (DN_Arena *arena);
|
||||||
@@ -3217,6 +3207,18 @@ DN_API DN_Str8 DN_Str8FromStr8BuilderArena
|
|||||||
DN_API DN_Str8 DN_Str8FromStr8BuilderDelimitAllocator (DN_Str8Builder const *builder, DN_Str8 delimiter, DN_Allocator allocator);
|
DN_API DN_Str8 DN_Str8FromStr8BuilderDelimitAllocator (DN_Str8Builder const *builder, DN_Str8 delimiter, DN_Allocator allocator);
|
||||||
DN_API DN_Str8 DN_Str8FromStr8BuilderDelimitArena (DN_Str8Builder const *builder, DN_Str8 delimiter, DN_Arena *arena);
|
DN_API DN_Str8 DN_Str8FromStr8BuilderDelimitArena (DN_Str8Builder const *builder, DN_Str8 delimiter, DN_Arena *arena);
|
||||||
|
|
||||||
|
DN_API bool DN_PathAddRef (DN_Path *path, DN_Str8 add, DN_Arena *arena);
|
||||||
|
DN_API bool DN_PathAdd (DN_Path *path, DN_Str8 add, DN_Arena *arena);
|
||||||
|
DN_API bool DN_PathAddF (DN_Path *path, DN_FMT_ATTRIB char const *fmt, ...);
|
||||||
|
DN_API bool DN_PathPop (DN_Path *path);
|
||||||
|
DN_API DN_Str8 DN_Str8FromPath (DN_Path const *path, DN_Str8 path_seperator, DN_Allocator allocator);
|
||||||
|
DN_API DN_Str8 DN_Str8FmtPathVArena (DN_Str8 path_seperator, DN_Arena *arena, char const *fmt, va_list args);
|
||||||
|
DN_API DN_Str8 DN_Str8FmtPathArena (DN_Str8 path_seperator, DN_Arena *arena, DN_FMT_ATTRIB char const *fmt, ...);
|
||||||
|
DN_API DN_Str8 DN_Str8FmtPathVPool (DN_Str8 path_seperator, DN_Pool *pool, char const *fmt, va_list args);
|
||||||
|
DN_API DN_Str8 DN_Str8FmtPathPool (DN_Str8 path_seperator, DN_Pool *pool, DN_FMT_ATTRIB char const *fmt, ...);
|
||||||
|
DN_API DN_Str8 DN_Str8FmtOsPathArena (DN_Arena *arena, DN_FMT_ATTRIB char const *fmt, ...);
|
||||||
|
DN_API DN_Str8 DN_Str8FmtOsPathPool (DN_Pool *pool, DN_FMT_ATTRIB char const *fmt, ...);
|
||||||
|
|
||||||
DN_API int DN_UTF8Encode (DN_U8 utf8[4], DN_U32 codepoint);
|
DN_API int DN_UTF8Encode (DN_U8 utf8[4], DN_U32 codepoint);
|
||||||
DN_API int DN_UTF16Encode (DN_U16 utf16[2], DN_U32 codepoint);
|
DN_API int DN_UTF16Encode (DN_U16 utf16[2], DN_U32 codepoint);
|
||||||
DN_API DN_UTF8DecodeResult DN_UTF8Decode (DN_Str8 stream);
|
DN_API DN_UTF8DecodeResult DN_UTF8Decode (DN_Str8 stream);
|
||||||
@@ -4611,8 +4613,8 @@ DN_API void * DN_OS_MemAlloc (D
|
|||||||
DN_API void DN_OS_MemDealloc (void *ptr);
|
DN_API void DN_OS_MemDealloc (void *ptr);
|
||||||
|
|
||||||
DN_API DN_Date DN_OS_DateLocalTimeNow ();
|
DN_API DN_Date DN_OS_DateLocalTimeNow ();
|
||||||
DN_API DN_Str8x32 DN_OS_DateLocalTimeStr8Now (char date_separator = '-', char hms_separator = ':');
|
DN_API DN_Str8x32 DN_OS_DateLocalTimeStr8Now (char date_seperator = '-', char hms_seperator = ':');
|
||||||
DN_API DN_Str8x32 DN_OS_DateLocalTimeStr8 (DN_Date time, char date_separator = '-', char hms_separator = ':');
|
DN_API DN_Str8x32 DN_OS_DateLocalTimeStr8 (DN_Date time, char date_seperator = '-', char hms_seperator = ':');
|
||||||
DN_API DN_U64 DN_OS_DateUnixTimeNs ();
|
DN_API DN_U64 DN_OS_DateUnixTimeNs ();
|
||||||
#define DN_OS_DateUnixTimeUs() (DN_OS_DateUnixTimeNs() / 1000)
|
#define DN_OS_DateUnixTimeUs() (DN_OS_DateUnixTimeNs() / 1000)
|
||||||
#define DN_OS_DateUnixTimeMs() (DN_OS_DateUnixTimeNs() / (1000 * 1000))
|
#define DN_OS_DateUnixTimeMs() (DN_OS_DateUnixTimeNs() / (1000 * 1000))
|
||||||
@@ -4711,24 +4713,6 @@ DN_API bool DN_OS_PathIsDir (D
|
|||||||
DN_API bool DN_OS_PathMakeDir (DN_Str8 path);
|
DN_API bool DN_OS_PathMakeDir (DN_Str8 path);
|
||||||
DN_API bool DN_OS_PathIterateDir (DN_Str8 path, DN_OSDirIterator *it);
|
DN_API bool DN_OS_PathIterateDir (DN_Str8 path, DN_OSDirIterator *it);
|
||||||
|
|
||||||
DN_API bool DN_OS_PathAddRef (DN_Arena *arena, DN_OSPath *fs_path, DN_Str8 path);
|
|
||||||
DN_API bool DN_OS_PathAdd (DN_Arena *arena, DN_OSPath *fs_path, DN_Str8 path);
|
|
||||||
DN_API bool DN_OS_PathAddF (DN_Arena *arena, DN_OSPath *fs_path, DN_FMT_ATTRIB char const *fmt, ...);
|
|
||||||
DN_API bool DN_OS_PathPop (DN_OSPath *fs_path);
|
|
||||||
DN_API DN_Str8 DN_OS_PathBuildWithSeparatorAllocator (DN_Allocator allocator, DN_OSPath const *fs_path, DN_Str8 path_separator);
|
|
||||||
DN_API DN_Str8 DN_OS_PathToArena (DN_Arena *arena, DN_Str8 path, DN_Str8 path_separtor);
|
|
||||||
DN_API DN_Str8 DN_OS_PathToPool (DN_Pool *pool, DN_Str8 path, DN_Str8 path_separtor);
|
|
||||||
DN_API DN_Str8 DN_OS_PathToFmtArena (DN_Arena *arena, DN_Str8 path_separator, DN_FMT_ATTRIB char const *fmt, ...);
|
|
||||||
DN_API DN_Str8 DN_OS_PathToFmtPool (DN_Pool *pool, DN_Str8 path_separator, DN_FMT_ATTRIB char const *fmt, ...);
|
|
||||||
DN_API DN_Str8 DN_OS_PathArena (DN_Arena *arena, DN_Str8 path);
|
|
||||||
DN_API DN_Str8 DN_OS_PathPool (DN_Pool *pool, DN_Str8 path);
|
|
||||||
DN_API DN_Str8 DN_OS_PathFmtArena (DN_Arena *arena, DN_FMT_ATTRIB char const *fmt, ...);
|
|
||||||
DN_API DN_Str8 DN_OS_PathFmtPool (DN_Pool *pool, DN_FMT_ATTRIB char const *fmt, ...);
|
|
||||||
|
|
||||||
#define DN_OS_PathBuildFwdSlash(allocator, fs_path) DN_OS_PathBuildWithSeparatorAllocator(allocator, fs_path, DN_Str8Lit("/"))
|
|
||||||
#define DN_OS_PathBuildBackSlash(allocator, fs_path) DN_OS_PathBuildWithSeparatorAllocator(allocator, fs_path, DN_Str8Lit("\\"))
|
|
||||||
#define DN_OS_PathBuild(allocator, fs_path) DN_OS_PathBuildWithSeparatorAllocator(allocator, fs_path, DN_OSPathSeparatorStr8)
|
|
||||||
|
|
||||||
DN_API void DN_OS_Exit (int32_t exit_code);
|
DN_API void DN_OS_Exit (int32_t exit_code);
|
||||||
DN_API DN_OSExecArgs DN_OS_ExecArgsDefault ();
|
DN_API DN_OSExecArgs DN_OS_ExecArgsDefault ();
|
||||||
DN_API DN_OSExecResult DN_OS_ExecPump (DN_OSExecAsyncHandle handle, char *stdout_buffer, size_t *stdout_size, char *stderr_buffer, size_t *stderr_size, DN_U32 timeout_ms, DN_ErrSink *err);
|
DN_API DN_OSExecResult DN_OS_ExecPump (DN_OSExecAsyncHandle handle, char *stdout_buffer, size_t *stdout_size, char *stderr_buffer, size_t *stderr_size, DN_U32 timeout_ms, DN_ErrSink *err);
|
||||||
|
|||||||
@@ -65,7 +65,7 @@ static void AppendCppFileLineByLine(DN_Str8Builder *dest, DN_Str8 cpp_path)
|
|||||||
line = DN_Str8FmtArena(&scratch.arena, "%S// DN: Single header generator commented out => %S", find.start_to_before_match, DN_Str8TrimWhitespaceAround(find.match_to_end_of_buffer));
|
line = DN_Str8FmtArena(&scratch.arena, "%S// DN: Single header generator commented out => %S", find.start_to_before_match, DN_Str8TrimWhitespaceAround(find.match_to_end_of_buffer));
|
||||||
DN_Str8 rel_include_path = DN_Str8TrimWhitespaceAround(find.after_match_to_end_of_buffer);
|
DN_Str8 rel_include_path = DN_Str8TrimWhitespaceAround(find.after_match_to_end_of_buffer);
|
||||||
DN_Str8 root_dir = DN_Str8FileDirectoryFromPath(cpp_path);
|
DN_Str8 root_dir = DN_Str8FileDirectoryFromPath(cpp_path);
|
||||||
extra_include_path = DN_OS_PathFmtArena(&scratch.arena, "%S/%S", root_dir, DN_Str8TrimSuffixSensitive(rel_include_path, DN_Str8Lit("\"")));
|
extra_include_path = DN_Str8FmtOsPathArena(&scratch.arena, "%S/%S", root_dir, DN_Str8TrimSuffixSensitive(rel_include_path, DN_Str8Lit("\"")));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -113,7 +113,7 @@ int main(int argc, char **argv)
|
|||||||
DN_Str8Builder builder = DN_Str8BuilderFromArena(&scratch.arena);
|
DN_Str8Builder builder = DN_Str8BuilderFromArena(&scratch.arena);
|
||||||
DN_Str8 suffix = type == FileType_Header ? DN_Str8Lit("h") : DN_Str8Lit("cpp");
|
DN_Str8 suffix = type == FileType_Header ? DN_Str8Lit("h") : DN_Str8Lit("cpp");
|
||||||
for (DN_ForItCArray(it, DN_Str8 const, REL_FILE_PATHS)) {
|
for (DN_ForItCArray(it, DN_Str8 const, REL_FILE_PATHS)) {
|
||||||
DN_Str8 path = DN_OS_PathFmtArena(&scratch.arena, "%S/%S.%S", dn_root_dir, *it.data, suffix);
|
DN_Str8 path = DN_Str8FmtOsPathArena(&scratch.arena, "%S/%S.%S", dn_root_dir, *it.data, suffix);
|
||||||
AppendCppFileLineByLine(&builder, path);
|
AppendCppFileLineByLine(&builder, path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -121,7 +121,7 @@ int main(int argc, char **argv)
|
|||||||
DN_Str8BuilderPrependF(&builder, "// Generated by the DN single header generator %04u-%02u-%02u %02u:%02u:%02u\n\n", date.year, date.month, date.day, date.hour, date.minutes, date.seconds);
|
DN_Str8BuilderPrependF(&builder, "// Generated by the DN single header generator %04u-%02u-%02u %02u:%02u:%02u\n\n", date.year, date.month, date.day, date.hour, date.minutes, date.seconds);
|
||||||
|
|
||||||
DN_Str8 buffer = DN_Str8TrimWhitespaceAround(DN_Str8FromStr8BuilderArena(&builder, &scratch.arena));
|
DN_Str8 buffer = DN_Str8TrimWhitespaceAround(DN_Str8FromStr8BuilderArena(&builder, &scratch.arena));
|
||||||
DN_Str8 single_header_path = DN_OS_PathFmtArena(&scratch.arena, "%S/dn_single_header.%S", output_dir, suffix);
|
DN_Str8 single_header_path = DN_Str8FmtOsPathArena(&scratch.arena, "%S/dn_single_header.%S", output_dir, suffix);
|
||||||
DN_ErrSink *err = DN_TcErrSinkBeginDefault();
|
DN_ErrSink *err = DN_TcErrSinkBeginDefault();
|
||||||
DN_OS_FileWriteAllSafe(single_header_path, buffer, err);
|
DN_OS_FileWriteAllSafe(single_header_path, buffer, err);
|
||||||
DN_ErrSinkEndExitIfErrorF(err, -1, "Failed to write Single header file '%S'", single_header_path);
|
DN_ErrSinkEndExitIfErrorF(err, -1, "Failed to write Single header file '%S'", single_header_path);
|
||||||
|
|||||||
Reference in New Issue
Block a user