str and StringBuilder
This commit is contained in:
parent
2d3e66dd38
commit
2831474f79
@ -12,9 +12,9 @@
|
|||||||
}\
|
}\
|
||||||
\
|
\
|
||||||
static inline Array_##T Array_##T##_alloc(u32 len){\
|
static inline Array_##T Array_##T##_alloc(u32 len){\
|
||||||
return Array_##T##_construct(malloc(len * sizeof(T)), len);\
|
return Array_##T##_construct((T*)malloc(len * sizeof(T)), len);\
|
||||||
}\
|
}\
|
||||||
static inline void Array_##T##_realloc(Array_##T* ptr, u32 new_len){\
|
static inline void Array_##T##_realloc(Array_##T* ptr, u32 new_len){\
|
||||||
ptr->data = realloc(ptr->data, new_len * sizeof(T));\
|
ptr->data = (T*)realloc(ptr->data, new_len * sizeof(T));\
|
||||||
ptr->len = new_len;\
|
ptr->len = new_len;\
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include "../std.h"
|
#include "../std.h"
|
||||||
|
|
||||||
|
// minimal max_len after initial (0)
|
||||||
|
#define __List_min_size 16
|
||||||
|
|
||||||
#define List_declare(T)\
|
#define List_declare(T)\
|
||||||
typedef struct List_##T {\
|
typedef struct List_##T {\
|
||||||
T* data;\
|
T* data;\
|
||||||
@ -14,35 +17,42 @@
|
|||||||
\
|
\
|
||||||
List_##T List_##T##_alloc(u32 initial_len);\
|
List_##T List_##T##_alloc(u32 initial_len);\
|
||||||
\
|
\
|
||||||
T* List_##T##_expand(List_##T* ptr);\
|
T* List_##T##_expand(List_##T* ptr, u32 count);\
|
||||||
void List_##T##_push(List_##T* ptr, T value);\
|
void List_##T##_push(List_##T* ptr, T value);\
|
||||||
|
void List_##T##_pushMany(List_##T* ptr, T* values, u32 count);\
|
||||||
|
|
||||||
|
|
||||||
#define List_define(T)\
|
#define List_define(T)\
|
||||||
List_##T List_##T##_alloc(u32 initial_len){\
|
List_##T List_##T##_alloc(u32 initial_len){\
|
||||||
if(initial_len == 0)\
|
if(initial_len == 0)\
|
||||||
return List_##T##_construct((T*)NULL, 0, 0);\
|
return List_##T##_construct((T*)NULL, 0, 0);\
|
||||||
u32 max_Len = ALIGN_TO(initial_len, sizeof(void*)/sizeof(T));\
|
u32 max_len = ALIGN_TO(initial_len, sizeof(void*)/sizeof(T));\
|
||||||
/* branchless version of max(max_len, __List_min_size) */\
|
/* branchless version of max(max_len, __List_min_size) */\
|
||||||
max_len += (max_len < __List_min_size) * (__List_min_size - max_len);\
|
max_len += (max_len < __List_min_size) * (__List_min_size - max_len);\
|
||||||
return List_##T##_construct((T*)malloc(initial_len * sizeof(T)), 0, max_len);\
|
return List_##T##_construct((T*)malloc(initial_len * sizeof(T)), 0, max_len);\
|
||||||
}\
|
}\
|
||||||
\
|
\
|
||||||
T* List_##T##_expand(List_##T* ptr){\
|
T* List_##T##_expand(List_##T* ptr, u32 count){\
|
||||||
if(ptr->len == ptr->max_len){\
|
u32 occupied_len = ptr->len;\
|
||||||
ptr->max_len *= 2;\
|
u32 expanded_max_len = ptr->max_len;\
|
||||||
ptr->data = (T*)realloc(ptr->data, ptr->max_len * sizeof(T));\
|
ptr->len += count;\
|
||||||
ptr->max_len = max_len;\
|
while(ptr->len > ptr->max_len){\
|
||||||
|
expanded_max_len *= 2;\
|
||||||
}\
|
}\
|
||||||
return &ptr->data[ptr->len++];\
|
ptr->data = (T*)realloc(ptr->data, expanded_max_len * sizeof(T));\
|
||||||
|
return ptr->data + occupied_len;\
|
||||||
}\
|
}\
|
||||||
\
|
\
|
||||||
void List_##T##_push(List_##T* ptr, T value){\
|
void List_##T##_push(List_##T* ptr, T value){\
|
||||||
T* empty_cell_ptr = List_##T##_expand(ptr);\
|
T* empty_cell_ptr = List_##T##_expand(ptr, 1);\
|
||||||
*empty_cell_ptr = value;\
|
*empty_cell_ptr = value;\
|
||||||
}\
|
}\
|
||||||
|
\
|
||||||
|
void List_##T##_pushMany(List_##T* ptr, T* values, u32 count){\
|
||||||
|
T* empty_cell_ptr = List_##T##_expand(ptr, count);\
|
||||||
|
memcpy(empty_cell_ptr, values, count * sizeof(T));\
|
||||||
|
}\
|
||||||
|
|
||||||
#define __List_min_size 16
|
|
||||||
|
|
||||||
List_declare(cstr);
|
List_declare(cstr);
|
||||||
List_declare(u32);
|
List_declare(u32);
|
||||||
|
|||||||
@ -3,6 +3,7 @@
|
|||||||
List_define(Argument);
|
List_define(Argument);
|
||||||
List_define(Operation);
|
List_define(Operation);
|
||||||
List_define(DataDefinition);
|
List_define(DataDefinition);
|
||||||
|
List_define(Section);
|
||||||
|
|
||||||
static cstr _ArgumentType_str[] = {
|
static cstr _ArgumentType_str[] = {
|
||||||
"Unset",
|
"Unset",
|
||||||
|
|||||||
@ -85,7 +85,7 @@ static void parseDataDefinition(Compiler* cmp, char* instr_name, DataDefinition*
|
|||||||
Token tok = cmp->tokens.data[++cmp->tok_i];
|
Token tok = cmp->tokens.data[++cmp->tok_i];
|
||||||
char* tok_str = Compiler_extractTokenStr(cmp, tok);
|
char* tok_str = Compiler_extractTokenStr(cmp, tok);
|
||||||
u8* processed_str = NULL;
|
u8* processed_str = NULL;
|
||||||
i32 len = 0;
|
u32 len = 0;
|
||||||
ddf->name = tok_str;
|
ddf->name = tok_str;
|
||||||
|
|
||||||
while(++cmp->tok_i < cmp->tokens.len){
|
while(++cmp->tok_i < cmp->tokens.len){
|
||||||
@ -114,7 +114,7 @@ static void parseDataDefinition(Compiler* cmp, char* instr_name, DataDefinition*
|
|||||||
tok_str = Compiler_extractTokenStr(cmp, tok);
|
tok_str = Compiler_extractTokenStr(cmp, tok);
|
||||||
processed_str = resolveEscapeSequences(cmp, tok_str);
|
processed_str = resolveEscapeSequences(cmp, tok_str);
|
||||||
free(tok_str);
|
free(tok_str);
|
||||||
len = strlen(processed_str);
|
len = strlen((char*)processed_str);
|
||||||
if(len != ddf->element_size){
|
if(len != ddf->element_size){
|
||||||
setError("can't fit char of size %i in %u bit variable", len, _element_size_bits);
|
setError("can't fit char of size %i in %u bit variable", len, _element_size_bits);
|
||||||
return;
|
return;
|
||||||
@ -127,7 +127,7 @@ static void parseDataDefinition(Compiler* cmp, char* instr_name, DataDefinition*
|
|||||||
tok_str = Compiler_extractTokenStr(cmp, tok);
|
tok_str = Compiler_extractTokenStr(cmp, tok);
|
||||||
processed_str = resolveEscapeSequences(cmp, tok_str);
|
processed_str = resolveEscapeSequences(cmp, tok_str);
|
||||||
free(tok_str);
|
free(tok_str);
|
||||||
len = strlen(processed_str);
|
len = strlen((char*)processed_str);
|
||||||
List_u8_pushBytes(&ddf->data, processed_str, 0, len);
|
List_u8_pushBytes(&ddf->data, processed_str, 0, len);
|
||||||
break;
|
break;
|
||||||
case TokenType_OperationEnd:
|
case TokenType_OperationEnd:
|
||||||
@ -161,7 +161,7 @@ bool Compiler_parse(Compiler* cmp){
|
|||||||
break;
|
break;
|
||||||
case TokenType_Label:
|
case TokenType_Label:
|
||||||
// create new section
|
// create new section
|
||||||
sec = List_Section_expand(&cmp->ast.sections);
|
sec = List_Section_expand(&cmp->ast.sections, 1);
|
||||||
Section_init(sec, Compiler_extractTokenStr(cmp, tok));
|
Section_init(sec, Compiler_extractTokenStr(cmp, tok));
|
||||||
break;
|
break;
|
||||||
case TokenType_Instruction:
|
case TokenType_Instruction:
|
||||||
@ -170,11 +170,11 @@ bool Compiler_parse(Compiler* cmp){
|
|||||||
char* instr_name = Compiler_extractTokenStr(cmp, tok);
|
char* instr_name = Compiler_extractTokenStr(cmp, tok);
|
||||||
// data definition starts with const
|
// data definition starts with const
|
||||||
if(cstr_seek(instr_name, "const", 0, 1)){
|
if(cstr_seek(instr_name, "const", 0, 1)){
|
||||||
DataDefinition* dataDefPtr = List_DataDefinition_expand(&sec->data);
|
DataDefinition* dataDefPtr = List_DataDefinition_expand(&sec->data, 1);
|
||||||
parseDataDefinition(cmp, instr_name, dataDefPtr);
|
parseDataDefinition(cmp, instr_name, dataDefPtr);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
Operation* operPtr = List_Operation_expand(&sec->code);
|
Operation* operPtr = List_Operation_expand(&sec->code, 1);
|
||||||
parseOperation(cmp, instr_name, operPtr);
|
parseOperation(cmp, instr_name, operPtr);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|||||||
43
src/string/StringBuilder.c
Normal file
43
src/string/StringBuilder.c
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
#include "StringBuilder.h"
|
||||||
|
|
||||||
|
void StringBuilder_free(StringBuilder* b){
|
||||||
|
free(b->buffer.data);
|
||||||
|
}
|
||||||
|
|
||||||
|
str StringBuilder_build(StringBuilder* b){
|
||||||
|
List_u8_push(&b->buffer, '\0');
|
||||||
|
str result = str_construct((char*)b->buffer.data, b->buffer.len - 1, true);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void StringBuilder_append_char(StringBuilder* b, char c){
|
||||||
|
List_u8_push(&b->buffer, c);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void StringBuilder_append_string(StringBuilder* b, str s){
|
||||||
|
List_u8_pushMany(&b->buffer, (u8*)s.data, s.len);
|
||||||
|
}
|
||||||
|
|
||||||
|
void StringBuilder_append_cstr(StringBuilder* b, char* s){
|
||||||
|
StringBuilder_append_string(b, str_construct(s, strlen(s), true));
|
||||||
|
}
|
||||||
|
|
||||||
|
void StringBuilder_append_i64(StringBuilder* b, i64 n){
|
||||||
|
char buf[32];
|
||||||
|
sprintf_s(buf, sizeof(buf), "%llu", n);
|
||||||
|
StringBuilder_append_cstr(b, buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
void StringBuilder_append_u64(StringBuilder* b, u64 n){
|
||||||
|
char buf[32];
|
||||||
|
sprintf_s(buf, sizeof(buf), "%llu", n);
|
||||||
|
StringBuilder_append_cstr(b, buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
void StringBuilder_append_f64(StringBuilder* b, f64 n){
|
||||||
|
char buf[32];
|
||||||
|
sprintf_s(buf, sizeof(buf), "%lf", n);
|
||||||
|
StringBuilder_append_cstr(b, buf);
|
||||||
|
}
|
||||||
32
src/string/StringBuilder.h
Normal file
32
src/string/StringBuilder.h
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#if __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include "../collections/List.h"
|
||||||
|
#include "str.h"
|
||||||
|
|
||||||
|
typedef struct StringBuilder {
|
||||||
|
List_u8 buffer;
|
||||||
|
} StringBuilder;
|
||||||
|
|
||||||
|
static inline StringBuilder StringBuilder_construct(u32 initial_size) {
|
||||||
|
return (StringBuilder){ .buffer = List_u8_alloc(initial_size) };
|
||||||
|
}
|
||||||
|
void StringBuilder_free(StringBuilder* b);
|
||||||
|
|
||||||
|
void StringBuilder_removeFromEnd(StringBuilder* b, u32 count);
|
||||||
|
void StringBuilder_append_char(StringBuilder* b, char c);
|
||||||
|
void StringBuilder_append_cstr(StringBuilder* b, char* s);
|
||||||
|
void StringBuilder_append_string(StringBuilder* b, str s);
|
||||||
|
void StringBuilder_append_i64(StringBuilder* b, i64 a);
|
||||||
|
void StringBuilder_append_u64(StringBuilder* b, u64 a);
|
||||||
|
void StringBuilder_append_f64(StringBuilder* b, f64 a);
|
||||||
|
|
||||||
|
// adds '\0' to the buffer and returns pointer to buffer content
|
||||||
|
str StringBuilder_getStr(StringBuilder* b);
|
||||||
|
|
||||||
|
#if __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
29
src/string/str.c
Normal file
29
src/string/str.c
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
#include "str.h"
|
||||||
|
|
||||||
|
str str_copy(str src){
|
||||||
|
if(src.data == NULL || src.len == 0)
|
||||||
|
return src;
|
||||||
|
str nstr = str_construct((char*)malloc(src.len + 1), src.len, true);
|
||||||
|
memcpy(nstr.data, src.data, src.len);
|
||||||
|
nstr.data[nstr.len] = '\0';
|
||||||
|
return nstr;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool str_compare(str str0, str str1){
|
||||||
|
if(str0.len!= str1.len) return false;
|
||||||
|
if(!str0.data) return str1.data ? false : true;
|
||||||
|
else if(!str1.data) return false;
|
||||||
|
while(str0.len-- > 0)
|
||||||
|
if(*str0.data++ != *str1.data++ )
|
||||||
|
return false;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
str str_reverse(str s){
|
||||||
|
if(s.data == NULL || s.len == 0)
|
||||||
|
return s;
|
||||||
|
str r = str_construct(malloc(s.len), s.len, s.isZeroTerminated);
|
||||||
|
for(u32 i = 0; i < s.len; i++ )
|
||||||
|
r.data[i] = s.data[s.len - i - 1];
|
||||||
|
return r;
|
||||||
|
}
|
||||||
30
src/string/str.h
Normal file
30
src/string/str.h
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "../std.h"
|
||||||
|
|
||||||
|
typedef struct str {
|
||||||
|
char* data;
|
||||||
|
u32 len;
|
||||||
|
bool isZeroTerminated;
|
||||||
|
} str;
|
||||||
|
|
||||||
|
#define str_construct(DATA, LEN, ZERO_TERMINATED) ((str){ .data = DATA, .len = LEN, .isZeroTerminated = ZERO_TERMINATED })
|
||||||
|
|
||||||
|
static const str str_null = str_construct(NULL, 0, 0);
|
||||||
|
|
||||||
|
|
||||||
|
/// copies str content to new char pointer value (adding '\0' at the end)
|
||||||
|
char* str_extractcstr(str str);
|
||||||
|
|
||||||
|
/// copies src content to new string and adds \0 at the end
|
||||||
|
str str_copy(str src);
|
||||||
|
|
||||||
|
/// compares two strings, NullPtr-friendly
|
||||||
|
bool str_compare(str str0, str str1);
|
||||||
|
|
||||||
|
/// allocates new string which is reversed variant of <s>
|
||||||
|
str str_reverse(str s);
|
||||||
|
|
||||||
|
#if __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
Loading…
Reference in New Issue
Block a user