dqn: Pull changes from private projects
This commit is contained in:
parent
d59aebb172
commit
b22c7dbfce
BIN
Project/dqn.rdbg
BIN
Project/dqn.rdbg
Binary file not shown.
160
dqn_cpp_file.h
160
dqn_cpp_file.h
@ -1,103 +1,57 @@
|
||||
#if !defined(DQN_CPP_FILE_H)
|
||||
#define DQN_CPP_FILE_H
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
// NOTE: Dqn_CppFile: Helper functions to generate C++ files
|
||||
// =============================================================================
|
||||
#include <stdio.h> /// printf, fputc
|
||||
#include <stdarg.h> /// va_list...
|
||||
#include <assert.h> /// assert
|
||||
|
||||
// NOTE: Dqn_CppFile: Helper functions to generate formatted CPP files
|
||||
// -----------------------------------------------------------------------------
|
||||
#define DQN_CPPF_ASSERT(expr) \
|
||||
do \
|
||||
{ \
|
||||
if (!(expr)) \
|
||||
{ \
|
||||
*((int volatile *)0) = 0; \
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
struct Dqn_CppFile
|
||||
struct Dqn_CppFile /// Maintains state for printing C++ style formatted files
|
||||
{
|
||||
FILE *file;
|
||||
int indent;
|
||||
int space_per_indent;
|
||||
bool append_extra_new_line;
|
||||
FILE *file; ///< File to print to
|
||||
int indent; ///< Current indent level of the printer
|
||||
int space_per_indent; ///< Number of spaces per indent
|
||||
bool k_and_r_indent; ///< K&R style indenting when opening a block scope, e.g. "{\n" vs "\n{"
|
||||
};
|
||||
|
||||
int Dqn_CppFSpacePerIndent(Dqn_CppFile *cpp);
|
||||
/// Print the format string indented and terminate the string with a new-line.
|
||||
void Dqn_CppFLineV(Dqn_CppFile *cpp, char const *fmt, va_list args);
|
||||
void Dqn_CppFLine(Dqn_CppFile *cpp, char const *fmt, ...);
|
||||
|
||||
void Dqn_CppFLineBeginV (Dqn_CppFile *cpp, char const *fmt, va_list args);
|
||||
void Dqn_CppFLineBegin (Dqn_CppFile *cpp, char const *fmt, ...);
|
||||
void Dqn_CppFLineEnd (Dqn_CppFile *cpp, char const *fmt, ...);
|
||||
void Dqn_CppFLineAdd (Dqn_CppFile *cpp, char const *fmt, ...);
|
||||
void Dqn_CppFLineV (Dqn_CppFile *cpp, char const *fmt, va_list args);
|
||||
void Dqn_CppFLine (Dqn_CppFile *cpp, char const *fmt, ...);
|
||||
/// Print the format string indented
|
||||
void Dqn_CppFPrintV(Dqn_CppFile *cpp, char const *fmt, va_list args);
|
||||
void Dqn_CppFPrint(Dqn_CppFile *cpp, char const *fmt, ...);
|
||||
|
||||
void Dqn_CppFNewLine (Dqn_CppFile *cpp);
|
||||
void Dqn_CppFIndent (Dqn_CppFile *cpp);
|
||||
void Dqn_CppFUnindent (Dqn_CppFile *cpp);
|
||||
/// Print the format string
|
||||
#define Dqn_CppFAppend(cpp, fmt, ...) vfprintf(cpp->file, fmt, ##__VAR_ARGS__)
|
||||
|
||||
// fmt: (Optional) The format string to print at the beginning of the block.
|
||||
// When the fmt string is given, it will place a new-line at the end of the fmt
|
||||
// string. When fmt is nullptr, no new line will be appended.
|
||||
void Dqn_CppFBeginBlock (Dqn_CppFile *cpp, char const *fmt, ...);
|
||||
void Dqn_CppFEndBlock (Dqn_CppFile *cpp, bool trailing_semicolon, bool new_line_on_next_block);
|
||||
/// End the current line, useful after CppFPrint and CppFAppend
|
||||
#define Dqn_CppFEndLine(cpp) fputc('\n', (cpp)->file)
|
||||
|
||||
#define Dqn_CppFEndEnumBlock(cpp) Dqn_CppFEndBlock(cpp, true /*trailing_semicolon*/, true /*new_line_on_next_block*/)
|
||||
#define Dqn_CppFEndForBlock(cpp) Dqn_CppFEndBlock(cpp, false /*trailing_semicolon*/, false /*new_line_on_next_block*/)
|
||||
#define Dqn_CppFEndIfBlock(cpp) Dqn_CppFEndBlock(cpp, false /*trailing_semicolon*/, false /*new_line_on_next_block*/)
|
||||
#define Dqn_CppFEndFuncBlock(cpp) Dqn_CppFEndBlock(cpp, false /*trailing_semicolon*/, true /*new_line_on_next_block*/)
|
||||
#define Dqn_CppFEndStructBlock(cpp) Dqn_CppFEndBlock(cpp, true /*trailing_semicolon*/, true /*new_line_on_next_block*/)
|
||||
/// Manually modify the indent level
|
||||
#define Dqn_CppFIndent(cpp) (cpp)->indent++;
|
||||
#define Dqn_CppFUnindent(cpp) (cpp)->indent--; assert(cpp->indent >= 0)
|
||||
|
||||
/// Print the format string followed by a "{" and enter a new line whilst
|
||||
/// increasing the indent level after the brace.
|
||||
void Dqn_CppFBeginBlock(Dqn_CppFile *cpp, char const *fmt, ...);
|
||||
void Dqn_CppFEndBlock (Dqn_CppFile *cpp, bool trailing_semicolon, bool new_line_on_next_block);
|
||||
|
||||
/// End a block, specifically for the following language constructs.
|
||||
#define Dqn_CppFEndEnumBlock(cpp) Dqn_CppFEndBlock(cpp, true /*trailing_semicolon*/, true /*new_line_on_next_block*/)
|
||||
#define Dqn_CppFEndForBlock(cpp) Dqn_CppFEndBlock(cpp, false /*trailing_semicolon*/, false /*new_line_on_next_block*/)
|
||||
#define Dqn_CppFEndIfBlock(cpp) Dqn_CppFEndBlock(cpp, false /*trailing_semicolon*/, false /*new_line_on_next_block*/)
|
||||
#define Dqn_CppFEndFuncBlock(cpp) Dqn_CppFEndBlock(cpp, false /*trailing_semicolon*/, true /*new_line_on_next_block*/)
|
||||
#define Dqn_CppFEndStructBlock(cpp) Dqn_CppFEndBlock(cpp, true /*trailing_semicolon*/, true /*new_line_on_next_block*/)
|
||||
#endif // DQN_CPP_FILE_H
|
||||
|
||||
#if defined(DQN_CPP_FILE_IMPLEMENTATION)
|
||||
// -----------------------------------------------------------------------------
|
||||
// NOTE: Dqn_CppFile Implementation
|
||||
// -----------------------------------------------------------------------------
|
||||
int Dqn_CppFSpacePerIndent(Dqn_CppFile *cpp)
|
||||
{
|
||||
int result = cpp->space_per_indent == 0 ? 4 : cpp->space_per_indent;
|
||||
return result;
|
||||
}
|
||||
|
||||
void Dqn_CppFLineBeginV(Dqn_CppFile *cpp, char const *fmt, va_list args)
|
||||
{
|
||||
int spaces = cpp->indent * Dqn_CppFSpacePerIndent(cpp);
|
||||
fprintf(cpp->file, "%*s", spaces, "");
|
||||
vfprintf(cpp->file, fmt, args);
|
||||
}
|
||||
|
||||
void Dqn_CppFLineBegin(Dqn_CppFile *cpp, char const *fmt, ...)
|
||||
{
|
||||
va_list args;
|
||||
va_start(args, fmt);
|
||||
Dqn_CppFLineBeginV(cpp, fmt, args);
|
||||
va_end(args);
|
||||
}
|
||||
|
||||
void Dqn_CppFLineEnd(Dqn_CppFile *cpp, char const *fmt, ...)
|
||||
{
|
||||
if (fmt)
|
||||
{
|
||||
va_list args;
|
||||
va_start(args, fmt);
|
||||
vfprintf(cpp->file, fmt, args);
|
||||
va_end(args);
|
||||
}
|
||||
|
||||
fputc('\n', cpp->file);
|
||||
}
|
||||
|
||||
void Dqn_CppFLineAdd(Dqn_CppFile *cpp, char const *fmt, ...)
|
||||
{
|
||||
va_list args;
|
||||
va_start(args, fmt);
|
||||
vfprintf(cpp->file, fmt, args);
|
||||
va_end(args);
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
void Dqn_CppFLineV(Dqn_CppFile *cpp, char const *fmt, va_list args)
|
||||
{
|
||||
Dqn_CppFLineBeginV(cpp, fmt, args);
|
||||
Dqn_CppFPrintV(cpp, fmt, args);
|
||||
Dqn_CppFLineEnd(cpp, nullptr);
|
||||
}
|
||||
|
||||
@ -105,38 +59,33 @@ void Dqn_CppFLine(Dqn_CppFile *cpp, char const *fmt, ...)
|
||||
{
|
||||
va_list args;
|
||||
va_start(args, fmt);
|
||||
Dqn_CppFLineBeginV(cpp, fmt, args);
|
||||
Dqn_CppFLineEnd(cpp, nullptr);
|
||||
Dqn_CppFLineV(cpp, fmt, args);
|
||||
va_end(args);
|
||||
}
|
||||
|
||||
void Dqn_CppFNewLine(Dqn_CppFile *cpp)
|
||||
void Dqn_CppFPrintV(Dqn_CppFile *cpp, char const *fmt, va_list args)
|
||||
{
|
||||
fputc('\n', cpp->file);
|
||||
int space_per_indent = cpp->space_per_indent == 0 ? 4 : cpp->space_per_indent;
|
||||
int spaces = fmt ? (cpp->indent * space_per_indent) : 0;
|
||||
fprintf(cpp->file, "%*s", spaces, "");
|
||||
vfprintf(cpp->file, fmt, args);
|
||||
}
|
||||
|
||||
void Dqn_CppFIndent(Dqn_CppFile *cpp)
|
||||
void Dqn_CppFPrint(Dqn_CppFile *cpp, char const *fmt, ...)
|
||||
{
|
||||
cpp->indent++;
|
||||
}
|
||||
|
||||
void Dqn_CppFUnindent(Dqn_CppFile *cpp)
|
||||
{
|
||||
cpp->indent--;
|
||||
DQN_CPPF_ASSERT(cpp->indent >= 0);
|
||||
va_list args;
|
||||
va_start(args, fmt);
|
||||
Dqn_CppFPrintV(cpp, fmt, args);
|
||||
va_end(args);
|
||||
}
|
||||
|
||||
void Dqn_CppFBeginBlock(Dqn_CppFile *cpp, char const *fmt, ...)
|
||||
{
|
||||
if (fmt)
|
||||
{
|
||||
va_list args;
|
||||
va_start(args, fmt);
|
||||
Dqn_CppFLineV(cpp, fmt, args);
|
||||
va_end(args);
|
||||
}
|
||||
|
||||
Dqn_CppFLine(cpp, "{");
|
||||
va_list args;
|
||||
va_start(args, fmt);
|
||||
Dqn_CppFLineV(cpp, fmt, args);
|
||||
va_end(args);
|
||||
Dqn_CppFPrint(cpp, "%s", cpp->k_and_r_indent ? "{\n" : "\n{");
|
||||
Dqn_CppFIndent(cpp);
|
||||
}
|
||||
|
||||
@ -144,6 +93,7 @@ void Dqn_CppFEndBlock(Dqn_CppFile *cpp, bool trailing_semicolon, bool new_line_o
|
||||
{
|
||||
Dqn_CppFUnindent(cpp);
|
||||
Dqn_CppFLine(cpp, trailing_semicolon ? "};" : "}");
|
||||
if (new_line_on_next_block) fputc('\n', cpp->file);
|
||||
if (new_line_on_next_block)
|
||||
fputc('\n', cpp->file);
|
||||
}
|
||||
#endif // DQN_CPP_FILE_IMPLEMENTATION
|
||||
|
@ -649,7 +649,7 @@ Dqn_KeccakBytes32 Dqn_KeccakHex64StringToBytes(Dqn_String8 hex)
|
||||
{
|
||||
DQN_KECCAK_ASSERT(hex.size == 64);
|
||||
Dqn_KeccakBytes32 result;
|
||||
Dqn_Hex_ToBytes(hex.data, hex.size, result.data, sizeof(result));
|
||||
Dqn_Hex_CString8ToByteBuffer(hex.data, hex.size, result.data, sizeof(result));
|
||||
return result;
|
||||
}
|
||||
#endif // DQN_H && DQN_WITH_HEX
|
||||
|
@ -42,7 +42,7 @@ Dqn_Tester Dqn_Test_File()
|
||||
DQN_TESTER_ASSERTF(&test, Dqn_Fs_Exists(DQN_STRING8("abcd/efgh")) == false, "This function should only return true for files");
|
||||
DQN_TESTER_ASSERTF(&test, Dqn_Fs_Delete(DQN_STRING8("abcd/efgh")), "Failed to delete directory");
|
||||
DQN_TESTER_ASSERTF(&test, Dqn_Fs_Delete(DQN_STRING8("abcd")), "Failed to cleanup directory");
|
||||
Dqn_Arena_Free(&arena, false /*clear_mem*/);
|
||||
Dqn_Arena_Free(&arena, Dqn_ZeroMem_No);
|
||||
Dqn_Tester_End(&test);
|
||||
}
|
||||
|
||||
@ -50,13 +50,13 @@ Dqn_Tester Dqn_Test_File()
|
||||
// NOTE: Write step
|
||||
Dqn_String8 const SRC_FILE = DQN_STRING8("dqn_test_file");
|
||||
Dqn_Tester_Begin(&test, "Write file, read it, copy it, move it and delete it");
|
||||
Dqn_b32 write_result = Dqn_Fs_WriteCString8ToFileCString8(SRC_FILE.data, SRC_FILE.size, "test", 4);
|
||||
Dqn_b32 write_result = Dqn_Fs_WriteCString8(SRC_FILE.data, SRC_FILE.size, "test", 4);
|
||||
DQN_TESTER_ASSERT(&test, write_result);
|
||||
DQN_TESTER_ASSERT(&test, Dqn_Fs_Exists(SRC_FILE));
|
||||
|
||||
// NOTE: Read step
|
||||
Dqn_Arena arena = {};
|
||||
Dqn_String8 read_file = Dqn_Fs_ReadFileCString8ToString8Arena(SRC_FILE.data, SRC_FILE.size, &arena);
|
||||
Dqn_String8 read_file = Dqn_Fs_ReadString8(SRC_FILE, Dqn_Arena_Allocator(&arena));
|
||||
DQN_TESTER_ASSERTF(&test, Dqn_String8_IsValid(read_file), "Failed to load file");
|
||||
DQN_TESTER_ASSERTF(&test, read_file.size == 4, "File read wrong amount of bytes");
|
||||
DQN_TESTER_ASSERTF(&test, Dqn_String8_Eq(read_file, DQN_STRING8("test")), "read(%zu): %.*s", read_file.size, DQN_STRING_FMT(read_file));
|
||||
@ -86,7 +86,7 @@ Dqn_Tester Dqn_Test_File()
|
||||
DQN_TESTER_ASSERT(&test, delete_non_existent_moved_file == false);
|
||||
DQN_TESTER_ASSERT(&test, delete_non_existent_src_file == false);
|
||||
|
||||
Dqn_Arena_Free(&arena, false /*clear_mem*/);
|
||||
Dqn_Arena_Free(&arena, Dqn_ZeroMem_No);
|
||||
Dqn_Tester_End(&test);
|
||||
}
|
||||
DQN_TESTER_END_GROUP(&test);
|
||||
@ -178,7 +178,7 @@ Dqn_Tester Dqn_Test_FString8()
|
||||
{
|
||||
Dqn_Tester_Begin(&test, "Append format string too much fails");
|
||||
Dqn_FString8<4> str = {};
|
||||
DQN_TESTER_ASSERTF(&test, Dqn_FString8_AppendFmt(&str, "abcd") == false, "We need space for the null-terminator");
|
||||
DQN_TESTER_ASSERTF(&test, Dqn_FString8_AppendF(&str, "abcd") == false, "We need space for the null-terminator");
|
||||
Dqn_Tester_End(&test);
|
||||
}
|
||||
DQN_TESTER_END_GROUP(&test);
|
||||
@ -193,77 +193,77 @@ Dqn_Tester Dqn_Test_Hex()
|
||||
DQN_TESTER_BEGIN_GROUP("Dqn_Hex");
|
||||
{
|
||||
Dqn_Tester_Begin(&test, "Convert 0x123");
|
||||
uint64_t result = Dqn_Hex_StringToU64(DQN_STRING8("0x123"));
|
||||
uint64_t result = Dqn_Hex_String8ToU64(DQN_STRING8("0x123"));
|
||||
DQN_TESTER_ASSERTF(&test, result == 0x123, "result: %zu", result);
|
||||
Dqn_Tester_End(&test);
|
||||
}
|
||||
|
||||
{
|
||||
Dqn_Tester_Begin(&test, "Convert 0xFFFF");
|
||||
uint64_t result = Dqn_Hex_StringToU64(DQN_STRING8("0xFFFF"));
|
||||
uint64_t result = Dqn_Hex_String8ToU64(DQN_STRING8("0xFFFF"));
|
||||
DQN_TESTER_ASSERTF(&test, result == 0xFFFF, "result: %zu", result);
|
||||
Dqn_Tester_End(&test);
|
||||
}
|
||||
|
||||
{
|
||||
Dqn_Tester_Begin(&test, "Convert FFFF");
|
||||
uint64_t result = Dqn_Hex_StringToU64(DQN_STRING8("FFFF"));
|
||||
uint64_t result = Dqn_Hex_String8ToU64(DQN_STRING8("FFFF"));
|
||||
DQN_TESTER_ASSERTF(&test, result == 0xFFFF, "result: %zu", result);
|
||||
Dqn_Tester_End(&test);
|
||||
}
|
||||
|
||||
{
|
||||
Dqn_Tester_Begin(&test, "Convert abCD");
|
||||
uint64_t result = Dqn_Hex_StringToU64(DQN_STRING8("abCD"));
|
||||
uint64_t result = Dqn_Hex_String8ToU64(DQN_STRING8("abCD"));
|
||||
DQN_TESTER_ASSERTF(&test, result == 0xabCD, "result: %zu", result);
|
||||
Dqn_Tester_End(&test);
|
||||
}
|
||||
|
||||
{
|
||||
Dqn_Tester_Begin(&test, "Convert 0xabCD");
|
||||
uint64_t result = Dqn_Hex_StringToU64(DQN_STRING8("0xabCD"));
|
||||
uint64_t result = Dqn_Hex_String8ToU64(DQN_STRING8("0xabCD"));
|
||||
DQN_TESTER_ASSERTF(&test, result == 0xabCD, "result: %zu", result);
|
||||
Dqn_Tester_End(&test);
|
||||
}
|
||||
|
||||
{
|
||||
Dqn_Tester_Begin(&test, "Convert 0x");
|
||||
uint64_t result = Dqn_Hex_StringToU64(DQN_STRING8("0x"));
|
||||
uint64_t result = Dqn_Hex_String8ToU64(DQN_STRING8("0x"));
|
||||
DQN_TESTER_ASSERTF(&test, result == 0x0, "result: %zu", result);
|
||||
Dqn_Tester_End(&test);
|
||||
}
|
||||
|
||||
{
|
||||
Dqn_Tester_Begin(&test, "Convert 0X");
|
||||
uint64_t result = Dqn_Hex_StringToU64(DQN_STRING8("0X"));
|
||||
uint64_t result = Dqn_Hex_String8ToU64(DQN_STRING8("0X"));
|
||||
DQN_TESTER_ASSERTF(&test, result == 0x0, "result: %zu", result);
|
||||
Dqn_Tester_End(&test);
|
||||
}
|
||||
|
||||
{
|
||||
Dqn_Tester_Begin(&test, "Convert 3");
|
||||
uint64_t result = Dqn_Hex_StringToU64(DQN_STRING8("3"));
|
||||
uint64_t result = Dqn_Hex_String8ToU64(DQN_STRING8("3"));
|
||||
DQN_TESTER_ASSERTF(&test, result == 3, "result: %zu", result);
|
||||
Dqn_Tester_End(&test);
|
||||
}
|
||||
|
||||
{
|
||||
Dqn_Tester_Begin(&test, "Convert f");
|
||||
uint64_t result = Dqn_Hex_StringToU64(DQN_STRING8("f"));
|
||||
uint64_t result = Dqn_Hex_String8ToU64(DQN_STRING8("f"));
|
||||
DQN_TESTER_ASSERTF(&test, result == 0xf, "result: %zu", result);
|
||||
Dqn_Tester_End(&test);
|
||||
}
|
||||
|
||||
{
|
||||
Dqn_Tester_Begin(&test, "Convert g");
|
||||
uint64_t result = Dqn_Hex_StringToU64(DQN_STRING8("g"));
|
||||
uint64_t result = Dqn_Hex_String8ToU64(DQN_STRING8("g"));
|
||||
DQN_TESTER_ASSERTF(&test, result == 0, "result: %zu", result);
|
||||
Dqn_Tester_End(&test);
|
||||
}
|
||||
|
||||
{
|
||||
Dqn_Tester_Begin(&test, "Convert -0x3");
|
||||
uint64_t result = Dqn_Hex_StringToU64(DQN_STRING8("-0x3"));
|
||||
uint64_t result = Dqn_Hex_String8ToU64(DQN_STRING8("-0x3"));
|
||||
DQN_TESTER_ASSERTF(&test, result == 0, "result: %zu", result);
|
||||
Dqn_Tester_End(&test);
|
||||
}
|
||||
@ -310,7 +310,7 @@ Dqn_Tester Dqn_Test_DSMap()
|
||||
{
|
||||
Dqn_Tester_Begin(&test, "Add r-value item to map");
|
||||
Dqn_DSMap<int> map = Dqn_DSMap_Init<int>(128);
|
||||
Dqn_DSMapEntry<int> *entry = Dqn_DSMap_AddCopy(&map, 3 /*hash*/, 5 /*value*/);
|
||||
Dqn_DSMapItem<int> *entry = Dqn_DSMap_Add(&map, 3 /*hash*/, 5 /*value*/);
|
||||
DQN_TESTER_ASSERTF(&test, map.size == 128, "size: %I64d", map.size);
|
||||
DQN_TESTER_ASSERTF(&test, map.count == 1, "count: %zu", map.count);
|
||||
DQN_TESTER_ASSERTF(&test, entry->hash == 3, "hash: %zu", entry->hash);
|
||||
@ -323,7 +323,7 @@ Dqn_Tester Dqn_Test_DSMap()
|
||||
Dqn_Tester_Begin(&test, "Add l-value item to map");
|
||||
Dqn_DSMap<int> map = Dqn_DSMap_Init<int>(128);
|
||||
int value = 5;
|
||||
Dqn_DSMapEntry<int> *entry = Dqn_DSMap_Add(&map, 3 /*hash*/, value);
|
||||
Dqn_DSMapItem<int> *entry = Dqn_DSMap_Add(&map, 3 /*hash*/, value);
|
||||
DQN_TESTER_ASSERTF(&test, map.size == 128, "size: %I64d", map.size);
|
||||
DQN_TESTER_ASSERTF(&test, map.count == 1, "count: %zu", map.count);
|
||||
DQN_TESTER_ASSERTF(&test, entry->hash == 3, "hash: %zu", entry->hash);
|
||||
@ -335,8 +335,8 @@ Dqn_Tester Dqn_Test_DSMap()
|
||||
{
|
||||
Dqn_Tester_Begin(&test, "Get item from map");
|
||||
Dqn_DSMap<int> map = Dqn_DSMap_Init<int>(128);
|
||||
Dqn_DSMapEntry<int> *entry = Dqn_DSMap_AddCopy(&map, 3 /*hash*/, 5 /*value*/);
|
||||
Dqn_DSMapEntry<int> *get_entry = Dqn_DSMap_Get(&map, 3 /*hash*/);
|
||||
Dqn_DSMapItem<int> *entry = Dqn_DSMap_Add(&map, 3 /*hash*/, 5 /*value*/);
|
||||
Dqn_DSMapItem<int> *get_entry = Dqn_DSMap_Get(&map, 3 /*hash*/);
|
||||
DQN_TESTER_ASSERTF(&test, get_entry == entry, "get_entry: %p, entry: %p", get_entry, entry);
|
||||
Dqn_DSMap_Free(&map, Dqn_ZeroMem_No);
|
||||
Dqn_Tester_End(&test);
|
||||
@ -344,8 +344,8 @@ Dqn_Tester Dqn_Test_DSMap()
|
||||
|
||||
{
|
||||
Dqn_Tester_Begin(&test, "Get non-existent item from map");
|
||||
Dqn_DSMap<int> map = Dqn_DSMap_Init<int>(128);
|
||||
Dqn_DSMapEntry<int> *entry = Dqn_DSMap_Get(&map, 3 /*hash*/);
|
||||
Dqn_DSMap<int> map = Dqn_DSMap_Init<int>(128);
|
||||
Dqn_DSMapItem<int> *entry = Dqn_DSMap_Get(&map, 3 /*hash*/);
|
||||
DQN_TESTER_ASSERT(&test, entry == nullptr);
|
||||
Dqn_DSMap_Free(&map, Dqn_ZeroMem_No);
|
||||
Dqn_Tester_End(&test);
|
||||
@ -354,7 +354,7 @@ Dqn_Tester Dqn_Test_DSMap()
|
||||
{
|
||||
Dqn_Tester_Begin(&test, "Erase item from map");
|
||||
Dqn_DSMap<int> map = Dqn_DSMap_Init<int>(128);
|
||||
Dqn_DSMap_AddCopy(&map, 3 /*hash*/, 5 /*value*/);
|
||||
Dqn_DSMap_Add(&map, 3 /*hash*/, 5 /*value*/);
|
||||
DQN_TESTER_ASSERTF(&test, map.count == 1, "count: %I64d", map.count);
|
||||
Dqn_DSMap_Erase(&map, 3 /*hash*/, Dqn_ZeroMem_No);
|
||||
DQN_TESTER_ASSERTF(&test, map.count == 0, "count: %I64d", map.count);
|
||||
@ -375,12 +375,12 @@ Dqn_Tester Dqn_Test_DSMap()
|
||||
Dqn_Tester_Begin(&test, "Test resize on maximum load");
|
||||
const Dqn_isize INIT_SIZE = 4;
|
||||
Dqn_DSMap<int> map = Dqn_DSMap_Init<int>(INIT_SIZE);
|
||||
Dqn_DSMap_AddCopy(&map, 0 /*hash*/, 5 /*value*/);
|
||||
Dqn_DSMap_AddCopy(&map, 1 /*hash*/, 5 /*value*/);
|
||||
Dqn_DSMap_Add(&map, 0 /*hash*/, 5 /*value*/);
|
||||
Dqn_DSMap_Add(&map, 1 /*hash*/, 5 /*value*/);
|
||||
DQN_TESTER_ASSERTF(&test, map.count == 2, "count: %I64d", map.count);
|
||||
|
||||
// This *should* cause a resize because 3/4 slots filled is 75% load
|
||||
Dqn_DSMap_AddCopy(&map, 6 /*hash*/, 5 /*value*/);
|
||||
Dqn_DSMap_Add(&map, 6 /*hash*/, 5 /*value*/);
|
||||
DQN_TESTER_ASSERTF(&test, map.count == 3, "count: %I64d", map.count);
|
||||
DQN_TESTER_ASSERTF(&test, map.size == INIT_SIZE * 2, "size: %I64d", map.size);
|
||||
|
||||
@ -792,31 +792,31 @@ Dqn_Tester Dqn_Test_Rect()
|
||||
Dqn_Tester Dqn_Test_PerfCounter()
|
||||
{
|
||||
Dqn_Tester test = {};
|
||||
DQN_TESTER_BEGIN_GROUP("Dqn_Perf_Counter");
|
||||
DQN_TESTER_BEGIN_GROUP("Dqn_OS_PerfCounter");
|
||||
{
|
||||
Dqn_Tester_Begin(&test, "Dqn_Perf_CounterNow");
|
||||
uint64_t result = Dqn_Perf_CounterNow();
|
||||
Dqn_Tester_Begin(&test, "Dqn_OS_PerfCounterNow");
|
||||
uint64_t result = Dqn_OS_PerfCounterNow();
|
||||
DQN_TESTER_ASSERT(&test, result != 0);
|
||||
Dqn_Tester_End(&test);
|
||||
}
|
||||
|
||||
{
|
||||
Dqn_Tester_Begin(&test, "Consecutive ticks are ordered");
|
||||
uint64_t a = Dqn_Perf_CounterNow();
|
||||
uint64_t b = Dqn_Perf_CounterNow();
|
||||
uint64_t a = Dqn_OS_PerfCounterNow();
|
||||
uint64_t b = Dqn_OS_PerfCounterNow();
|
||||
DQN_TESTER_ASSERTF(&test, b >= a, "a: %zu, b: %zu", a, b);
|
||||
Dqn_Tester_End(&test);
|
||||
}
|
||||
|
||||
{
|
||||
Dqn_Tester_Begin(&test, "Ticks to time are a correct order of magnitude");
|
||||
uint64_t a = Dqn_Perf_CounterNow();
|
||||
uint64_t b = Dqn_Perf_CounterNow();
|
||||
uint64_t a = Dqn_OS_PerfCounterNow();
|
||||
uint64_t b = Dqn_OS_PerfCounterNow();
|
||||
|
||||
Dqn_f64 s = Dqn_Perf_CounterS(a, b);
|
||||
Dqn_f64 ms = Dqn_Perf_CounterMs(a, b);
|
||||
Dqn_f64 micro_s = Dqn_Perf_CounterMicroS(a, b);
|
||||
Dqn_f64 ns = Dqn_Perf_CounterNs(a, b);
|
||||
Dqn_f64 s = Dqn_OS_PerfCounterS(a, b);
|
||||
Dqn_f64 ms = Dqn_OS_PerfCounterMs(a, b);
|
||||
Dqn_f64 micro_s = Dqn_OS_PerfCounterMicroS(a, b);
|
||||
Dqn_f64 ns = Dqn_OS_PerfCounterNs(a, b);
|
||||
DQN_TESTER_ASSERTF(&test, s <= ms, "s: %f, ms: %f", s, ms);
|
||||
DQN_TESTER_ASSERTF(&test, ms <= micro_s, "ms: %f, micro_s: %f", ms, micro_s);
|
||||
DQN_TESTER_ASSERTF(&test, micro_s <= ns, "micro_s: %f, ns: %f", micro_s, ns);
|
||||
@ -1137,12 +1137,12 @@ Dqn_Tester Dqn_Test_String8()
|
||||
{
|
||||
Dqn_Tester_Begin(&test, "Initialise with format string");
|
||||
Dqn_Arena arena = {};
|
||||
Dqn_String8 string = Dqn_String8_Fmt(Dqn_Arena_Allocator(&arena), "%s", "AB");
|
||||
Dqn_String8 string = Dqn_String8_InitF(Dqn_Arena_Allocator(&arena), "%s", "AB");
|
||||
DQN_TESTER_ASSERTF(&test, string.size == 2, "size: %I64d", string.size);
|
||||
DQN_TESTER_ASSERTF(&test, string.data[0] == 'A', "string[0]: %c", string.data[0]);
|
||||
DQN_TESTER_ASSERTF(&test, string.data[1] == 'B', "string[1]: %c", string.data[1]);
|
||||
DQN_TESTER_ASSERTF(&test, string.data[2] == 0, "string[2]: %c", string.data[2]);
|
||||
Dqn_Arena_Free(&arena, false /*clear_mem*/);
|
||||
Dqn_Arena_Free(&arena, Dqn_ZeroMem_No);
|
||||
Dqn_Tester_End(&test);
|
||||
}
|
||||
|
||||
@ -1155,7 +1155,7 @@ Dqn_Tester Dqn_Test_String8()
|
||||
DQN_TESTER_ASSERTF(&test, copy.data[0] == 'A', "copy[0]: %c", copy.data[0]);
|
||||
DQN_TESTER_ASSERTF(&test, copy.data[1] == 'B', "copy[1]: %c", copy.data[1]);
|
||||
DQN_TESTER_ASSERTF(&test, copy.data[2] == 0, "copy[2]: %c", copy.data[2]);
|
||||
Dqn_Arena_Free(&arena, false /*clear_mem*/);
|
||||
Dqn_Arena_Free(&arena, Dqn_ZeroMem_No);
|
||||
Dqn_Tester_End(&test);
|
||||
}
|
||||
|
||||
@ -1171,7 +1171,7 @@ Dqn_Tester Dqn_Test_String8()
|
||||
Dqn_Arena arena = {};
|
||||
Dqn_String8 string = Dqn_String8_Allocate(Dqn_Arena_Allocator(&arena), 2, Dqn_ZeroMem_No);
|
||||
DQN_TESTER_ASSERTF(&test, string.size == 2, "size: %I64d", string.size);
|
||||
Dqn_Arena_Free(&arena, false /*clear_mem*/);
|
||||
Dqn_Arena_Free(&arena, Dqn_ZeroMem_No);
|
||||
Dqn_Tester_End(&test);
|
||||
}
|
||||
|
||||
@ -1388,7 +1388,7 @@ Dqn_Tester Dqn_Test_Win()
|
||||
DQN_TESTER_ASSERTF(&test, size_required == size_returned, "string_size: %d, result: %d", size_required, size_returned);
|
||||
DQN_TESTER_ASSERTF(&test, size_returned == Dqn_CArray_Count(EXPECTED), "string_size: %d, expected: %zu", size_returned, Dqn_CArray_Count(EXPECTED));
|
||||
DQN_TESTER_ASSERT(&test, DQN_MEMCMP(EXPECTED, string, sizeof(EXPECTED)) == 0);
|
||||
Dqn_Arena_Free(&arena, false /*clear_mem*/);
|
||||
Dqn_Arena_Free(&arena, Dqn_ZeroMem_No);
|
||||
Dqn_Tester_End(&test);
|
||||
}
|
||||
|
||||
@ -1408,7 +1408,7 @@ Dqn_Tester Dqn_Test_Win()
|
||||
DQN_TESTER_ASSERTF(&test, size_required == size_returned, "string_size: %d, result: %d", size_required, size_returned);
|
||||
DQN_TESTER_ASSERTF(&test, size_returned == Dqn_CArray_Count(EXPECTED), "string_size: %d, expected: %zu", size_returned, Dqn_CArray_Count(EXPECTED));
|
||||
DQN_TESTER_ASSERT(&test, DQN_MEMCMP(EXPECTED, string, sizeof(EXPECTED)) == 0);
|
||||
Dqn_Arena_Free(&arena, false /*clear_mem*/);
|
||||
Dqn_Arena_Free(&arena, Dqn_ZeroMem_No);
|
||||
Dqn_Tester_End(&test);
|
||||
}
|
||||
DQN_TESTER_END_GROUP(&test);
|
||||
@ -1445,8 +1445,8 @@ Dqn_String8 const DQN_TESTS__HASH_STRING[] =
|
||||
void Dqn_Test__KeccakDispatch(Dqn_Tester *test, int hash_type, Dqn_String8 input)
|
||||
{
|
||||
#if defined(DQN_KECCAK_H)
|
||||
Dqn_ThreadTempArena scratch = Dqn_Thread_TempArena();
|
||||
Dqn_String8 input_hex = Dqn_Hex_BytesToHexStringArena(input.data, input.size, scratch.arena);
|
||||
Dqn_ThreadScratch scratch = Dqn_Thread_GetScratch(nullptr);
|
||||
Dqn_String8 input_hex = Dqn_Hex_BytesToString8Arena(scratch.arena, input.data, input.size);
|
||||
|
||||
switch(hash_type)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user