2016-02-25 23:52:11 +00:00
|
|
|
/*
|
2016-08-30 19:30:41 +00:00
|
|
|
* Mr. 4th Dimention - Allen Webster
|
|
|
|
*
|
|
|
|
* 25.02.2016
|
|
|
|
*
|
|
|
|
* File editing view for 4coder
|
|
|
|
*
|
|
|
|
*/
|
2016-02-25 23:52:11 +00:00
|
|
|
|
|
|
|
// TOP
|
|
|
|
|
2016-08-30 19:30:41 +00:00
|
|
|
#include "4coder_version.h"
|
2016-02-25 23:52:11 +00:00
|
|
|
|
2016-08-30 19:30:41 +00:00
|
|
|
#include "internal_4coder_string.cpp"
|
2016-06-24 19:33:37 +00:00
|
|
|
|
2016-08-31 15:10:22 +00:00
|
|
|
#define FCPP_ALLOW_MALLOC
|
2016-06-24 19:33:37 +00:00
|
|
|
#include "4cpp_lexer.h"
|
|
|
|
|
2016-08-30 19:30:41 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
2016-06-27 14:25:17 +00:00
|
|
|
|
2016-07-01 05:42:19 +00:00
|
|
|
#include "4coder_mem.h"
|
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
typedef struct Out_Context{
|
|
|
|
FILE *file;
|
|
|
|
String *str;
|
|
|
|
} Out_Context;
|
2016-02-27 17:34:13 +00:00
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
static int32_t
|
|
|
|
begin_file_out(Out_Context *out_context, char *filename, String *out){
|
|
|
|
int32_t r = 0;
|
|
|
|
out_context->file = fopen(filename, "wb");
|
|
|
|
out_context->str = out;
|
|
|
|
out->size = 0;
|
|
|
|
if (out_context->file){
|
|
|
|
r = 1;
|
|
|
|
}
|
|
|
|
return(r);
|
2016-02-27 17:34:13 +00:00
|
|
|
}
|
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
static void
|
2016-09-02 21:41:56 +00:00
|
|
|
dump_file_out(Out_Context out_context){
|
2016-09-02 19:39:38 +00:00
|
|
|
fwrite(out_context.str->str, 1, out_context.str->size, out_context.file);
|
2016-09-02 21:41:56 +00:00
|
|
|
out_context.str->size = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
end_file_out(Out_Context out_context){
|
|
|
|
dump_file_out(out_context);
|
2016-09-02 19:39:38 +00:00
|
|
|
fclose(out_context.file);
|
2016-02-27 17:34:13 +00:00
|
|
|
}
|
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
static String
|
|
|
|
make_out_string(int32_t x){
|
|
|
|
String str;
|
|
|
|
str.size = 0;
|
|
|
|
str.memory_size = x;
|
|
|
|
str.str = (char*)malloc(x);
|
|
|
|
return(str);
|
2016-03-04 23:10:00 +00:00
|
|
|
}
|
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////////////
|
2016-02-25 23:52:11 +00:00
|
|
|
char *keys_that_need_codes[] = {
|
2016-06-07 18:52:40 +00:00
|
|
|
"back",
|
|
|
|
"up",
|
|
|
|
"down",
|
|
|
|
"left",
|
|
|
|
"right",
|
|
|
|
"del",
|
|
|
|
"insert",
|
|
|
|
"home",
|
|
|
|
"end",
|
|
|
|
"page_up",
|
|
|
|
"page_down",
|
|
|
|
"esc",
|
|
|
|
|
|
|
|
"mouse_left",
|
|
|
|
"mouse_right",
|
2016-02-25 23:52:11 +00:00
|
|
|
|
|
|
|
"f1",
|
|
|
|
"f2",
|
|
|
|
"f3",
|
|
|
|
"f4",
|
|
|
|
"f5",
|
|
|
|
"f6",
|
|
|
|
"f7",
|
|
|
|
"f8",
|
|
|
|
|
|
|
|
"f9",
|
|
|
|
"f10",
|
|
|
|
"f11",
|
|
|
|
"f12",
|
|
|
|
"f13",
|
|
|
|
"f14",
|
|
|
|
"f15",
|
|
|
|
"f16",
|
|
|
|
};
|
|
|
|
|
2016-08-30 19:30:41 +00:00
|
|
|
void
|
|
|
|
generate_keycode_enum(){
|
|
|
|
char *filename_keycodes = "4coder_keycodes.h";
|
2016-09-02 19:39:38 +00:00
|
|
|
Out_Context context = {0};
|
|
|
|
int32_t i = 0, count = 0;
|
2016-02-25 23:52:11 +00:00
|
|
|
unsigned char code = 1;
|
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
String out = make_out_string(10 << 20);
|
2016-06-07 16:26:11 +00:00
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
if (begin_file_out(&context, filename_keycodes, &out)){
|
|
|
|
count = ArrayCount(keys_that_need_codes);
|
|
|
|
|
|
|
|
append_sc(&out, "enum{\n");
|
|
|
|
for (i = 0; i < count; i){
|
|
|
|
if (strcmp(keys_that_need_codes[i], "f1") == 0 && code < 0x7F){
|
|
|
|
code = 0x7F;
|
|
|
|
}
|
|
|
|
switch (code){
|
|
|
|
case '\n': code++; break;
|
|
|
|
case '\t': code++; break;
|
|
|
|
case 0x20: code = 0x7F; break;
|
|
|
|
default:
|
|
|
|
append_sc(&out, "key_");
|
|
|
|
append_sc(&out, keys_that_need_codes[i++]);
|
|
|
|
append_sc(&out, " = ");
|
|
|
|
append_int_to_str(&out, code++);
|
|
|
|
append_sc(&out, ",\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
append_sc(&out, "};\n");
|
|
|
|
|
|
|
|
append_sc(&out,
|
|
|
|
"static char*\n"
|
|
|
|
"global_key_name(int32_t key_code, int32_t *size){\n"
|
|
|
|
"char *result = 0;\n"
|
|
|
|
"switch(key_code){\n");
|
|
|
|
|
|
|
|
for (i = 0; i < count; ++i){
|
|
|
|
append_sc(&out, "case key_");
|
|
|
|
append_sc(&out, keys_that_need_codes[i]);
|
|
|
|
append_sc(&out, ": result = \"");
|
|
|
|
append_sc(&out, keys_that_need_codes[i]);
|
|
|
|
append_sc(&out, "\"; *size = sizeof(\"");
|
|
|
|
append_sc(&out, keys_that_need_codes[i]);
|
|
|
|
append_sc(&out, "\")-1; break;\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
append_sc(&out,
|
|
|
|
"}\n"
|
|
|
|
"return(result);\n"
|
|
|
|
"}\n");
|
|
|
|
|
|
|
|
end_file_out(context);
|
2016-06-07 16:26:11 +00:00
|
|
|
}
|
2016-02-27 17:34:13 +00:00
|
|
|
}
|
|
|
|
|
2016-03-04 23:10:00 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////////////
|
2016-09-02 19:39:38 +00:00
|
|
|
static void
|
|
|
|
struct_begin(String *str, char *name){
|
|
|
|
append_sc(str, "struct ");
|
|
|
|
append_sc(str, name);
|
|
|
|
append_sc(str, "{\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
enum_begin(String *str, char *name){
|
|
|
|
append_sc(str, "enum ");
|
|
|
|
append_sc(str, name);
|
|
|
|
append_sc(str, "{\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
struct_end(String *str){
|
|
|
|
append_sc(str, "};\n\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static char* bar_style_fields[] = {
|
2016-03-04 23:10:00 +00:00
|
|
|
"bar",
|
|
|
|
"bar_active",
|
|
|
|
"base",
|
|
|
|
"pop1",
|
|
|
|
"pop2",
|
|
|
|
};
|
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
static char* main_style_fields[] = {
|
2016-03-04 23:10:00 +00:00
|
|
|
"back",
|
2016-06-07 18:52:40 +00:00
|
|
|
"margin",
|
|
|
|
"margin_hover",
|
|
|
|
"margin_active",
|
|
|
|
"cursor",
|
|
|
|
"at_cursor",
|
|
|
|
"highlight",
|
|
|
|
"at_highlight",
|
|
|
|
"mark",
|
|
|
|
"default",
|
|
|
|
"comment",
|
|
|
|
"keyword",
|
|
|
|
"str_constant",
|
|
|
|
"char_constant",
|
|
|
|
"int_constant",
|
|
|
|
"float_constant",
|
|
|
|
"bool_constant",
|
2016-03-04 23:10:00 +00:00
|
|
|
"preproc",
|
2016-06-07 18:52:40 +00:00
|
|
|
"include",
|
|
|
|
"special_character",
|
|
|
|
"highlight_junk",
|
|
|
|
"highlight_white",
|
2016-03-04 23:10:00 +00:00
|
|
|
"paste",
|
|
|
|
"undo",
|
|
|
|
"next_undo",
|
|
|
|
};
|
|
|
|
|
2016-03-05 04:10:55 +00:00
|
|
|
static char*
|
|
|
|
make_style_tag(char *tag){
|
|
|
|
char *str;
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t len;
|
2016-03-04 23:10:00 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
len = (int32_t)strlen(tag);
|
2016-03-05 04:10:55 +00:00
|
|
|
str = (char*)malloc(len + 1);
|
2016-09-02 19:39:38 +00:00
|
|
|
to_camel_cc(tag, str);
|
2016-03-05 04:10:55 +00:00
|
|
|
str[len] = 0;
|
2016-06-07 18:52:40 +00:00
|
|
|
|
2016-03-05 04:10:55 +00:00
|
|
|
return(str);
|
2016-03-04 23:10:00 +00:00
|
|
|
}
|
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
static void
|
2016-08-30 19:30:41 +00:00
|
|
|
generate_style(){
|
2016-03-04 23:10:00 +00:00
|
|
|
char filename_4coder[] = "4coder_style.h";
|
|
|
|
char filename_4ed[] = "4ed_style.h";
|
2016-09-02 19:39:38 +00:00
|
|
|
char *tag = 0;
|
|
|
|
int32_t count = 0, i = 0;
|
2016-06-07 18:52:40 +00:00
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
String out = make_out_string(10 << 20);
|
|
|
|
Out_Context context = {0};
|
2016-03-04 23:10:00 +00:00
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
if (begin_file_out(&context, filename_4coder, &out)){
|
|
|
|
|
|
|
|
enum_begin(&out, "Style_Tag");
|
|
|
|
{
|
|
|
|
count = ArrayCount(bar_style_fields);
|
|
|
|
for (i = 0; i < count; ++i){
|
|
|
|
tag = make_style_tag(bar_style_fields[i]);
|
|
|
|
append_sc(&out, "Stag_");
|
|
|
|
append_sc(&out, tag);
|
|
|
|
append_sc(&out, ",\n");
|
|
|
|
free(tag);
|
|
|
|
}
|
|
|
|
|
|
|
|
count = ArrayCount(main_style_fields);
|
|
|
|
for (i = 0; i < count; ++i){
|
|
|
|
tag = make_style_tag(main_style_fields[i]);
|
|
|
|
append_sc(&out, "Stag_");
|
|
|
|
append_sc(&out, tag);
|
|
|
|
append_sc(&out, ",\n");
|
|
|
|
free(tag);
|
|
|
|
}
|
2016-03-04 23:10:00 +00:00
|
|
|
}
|
2016-09-02 19:39:38 +00:00
|
|
|
struct_end(&out);
|
|
|
|
|
|
|
|
end_file_out(context);
|
2016-03-04 23:10:00 +00:00
|
|
|
}
|
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
if (begin_file_out(&context, filename_4ed, &out)){
|
|
|
|
|
|
|
|
struct_begin(&out, "Interactive_Style");
|
|
|
|
{
|
|
|
|
count = ArrayCount(bar_style_fields);
|
|
|
|
for (i = 0; i < count; ++i){
|
|
|
|
append_sc(&out, "u32 ");
|
|
|
|
append_sc(&out, bar_style_fields[i]);
|
|
|
|
append_sc(&out, "_color;\n");
|
|
|
|
}
|
2016-03-04 23:10:00 +00:00
|
|
|
}
|
2016-09-02 19:39:38 +00:00
|
|
|
struct_end(&out);
|
|
|
|
|
|
|
|
struct_begin(&out, "Style_Main_Data");
|
|
|
|
{
|
|
|
|
count = ArrayCount(main_style_fields);
|
|
|
|
for (i = 0; i < count; ++i){
|
|
|
|
append_sc(&out, "u32 ");
|
|
|
|
append_sc(&out, main_style_fields[i]);
|
|
|
|
append_sc(&out, "_color;\n");
|
|
|
|
}
|
|
|
|
append_sc(&out, "Interactive_Style file_info_style;\n");
|
2016-03-05 04:10:55 +00:00
|
|
|
}
|
2016-09-02 19:39:38 +00:00
|
|
|
struct_end(&out);
|
2016-03-05 04:10:55 +00:00
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
{
|
|
|
|
append_sc(&out,
|
|
|
|
"inline u32*\n"
|
|
|
|
"style_index_by_tag(Style_Main_Data *s, u32 tag){\n"
|
|
|
|
"u32 *result = 0;\n"
|
|
|
|
"switch (tag){\n");
|
|
|
|
|
|
|
|
count = ArrayCount(bar_style_fields);
|
|
|
|
for (i = 0; i < count; ++i){
|
|
|
|
tag = make_style_tag(bar_style_fields[i]);
|
|
|
|
append_sc(&out, "case Stag_");
|
|
|
|
append_sc(&out, tag);
|
|
|
|
append_sc(&out, ": result = &s->file_info_style.");
|
|
|
|
append_sc(&out, bar_style_fields[i]);
|
|
|
|
append_sc(&out, "_color; break;\n");
|
|
|
|
free(tag);
|
|
|
|
}
|
|
|
|
|
|
|
|
count = ArrayCount(main_style_fields);
|
|
|
|
for (i = 0; i < count; ++i){
|
|
|
|
tag = make_style_tag(main_style_fields[i]);
|
|
|
|
append_sc(&out, "case Stag_");
|
|
|
|
append_sc(&out, tag);
|
|
|
|
append_sc(&out, ": result = &s->");
|
|
|
|
append_sc(&out, main_style_fields[i]);
|
|
|
|
append_sc(&out, "_color; break;\n");
|
|
|
|
free(tag);
|
|
|
|
}
|
|
|
|
|
|
|
|
append_sc(&out,
|
|
|
|
"}\n"
|
|
|
|
"return(result);\n"
|
|
|
|
"}\n\n");
|
2016-03-05 04:10:55 +00:00
|
|
|
}
|
2016-09-02 19:39:38 +00:00
|
|
|
|
|
|
|
end_file_out(context);
|
2016-03-05 04:10:55 +00:00
|
|
|
}
|
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
free(out.str);
|
2016-03-04 23:10:00 +00:00
|
|
|
}
|
2016-03-04 06:06:11 +00:00
|
|
|
|
2016-05-29 19:54:20 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////////////
|
2016-09-02 19:39:38 +00:00
|
|
|
typedef struct Argument{
|
|
|
|
String param_string;
|
|
|
|
String param_name;
|
|
|
|
} Argument;
|
|
|
|
|
2016-06-27 19:45:15 +00:00
|
|
|
typedef struct Argument_Breakdown{
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t count;
|
2016-09-02 19:39:38 +00:00
|
|
|
Argument *args;
|
2016-06-27 19:45:15 +00:00
|
|
|
} Argument_Breakdown;
|
|
|
|
|
|
|
|
typedef struct Documentation{
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t param_count;
|
2016-06-27 19:45:15 +00:00
|
|
|
String *param_name;
|
|
|
|
String *param_docs;
|
|
|
|
String return_doc;
|
|
|
|
String main_doc;
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t see_also_count;
|
2016-06-27 19:45:15 +00:00
|
|
|
String *see_also;
|
|
|
|
} Documentation;
|
|
|
|
|
2016-09-02 21:41:56 +00:00
|
|
|
typedef enum Item_Type{
|
2016-09-02 19:39:38 +00:00
|
|
|
Item_Null,
|
|
|
|
Item_Function,
|
|
|
|
Item_Macro,
|
|
|
|
Item_Typedef,
|
2016-09-02 20:02:29 +00:00
|
|
|
Item_Struct,
|
|
|
|
Item_Union,
|
2016-09-02 21:41:56 +00:00
|
|
|
} Item_Type;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
typedef struct Item_Node{
|
|
|
|
int32_t t;
|
2016-06-24 19:33:37 +00:00
|
|
|
|
2016-09-02 20:02:29 +00:00
|
|
|
String cpp_name;
|
2016-09-02 19:39:38 +00:00
|
|
|
String name;
|
|
|
|
String ret;
|
|
|
|
String args;
|
|
|
|
String body;
|
|
|
|
String marker;
|
2016-06-24 19:33:37 +00:00
|
|
|
|
2016-09-02 20:02:29 +00:00
|
|
|
String value;
|
2016-09-02 19:39:38 +00:00
|
|
|
String type;
|
2016-09-02 20:02:29 +00:00
|
|
|
String type_postfix;
|
2016-09-02 19:39:38 +00:00
|
|
|
String doc_string;
|
2016-06-27 19:45:15 +00:00
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
Argument_Breakdown breakdown;
|
|
|
|
Documentation doc;
|
2016-09-02 20:02:29 +00:00
|
|
|
|
|
|
|
Item_Node *first_child;
|
|
|
|
Item_Node *next_sibling;
|
2016-09-02 19:39:38 +00:00
|
|
|
} Item_Node;
|
|
|
|
|
2016-09-02 21:41:56 +00:00
|
|
|
typedef struct Item_Set{
|
2016-09-02 20:02:29 +00:00
|
|
|
Item_Node *items;
|
2016-09-02 21:41:56 +00:00
|
|
|
} Item_Set;
|
2016-07-01 05:42:19 +00:00
|
|
|
|
2016-09-02 23:14:25 +00:00
|
|
|
typedef struct Parse{
|
|
|
|
String code;
|
|
|
|
Cpp_Token_Stack tokens;
|
|
|
|
} Parse;
|
2016-07-01 05:42:19 +00:00
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
static Item_Node null_item_node = {0};
|
2016-06-24 19:33:37 +00:00
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
static String
|
2016-05-25 22:43:58 +00:00
|
|
|
file_dump(char *filename){
|
|
|
|
String result = {0};
|
|
|
|
FILE *file = fopen(filename, "rb");
|
|
|
|
|
|
|
|
if (file){
|
|
|
|
fseek(file, 0, SEEK_END);
|
|
|
|
result.size = ftell(file);
|
|
|
|
fseek(file, 0, SEEK_SET);
|
|
|
|
|
|
|
|
result.memory_size = result.size + 1;
|
|
|
|
result.str = (char*)malloc(result.memory_size);
|
|
|
|
|
|
|
|
fread(result.str, 1, result.size, file);
|
|
|
|
result.str[result.size] = 0;
|
|
|
|
|
|
|
|
fclose(file);
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-09-02 23:14:25 +00:00
|
|
|
static Parse
|
|
|
|
meta_parse(char *filename){
|
|
|
|
Parse result = {0};
|
|
|
|
result.code = file_dump(filename);
|
|
|
|
result.tokens = cpp_make_token_stack(1024);
|
|
|
|
cpp_lex_file(result.code.str, result.code.size, &result.tokens);
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
static String
|
2016-05-25 22:43:58 +00:00
|
|
|
get_first_line(String source){
|
|
|
|
String line = {0};
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t pos = find_s_char(source, 0, '\n');
|
2016-05-25 22:43:58 +00:00
|
|
|
line = substr(source, 0, pos);
|
|
|
|
return(line);
|
|
|
|
}
|
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
static String
|
2016-05-25 22:43:58 +00:00
|
|
|
get_next_line(String source, String line){
|
|
|
|
String next = {0};
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t pos = (int32_t)(line.str - source.str) + line.size;
|
|
|
|
int32_t start = 0;
|
2016-05-25 22:43:58 +00:00
|
|
|
|
|
|
|
if (pos < source.size){
|
|
|
|
assert(source.str[pos] == '\n');
|
|
|
|
start = pos + 1;
|
|
|
|
|
|
|
|
if (start < source.size){
|
2016-08-28 04:31:06 +00:00
|
|
|
pos = find_s_char(source, start, '\n');
|
2016-05-25 22:43:58 +00:00
|
|
|
next = substr(source, start, pos - start);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(next);
|
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
static int32_t
|
2016-05-25 22:43:58 +00:00
|
|
|
is_comment(String str){
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t result = 0;
|
2016-05-25 22:43:58 +00:00
|
|
|
if (str.size >= 2){
|
|
|
|
if (str.str[0] == '/' &&
|
|
|
|
str.str[1] == '/'){
|
|
|
|
result = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-09-02 23:14:25 +00:00
|
|
|
typedef enum Doc_Note_Type{
|
|
|
|
DOC_PARAM,
|
|
|
|
DOC_RETURN,
|
|
|
|
DOC,
|
|
|
|
DOC_SEE
|
|
|
|
} Doc_Note_Type;
|
2016-06-24 19:33:37 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
static int32_t
|
2016-06-24 19:33:37 +00:00
|
|
|
check_and_fix_docs(String *lexeme){
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t result = false;
|
2016-06-24 19:33:37 +00:00
|
|
|
|
|
|
|
if (lexeme->size > 4){
|
|
|
|
if (lexeme->str[0] == '/'){
|
|
|
|
if (lexeme->str[1] == '*'){
|
|
|
|
if (lexeme->str[lexeme->size - 2] == '*'){
|
|
|
|
if (lexeme->str[lexeme->size - 1] == '/'){
|
|
|
|
result = true;
|
|
|
|
lexeme->str += 2;
|
|
|
|
lexeme->size -= 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static String
|
|
|
|
doc_note_string[] = {
|
|
|
|
make_lit_string("DOC_PARAM"),
|
|
|
|
make_lit_string("DOC_RETURN"),
|
|
|
|
make_lit_string("DOC"),
|
|
|
|
make_lit_string("DOC_SEE"),
|
|
|
|
};
|
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
static String
|
2016-08-29 01:03:26 +00:00
|
|
|
doc_parse_note(String source, int32_t *pos){
|
2016-06-27 19:45:15 +00:00
|
|
|
String result = {0};
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t p = *pos;
|
|
|
|
int32_t start = p;
|
2016-06-27 19:45:15 +00:00
|
|
|
for (; p < source.size; ++p){
|
|
|
|
if (source.str[p] == '('){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (p != source.size){
|
|
|
|
result = make_string(source.str + start, p - start);
|
|
|
|
result = skip_chop_whitespace(result);
|
|
|
|
}
|
|
|
|
*pos = p;
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
static String
|
2016-08-29 01:03:26 +00:00
|
|
|
doc_parse_note_string(String source, int32_t *pos){
|
2016-06-27 14:25:17 +00:00
|
|
|
String result = {0};
|
2016-06-27 19:45:15 +00:00
|
|
|
|
|
|
|
assert(source.str[*pos] == '(');
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t p = *pos + 1;
|
|
|
|
int32_t start = p;
|
2016-06-27 19:45:15 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t nest_level = 0;
|
2016-06-27 19:45:15 +00:00
|
|
|
|
|
|
|
for (; p < source.size; ++p){
|
|
|
|
if (source.str[p] == ')'){
|
|
|
|
if (nest_level == 0){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
--nest_level;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (source.str[p] == '('){
|
|
|
|
++nest_level;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (p != source.size){
|
|
|
|
result = make_string(source.str + start, p - start);
|
|
|
|
result = skip_chop_whitespace(result);
|
|
|
|
++p;
|
|
|
|
}
|
|
|
|
*pos = p;
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
static String
|
2016-08-29 01:03:26 +00:00
|
|
|
doc_parse_parameter(String source, int32_t *pos){
|
2016-06-27 19:45:15 +00:00
|
|
|
String result = {0};
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t p = *pos;
|
|
|
|
int32_t start = p;
|
2016-06-27 19:45:15 +00:00
|
|
|
|
|
|
|
for (; p < source.size; ++p){
|
|
|
|
if (source.str[p] == ','){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (p != source.size){
|
|
|
|
result = make_string(source.str + start, p - start);
|
|
|
|
result = skip_chop_whitespace(result);
|
|
|
|
++p;
|
|
|
|
}
|
|
|
|
*pos = p;
|
|
|
|
|
2016-06-27 14:25:17 +00:00
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-06-27 19:45:15 +00:00
|
|
|
String
|
2016-08-29 01:03:26 +00:00
|
|
|
doc_parse_last_parameter(String source, int32_t *pos){
|
2016-06-27 19:45:15 +00:00
|
|
|
String result = {0};
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t p = *pos;
|
|
|
|
int32_t start = p;
|
2016-06-27 19:45:15 +00:00
|
|
|
|
|
|
|
for (; p < source.size; ++p){
|
|
|
|
if (source.str[p] == ')'){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (p == source.size){
|
|
|
|
result = make_string(source.str + start, p - start);
|
|
|
|
result = skip_chop_whitespace(result);
|
|
|
|
}
|
|
|
|
*pos = p;
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-06-24 19:33:37 +00:00
|
|
|
void
|
2016-07-02 14:15:15 +00:00
|
|
|
perform_doc_parse(Partition *part, String doc_string, Documentation *doc){
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t keep_parsing = true;
|
|
|
|
int32_t pos = 0;
|
2016-06-24 19:33:37 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t param_count = 0;
|
|
|
|
int32_t see_count = 0;
|
2016-06-27 19:45:15 +00:00
|
|
|
|
2016-06-24 19:33:37 +00:00
|
|
|
do{
|
2016-06-27 19:45:15 +00:00
|
|
|
String doc_note = doc_parse_note(doc_string, &pos);
|
2016-06-24 19:33:37 +00:00
|
|
|
if (doc_note.size == 0){
|
|
|
|
keep_parsing = false;
|
|
|
|
}
|
|
|
|
else{
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t doc_note_type;
|
2016-06-27 14:25:17 +00:00
|
|
|
if (string_set_match(doc_note_string, ArrayCount(doc_note_string), doc_note, &doc_note_type)){
|
2016-06-27 19:45:15 +00:00
|
|
|
|
|
|
|
doc_parse_note_string(doc_string, &pos);
|
|
|
|
|
|
|
|
switch (doc_note_type){
|
|
|
|
case DOC_PARAM:
|
|
|
|
++param_count;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DOC_SEE:
|
|
|
|
++see_count;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}while(keep_parsing);
|
|
|
|
|
|
|
|
if (param_count + see_count > 0){
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t memory_size = sizeof(String)*(2*param_count + see_count);
|
2016-07-02 14:15:15 +00:00
|
|
|
doc->param_name = push_array(part, String, memory_size);
|
2016-06-27 19:45:15 +00:00
|
|
|
doc->param_docs = doc->param_name + param_count;
|
|
|
|
doc->see_also = doc->param_docs + param_count;
|
|
|
|
|
|
|
|
doc->param_count = param_count;
|
|
|
|
doc->see_also_count = see_count;
|
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t param_index = 0;
|
|
|
|
int32_t see_index = 0;
|
2016-06-27 19:45:15 +00:00
|
|
|
|
|
|
|
keep_parsing = true;
|
|
|
|
pos = 0;
|
|
|
|
do{
|
|
|
|
String doc_note = doc_parse_note(doc_string, &pos);
|
|
|
|
if (doc_note.size == 0){
|
|
|
|
keep_parsing = false;
|
|
|
|
}
|
|
|
|
else{
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t doc_note_type;
|
2016-06-27 19:45:15 +00:00
|
|
|
if (string_set_match(doc_note_string, ArrayCount(doc_note_string), doc_note, &doc_note_type)){
|
|
|
|
|
|
|
|
String doc_note_string = doc_parse_note_string(doc_string, &pos);
|
|
|
|
|
|
|
|
switch (doc_note_type){
|
|
|
|
case DOC_PARAM:
|
|
|
|
{
|
|
|
|
assert(param_index < param_count);
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t param_pos = 0;
|
2016-06-27 19:45:15 +00:00
|
|
|
String param_name = doc_parse_parameter(doc_note_string, ¶m_pos);
|
|
|
|
String param_docs = doc_parse_last_parameter(doc_note_string, ¶m_pos);
|
|
|
|
doc->param_name[param_index] = param_name;
|
|
|
|
doc->param_docs[param_index] = param_docs;
|
|
|
|
++param_index;
|
|
|
|
}break;
|
|
|
|
|
|
|
|
case DOC_RETURN:
|
|
|
|
{
|
|
|
|
doc->return_doc = doc_note_string;
|
|
|
|
}break;
|
|
|
|
|
|
|
|
case DOC:
|
|
|
|
{
|
|
|
|
doc->main_doc = doc_note_string;
|
|
|
|
}break;
|
|
|
|
|
|
|
|
case DOC_SEE:
|
|
|
|
{
|
|
|
|
assert(see_index < see_count);
|
|
|
|
doc->see_also[see_index++] = doc_note_string;
|
|
|
|
}break;
|
|
|
|
}
|
2016-06-24 19:33:37 +00:00
|
|
|
}
|
|
|
|
else{
|
2016-06-29 17:16:08 +00:00
|
|
|
fprintf(stderr, "warning: invalid doc note %.*s\n", doc_note.size, doc_note.str);
|
2016-06-24 19:33:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}while(keep_parsing);
|
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
static int32_t
|
|
|
|
get_type_doc_string(char *data, Cpp_Token *tokens, int32_t i,
|
2016-07-01 05:42:19 +00:00
|
|
|
String *doc_string){
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t result = false;
|
2016-07-01 05:42:19 +00:00
|
|
|
|
|
|
|
if (i > 0){
|
|
|
|
Cpp_Token *prev_token = tokens + i - 1;
|
|
|
|
if (prev_token->type == CPP_TOKEN_COMMENT){
|
2016-07-16 18:40:26 +00:00
|
|
|
*doc_string = make_string(data + prev_token->start, prev_token->size);
|
2016-07-01 05:42:19 +00:00
|
|
|
if (check_and_fix_docs(doc_string)){
|
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
static int32_t
|
|
|
|
parse_struct(Partition *part, int32_t is_struct,
|
|
|
|
char *data, Cpp_Token *tokens, int32_t count,
|
2016-07-01 05:42:19 +00:00
|
|
|
Cpp_Token **token_ptr,
|
2016-09-02 20:02:29 +00:00
|
|
|
Item_Node *top_member);
|
2016-07-01 05:42:19 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
static int32_t
|
2016-07-01 05:42:19 +00:00
|
|
|
parse_struct_member(Partition *part,
|
2016-08-29 01:03:26 +00:00
|
|
|
char *data, Cpp_Token *tokens, int32_t count,
|
2016-07-01 05:42:19 +00:00
|
|
|
Cpp_Token **token_ptr,
|
2016-09-02 20:02:29 +00:00
|
|
|
Item_Node *member){
|
2016-07-01 05:42:19 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t result = false;
|
2016-07-01 05:42:19 +00:00
|
|
|
|
|
|
|
Cpp_Token *token = *token_ptr;
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t i = (int32_t)(token - tokens);
|
2016-07-01 05:42:19 +00:00
|
|
|
|
|
|
|
String doc_string = {0};
|
2016-07-16 18:40:26 +00:00
|
|
|
get_type_doc_string(data, tokens, i, &doc_string);
|
2016-07-01 05:42:19 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t start_i = i;
|
2016-07-01 05:42:19 +00:00
|
|
|
Cpp_Token *start_token = token;
|
|
|
|
|
|
|
|
for (; i < count; ++i, ++token){
|
|
|
|
if (token->type == CPP_TOKEN_SEMICOLON){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i < count){
|
|
|
|
Cpp_Token *token_j = token;
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t nest_level = 0;
|
|
|
|
for (int32_t j = i; j > start_i; --j, --token_j){
|
2016-07-01 05:42:19 +00:00
|
|
|
if (token_j->type == CPP_TOKEN_BRACKET_CLOSE){
|
|
|
|
++nest_level;
|
|
|
|
}
|
|
|
|
else if (token_j->type == CPP_TOKEN_BRACKET_OPEN){
|
|
|
|
--nest_level;
|
|
|
|
if (nest_level < 0){
|
|
|
|
j = start_i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nest_level == 0){
|
|
|
|
if (token_j->type == CPP_TOKEN_IDENTIFIER){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-16 18:40:26 +00:00
|
|
|
String name = make_string(data + token_j->start, token_j->size);
|
2016-07-01 05:42:19 +00:00
|
|
|
name = skip_chop_whitespace(name);
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t type_start = start_token->start;
|
|
|
|
int32_t type_end = token_j->start;
|
2016-07-16 18:40:26 +00:00
|
|
|
String type = make_string(data + type_start, type_end - type_start);
|
2016-07-01 05:42:19 +00:00
|
|
|
type = skip_chop_whitespace(type);
|
|
|
|
|
|
|
|
type_start = token_j->start + token_j->size;
|
|
|
|
type_end = token->start;
|
|
|
|
|
2016-07-16 18:40:26 +00:00
|
|
|
String type_postfix = make_string(data + type_start, type_end - type_start);
|
2016-07-01 05:42:19 +00:00
|
|
|
type_postfix = skip_chop_whitespace(type_postfix);
|
|
|
|
|
|
|
|
++token;
|
|
|
|
result = true;
|
|
|
|
|
|
|
|
member->name = name;
|
|
|
|
member->type = type;
|
|
|
|
member->type_postfix = type_postfix;
|
|
|
|
member->doc_string = doc_string;
|
|
|
|
member->first_child = 0;
|
|
|
|
member->next_sibling = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
*token_ptr = token;
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-09-02 20:02:29 +00:00
|
|
|
static Item_Node*
|
2016-07-01 05:42:19 +00:00
|
|
|
parse_struct_next_member(Partition *part,
|
2016-08-29 01:03:26 +00:00
|
|
|
char *data, Cpp_Token *tokens, int32_t count,
|
2016-07-01 05:42:19 +00:00
|
|
|
Cpp_Token **token_ptr){
|
2016-09-02 20:02:29 +00:00
|
|
|
Item_Node *result = 0;
|
2016-07-01 05:42:19 +00:00
|
|
|
|
|
|
|
Cpp_Token *token = *token_ptr;
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t i = (int32_t)(token - tokens);
|
2016-07-01 05:42:19 +00:00
|
|
|
|
|
|
|
for (; i < count; ++i, ++token){
|
|
|
|
if (token->type == CPP_TOKEN_IDENTIFIER ||
|
|
|
|
(token->flags & CPP_TFLAG_IS_KEYWORD)){
|
2016-07-16 18:40:26 +00:00
|
|
|
String lexeme = make_string(data + token->start, token->size);
|
2016-07-01 05:42:19 +00:00
|
|
|
|
2016-08-28 04:31:06 +00:00
|
|
|
if (match_ss(lexeme, make_lit_string("struct"))){
|
2016-09-02 20:02:29 +00:00
|
|
|
Item_Node *member = push_struct(part, Item_Node);
|
2016-07-16 18:40:26 +00:00
|
|
|
if (parse_struct(part, true, data, tokens, count, &token, member)){
|
2016-07-01 05:42:19 +00:00
|
|
|
result = member;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
assert(!"unhandled error");
|
|
|
|
}
|
|
|
|
}
|
2016-08-28 04:31:06 +00:00
|
|
|
else if (match_ss(lexeme, make_lit_string("union"))){
|
2016-09-02 20:02:29 +00:00
|
|
|
Item_Node *member = push_struct(part, Item_Node);
|
2016-07-16 18:40:26 +00:00
|
|
|
if (parse_struct(part, false, data, tokens, count, &token, member)){
|
2016-07-01 05:42:19 +00:00
|
|
|
result = member;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
assert(!"unhandled error");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
2016-09-02 20:02:29 +00:00
|
|
|
Item_Node *member = push_struct(part, Item_Node);
|
2016-07-16 18:40:26 +00:00
|
|
|
if (parse_struct_member(part, data, tokens, count, &token, member)){
|
2016-07-01 05:42:19 +00:00
|
|
|
result = member;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
assert(!"unhandled error");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (token->type == CPP_TOKEN_BRACE_CLOSE){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*token_ptr = token;
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
static int32_t
|
|
|
|
parse_struct(Partition *part, int32_t is_struct,
|
|
|
|
char *data, Cpp_Token *tokens, int32_t count,
|
2016-07-01 05:42:19 +00:00
|
|
|
Cpp_Token **token_ptr,
|
2016-09-02 20:02:29 +00:00
|
|
|
Item_Node *top_member){
|
2016-07-01 05:42:19 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t result = false;
|
2016-07-01 05:42:19 +00:00
|
|
|
|
|
|
|
Cpp_Token *token = *token_ptr;
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t i = (int32_t)(token - tokens);
|
2016-07-01 05:42:19 +00:00
|
|
|
|
|
|
|
String doc_string = {0};
|
2016-07-16 18:40:26 +00:00
|
|
|
get_type_doc_string(data, tokens, i, &doc_string);
|
2016-07-01 05:42:19 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t start_i = i;
|
2016-07-01 05:42:19 +00:00
|
|
|
|
|
|
|
for (; i < count; ++i, ++token){
|
|
|
|
if (token->type == CPP_TOKEN_BRACE_OPEN){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i < count){
|
|
|
|
Cpp_Token *token_j = token;
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t j = i;
|
2016-07-01 05:42:19 +00:00
|
|
|
|
|
|
|
for (; j > start_i; --j, --token_j){
|
|
|
|
if (token_j->type == CPP_TOKEN_IDENTIFIER){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
String name = {0};
|
|
|
|
|
|
|
|
if (j != start_i){
|
2016-07-16 18:40:26 +00:00
|
|
|
name = make_string(data + token_j->start, token_j->size);
|
2016-07-01 05:42:19 +00:00
|
|
|
name = skip_chop_whitespace(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
String type = {0};
|
|
|
|
if (is_struct){
|
|
|
|
type = make_lit_string("struct");
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
type = make_lit_string("union");
|
|
|
|
}
|
|
|
|
|
|
|
|
++token;
|
2016-09-02 20:02:29 +00:00
|
|
|
Item_Node *new_member =
|
2016-07-16 18:40:26 +00:00
|
|
|
parse_struct_next_member(part, data, tokens, count, &token);
|
2016-07-01 05:42:19 +00:00
|
|
|
|
|
|
|
if (new_member){
|
|
|
|
top_member->first_child = new_member;
|
|
|
|
|
2016-09-02 20:02:29 +00:00
|
|
|
Item_Node *head_member = new_member;
|
2016-07-01 05:42:19 +00:00
|
|
|
for(;;){
|
|
|
|
new_member =
|
2016-07-16 18:40:26 +00:00
|
|
|
parse_struct_next_member(part, data, tokens, count, &token);
|
2016-07-01 05:42:19 +00:00
|
|
|
if (new_member){
|
|
|
|
head_member->next_sibling = new_member;
|
|
|
|
head_member = new_member;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
i = (int32_t)(token - tokens);
|
2016-07-01 05:42:19 +00:00
|
|
|
for (; i < count; ++i, ++token){
|
|
|
|
if (token->type == CPP_TOKEN_SEMICOLON){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
++token;
|
|
|
|
|
|
|
|
top_member->name = name;
|
|
|
|
top_member->type = type;
|
|
|
|
top_member->doc_string = doc_string;
|
|
|
|
top_member->next_sibling = 0;
|
|
|
|
|
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
*token_ptr = token;
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-09-02 20:02:29 +00:00
|
|
|
print_struct_html(FILE *file, Item_Node *member){
|
2016-07-01 05:42:19 +00:00
|
|
|
String name = member->name;
|
|
|
|
String type = member->type;
|
|
|
|
String type_postfix = member->type_postfix;
|
|
|
|
|
2016-08-28 04:31:06 +00:00
|
|
|
if (match_ss(type, make_lit_string("struct")) ||
|
|
|
|
match_ss(type, make_lit_string("union"))){
|
2016-07-01 05:42:19 +00:00
|
|
|
fprintf(file,
|
|
|
|
"%.*s %.*s {<br>\n"
|
|
|
|
"<div style='margin-left: 8mm;'>\n",
|
|
|
|
type.size, type.str,
|
|
|
|
name.size, name.str);
|
|
|
|
|
2016-09-02 20:02:29 +00:00
|
|
|
for (Item_Node *member_iter = member->first_child;
|
2016-07-01 05:42:19 +00:00
|
|
|
member_iter != 0;
|
|
|
|
member_iter = member_iter->next_sibling){
|
|
|
|
print_struct_html(file, member_iter);
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(file,
|
|
|
|
"</div>\n"
|
|
|
|
"};<br>\n");
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
fprintf(file,
|
|
|
|
"%.*s %.*s%.*s;<br>\n",
|
|
|
|
type.size, type.str,
|
|
|
|
name.size, name.str,
|
|
|
|
type_postfix.size, type_postfix.str
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-06 19:18:10 +00:00
|
|
|
static void
|
2016-09-02 23:49:01 +00:00
|
|
|
print_function_html(FILE *file, Item_Node item, String name,
|
2016-07-06 19:18:10 +00:00
|
|
|
char *function_call_head){
|
2016-09-02 23:49:01 +00:00
|
|
|
String ret = item.ret;
|
2016-07-06 19:18:10 +00:00
|
|
|
fprintf(file,
|
|
|
|
"%.*s %s%.*s(\n"
|
|
|
|
"<div style='margin-left: 4mm;'>",
|
|
|
|
ret.size, ret.str,
|
|
|
|
function_call_head,
|
|
|
|
name.size, name.str);
|
|
|
|
|
2016-09-02 23:49:01 +00:00
|
|
|
Argument_Breakdown breakdown = item.breakdown;
|
|
|
|
int32_t arg_count = breakdown.count;
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t j = 0; j < arg_count; ++j){
|
2016-09-02 23:49:01 +00:00
|
|
|
String param_string = breakdown.args[j].param_string;
|
2016-07-06 19:18:10 +00:00
|
|
|
if (j < arg_count - 1){
|
|
|
|
fprintf(file, "%.*s,<br>", param_string.size, param_string.str);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
fprintf(file, "%.*s<br>", param_string.size, param_string.str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(file, "</div>)\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-09-02 23:49:01 +00:00
|
|
|
print_macro_html(FILE *file, Item_Node item, String name){
|
|
|
|
Argument_Breakdown breakdown = item.breakdown;
|
|
|
|
int32_t arg_count = breakdown.count;
|
2016-07-06 19:18:10 +00:00
|
|
|
if (arg_count == 0){
|
|
|
|
fprintf(file,
|
|
|
|
"#define %.*s()",
|
|
|
|
name.size, name.str);
|
|
|
|
}
|
|
|
|
else if (arg_count == 1){
|
2016-09-02 23:49:01 +00:00
|
|
|
String param_string = breakdown.args[0].param_string;
|
2016-07-06 19:18:10 +00:00
|
|
|
fprintf(file,
|
|
|
|
"#define %.*s(%.*s)",
|
|
|
|
name.size, name.str,
|
|
|
|
param_string.size, param_string.str);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
fprintf(file,
|
|
|
|
"#define %.*s(\n"
|
|
|
|
"<div style='margin-left: 4mm;'>",
|
|
|
|
name.size, name.str);
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t j = 0; j < arg_count; ++j){
|
2016-09-02 23:49:01 +00:00
|
|
|
String param_string = breakdown.args[j].param_string;
|
2016-07-06 19:18:10 +00:00
|
|
|
if (j < arg_count - 1){
|
|
|
|
fprintf(file, "%.*s,<br>", param_string.size, param_string.str);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
fprintf(file, "%.*s<br>", param_string.size, param_string.str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(file, "</div>)\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
#define BACK_COLOR "#FAFAFA"
|
|
|
|
#define TEXT_COLOR "#0D0D0D"
|
|
|
|
#define CODE_BACK "#DFDFDF"
|
|
|
|
|
|
|
|
#define POP_COLOR_1 "#309030"
|
|
|
|
#define POP_BACK_1 "#E0FFD0"
|
|
|
|
#define VISITED_LINK "#A0C050"
|
|
|
|
|
|
|
|
#define POP_COLOR_2 "#005000"
|
|
|
|
|
|
|
|
#define CODE_STYLE "font-family: \"Courier New\", Courier, monospace; text-align: left;"
|
|
|
|
|
|
|
|
#define DESCRIPT_SECTION_STYLE \
|
|
|
|
"margin-top: 3mm; margin-bottom: 3mm; font-size: .95em; " \
|
|
|
|
"background: "CODE_BACK"; padding: 0.25em;"
|
|
|
|
|
|
|
|
#define DOC_HEAD_OPEN "<div style='margin-top: 3mm; margin-bottom: 3mm; color: "POP_COLOR_1";'><b><i>"
|
|
|
|
#define DOC_HEAD_CLOSE "</i></b></div>"
|
|
|
|
|
|
|
|
#define DOC_ITEM_HEAD_STYLE "font-weight: 600;"
|
|
|
|
|
|
|
|
#define DOC_ITEM_HEAD_INL_OPEN "<span style='"DOC_ITEM_HEAD_STYLE"'>"
|
|
|
|
#define DOC_ITEM_HEAD_INL_CLOSE "</span>"
|
|
|
|
|
|
|
|
#define DOC_ITEM_HEAD_OPEN "<div style='"DOC_ITEM_HEAD_STYLE"'>"
|
|
|
|
#define DOC_ITEM_HEAD_CLOSE "</div>"
|
|
|
|
|
|
|
|
#define DOC_ITEM_OPEN "<div style='margin-left: 5mm; margin-right: 5mm;'>"
|
|
|
|
#define DOC_ITEM_CLOSE "</div>"
|
|
|
|
|
|
|
|
static void
|
2016-09-02 20:02:29 +00:00
|
|
|
print_struct_docs(FILE *file, Partition *part, Item_Node *member){
|
|
|
|
for (Item_Node *member_iter = member->first_child;
|
2016-07-02 14:15:15 +00:00
|
|
|
member_iter != 0;
|
|
|
|
member_iter = member_iter->next_sibling){
|
|
|
|
String type = member_iter->type;
|
2016-08-28 04:31:06 +00:00
|
|
|
if (match_ss(type, make_lit_string("struct")) ||
|
|
|
|
match_ss(type, make_lit_string("union"))){
|
2016-07-02 14:15:15 +00:00
|
|
|
print_struct_docs(file, part, member_iter);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
Documentation doc = {0};
|
|
|
|
perform_doc_parse(part, member_iter->doc_string, &doc);
|
|
|
|
|
|
|
|
fprintf(file,
|
|
|
|
"<div>\n"
|
|
|
|
"<div style='"CODE_STYLE"'>"DOC_ITEM_HEAD_INL_OPEN
|
|
|
|
"%.*s"DOC_ITEM_HEAD_INL_CLOSE"</div>\n"
|
|
|
|
"<div style='margin-bottom: 6mm;'>"DOC_ITEM_OPEN"%.*s"DOC_ITEM_CLOSE"</div>\n"
|
|
|
|
"</div>\n",
|
|
|
|
member_iter->name.size, member_iter->name.str,
|
|
|
|
doc.main_doc.size, doc.main_doc.str
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
print_see_also(FILE *file, Documentation *doc){
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t doc_see_count = doc->see_also_count;
|
2016-07-02 14:15:15 +00:00
|
|
|
if (doc_see_count > 0){
|
|
|
|
fprintf(file, DOC_HEAD_OPEN"See Also"DOC_HEAD_CLOSE);
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t j = 0; j < doc_see_count; ++j){
|
2016-07-02 14:15:15 +00:00
|
|
|
String see_also = doc->see_also[j];
|
|
|
|
fprintf(file,
|
|
|
|
DOC_ITEM_OPEN"<a href='#%.*s_doc'>%.*s</a>"DOC_ITEM_CLOSE,
|
|
|
|
see_also.size, see_also.str,
|
|
|
|
see_also.size, see_also.str
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-02 21:41:56 +00:00
|
|
|
static int32_t
|
|
|
|
parse_typedef(char *data, Cpp_Token *tokens, int32_t count,
|
|
|
|
Cpp_Token **token_ptr, Item_Set item_set, int32_t item_index){
|
|
|
|
int32_t result = false;
|
|
|
|
|
|
|
|
Cpp_Token *token = *token_ptr;
|
|
|
|
int32_t i = (int32_t)(token - tokens);
|
|
|
|
String doc_string = {0};
|
|
|
|
get_type_doc_string(data, tokens, i, &doc_string);
|
|
|
|
|
|
|
|
int32_t start_i = i;
|
|
|
|
Cpp_Token *start_token = token;
|
|
|
|
|
|
|
|
for (; i < count; ++i, ++token){
|
|
|
|
if (token->type == CPP_TOKEN_SEMICOLON){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i < count){
|
|
|
|
Cpp_Token *token_j = token;
|
|
|
|
|
|
|
|
for (int32_t j = i; j > start_i; --j, --token_j){
|
|
|
|
if (token_j->type == CPP_TOKEN_IDENTIFIER){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
String name = make_string(data + token_j->start, token_j->size);
|
|
|
|
name = skip_chop_whitespace(name);
|
|
|
|
|
|
|
|
int32_t type_start = start_token->start + start_token->size;
|
|
|
|
int32_t type_end = token_j->start;
|
|
|
|
String type = make_string(data + type_start, type_end - type_start);
|
|
|
|
type = skip_chop_whitespace(type);
|
|
|
|
|
|
|
|
result = true;
|
|
|
|
item_set.items[item_index].type = type;
|
|
|
|
item_set.items[item_index].name = name;
|
|
|
|
item_set.items[item_index].doc_string = doc_string;
|
|
|
|
}
|
|
|
|
|
|
|
|
*token_ptr = token;
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
static int32_t
|
2016-07-16 18:40:26 +00:00
|
|
|
parse_enum(Partition *part, char *data,
|
2016-08-29 01:03:26 +00:00
|
|
|
Cpp_Token *tokens, int32_t count,
|
2016-09-02 21:41:56 +00:00
|
|
|
Cpp_Token **token_ptr,
|
|
|
|
Item_Set item_set, int32_t item_index){
|
2016-07-01 05:42:19 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t result = false;
|
2016-07-01 05:42:19 +00:00
|
|
|
|
|
|
|
Cpp_Token *token = *token_ptr;
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t i = (int32_t)(token - tokens);
|
2016-07-01 05:42:19 +00:00
|
|
|
|
2016-09-02 21:41:56 +00:00
|
|
|
String doc_string = {0};
|
|
|
|
get_type_doc_string(data, tokens, i, &doc_string);
|
|
|
|
|
|
|
|
int32_t start_i = i;
|
|
|
|
|
|
|
|
for (; i < count; ++i, ++token){
|
2016-09-02 23:14:25 +00:00
|
|
|
if (token->type == CPP_TOKEN_BRACE_OPEN){
|
2016-09-02 21:41:56 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-01 05:42:19 +00:00
|
|
|
if (i < count){
|
|
|
|
Cpp_Token *token_j = token;
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t j = i; j > start_i; --j, --token_j){
|
2016-07-01 05:42:19 +00:00
|
|
|
if (token_j->type == CPP_TOKEN_IDENTIFIER){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-16 18:40:26 +00:00
|
|
|
String name = make_string(data + token_j->start, token_j->size);
|
2016-07-01 05:42:19 +00:00
|
|
|
name = skip_chop_whitespace(name);
|
|
|
|
|
|
|
|
for (; i < count; ++i, ++token){
|
|
|
|
if (token->type == CPP_TOKEN_BRACE_OPEN){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i < count){
|
2016-09-02 20:02:29 +00:00
|
|
|
Item_Node *first_member = 0;
|
|
|
|
Item_Node *head_member = 0;
|
2016-07-01 05:42:19 +00:00
|
|
|
|
|
|
|
for (; i < count; ++i, ++token){
|
|
|
|
if (token->type == CPP_TOKEN_BRACE_CLOSE){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (token->type == CPP_TOKEN_IDENTIFIER){
|
|
|
|
String doc_string = {0};
|
2016-07-16 18:40:26 +00:00
|
|
|
get_type_doc_string(data, tokens, i, &doc_string);
|
2016-07-01 05:42:19 +00:00
|
|
|
|
2016-07-16 18:40:26 +00:00
|
|
|
String name = make_string(data + token->start, token->size);
|
2016-07-01 05:42:19 +00:00
|
|
|
name = skip_chop_whitespace(name);
|
|
|
|
|
|
|
|
String value = {0};
|
|
|
|
|
|
|
|
++i;
|
|
|
|
++token;
|
|
|
|
|
|
|
|
if (token->type == CPP_TOKEN_EQ){
|
|
|
|
Cpp_Token *start_token = token;
|
|
|
|
|
|
|
|
for (; i < count; ++i, ++token){
|
|
|
|
if (token->type == CPP_TOKEN_COMMA ||
|
|
|
|
token->type == CPP_TOKEN_BRACE_CLOSE){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t val_start = start_token->start + start_token->size;
|
|
|
|
int32_t val_end = token->start;
|
2016-07-01 05:42:19 +00:00
|
|
|
|
2016-07-16 18:40:26 +00:00
|
|
|
value = make_string(data + val_start, val_end - val_start);
|
2016-07-01 05:42:19 +00:00
|
|
|
value = skip_chop_whitespace(value);
|
|
|
|
|
|
|
|
--i;
|
|
|
|
--token;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
--i;
|
|
|
|
--token;
|
|
|
|
}
|
|
|
|
|
2016-09-02 20:02:29 +00:00
|
|
|
Item_Node *new_member = push_struct(part, Item_Node);
|
2016-07-01 05:42:19 +00:00
|
|
|
if (first_member == 0){
|
|
|
|
first_member = new_member;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (head_member){
|
2016-09-02 20:02:29 +00:00
|
|
|
head_member->next_sibling = new_member;
|
2016-07-01 05:42:19 +00:00
|
|
|
}
|
|
|
|
head_member = new_member;
|
|
|
|
|
|
|
|
new_member->name = name;
|
|
|
|
new_member->value = value;
|
|
|
|
new_member->doc_string = doc_string;
|
2016-09-02 20:02:29 +00:00
|
|
|
new_member->next_sibling = 0;
|
2016-07-01 05:42:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i < count){
|
|
|
|
for (; i < count; ++i, ++token){
|
|
|
|
if (token->type == CPP_TOKEN_BRACE_CLOSE){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
++i;
|
|
|
|
++token;
|
|
|
|
|
|
|
|
result = true;
|
2016-09-02 21:41:56 +00:00
|
|
|
item_set.items[item_index].name = name;
|
|
|
|
item_set.items[item_index].doc_string = doc_string;
|
|
|
|
item_set.items[item_index].first_child = first_member;
|
2016-07-01 05:42:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*token_ptr = token;
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-09-02 23:49:01 +00:00
|
|
|
static Item_Set
|
|
|
|
allocate_item_set(Partition *part, int32_t count){
|
|
|
|
Item_Set item_set = {0};
|
|
|
|
if (count > 0){
|
|
|
|
int32_t memory_size = sizeof(Item_Node)*count;
|
|
|
|
item_set.items = push_array(part, Item_Node, count);
|
|
|
|
memset(item_set.items, 0, memory_size);
|
|
|
|
}
|
|
|
|
return(item_set);
|
2016-07-06 19:18:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static Argument_Breakdown
|
2016-08-29 01:03:26 +00:00
|
|
|
allocate_argument_breakdown(int32_t count){
|
2016-07-06 19:18:10 +00:00
|
|
|
Argument_Breakdown breakdown = {0};
|
2016-09-02 19:39:38 +00:00
|
|
|
int32_t memory_size = sizeof(Argument)*count;
|
2016-07-06 19:18:10 +00:00
|
|
|
breakdown.count = count;
|
2016-09-02 19:39:38 +00:00
|
|
|
breakdown.args = (Argument*)malloc(memory_size);
|
|
|
|
memset(breakdown.args, 0, memory_size);
|
2016-07-06 19:18:10 +00:00
|
|
|
return(breakdown);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Argument_Breakdown
|
2016-07-16 18:40:26 +00:00
|
|
|
do_parameter_parse(char *data, Cpp_Token *args_start_token, Cpp_Token *token){
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t arg_index = 0;
|
2016-07-06 19:18:10 +00:00
|
|
|
Cpp_Token *arg_token = args_start_token + 1;
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t param_string_start = arg_token->start;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t arg_count = 1;
|
2016-07-06 19:18:10 +00:00
|
|
|
arg_token = args_start_token;
|
|
|
|
for (; arg_token < token; ++arg_token){
|
|
|
|
if (arg_token->type == CPP_TOKEN_COMMA){
|
|
|
|
++arg_count;
|
|
|
|
}
|
|
|
|
}
|
2016-06-27 15:52:58 +00:00
|
|
|
|
2016-07-06 19:18:10 +00:00
|
|
|
Argument_Breakdown breakdown = allocate_argument_breakdown(arg_count);
|
2016-06-27 15:52:58 +00:00
|
|
|
|
2016-07-06 19:18:10 +00:00
|
|
|
arg_token = args_start_token + 1;
|
|
|
|
for (; arg_token <= token; ++arg_token){
|
|
|
|
if (arg_token->type == CPP_TOKEN_COMMA ||
|
|
|
|
arg_token->type == CPP_TOKEN_PARENTHESE_CLOSE){
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t size = arg_token->start - param_string_start;
|
2016-07-16 18:40:26 +00:00
|
|
|
String param_string = make_string(data + param_string_start, size);
|
2016-07-06 19:18:10 +00:00
|
|
|
param_string = chop_whitespace(param_string);
|
2016-09-02 19:39:38 +00:00
|
|
|
breakdown.args[arg_index].param_string = param_string;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
|
|
|
for (Cpp_Token *param_name_token = arg_token - 1;
|
|
|
|
param_name_token->start > param_string_start;
|
|
|
|
--param_name_token){
|
|
|
|
if (param_name_token->type == CPP_TOKEN_IDENTIFIER){
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t start = param_name_token->start;
|
|
|
|
int32_t size = param_name_token->size;
|
2016-09-02 19:39:38 +00:00
|
|
|
breakdown.args[arg_index].param_name = make_string(data + start, size);
|
2016-07-06 19:18:10 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
++arg_index;
|
|
|
|
|
|
|
|
++arg_token;
|
|
|
|
if (arg_token <= token){
|
|
|
|
param_string_start = arg_token->start;
|
|
|
|
}
|
|
|
|
--arg_token;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(breakdown);
|
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
static int32_t
|
|
|
|
do_function_parse_check(int32_t *index, Cpp_Token **token_ptr, int32_t count){
|
|
|
|
int32_t result = false;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t i = *index;
|
2016-07-06 19:18:10 +00:00
|
|
|
Cpp_Token *token = *token_ptr;
|
|
|
|
|
|
|
|
{
|
|
|
|
for (; i < count; ++i, ++token){
|
|
|
|
if (token->type == CPP_TOKEN_PARENTHESE_OPEN){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-06-27 15:52:58 +00:00
|
|
|
|
2016-07-06 19:18:10 +00:00
|
|
|
if (i < count){
|
|
|
|
--i;
|
|
|
|
--token;
|
|
|
|
|
|
|
|
if (token->type == CPP_TOKEN_IDENTIFIER){
|
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*index = i;
|
|
|
|
*token_ptr = token;
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
static int32_t
|
|
|
|
do_function_get_doc(int32_t *index, Cpp_Token **token_ptr, int32_t count,
|
2016-07-16 18:40:26 +00:00
|
|
|
char *data, String *doc_string){
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t result = false;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t i = *index;
|
2016-07-06 19:18:10 +00:00
|
|
|
Cpp_Token *token = *token_ptr;
|
|
|
|
|
|
|
|
for (; i < count; ++i, ++token){
|
|
|
|
if (token->type == CPP_TOKEN_COMMENT){
|
2016-07-16 18:40:26 +00:00
|
|
|
String lexeme = make_string(data + token->start, token->size);
|
2016-07-06 19:18:10 +00:00
|
|
|
if (check_and_fix_docs(&lexeme)){
|
|
|
|
*doc_string = lexeme;
|
|
|
|
result = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (token->type == CPP_TOKEN_BRACE_OPEN){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*index = i;
|
|
|
|
*token_ptr = token;
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-08-28 04:31:06 +00:00
|
|
|
static String
|
|
|
|
get_lexeme(Cpp_Token token, char *code){
|
|
|
|
String str = make_string(code + token.start, token.size);
|
|
|
|
return(str);
|
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
static int32_t
|
|
|
|
do_parse_cpp_name(int32_t *i_ptr, Cpp_Token **token_ptr, int32_t count, char *data, String *name){
|
|
|
|
int32_t result = false;
|
2016-08-28 04:31:06 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t i = *i_ptr;
|
2016-08-28 04:31:06 +00:00
|
|
|
Cpp_Token *token = *token_ptr;
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t i_start = i;
|
2016-08-28 04:31:06 +00:00
|
|
|
Cpp_Token *token_start = token;
|
|
|
|
|
|
|
|
++i, ++token;
|
|
|
|
if (i < count && token->type == CPP_TOKEN_PARENTHESE_OPEN){
|
|
|
|
++i, ++token;
|
|
|
|
if (i < count && token->type == CPP_TOKEN_IDENTIFIER){
|
|
|
|
++i, ++token;
|
|
|
|
if (i < count && token->type == CPP_TOKEN_PARENTHESE_CLOSE){
|
|
|
|
*name = get_lexeme(*(token-1), data);
|
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!result){
|
|
|
|
i = i_start;
|
|
|
|
token = token_start;
|
|
|
|
}
|
|
|
|
|
|
|
|
*i_ptr = i;
|
|
|
|
*token_ptr = token;
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
static int32_t
|
|
|
|
do_function_parse(int32_t *index, Cpp_Token **token_ptr, int32_t count, Cpp_Token *ret_start_token,
|
2016-09-02 23:49:01 +00:00
|
|
|
char *data, Item_Set function_set, int32_t sig_count, String cpp_name){
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t result = false;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t i = *index;
|
2016-07-06 19:18:10 +00:00
|
|
|
Cpp_Token *token = *token_ptr;
|
|
|
|
|
|
|
|
Cpp_Token *args_start_token = token+1;
|
|
|
|
|
2016-09-02 23:49:01 +00:00
|
|
|
function_set.items[sig_count].name = make_string(data + token->start, token->size);
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t size = token->start - ret_start_token->start;
|
2016-07-16 18:40:26 +00:00
|
|
|
String ret = make_string(data + ret_start_token->start, size);
|
2016-07-06 19:18:10 +00:00
|
|
|
ret = chop_whitespace(ret);
|
2016-09-02 23:49:01 +00:00
|
|
|
function_set.items[sig_count].ret = ret;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
|
|
|
for (; i < count; ++i, ++token){
|
|
|
|
if (token->type == CPP_TOKEN_PARENTHESE_CLOSE){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i < count){
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t size = token->start + token->size - args_start_token->start;;
|
2016-09-02 23:49:01 +00:00
|
|
|
function_set.items[sig_count].args =
|
2016-07-16 18:40:26 +00:00
|
|
|
make_string(data + args_start_token->start, size);
|
2016-09-02 23:49:01 +00:00
|
|
|
function_set.items[sig_count].t = Item_Function;
|
2016-07-06 19:18:10 +00:00
|
|
|
result = true;
|
2016-06-27 15:52:58 +00:00
|
|
|
|
2016-09-02 23:49:01 +00:00
|
|
|
Argument_Breakdown *breakdown = &function_set.items[sig_count].breakdown;
|
2016-07-16 18:40:26 +00:00
|
|
|
*breakdown = do_parameter_parse(data, args_start_token, token);
|
2016-08-28 04:31:06 +00:00
|
|
|
|
2016-09-02 23:49:01 +00:00
|
|
|
function_set.items[sig_count].cpp_name = cpp_name;
|
2016-07-06 19:18:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*index = i;
|
|
|
|
*token_ptr = token;
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
static int32_t
|
|
|
|
do_full_function_parse(int32_t *index, Cpp_Token **token_ptr, int32_t count, char *data,
|
2016-09-02 23:49:01 +00:00
|
|
|
Item_Set function_set, int32_t sig_count, String cpp_name){
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t result = false;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t i = *index;
|
2016-07-06 19:18:10 +00:00
|
|
|
Cpp_Token *token = *token_ptr;
|
|
|
|
|
|
|
|
{
|
2016-09-02 23:49:01 +00:00
|
|
|
function_set.items[sig_count].marker = make_string(data + token->start, token->size);
|
2016-06-27 15:52:58 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t j = i;
|
2016-07-06 19:18:10 +00:00
|
|
|
Cpp_Token *jtoken = token;
|
2016-06-27 15:52:58 +00:00
|
|
|
|
2016-07-06 19:18:10 +00:00
|
|
|
if (do_function_parse_check(&j, &jtoken, count)){
|
|
|
|
if (token->type == CPP_TOKEN_IDENTIFIER){
|
|
|
|
String doc_string = {0};
|
2016-07-16 18:40:26 +00:00
|
|
|
if (do_function_get_doc(&j, &jtoken, count, data, &doc_string)){
|
2016-09-02 23:49:01 +00:00
|
|
|
function_set.items[sig_count].doc_string = doc_string;
|
2016-07-06 19:18:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-06-27 15:52:58 +00:00
|
|
|
|
2016-07-06 19:18:10 +00:00
|
|
|
++i, ++token;
|
|
|
|
if (i < count){
|
|
|
|
Cpp_Token *ret_start_token = token;
|
|
|
|
if (do_function_parse_check(&i, &token, count)){
|
|
|
|
if (do_function_parse(&i, &token, count, ret_start_token,
|
2016-08-28 04:31:06 +00:00
|
|
|
data, function_set, sig_count, cpp_name)){
|
2016-07-06 19:18:10 +00:00
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*index = i;
|
|
|
|
*token_ptr = token;
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
static int32_t
|
|
|
|
do_macro_parse_check(int32_t *index, Cpp_Token **token_ptr, int32_t count){
|
|
|
|
int32_t result = false;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t i = *index;
|
2016-07-06 19:18:10 +00:00
|
|
|
Cpp_Token *token = *token_ptr;
|
|
|
|
|
|
|
|
{
|
|
|
|
++i, ++token;
|
|
|
|
if (i < count){
|
|
|
|
if (token->type == CPP_TOKEN_COMMENT){
|
|
|
|
++i, ++token;
|
|
|
|
if (i < count){
|
|
|
|
if (token->type == CPP_PP_DEFINE){
|
|
|
|
result = true;
|
2016-06-27 15:52:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-06 19:18:10 +00:00
|
|
|
*index = i;
|
|
|
|
*token_ptr = token;
|
2016-06-27 15:52:58 +00:00
|
|
|
|
2016-07-06 19:18:10 +00:00
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
static int32_t
|
|
|
|
do_macro_parse(int32_t *index, Cpp_Token **token_ptr, int32_t count,
|
2016-09-02 23:49:01 +00:00
|
|
|
char *data, Item_Set macro_set, int32_t sig_count){
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t result = false;
|
2016-06-27 15:52:58 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t i = *index;
|
2016-07-06 19:18:10 +00:00
|
|
|
Cpp_Token *token = *token_ptr;
|
2016-06-27 15:52:58 +00:00
|
|
|
|
2016-07-06 19:18:10 +00:00
|
|
|
if (i > 0){
|
|
|
|
Cpp_Token *doc_token = token-1;
|
2016-06-27 15:52:58 +00:00
|
|
|
|
2016-07-16 18:40:26 +00:00
|
|
|
String doc_string = make_string(data + doc_token->start, doc_token->size);
|
2016-06-27 15:52:58 +00:00
|
|
|
|
2016-07-12 22:17:45 +00:00
|
|
|
if (check_and_fix_docs(&doc_string)){
|
2016-09-02 23:49:01 +00:00
|
|
|
macro_set.items[sig_count].doc_string = doc_string;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-07-12 22:17:45 +00:00
|
|
|
for (; i < count; ++i, ++token){
|
|
|
|
if (token->type == CPP_TOKEN_IDENTIFIER){
|
|
|
|
break;
|
2016-07-06 19:18:10 +00:00
|
|
|
}
|
2016-07-12 22:17:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (i < count && (token->flags & CPP_TFLAG_PP_BODY)){
|
2016-09-02 23:49:01 +00:00
|
|
|
macro_set.items[sig_count].name = make_string(data + token->start, token->size);
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-07-12 22:17:45 +00:00
|
|
|
++i, ++token;
|
2016-07-06 19:18:10 +00:00
|
|
|
if (i < count){
|
2016-07-12 22:17:45 +00:00
|
|
|
Cpp_Token *args_start_token = token;
|
|
|
|
for (; i < count; ++i, ++token){
|
|
|
|
if (token->type == CPP_TOKEN_PARENTHESE_CLOSE){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
if (i < count){
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t start = args_start_token->start;
|
|
|
|
int32_t end = token->start + token->size;
|
2016-09-02 23:49:01 +00:00
|
|
|
macro_set.items[sig_count].args = make_string(data + start, end - start);
|
2016-06-27 15:52:58 +00:00
|
|
|
|
2016-09-02 23:49:01 +00:00
|
|
|
Argument_Breakdown *breakdown = ¯o_set.items[sig_count].breakdown;
|
2016-07-16 18:40:26 +00:00
|
|
|
*breakdown = do_parameter_parse(data, args_start_token, token);
|
2016-07-12 22:17:45 +00:00
|
|
|
|
|
|
|
++i, ++token;
|
|
|
|
if (i < count){
|
|
|
|
Cpp_Token *body_start = token;
|
|
|
|
|
|
|
|
if (body_start->flags & CPP_TFLAG_PP_BODY){
|
|
|
|
for (; i < count; ++i, ++token){
|
|
|
|
if (!(token->flags & CPP_TFLAG_PP_BODY)){
|
|
|
|
break;
|
|
|
|
}
|
2016-06-27 15:52:58 +00:00
|
|
|
}
|
2016-07-12 22:17:45 +00:00
|
|
|
|
|
|
|
--i, --token;
|
|
|
|
|
|
|
|
Cpp_Token *body_end = token;
|
|
|
|
|
|
|
|
start = body_start->start;
|
|
|
|
end = body_end->start + body_end->size;
|
2016-09-02 23:49:01 +00:00
|
|
|
macro_set.items[sig_count].body = make_string(data + start, end - start);
|
2016-06-27 15:52:58 +00:00
|
|
|
}
|
|
|
|
}
|
2016-07-12 22:17:45 +00:00
|
|
|
|
2016-09-02 23:49:01 +00:00
|
|
|
macro_set.items[sig_count].t = Item_Macro;
|
2016-07-12 22:17:45 +00:00
|
|
|
result = true;
|
2016-06-27 15:52:58 +00:00
|
|
|
}
|
2016-07-06 19:18:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*index = i;
|
|
|
|
*token_ptr = token;
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
typedef struct String_Function_Marker{
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t parse_function;
|
|
|
|
int32_t is_inline;
|
|
|
|
int32_t parse_doc;
|
|
|
|
int32_t cpp_name;
|
2016-09-02 19:39:38 +00:00
|
|
|
} String_Function_Marker;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
|
|
|
static String_Function_Marker
|
|
|
|
do_string_function_marker_check(String lexeme){
|
|
|
|
String_Function_Marker result = {0};
|
|
|
|
|
2016-08-28 04:31:06 +00:00
|
|
|
if (match_ss(lexeme, make_lit_string("FSTRING_INLINE"))){
|
2016-07-06 19:18:10 +00:00
|
|
|
result.is_inline = true;
|
|
|
|
result.parse_function = true;
|
|
|
|
}
|
2016-08-28 04:31:06 +00:00
|
|
|
else if (match_ss(lexeme, make_lit_string("FSTRING_LINK"))){
|
2016-07-06 19:18:10 +00:00
|
|
|
result.parse_function = true;
|
|
|
|
}
|
2016-08-28 04:31:06 +00:00
|
|
|
else if (match_ss(lexeme, make_lit_string("DOC_EXPORT"))){
|
2016-07-06 19:18:10 +00:00
|
|
|
result.parse_doc = true;
|
|
|
|
}
|
2016-08-28 04:31:06 +00:00
|
|
|
else if (match_ss(lexeme, make_lit_string("CPP_NAME"))){
|
|
|
|
result.cpp_name = true;
|
|
|
|
}
|
2016-07-06 19:18:10 +00:00
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static String
|
2016-08-29 01:03:26 +00:00
|
|
|
get_string(char *data, int32_t start, int32_t end){
|
2016-07-06 19:18:10 +00:00
|
|
|
return(make_string(data + start, end - start));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
print_str(FILE *file, String str){
|
|
|
|
if (str.size > 0){
|
|
|
|
fprintf(file, "%.*s", str.size, str.str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-08-29 01:03:26 +00:00
|
|
|
print_function_body_code(FILE *file, int32_t *index, Cpp_Token **token_ptr, int32_t count, String *code,
|
|
|
|
int32_t start){
|
|
|
|
int32_t i = *index;
|
2016-07-06 19:18:10 +00:00
|
|
|
Cpp_Token *token = *token_ptr;
|
|
|
|
|
|
|
|
String pstr = {0};
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t nest_level = 0;
|
|
|
|
int32_t finish = false;
|
|
|
|
int32_t do_whitespace_print = false;
|
2016-07-06 19:18:10 +00:00
|
|
|
for (; i < count; ++i, ++token){
|
|
|
|
if (do_whitespace_print){
|
|
|
|
pstr = get_string(code->str, start, token->start);
|
|
|
|
print_str(file, pstr);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
do_whitespace_print = true;
|
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t do_print = true;
|
2016-07-06 19:18:10 +00:00
|
|
|
if (token->type == CPP_TOKEN_COMMENT){
|
|
|
|
String lexeme = make_string(code->str + token->start, token->size);
|
|
|
|
if (check_and_fix_docs(&lexeme)){
|
|
|
|
do_print = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (token->type == CPP_TOKEN_BRACE_OPEN){
|
|
|
|
++nest_level;
|
|
|
|
}
|
|
|
|
else if (token->type == CPP_TOKEN_BRACE_CLOSE){
|
|
|
|
--nest_level;
|
|
|
|
if (nest_level == 0){
|
|
|
|
finish = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i < count){
|
|
|
|
if (do_print){
|
|
|
|
pstr = make_string(code->str + token->start, token->size);
|
|
|
|
print_str(file, pstr);
|
|
|
|
}
|
|
|
|
|
|
|
|
start = token->start + token->size;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (finish){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*index = i;
|
|
|
|
*token_ptr = token;
|
|
|
|
}
|
|
|
|
|
2016-07-12 22:17:45 +00:00
|
|
|
static void
|
|
|
|
print_function_docs(FILE *file, Partition *part, String name, String doc_string){
|
|
|
|
if (doc_string.size == 0){
|
|
|
|
fprintf(file, "No documentation generated for this function, assume it is non-public.\n");
|
|
|
|
fprintf(stderr, "warning: no documentation string for %.*s\n", name.size, name.str);
|
|
|
|
}
|
|
|
|
|
|
|
|
Documentation doc_ = {0};
|
|
|
|
Documentation *doc = &doc_;
|
|
|
|
|
|
|
|
perform_doc_parse(part, doc_string, doc);
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t doc_param_count = doc->param_count;
|
2016-07-12 22:17:45 +00:00
|
|
|
if (doc_param_count > 0){
|
|
|
|
fprintf(file, DOC_HEAD_OPEN"Parameters"DOC_HEAD_CLOSE);
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t j = 0; j < doc_param_count; ++j){
|
2016-07-12 22:17:45 +00:00
|
|
|
String param_name = doc->param_name[j];
|
|
|
|
String param_docs = doc->param_docs[j];
|
|
|
|
|
|
|
|
// TODO(allen): check that param_name is actually
|
|
|
|
// a parameter to this function!
|
|
|
|
|
|
|
|
fprintf(file,
|
|
|
|
"<div>\n"
|
|
|
|
DOC_ITEM_HEAD_OPEN"%.*s"DOC_ITEM_HEAD_CLOSE"\n"
|
|
|
|
"<div style='margin-bottom: 6mm;'>"DOC_ITEM_OPEN"%.*s"DOC_ITEM_CLOSE"</div>\n"
|
|
|
|
"</div>\n",
|
|
|
|
param_name.size, param_name.str,
|
|
|
|
param_docs.size, param_docs.str
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
String ret_doc = doc->return_doc;
|
|
|
|
if (ret_doc.size != 0){
|
|
|
|
fprintf(file, DOC_HEAD_OPEN"Return"DOC_HEAD_CLOSE);
|
|
|
|
fprintf(file,
|
|
|
|
DOC_ITEM_OPEN"%.*s"DOC_ITEM_CLOSE,
|
|
|
|
ret_doc.size, ret_doc.str
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
String main_doc = doc->main_doc;
|
|
|
|
if (main_doc.size != 0){
|
|
|
|
fprintf(file, DOC_HEAD_OPEN"Description"DOC_HEAD_CLOSE);
|
|
|
|
fprintf(file,
|
|
|
|
DOC_ITEM_OPEN"%.*s"DOC_ITEM_CLOSE,
|
|
|
|
main_doc.size, main_doc.str
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
print_see_also(file, doc);
|
|
|
|
}
|
|
|
|
|
2016-09-02 19:39:38 +00:00
|
|
|
typedef struct App_API_Name{
|
|
|
|
String macro;
|
|
|
|
String public_name;
|
|
|
|
} App_API_Name;
|
|
|
|
|
|
|
|
typedef struct App_API{
|
|
|
|
App_API_Name *names;
|
|
|
|
} App_API;
|
|
|
|
|
|
|
|
static App_API
|
|
|
|
allocate_app_api(int32_t count){
|
|
|
|
App_API app_api = {0};
|
|
|
|
int32_t memory_size = sizeof(App_API_Name)*count;
|
|
|
|
app_api.names = (App_API_Name*)malloc(memory_size);
|
|
|
|
memset(app_api.names, 0, memory_size);
|
|
|
|
return(app_api);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-07-06 19:18:10 +00:00
|
|
|
generate_custom_headers(){
|
|
|
|
#define API_H "4coder_custom_api.h"
|
2016-08-30 19:30:41 +00:00
|
|
|
#define OS_API_H "4ed_os_custom_api.h"
|
2016-07-06 19:18:10 +00:00
|
|
|
#define API_DOC "4coder_API.html"
|
|
|
|
#define STRING_H "4coder_string.h"
|
|
|
|
|
2016-08-30 19:30:41 +00:00
|
|
|
int32_t size = (512 << 20);
|
2016-07-06 19:18:10 +00:00
|
|
|
void *mem = malloc(size);
|
|
|
|
memset(mem, 0, size);
|
|
|
|
|
|
|
|
Partition part_ = make_part(mem, size);
|
|
|
|
Partition *part = &part_;
|
|
|
|
|
2016-09-02 23:14:25 +00:00
|
|
|
Parse string_parse = meta_parse("internal_4coder_string.cpp");
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t string_function_count = 0;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
|
|
|
{
|
2016-09-02 23:14:25 +00:00
|
|
|
char *data = string_parse.code.str;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-09-02 23:14:25 +00:00
|
|
|
int32_t count = string_parse.tokens.count;
|
|
|
|
Cpp_Token *tokens = string_parse.tokens.tokens;
|
2016-07-06 19:18:10 +00:00
|
|
|
Cpp_Token *token = tokens;
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t i = 0; i < count; ++i, ++token){
|
2016-07-06 19:18:10 +00:00
|
|
|
if (token->type == CPP_TOKEN_IDENTIFIER &&
|
|
|
|
!(token->flags & CPP_TFLAG_PP_BODY)){
|
2016-07-16 18:40:26 +00:00
|
|
|
String lexeme = make_string(data + token->start, token->size);
|
2016-07-06 19:18:10 +00:00
|
|
|
|
|
|
|
String_Function_Marker marker =
|
|
|
|
do_string_function_marker_check(lexeme);
|
|
|
|
|
|
|
|
if (marker.parse_function){
|
|
|
|
if (do_function_parse_check(&i, &token, count)){
|
|
|
|
++string_function_count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (marker.parse_doc){
|
|
|
|
if (do_macro_parse_check(&i, &token, count)){
|
|
|
|
++string_function_count;
|
2016-06-27 15:52:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-07-06 19:18:10 +00:00
|
|
|
}
|
|
|
|
|
2016-09-02 23:49:01 +00:00
|
|
|
Item_Set string_function_set = allocate_item_set(part, string_function_count);
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t string_sig_count = 0;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
|
|
|
{
|
2016-09-02 23:14:25 +00:00
|
|
|
String *code = &string_parse.code;
|
|
|
|
Cpp_Token_Stack *token_stack = &string_parse.tokens;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-07-16 18:40:26 +00:00
|
|
|
char *data = code->str;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t count = token_stack->count;
|
2016-07-06 19:18:10 +00:00
|
|
|
Cpp_Token *tokens = token_stack->tokens;
|
|
|
|
Cpp_Token *token = tokens;
|
|
|
|
|
2016-08-28 04:31:06 +00:00
|
|
|
String cpp_name = {0};
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t has_cpp_name = 0;
|
2016-08-28 04:31:06 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t i = 0; i < count; ++i, ++token){
|
2016-07-06 19:18:10 +00:00
|
|
|
if (token->type == CPP_TOKEN_IDENTIFIER &&
|
|
|
|
!(token->flags & CPP_TFLAG_PP_BODY)){
|
2016-07-16 18:40:26 +00:00
|
|
|
String lexeme = make_string(data + token->start, token->size);
|
2016-07-06 19:18:10 +00:00
|
|
|
|
|
|
|
String_Function_Marker marker =
|
|
|
|
do_string_function_marker_check(lexeme);
|
|
|
|
|
2016-08-28 04:31:06 +00:00
|
|
|
if (marker.cpp_name){
|
|
|
|
if (do_parse_cpp_name(&i, &token, count, data, &cpp_name)){
|
|
|
|
has_cpp_name = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (marker.parse_function){
|
2016-07-16 18:40:26 +00:00
|
|
|
if (do_full_function_parse(&i, &token, count, data,
|
2016-08-28 04:31:06 +00:00
|
|
|
string_function_set, string_sig_count,
|
|
|
|
cpp_name)){
|
2016-07-06 19:18:10 +00:00
|
|
|
++string_sig_count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (marker.parse_doc){
|
|
|
|
if (do_macro_parse_check(&i, &token, count)){
|
2016-07-16 18:40:26 +00:00
|
|
|
do_macro_parse(&i, &token, count, data,
|
|
|
|
string_function_set, string_sig_count);
|
2016-07-06 19:18:10 +00:00
|
|
|
++string_sig_count;
|
|
|
|
}
|
|
|
|
}
|
2016-08-28 04:31:06 +00:00
|
|
|
|
|
|
|
if (has_cpp_name){
|
|
|
|
has_cpp_name = 0;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
cpp_name = string_zero();
|
|
|
|
}
|
2016-07-06 19:18:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// App API parsing
|
|
|
|
//
|
|
|
|
|
|
|
|
Parse parses[2];
|
2016-09-02 23:14:25 +00:00
|
|
|
parses[0] = meta_parse("4ed_api_implementation.cpp");
|
|
|
|
parses[1] = meta_parse("win32_api_impl.cpp");
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t line_count = 0;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t J = 0; J < 2; ++J){
|
2016-07-06 19:18:10 +00:00
|
|
|
Parse *parse = &parses[J];
|
|
|
|
|
2016-09-02 23:14:25 +00:00
|
|
|
char *data = parse->code.str;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t count = parse->tokens.count;
|
2016-07-06 19:18:10 +00:00
|
|
|
Cpp_Token *tokens = parse->tokens.tokens;
|
|
|
|
Cpp_Token *token = tokens;
|
2016-06-27 15:52:58 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t i = 0; i < count; ++i, ++token){
|
2016-06-27 15:52:58 +00:00
|
|
|
if (token->type == CPP_TOKEN_IDENTIFIER &&
|
|
|
|
!(token->flags & CPP_TFLAG_PP_BODY)){
|
2016-07-16 18:40:26 +00:00
|
|
|
String lexeme = make_string(data + token->start, token->size);
|
2016-08-28 04:31:06 +00:00
|
|
|
if (match_ss(lexeme, make_lit_string("API_EXPORT"))){
|
2016-07-06 19:18:10 +00:00
|
|
|
if (do_function_parse_check(&i, &token, count)){
|
|
|
|
++line_count;
|
2016-06-27 15:52:58 +00:00
|
|
|
}
|
2016-07-06 19:18:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-02 23:49:01 +00:00
|
|
|
Item_Set function_set = allocate_item_set(part, line_count);
|
2016-09-02 19:39:38 +00:00
|
|
|
App_API func_4ed_names = allocate_app_api(line_count);
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t sig_count = 0;
|
2016-08-30 19:30:41 +00:00
|
|
|
int32_t sig_count_per_file[2];
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t J = 0; J < 2; ++J){
|
2016-07-06 19:18:10 +00:00
|
|
|
Parse *parse = &parses[J];
|
|
|
|
|
2016-09-02 23:14:25 +00:00
|
|
|
char *data = parse->code.str;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t count = parse->tokens.count;
|
2016-07-06 19:18:10 +00:00
|
|
|
Cpp_Token *tokens = parse->tokens.tokens;
|
|
|
|
|
|
|
|
// NOTE(allen): Header Parse
|
|
|
|
Cpp_Token *token = tokens;
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t i = 0; i < count; ++i, ++token){
|
2016-07-06 19:18:10 +00:00
|
|
|
if (token->type == CPP_TOKEN_IDENTIFIER &&
|
|
|
|
!(token->flags & CPP_TFLAG_PP_BODY)){
|
2016-07-16 18:40:26 +00:00
|
|
|
String lexeme = make_string(data + token->start, token->size);
|
2016-08-28 04:31:06 +00:00
|
|
|
if (match_ss(lexeme, make_lit_string("API_EXPORT"))){
|
|
|
|
do_full_function_parse(&i, &token, count, data, function_set,
|
|
|
|
sig_count, string_zero());
|
2016-09-02 23:49:01 +00:00
|
|
|
if (function_set.items[sig_count].t == Item_Null){
|
|
|
|
function_set.items[sig_count] = null_item_node;
|
2016-07-06 19:18:10 +00:00
|
|
|
// TODO(allen): get warning file name and line numbers
|
|
|
|
fprintf(stderr, "generator warning : invalid function signature\n");
|
2016-06-27 15:52:58 +00:00
|
|
|
}
|
2016-07-06 19:18:10 +00:00
|
|
|
++sig_count;
|
2016-06-27 15:52:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-08-30 19:30:41 +00:00
|
|
|
|
|
|
|
++sig_count_per_file[J] = sig_count;
|
2016-06-27 15:52:58 +00:00
|
|
|
}
|
2016-05-25 22:43:58 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t i = 0; i < sig_count; ++i){
|
2016-09-02 23:49:01 +00:00
|
|
|
String name_string = function_set.items[i].name;
|
2016-09-02 19:39:38 +00:00
|
|
|
String *macro = &func_4ed_names.names[i].macro;
|
|
|
|
String *public_name = &func_4ed_names.names[i].public_name;
|
2016-05-25 22:43:58 +00:00
|
|
|
|
2016-06-24 19:33:37 +00:00
|
|
|
macro->size = 0;
|
|
|
|
macro->memory_size = name_string.size+4;
|
2016-05-25 22:43:58 +00:00
|
|
|
|
2016-06-24 19:33:37 +00:00
|
|
|
macro->str = (char*)malloc(macro->memory_size);
|
2016-08-28 04:31:06 +00:00
|
|
|
copy_ss(macro, name_string);
|
2016-09-02 17:01:52 +00:00
|
|
|
to_upper_s(macro);
|
2016-08-28 04:31:06 +00:00
|
|
|
append_ss(macro, make_lit_string("_SIG"));
|
2016-06-24 19:33:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
public_name->size = 0;
|
|
|
|
public_name->memory_size = name_string.size;
|
|
|
|
|
|
|
|
public_name->str = (char*)malloc(public_name->memory_size);
|
2016-08-28 04:31:06 +00:00
|
|
|
copy_ss(public_name, name_string);
|
2016-09-02 17:01:52 +00:00
|
|
|
to_lower_s(public_name);
|
2016-06-24 19:33:37 +00:00
|
|
|
}
|
|
|
|
|
2016-06-27 15:52:58 +00:00
|
|
|
// NOTE(allen): Header
|
2016-08-30 19:30:41 +00:00
|
|
|
FILE *file = fopen(OS_API_H, "wb");
|
|
|
|
|
|
|
|
int32_t main_api_count = sig_count_per_file[0];
|
|
|
|
for (int32_t i = main_api_count; i < sig_count; ++i){
|
2016-09-02 23:49:01 +00:00
|
|
|
String ret_string = function_set.items[i].ret;
|
|
|
|
String args_string = function_set.items[i].args;
|
2016-09-02 19:39:38 +00:00
|
|
|
String macro_string = func_4ed_names.names[i].macro;
|
2016-08-30 19:30:41 +00:00
|
|
|
|
|
|
|
fprintf(file, "#define %.*s(n) %.*s n%.*s\n",
|
|
|
|
macro_string.size, macro_string.str,
|
|
|
|
ret_string.size, ret_string.str,
|
|
|
|
args_string.size, args_string.str);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int32_t i = main_api_count; i < sig_count; ++i){
|
2016-09-02 23:49:01 +00:00
|
|
|
String name_string = function_set.items[i].name;
|
2016-09-02 19:39:38 +00:00
|
|
|
String macro_string = func_4ed_names.names[i].macro;
|
2016-08-30 19:30:41 +00:00
|
|
|
|
|
|
|
fprintf(file, "typedef %.*s(%.*s_Function);\n",
|
|
|
|
macro_string.size, macro_string.str,
|
|
|
|
name_string.size, name_string.str);
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(file);
|
|
|
|
|
|
|
|
file = fopen(API_H, "wb");
|
2016-06-27 15:52:58 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t i = 0; i < sig_count; ++i){
|
2016-09-02 23:49:01 +00:00
|
|
|
String ret_string = function_set.items[i].ret;
|
|
|
|
String args_string = function_set.items[i].args;
|
2016-09-02 19:39:38 +00:00
|
|
|
String macro_string = func_4ed_names.names[i].macro;
|
2016-06-24 19:33:37 +00:00
|
|
|
|
|
|
|
fprintf(file, "#define %.*s(n) %.*s n%.*s\n",
|
|
|
|
macro_string.size, macro_string.str,
|
|
|
|
ret_string.size, ret_string.str,
|
2016-08-30 19:30:41 +00:00
|
|
|
args_string.size, args_string.str);
|
2016-05-25 22:43:58 +00:00
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t i = 0; i < sig_count; ++i){
|
2016-09-02 23:49:01 +00:00
|
|
|
String name_string = function_set.items[i].name;
|
2016-09-02 19:39:38 +00:00
|
|
|
String macro_string = func_4ed_names.names[i].macro;
|
2016-05-25 22:43:58 +00:00
|
|
|
|
2016-08-30 19:30:41 +00:00
|
|
|
fprintf(file, "typedef %.*s(%.*s_Function);\n",
|
2016-06-24 19:33:37 +00:00
|
|
|
macro_string.size, macro_string.str,
|
|
|
|
name_string.size, name_string.str);
|
2016-05-25 22:43:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(file, "struct Application_Links{\n");
|
|
|
|
fprintf(file,
|
|
|
|
" void *memory;\n"
|
2016-08-29 01:03:26 +00:00
|
|
|
" int32_t memory_size;\n"
|
2016-05-25 22:43:58 +00:00
|
|
|
);
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t i = 0; i < sig_count; ++i){
|
2016-09-02 23:49:01 +00:00
|
|
|
String name_string = function_set.items[i].name;
|
2016-09-02 19:39:38 +00:00
|
|
|
String public_string = func_4ed_names.names[i].public_name;
|
2016-05-25 22:43:58 +00:00
|
|
|
|
2016-06-24 19:33:37 +00:00
|
|
|
fprintf(file, " %.*s_Function *%.*s;\n",
|
|
|
|
name_string.size, name_string.str,
|
|
|
|
public_string.size, public_string.str);
|
2016-05-25 22:43:58 +00:00
|
|
|
}
|
|
|
|
fprintf(file,
|
|
|
|
" void *cmd_context;\n"
|
|
|
|
" void *system_links;\n"
|
|
|
|
" void *current_coroutine;\n"
|
2016-08-29 01:03:26 +00:00
|
|
|
" int32_t type_coroutine;\n"
|
2016-05-25 22:43:58 +00:00
|
|
|
);
|
|
|
|
fprintf(file, "};\n");
|
|
|
|
|
2016-06-13 18:54:26 +00:00
|
|
|
fprintf(file, "#define FillAppLinksAPI(app_links) do{");
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t i = 0; i < sig_count; ++i){
|
2016-09-02 23:49:01 +00:00
|
|
|
String name = function_set.items[i].name;
|
2016-09-02 19:39:38 +00:00
|
|
|
String public_string = func_4ed_names.names[i].public_name;
|
2016-05-31 01:22:55 +00:00
|
|
|
|
|
|
|
fprintf(file,
|
2016-06-13 16:56:33 +00:00
|
|
|
"\\\n"
|
2016-06-27 15:52:58 +00:00
|
|
|
"app_links->%.*s = %.*s;",
|
2016-06-24 19:33:37 +00:00
|
|
|
public_string.size, public_string.str,
|
2016-06-27 15:52:58 +00:00
|
|
|
name.size, name.str
|
2016-06-13 16:56:33 +00:00
|
|
|
);
|
2016-05-31 01:22:55 +00:00
|
|
|
}
|
2016-06-13 18:54:26 +00:00
|
|
|
fprintf(file, " } while(false)\n");
|
2016-06-07 18:52:40 +00:00
|
|
|
|
2016-05-25 22:43:58 +00:00
|
|
|
fclose(file);
|
|
|
|
|
2016-06-24 19:33:37 +00:00
|
|
|
// NOTE(allen): Documentation
|
2016-08-28 15:42:12 +00:00
|
|
|
{
|
2016-09-02 21:41:56 +00:00
|
|
|
Item_Set typedef_set = {0};
|
2016-09-02 23:14:25 +00:00
|
|
|
Item_Set struct_set = {0};
|
2016-09-02 21:41:56 +00:00
|
|
|
Item_Set flag_set = {0};
|
|
|
|
Item_Set enum_set = {0};
|
2016-07-02 14:15:15 +00:00
|
|
|
|
2016-09-02 23:14:25 +00:00
|
|
|
Parse type_parse[1];
|
|
|
|
type_parse[0] = meta_parse("4coder_types.h");
|
2016-07-02 14:15:15 +00:00
|
|
|
|
2016-09-02 23:14:25 +00:00
|
|
|
int32_t file_count = ArrayCount(type_parse);
|
2016-07-02 14:15:15 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t typedef_count = 0;
|
|
|
|
int32_t struct_count = 0;
|
|
|
|
int32_t flag_count = 0;
|
|
|
|
int32_t enum_count = 0;
|
2016-07-02 14:15:15 +00:00
|
|
|
|
2016-08-28 17:31:43 +00:00
|
|
|
static String type_spec_keys[] = {
|
|
|
|
make_lit_string("typedef"),
|
|
|
|
make_lit_string("struct"),
|
|
|
|
make_lit_string("union"),
|
|
|
|
make_lit_string("ENUM"),
|
|
|
|
make_lit_string("FLAGENUM"),
|
|
|
|
};
|
|
|
|
|
2016-09-02 23:14:25 +00:00
|
|
|
for (int32_t J = 0; J < file_count; ++J){
|
|
|
|
char *data = type_parse[J].code.str;
|
2016-08-28 17:31:43 +00:00
|
|
|
|
2016-09-02 23:14:25 +00:00
|
|
|
int32_t count = type_parse[J].tokens.count;
|
|
|
|
Cpp_Token *tokens = type_parse[J].tokens.tokens;
|
2016-07-02 14:15:15 +00:00
|
|
|
Cpp_Token *token = tokens;
|
2016-06-27 14:25:17 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t i = 0; i < count; ++i, ++token){
|
2016-07-02 14:15:15 +00:00
|
|
|
if (!(token->flags & CPP_TFLAG_PP_BODY) &&
|
|
|
|
(token->type == CPP_TOKEN_KEY_TYPE_DECLARATION ||
|
|
|
|
token->type == CPP_TOKEN_IDENTIFIER)){
|
|
|
|
|
2016-07-16 18:40:26 +00:00
|
|
|
String lexeme = make_string(data + token->start, token->size);
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t match_index = 0;
|
2016-07-02 14:15:15 +00:00
|
|
|
if (string_set_match(type_spec_keys, ArrayCount(type_spec_keys),
|
|
|
|
lexeme, &match_index)){
|
|
|
|
switch (match_index){
|
|
|
|
case 0: //typedef
|
|
|
|
++typedef_count; break;
|
|
|
|
|
|
|
|
case 1: case 2: //struct/union
|
|
|
|
++struct_count; break;
|
|
|
|
|
|
|
|
case 3: //ENUM
|
|
|
|
++enum_count; break;
|
|
|
|
|
|
|
|
case 4: //FLAGENUM
|
|
|
|
++flag_count; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-08-28 17:31:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (typedef_count > 0){
|
2016-09-02 23:49:01 +00:00
|
|
|
typedef_set = allocate_item_set(part, typedef_count);
|
2016-08-28 17:31:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (struct_count > 0){
|
2016-09-02 23:49:01 +00:00
|
|
|
struct_set = allocate_item_set(part, struct_count);
|
2016-08-28 17:31:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (enum_count > 0){
|
2016-09-02 23:49:01 +00:00
|
|
|
enum_set = allocate_item_set(part, enum_count);
|
2016-08-28 17:31:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (flag_count > 0){
|
2016-09-02 23:49:01 +00:00
|
|
|
flag_set = allocate_item_set(part, flag_count);
|
2016-08-28 17:31:43 +00:00
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t typedef_index = 0;
|
|
|
|
int32_t struct_index = 0;
|
|
|
|
int32_t flag_index = 0;
|
|
|
|
int32_t enum_index = 0;
|
2016-08-28 17:31:43 +00:00
|
|
|
|
2016-09-02 23:14:25 +00:00
|
|
|
for (int32_t J = 0; J < file_count; ++J){
|
|
|
|
char *data = type_parse[J].code.str;
|
|
|
|
Cpp_Token_Stack types_tokens = type_parse[J].tokens;
|
2016-06-27 14:25:17 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t count = types_tokens.count;
|
2016-08-28 17:31:43 +00:00
|
|
|
Cpp_Token *tokens = types_tokens.tokens;
|
|
|
|
Cpp_Token *token = tokens;
|
2016-06-27 14:25:17 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t i = 0; i < count; ++i, ++token){
|
2016-08-30 19:30:41 +00:00
|
|
|
Assert(i == (int32_t)(token - tokens));
|
2016-07-02 14:15:15 +00:00
|
|
|
if (!(token->flags & CPP_TFLAG_PP_BODY) &&
|
|
|
|
(token->type == CPP_TOKEN_KEY_TYPE_DECLARATION ||
|
|
|
|
token->type == CPP_TOKEN_IDENTIFIER)){
|
|
|
|
|
2016-07-16 18:40:26 +00:00
|
|
|
String lexeme = make_string(data + token->start, token->size);
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t match_index = 0;
|
2016-07-02 14:15:15 +00:00
|
|
|
if (string_set_match(type_spec_keys, ArrayCount(type_spec_keys),
|
|
|
|
lexeme, &match_index)){
|
|
|
|
switch (match_index){
|
|
|
|
case 0: //typedef
|
|
|
|
{
|
2016-09-02 21:41:56 +00:00
|
|
|
if (parse_typedef(data, tokens, count, &token,
|
|
|
|
typedef_set, typedef_index)){
|
2016-07-02 14:15:15 +00:00
|
|
|
++typedef_index;
|
|
|
|
}
|
2016-09-02 21:41:56 +00:00
|
|
|
i = (int32_t)(token - tokens);
|
2016-07-02 14:15:15 +00:00
|
|
|
}break;
|
|
|
|
|
|
|
|
case 1: case 2: //struct/union
|
|
|
|
{
|
|
|
|
if (parse_struct(part, (match_index == 1),
|
2016-07-16 18:40:26 +00:00
|
|
|
data, tokens, count, &token,
|
2016-09-02 23:14:25 +00:00
|
|
|
struct_set.items + struct_index)){
|
2016-07-02 14:15:15 +00:00
|
|
|
++struct_index;
|
|
|
|
}
|
2016-08-29 01:03:26 +00:00
|
|
|
i = (int32_t)(token - tokens);
|
2016-07-02 14:15:15 +00:00
|
|
|
}break;
|
|
|
|
|
|
|
|
case 3: //ENUM
|
|
|
|
{
|
2016-07-16 18:40:26 +00:00
|
|
|
if (parse_enum(part, data,
|
2016-09-02 21:41:56 +00:00
|
|
|
tokens, count, &token,
|
2016-07-02 14:15:15 +00:00
|
|
|
enum_set, enum_index)){
|
|
|
|
++enum_index;
|
|
|
|
}
|
2016-08-30 19:30:41 +00:00
|
|
|
i = (int32_t)(token - tokens);
|
2016-07-02 14:15:15 +00:00
|
|
|
}break;
|
|
|
|
|
|
|
|
case 4: //FLAGENUM
|
|
|
|
{
|
2016-07-16 18:40:26 +00:00
|
|
|
if (parse_enum(part, data,
|
2016-09-02 21:41:56 +00:00
|
|
|
tokens, count, &token,
|
2016-07-02 14:15:15 +00:00
|
|
|
flag_set, flag_index)){
|
|
|
|
++flag_index;
|
|
|
|
}
|
2016-08-30 19:30:41 +00:00
|
|
|
i = (int32_t)(token - tokens);
|
2016-07-02 14:15:15 +00:00
|
|
|
}break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-06-27 14:25:17 +00:00
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
typedef_count = typedef_index;
|
|
|
|
struct_count = struct_index;
|
|
|
|
enum_count = enum_index;
|
|
|
|
flag_count = flag_index;
|
2016-06-27 14:25:17 +00:00
|
|
|
}
|
2016-08-30 19:30:41 +00:00
|
|
|
|
2016-07-06 19:18:10 +00:00
|
|
|
//
|
|
|
|
// Output 4coder_string.h
|
|
|
|
//
|
|
|
|
|
|
|
|
file = fopen(STRING_H, "wb");
|
|
|
|
|
|
|
|
{
|
2016-09-02 23:14:25 +00:00
|
|
|
String *code = &string_parse.code;
|
|
|
|
Cpp_Token_Stack *token_stack = &string_parse.tokens;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t start = 0;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t count = token_stack->count;
|
2016-07-06 19:18:10 +00:00
|
|
|
Cpp_Token *tokens = token_stack->tokens;
|
|
|
|
Cpp_Token *token = tokens;
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t i = 0;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
|
|
|
for (i = 0; i < count; ++i, ++token){
|
|
|
|
if (token->type == CPP_TOKEN_IDENTIFIER &&
|
|
|
|
!(token->flags & CPP_TFLAG_PP_BODY)){
|
|
|
|
String lexeme = make_string(code->str + token->start, token->size);
|
2016-08-28 04:31:06 +00:00
|
|
|
if (match_ss(lexeme, make_lit_string("FSTRING_BEGIN"))){
|
2016-07-06 19:18:10 +00:00
|
|
|
start = token->start + token->size;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
String pstr = {0};
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t do_whitespace_print = true;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
|
|
|
for(++i, ++token; i < count; ++i, ++token){
|
|
|
|
if (do_whitespace_print){
|
|
|
|
pstr = get_string(code->str, start, token->start);
|
|
|
|
print_str(file, pstr);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
do_whitespace_print = true;
|
|
|
|
}
|
|
|
|
|
2016-08-28 04:31:06 +00:00
|
|
|
String lexeme = get_lexeme(*token, code->str);
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t do_print = true;
|
2016-08-28 04:31:06 +00:00
|
|
|
if (match_ss(lexeme, make_lit_string("FSTRING_DECLS"))){
|
|
|
|
fprintf(file, "#if !defined(FCODER_STRING_H)\n#define FCODER_STRING_H\n\n");
|
2016-07-06 19:18:10 +00:00
|
|
|
|
|
|
|
do_print = false;
|
2016-08-28 04:31:06 +00:00
|
|
|
|
|
|
|
#define RETURN_PADDING 16
|
|
|
|
#define SIG_PADDING 30
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t j = 0; j < string_sig_count; ++j){
|
2016-07-06 19:18:10 +00:00
|
|
|
char line_space[2048];
|
|
|
|
String line = make_fixed_width_string(line_space);
|
|
|
|
|
2016-09-02 23:49:01 +00:00
|
|
|
if (string_function_set.items[j].t != Item_Macro){
|
|
|
|
String marker = string_function_set.items[j].marker;
|
|
|
|
String ret = string_function_set.items[j].ret;
|
|
|
|
String name = string_function_set.items[j].name;
|
|
|
|
String args = string_function_set.items[j].args;
|
2016-09-02 19:39:38 +00:00
|
|
|
|
|
|
|
append_ss(&line, marker);
|
2016-08-28 04:31:06 +00:00
|
|
|
append_padding(&line, ' ', RETURN_PADDING);
|
2016-09-02 19:39:38 +00:00
|
|
|
append_ss(&line, ret);
|
2016-08-28 04:31:06 +00:00
|
|
|
append_padding(&line, ' ', SIG_PADDING);
|
2016-09-02 19:39:38 +00:00
|
|
|
append_ss(&line, name);
|
|
|
|
append_ss(&line, args);
|
|
|
|
terminate_with_null(&line);
|
|
|
|
|
|
|
|
fprintf(file, "%s;\n", line.str);
|
|
|
|
}
|
|
|
|
else{
|
2016-09-02 23:49:01 +00:00
|
|
|
String name = string_function_set.items[j].name;
|
|
|
|
String args = string_function_set.items[j].args;
|
|
|
|
String body = string_function_set.items[j].body;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
2016-08-28 04:31:06 +00:00
|
|
|
append_ss(&line, make_lit_string("#ifndef "));
|
2016-07-06 19:18:10 +00:00
|
|
|
append_padding(&line, ' ', 10);
|
2016-08-28 04:31:06 +00:00
|
|
|
append_ss(&line, name);
|
2016-07-06 19:18:10 +00:00
|
|
|
terminate_with_null(&line);
|
|
|
|
fprintf(file, "%s\n", line.str);
|
|
|
|
line.size = 0;
|
|
|
|
|
2016-08-28 04:31:06 +00:00
|
|
|
append_ss(&line, make_lit_string("# define "));
|
2016-07-06 19:18:10 +00:00
|
|
|
append_padding(&line, ' ', 10);
|
2016-08-28 04:31:06 +00:00
|
|
|
append_ss(&line, name);
|
|
|
|
append_ss(&line, args);
|
|
|
|
append_s_char(&line, ' ');
|
|
|
|
append_ss(&line, body);
|
2016-07-06 19:18:10 +00:00
|
|
|
terminate_with_null(&line);
|
|
|
|
fprintf(file, "%s\n", line.str);
|
|
|
|
line.size = 0;
|
|
|
|
|
2016-08-28 04:31:06 +00:00
|
|
|
append_ss(&line, make_lit_string("#endif"));
|
2016-07-06 19:18:10 +00:00
|
|
|
terminate_with_null(&line);
|
|
|
|
fprintf(file, "%s\n", line.str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-28 04:31:06 +00:00
|
|
|
{
|
|
|
|
fprintf(file, "\n#if !defined(FSTRING_C)\n\n"
|
|
|
|
"// NOTE(allen): This section is here to enable nicer names\n"
|
|
|
|
"// for C++ users who can have overloaded functions. None of\n"
|
|
|
|
"// these functions add new features.\n");
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t j = 0; j < string_sig_count; ++j){
|
2016-08-28 04:31:06 +00:00
|
|
|
char line_space[2048];
|
|
|
|
String line = make_fixed_width_string(line_space);
|
|
|
|
|
2016-09-02 23:49:01 +00:00
|
|
|
if (string_function_set.items[j].t != Item_Macro){
|
|
|
|
String cpp_name = string_function_set.items[j].cpp_name;
|
2016-08-28 04:31:06 +00:00
|
|
|
if (cpp_name.str != 0){
|
2016-09-02 23:49:01 +00:00
|
|
|
String ret = string_function_set.items[j].ret;
|
|
|
|
String args = string_function_set.items[j].args;
|
2016-08-28 04:31:06 +00:00
|
|
|
|
|
|
|
append_ss(&line, make_lit_string("FSTRING_INLINE"));
|
|
|
|
append_padding(&line, ' ', RETURN_PADDING);
|
|
|
|
append_ss(&line, ret);
|
|
|
|
append_padding(&line, ' ', SIG_PADDING);
|
|
|
|
append_ss(&line, cpp_name);
|
|
|
|
append_ss(&line, args);
|
|
|
|
terminate_with_null(&line);
|
|
|
|
|
|
|
|
fprintf(file, "%s;\n", line.str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(file, "\n#endif\n");
|
|
|
|
}
|
|
|
|
|
2016-07-06 19:18:10 +00:00
|
|
|
fprintf(file, "\n#endif\n");
|
2016-08-28 04:31:06 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
fprintf(file, "\n#if !defined(FSTRING_C) && !defined(FSTRING_GUARD)\n\n");
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t j = 0; j < string_sig_count; ++j){
|
2016-08-28 04:31:06 +00:00
|
|
|
char line_space[2048];
|
|
|
|
String line = make_fixed_width_string(line_space);
|
|
|
|
|
2016-09-02 23:49:01 +00:00
|
|
|
if (string_function_set.items[j].t != Item_Macro){
|
|
|
|
String cpp_name = string_function_set.items[j].cpp_name;
|
2016-08-28 04:31:06 +00:00
|
|
|
if (cpp_name.str != 0){
|
2016-09-02 23:49:01 +00:00
|
|
|
String name = string_function_set.items[j].name;
|
|
|
|
String ret = string_function_set.items[j].ret;
|
|
|
|
String args = string_function_set.items[j].args;
|
|
|
|
Argument_Breakdown breakdown = string_function_set.items[j].breakdown;
|
2016-08-28 04:31:06 +00:00
|
|
|
|
|
|
|
append_ss(&line, make_lit_string("FSTRING_INLINE"));
|
|
|
|
append_s_char(&line, ' ');
|
|
|
|
append_ss(&line, ret);
|
|
|
|
append_s_char(&line, '\n');
|
|
|
|
append_ss(&line, cpp_name);
|
|
|
|
append_ss(&line, args);
|
|
|
|
if (match_ss(ret, make_lit_string("void"))){
|
2016-08-28 15:42:12 +00:00
|
|
|
append_ss(&line, make_lit_string("{("));
|
2016-08-28 04:31:06 +00:00
|
|
|
}
|
|
|
|
else{
|
2016-08-28 15:42:12 +00:00
|
|
|
append_ss(&line, make_lit_string("{return("));
|
2016-08-28 04:31:06 +00:00
|
|
|
}
|
|
|
|
append_ss(&line, name);
|
|
|
|
append_s_char(&line, '(');
|
|
|
|
|
|
|
|
if (breakdown.count > 0){
|
|
|
|
for (int32_t i = 0; i < breakdown.count; ++i){
|
|
|
|
if (i != 0){
|
|
|
|
append_s_char(&line, ',');
|
|
|
|
}
|
2016-09-02 19:39:38 +00:00
|
|
|
append_ss(&line, breakdown.args[i].param_name);
|
2016-08-28 04:31:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
append_ss(&line, make_lit_string("void"));
|
|
|
|
}
|
|
|
|
|
|
|
|
append_ss(&line, make_lit_string("));}"));
|
|
|
|
terminate_with_null(&line);
|
|
|
|
|
|
|
|
fprintf(file, "%s\n", line.str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(file, "\n#endif\n");
|
|
|
|
}
|
2016-07-06 19:18:10 +00:00
|
|
|
}
|
2016-08-28 04:31:06 +00:00
|
|
|
else if (match_ss(lexeme, make_lit_string("DOC_EXPORT"))){
|
2016-07-06 19:18:10 +00:00
|
|
|
++i, ++token;
|
|
|
|
if (i < count && token->type == CPP_TOKEN_COMMENT){
|
|
|
|
++i, ++token;
|
|
|
|
if (i < count && token->type == CPP_PP_DEFINE){
|
|
|
|
++i, ++token;
|
|
|
|
for (; i < count; ++i, ++token){
|
|
|
|
if (!(token->flags & CPP_TFLAG_PP_BODY)){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--i, --token;
|
|
|
|
do_print = false;
|
|
|
|
do_whitespace_print = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-08-28 04:31:06 +00:00
|
|
|
else if (match_ss(lexeme, make_lit_string("FSTRING_INLINE"))){
|
2016-07-06 19:18:10 +00:00
|
|
|
if (!(token->flags & CPP_TFLAG_PP_BODY)){
|
2016-08-28 04:31:06 +00:00
|
|
|
fprintf(file, "#if !defined(FSTRING_GUARD)\n");
|
2016-07-06 19:18:10 +00:00
|
|
|
|
|
|
|
print_function_body_code(file, &i, &token, count, code, start);
|
|
|
|
|
|
|
|
fprintf(file, "\n#endif");
|
|
|
|
do_print = false;
|
|
|
|
}
|
|
|
|
}
|
2016-08-28 04:31:06 +00:00
|
|
|
else if (match_ss(lexeme, make_lit_string("FSTRING_LINK"))){
|
2016-07-06 19:18:10 +00:00
|
|
|
if (!(token->flags & CPP_TFLAG_PP_BODY)){
|
2016-08-28 04:31:06 +00:00
|
|
|
fprintf(file, "#if defined(FSTRING_IMPLEMENTATION)\n");
|
2016-07-06 19:18:10 +00:00
|
|
|
|
|
|
|
print_function_body_code(file, &i, &token, count, code, start);
|
|
|
|
|
|
|
|
fprintf(file, "\n#endif");
|
|
|
|
do_print = false;
|
|
|
|
}
|
|
|
|
}
|
2016-08-28 04:31:06 +00:00
|
|
|
else if (match_ss(lexeme, make_lit_string("CPP_NAME"))){
|
|
|
|
|
|
|
|
Cpp_Token *token_start = token;
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t i_start = i;
|
|
|
|
int32_t has_cpp_name = false;
|
2016-08-28 04:31:06 +00:00
|
|
|
|
|
|
|
++i, ++token;
|
|
|
|
if (token->type == CPP_TOKEN_PARENTHESE_OPEN){
|
|
|
|
++i, ++token;
|
|
|
|
if (token->type == CPP_TOKEN_IDENTIFIER){
|
|
|
|
++i, ++token;
|
|
|
|
if (token->type == CPP_TOKEN_PARENTHESE_CLOSE){
|
|
|
|
has_cpp_name = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!has_cpp_name){
|
|
|
|
i = i_start;
|
|
|
|
token = token_start;
|
|
|
|
}
|
|
|
|
|
|
|
|
do_print = false;
|
|
|
|
}
|
2016-07-06 19:18:10 +00:00
|
|
|
else if (token->type == CPP_TOKEN_COMMENT){
|
|
|
|
lexeme = make_string(code->str + token->start, token->size);
|
|
|
|
if (check_and_fix_docs(&lexeme)){
|
|
|
|
do_print = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i < count){
|
|
|
|
if (do_print){
|
|
|
|
pstr = make_string(code->str + token->start, token->size);
|
|
|
|
print_str(file, pstr);
|
|
|
|
}
|
|
|
|
|
|
|
|
start = token->start + token->size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pstr = get_string(code->str, start, code->size);
|
|
|
|
print_str(file, pstr);
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(file);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Output Docs
|
|
|
|
//
|
2016-07-02 14:15:15 +00:00
|
|
|
|
|
|
|
file = fopen(API_DOC, "wb");
|
2016-06-27 14:25:17 +00:00
|
|
|
|
2016-07-01 05:42:19 +00:00
|
|
|
fprintf(file,
|
2016-07-02 14:15:15 +00:00
|
|
|
"<html lang=\"en-US\">\n"
|
|
|
|
"<head>\n"
|
|
|
|
"<title>4coder API Docs</title>\n"
|
|
|
|
"<style>\n"
|
|
|
|
|
|
|
|
"body { "
|
|
|
|
"background: " BACK_COLOR "; "
|
|
|
|
"color: " TEXT_COLOR "; "
|
|
|
|
"}\n"
|
|
|
|
|
|
|
|
// H things
|
|
|
|
"h1,h2,h3,h4 { "
|
|
|
|
"color: " POP_COLOR_1 "; "
|
|
|
|
"margin: 0; "
|
|
|
|
"}\n"
|
|
|
|
|
2016-07-06 19:18:10 +00:00
|
|
|
"h2 { "
|
|
|
|
"margin-top: 6mm; "
|
|
|
|
"}\n"
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
"h3 { "
|
|
|
|
"margin-top: 5mm; margin-bottom: 5mm; "
|
|
|
|
"}\n"
|
|
|
|
|
|
|
|
"h4 { "
|
|
|
|
"font-size: 1.1em; "
|
|
|
|
"}\n"
|
|
|
|
|
|
|
|
// ANCHORS
|
|
|
|
"a { "
|
|
|
|
"color: " POP_COLOR_1 "; "
|
|
|
|
"text-decoration: none; "
|
|
|
|
"}\n"
|
|
|
|
"a:visited { "
|
|
|
|
"color: " VISITED_LINK "; "
|
|
|
|
"}\n"
|
|
|
|
"a:hover { "
|
|
|
|
"background: " POP_BACK_1 "; "
|
|
|
|
"}\n"
|
|
|
|
|
|
|
|
// LIST
|
|
|
|
"ul { "
|
|
|
|
"list-style: none; "
|
|
|
|
"padding: 0; "
|
|
|
|
"margin: 0; "
|
|
|
|
"}\n"
|
|
|
|
|
|
|
|
"</style>\n"
|
|
|
|
"</head>\n"
|
|
|
|
"<body>\n"
|
|
|
|
"<div style='font-family:Arial; margin: 0 auto; "
|
2016-07-02 14:56:50 +00:00
|
|
|
"width: 800px; text-align: justify; line-height: 1.25;'>\n"
|
2016-07-02 14:15:15 +00:00
|
|
|
"<h1 style='margin-top: 5mm; margin-bottom: 5mm;'>4coder API</h1>\n"
|
2016-07-01 05:42:19 +00:00
|
|
|
);
|
|
|
|
|
2016-07-06 19:18:10 +00:00
|
|
|
struct Section{
|
|
|
|
char *id_string;
|
|
|
|
char *display_string;
|
|
|
|
};
|
|
|
|
|
|
|
|
static Section sections[] = {
|
|
|
|
{"introduction", "Introduction"},
|
|
|
|
{"4coder_systems", "4coder Systems"},
|
|
|
|
{"types_and_functions", "Types and Functions"},
|
|
|
|
{"string_library", "String Library"}
|
|
|
|
};
|
|
|
|
|
|
|
|
fprintf(file,
|
|
|
|
"<h3 style='margin:0;'>Table of Contents</h3>\n"
|
|
|
|
"<ul>\n");
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t section_count = ArrayCount(sections);
|
|
|
|
for (int32_t i = 0; i < section_count; ++i){
|
2016-07-06 19:18:10 +00:00
|
|
|
fprintf(file,
|
|
|
|
"<li><a href='#section_%s'>§%d %s</a></li>",
|
|
|
|
sections[i].id_string,
|
|
|
|
i+1,
|
|
|
|
sections[i].display_string);
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(file,
|
|
|
|
"</ul>\n"
|
|
|
|
);
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
#define MAJOR_SECTION "1"
|
2016-07-01 05:42:19 +00:00
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
fprintf(file,
|
2016-07-06 19:18:10 +00:00
|
|
|
"<h2 id='section_%s'>§"MAJOR_SECTION" %s</h2>\n"
|
2016-07-02 14:15:15 +00:00
|
|
|
"<div>\n"
|
|
|
|
|
|
|
|
"<p>\n"
|
2016-07-02 14:56:50 +00:00
|
|
|
"This is the documentation for " VERSION " The documentation is still under "
|
|
|
|
"construction so some of the links are linking to sections that have not "
|
|
|
|
"been written yet. What is here should be correct and I suspect useful "
|
|
|
|
"even without some of the other sections. "
|
2016-07-02 14:15:15 +00:00
|
|
|
"</p>\n"
|
|
|
|
|
|
|
|
"<p>\n"
|
2016-07-02 14:56:50 +00:00
|
|
|
"If you have questions or discover errors please contact "
|
|
|
|
"<span style='"CODE_STYLE"'>editor@4coder.net</span> or "
|
|
|
|
"to get help from community members you can post on the "
|
|
|
|
"4coder forums hosted on handmade.network at "
|
|
|
|
"<span style='"CODE_STYLE"'>4coder.handmade.network</span>"
|
2016-07-02 14:15:15 +00:00
|
|
|
"</p>\n"
|
|
|
|
|
2016-07-06 19:18:10 +00:00
|
|
|
"</div>\n",
|
|
|
|
sections[0].id_string,
|
|
|
|
sections[0].display_string
|
|
|
|
);
|
2016-07-01 05:42:19 +00:00
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
#undef MAJOR_SECTION
|
|
|
|
#define MAJOR_SECTION "2"
|
|
|
|
// TODO(allen): Write the 4coder system descriptions.
|
2016-07-06 19:18:10 +00:00
|
|
|
fprintf(file,
|
|
|
|
"<h2 id='section_%s'>§"MAJOR_SECTION" %s</h2>\n",
|
|
|
|
sections[1].id_string,
|
|
|
|
sections[1].display_string);
|
2016-07-12 22:17:45 +00:00
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
{
|
2016-07-02 14:56:50 +00:00
|
|
|
fprintf(file,
|
2016-08-30 19:30:41 +00:00
|
|
|
"<div><i>\n"
|
|
|
|
"Coming Soon"
|
|
|
|
"</i><div>\n");
|
2016-07-01 05:42:19 +00:00
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
#undef MAJOR_SECTION
|
|
|
|
#define MAJOR_SECTION "3"
|
2016-07-01 05:42:19 +00:00
|
|
|
|
2016-07-06 19:18:10 +00:00
|
|
|
fprintf(file,
|
|
|
|
"<h2 id='section_%s'>§"MAJOR_SECTION" %s</h2>\n",
|
|
|
|
sections[2].id_string,
|
|
|
|
sections[2].display_string);
|
2016-07-02 14:15:15 +00:00
|
|
|
{
|
2016-07-01 05:42:19 +00:00
|
|
|
#undef SECTION
|
2016-07-02 14:15:15 +00:00
|
|
|
#define SECTION MAJOR_SECTION".1"
|
2016-06-27 14:25:17 +00:00
|
|
|
|
2016-06-27 19:45:15 +00:00
|
|
|
fprintf(file,
|
2016-07-02 14:15:15 +00:00
|
|
|
"<h3>§"SECTION" Function List</h3>\n"
|
|
|
|
"<ul>\n");
|
2016-06-27 14:25:17 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t i = 0; i < sig_count; ++i){
|
2016-09-02 19:39:38 +00:00
|
|
|
String name = func_4ed_names.names[i].public_name;
|
2016-07-02 14:15:15 +00:00
|
|
|
fprintf(file,
|
|
|
|
"<li>"
|
|
|
|
"<a href='#%.*s_doc'>%.*s</a>"
|
|
|
|
"</li>\n",
|
|
|
|
name.size, name.str,
|
|
|
|
name.size, name.str
|
|
|
|
);
|
2016-06-27 19:45:15 +00:00
|
|
|
}
|
2016-07-02 14:15:15 +00:00
|
|
|
fprintf(file, "</ul>\n");
|
|
|
|
|
|
|
|
#undef SECTION
|
|
|
|
#define SECTION MAJOR_SECTION".2"
|
2016-06-27 19:45:15 +00:00
|
|
|
|
|
|
|
fprintf(file,
|
2016-07-02 14:15:15 +00:00
|
|
|
"<h3>§"SECTION" Type List</h3>\n"
|
|
|
|
"<ul>\n"
|
|
|
|
);
|
2016-06-27 19:45:15 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t i = 0; i < typedef_count; ++i){
|
2016-09-02 20:02:29 +00:00
|
|
|
String name = typedef_set.items[i].name;
|
2016-07-02 14:15:15 +00:00
|
|
|
fprintf(file,
|
|
|
|
"<li>"
|
|
|
|
"<a href='#%.*s_doc'>%.*s</a>"
|
|
|
|
"</li>\n",
|
|
|
|
name.size, name.str,
|
|
|
|
name.size, name.str
|
|
|
|
);
|
2016-06-27 19:45:15 +00:00
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t i = 0; i < enum_count; ++i){
|
2016-09-02 20:02:29 +00:00
|
|
|
String name = enum_set.items[i].name;
|
2016-07-02 14:15:15 +00:00
|
|
|
fprintf(file,
|
|
|
|
"<li>"
|
|
|
|
"<a href='#%.*s_doc'>%.*s</a>"
|
|
|
|
"</li>\n",
|
|
|
|
name.size, name.str,
|
|
|
|
name.size, name.str
|
|
|
|
);
|
2016-06-27 19:45:15 +00:00
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t i = 0; i < flag_count; ++i){
|
2016-09-02 20:02:29 +00:00
|
|
|
String name = flag_set.items[i].name;
|
2016-06-27 19:45:15 +00:00
|
|
|
fprintf(file,
|
2016-07-02 14:15:15 +00:00
|
|
|
"<li>"
|
|
|
|
"<a href='#%.*s_doc'>%.*s</a>"
|
|
|
|
"</li>\n",
|
|
|
|
name.size, name.str,
|
|
|
|
name.size, name.str
|
2016-06-27 19:45:15 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t i = 0; i < struct_count; ++i){
|
2016-09-02 23:14:25 +00:00
|
|
|
String name = struct_set.items[i].name;
|
2016-06-27 19:45:15 +00:00
|
|
|
fprintf(file,
|
2016-07-02 14:15:15 +00:00
|
|
|
"<li>"
|
|
|
|
"<a href='#%.*s_doc'>%.*s</a>"
|
|
|
|
"</li>\n",
|
|
|
|
name.size, name.str,
|
|
|
|
name.size, name.str
|
2016-06-27 19:45:15 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
fprintf(file, "</ul>\n");
|
|
|
|
|
|
|
|
#undef SECTION
|
|
|
|
#define SECTION MAJOR_SECTION".3"
|
|
|
|
|
|
|
|
fprintf(file, "<h3>§"SECTION" Function Descriptions</h3>\n");
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t i = 0; i < sig_count; ++i){
|
2016-09-02 19:39:38 +00:00
|
|
|
String name = func_4ed_names.names[i].public_name;
|
2016-07-02 14:15:15 +00:00
|
|
|
|
|
|
|
fprintf(file,
|
|
|
|
"<div id='%.*s_doc' style='margin-bottom: 1cm;'>\n"
|
2016-07-12 22:17:45 +00:00
|
|
|
"<h4>§"SECTION".%d: %.*s</h4>\n"
|
|
|
|
"<div style='"CODE_STYLE" "DESCRIPT_SECTION_STYLE"'>",
|
2016-07-02 14:15:15 +00:00
|
|
|
name.size, name.str, i+1,
|
|
|
|
name.size, name.str
|
|
|
|
);
|
2016-09-02 23:49:01 +00:00
|
|
|
print_function_html(file, function_set.items[i], name, "app->");
|
2016-07-06 19:18:10 +00:00
|
|
|
fprintf(file, "</div>\n");
|
2016-06-27 19:45:15 +00:00
|
|
|
|
2016-09-02 23:49:01 +00:00
|
|
|
String doc_string = function_set.items[i].doc_string;
|
2016-07-12 22:17:45 +00:00
|
|
|
print_function_docs(file, part, name, doc_string);
|
2016-07-02 14:15:15 +00:00
|
|
|
|
|
|
|
fprintf(file, "</div><hr>\n");
|
2016-06-27 19:45:15 +00:00
|
|
|
}
|
|
|
|
|
2016-07-01 05:42:19 +00:00
|
|
|
#undef SECTION
|
2016-07-02 14:15:15 +00:00
|
|
|
#define SECTION MAJOR_SECTION".4"
|
2016-07-01 05:42:19 +00:00
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
fprintf(file, "<h3>§"SECTION" Type Descriptions</h3>\n");
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t I = 1;
|
|
|
|
for (int32_t i = 0; i < typedef_count; ++i, ++I){
|
2016-09-02 20:02:29 +00:00
|
|
|
String name = typedef_set.items[i].name;
|
|
|
|
String type = typedef_set.items[i].type;
|
2016-07-02 14:15:15 +00:00
|
|
|
|
2016-07-01 05:42:19 +00:00
|
|
|
fprintf(file,
|
2016-07-02 14:15:15 +00:00
|
|
|
"<div id='%.*s_doc' style='margin-bottom: 1cm;'>\n"
|
2016-07-12 22:17:45 +00:00
|
|
|
"<h4>§"SECTION".%d: %.*s</h4>\n"
|
|
|
|
"<div style='"CODE_STYLE" "DESCRIPT_SECTION_STYLE"'>",
|
2016-07-02 14:15:15 +00:00
|
|
|
name.size, name.str, I,
|
2016-07-01 05:42:19 +00:00
|
|
|
name.size, name.str
|
|
|
|
);
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
// NOTE(allen): Code box
|
|
|
|
{
|
|
|
|
fprintf(file,
|
|
|
|
"typedef %.*s %.*s;",
|
|
|
|
type.size, type.str,
|
|
|
|
name.size, name.str
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(file, "</div>\n");
|
|
|
|
|
|
|
|
// NOTE(allen): Descriptive section
|
|
|
|
{
|
2016-09-02 20:02:29 +00:00
|
|
|
String doc_string = typedef_set.items[i].doc_string;
|
2016-07-02 14:15:15 +00:00
|
|
|
Documentation doc = {0};
|
|
|
|
perform_doc_parse(part, doc_string, &doc);
|
|
|
|
|
|
|
|
String main_doc = doc.main_doc;
|
|
|
|
if (main_doc.size != 0){
|
|
|
|
fprintf(file, DOC_HEAD_OPEN"Description"DOC_HEAD_CLOSE);
|
|
|
|
fprintf(file,
|
|
|
|
DOC_ITEM_OPEN"%.*s"DOC_ITEM_CLOSE,
|
|
|
|
main_doc.size, main_doc.str
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
print_see_also(file, &doc);
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(file, "</div><hr>\n");
|
2016-07-01 05:42:19 +00:00
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t i = 0; i < enum_count; ++i, ++I){
|
2016-09-02 20:02:29 +00:00
|
|
|
String name = enum_set.items[i].name;
|
2016-07-02 14:15:15 +00:00
|
|
|
|
2016-07-01 05:42:19 +00:00
|
|
|
fprintf(file,
|
2016-07-02 14:15:15 +00:00
|
|
|
"<div id='%.*s_doc' style='margin-bottom: 1cm;'>\n"
|
2016-07-12 22:17:45 +00:00
|
|
|
"<h4>§"SECTION".%d: %.*s</h4>\n"
|
|
|
|
"<div style='"CODE_STYLE" "DESCRIPT_SECTION_STYLE"'>",
|
2016-07-02 14:15:15 +00:00
|
|
|
name.size, name.str, I,
|
|
|
|
name.size, name.str
|
|
|
|
);
|
|
|
|
|
|
|
|
// NOTE(allen): Code box
|
|
|
|
{
|
|
|
|
fprintf(file,
|
|
|
|
"enum %.*s;",
|
|
|
|
name.size, name.str);
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(file, "</div>\n");
|
|
|
|
|
|
|
|
// NOTE(allen): Descriptive section
|
|
|
|
{
|
2016-09-02 20:02:29 +00:00
|
|
|
String doc_string = enum_set.items[i].doc_string;
|
2016-07-02 14:15:15 +00:00
|
|
|
Documentation doc = {0};
|
|
|
|
perform_doc_parse(part, doc_string, &doc);
|
|
|
|
|
|
|
|
String main_doc = doc.main_doc;
|
|
|
|
if (main_doc.size != 0){
|
|
|
|
fprintf(file, DOC_HEAD_OPEN"Description"DOC_HEAD_CLOSE);
|
|
|
|
fprintf(file,
|
|
|
|
DOC_ITEM_OPEN"%.*s"DOC_ITEM_CLOSE,
|
|
|
|
main_doc.size, main_doc.str
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-09-02 20:02:29 +00:00
|
|
|
if (enum_set.items[i].first_child){
|
2016-07-02 14:15:15 +00:00
|
|
|
fprintf(file, DOC_HEAD_OPEN"Values"DOC_HEAD_CLOSE);
|
2016-09-02 20:02:29 +00:00
|
|
|
for (Item_Node *member = enum_set.items[i].first_child;
|
2016-07-02 14:15:15 +00:00
|
|
|
member;
|
2016-09-02 20:02:29 +00:00
|
|
|
member = member->next_sibling){
|
2016-07-02 14:15:15 +00:00
|
|
|
Documentation doc = {0};
|
|
|
|
perform_doc_parse(part, member->doc_string, &doc);
|
|
|
|
|
|
|
|
fprintf(file,
|
|
|
|
"<div>\n"
|
|
|
|
"<div><span style='"CODE_STYLE"'>"DOC_ITEM_HEAD_INL_OPEN
|
|
|
|
"%.*s"DOC_ITEM_HEAD_INL_CLOSE"</span></div>\n"
|
|
|
|
"<div style='margin-bottom: 6mm;'>"DOC_ITEM_OPEN"%.*s"DOC_ITEM_CLOSE"</div>\n"
|
|
|
|
"</div>\n",
|
|
|
|
member->name.size, member->name.str,
|
|
|
|
doc.main_doc.size, doc.main_doc.str
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
print_see_also(file, &doc);
|
|
|
|
}
|
2016-07-01 05:42:19 +00:00
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
fprintf(file, "</div><hr>\n");
|
2016-07-01 05:42:19 +00:00
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t i = 0; i < flag_count; ++i, ++I){
|
2016-09-02 20:02:29 +00:00
|
|
|
String name = flag_set.items[i].name;
|
2016-07-02 14:15:15 +00:00
|
|
|
|
2016-07-01 05:42:19 +00:00
|
|
|
fprintf(file,
|
2016-07-02 14:15:15 +00:00
|
|
|
"<div id='%.*s_doc' style='margin-bottom: 1cm;'>\n"
|
2016-07-12 22:17:45 +00:00
|
|
|
"<h4>§"SECTION".%d: %.*s</h4>\n"
|
|
|
|
"<div style='"CODE_STYLE" "DESCRIPT_SECTION_STYLE"'>",
|
2016-07-02 14:15:15 +00:00
|
|
|
name.size, name.str, I,
|
|
|
|
name.size, name.str
|
|
|
|
);
|
2016-07-01 05:42:19 +00:00
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
// NOTE(allen): Code box
|
|
|
|
{
|
|
|
|
fprintf(file,
|
|
|
|
"enum %.*s;",
|
|
|
|
name.size, name.str);
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(file, "</div>\n");
|
|
|
|
|
|
|
|
// NOTE(allen): Descriptive section
|
|
|
|
{
|
2016-09-02 20:02:29 +00:00
|
|
|
String doc_string = flag_set.items[i].doc_string;
|
2016-07-02 14:15:15 +00:00
|
|
|
Documentation doc = {0};
|
|
|
|
perform_doc_parse(part, doc_string, &doc);
|
|
|
|
|
|
|
|
String main_doc = doc.main_doc;
|
|
|
|
if (main_doc.size != 0){
|
|
|
|
fprintf(file, DOC_HEAD_OPEN"Description"DOC_HEAD_CLOSE);
|
|
|
|
fprintf(file,
|
|
|
|
DOC_ITEM_OPEN"%.*s"DOC_ITEM_CLOSE,
|
|
|
|
main_doc.size, main_doc.str
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-09-02 20:02:29 +00:00
|
|
|
if (flag_set.items[i].first_child){
|
2016-07-02 14:15:15 +00:00
|
|
|
fprintf(file, DOC_HEAD_OPEN"Flags"DOC_HEAD_CLOSE);
|
2016-09-02 20:02:29 +00:00
|
|
|
for (Item_Node *member = flag_set.items[i].first_child;
|
2016-07-02 14:15:15 +00:00
|
|
|
member;
|
2016-09-02 20:02:29 +00:00
|
|
|
member = member->next_sibling){
|
2016-07-02 14:15:15 +00:00
|
|
|
Documentation doc = {0};
|
|
|
|
perform_doc_parse(part, member->doc_string, &doc);
|
|
|
|
|
|
|
|
fprintf(file,
|
|
|
|
"<div>\n"
|
|
|
|
"<div><span style='"CODE_STYLE"'>"DOC_ITEM_HEAD_INL_OPEN
|
|
|
|
"%.*s"DOC_ITEM_HEAD_INL_CLOSE" = %.*s</span></div>\n"
|
|
|
|
"<div style='margin-bottom: 6mm;'>"DOC_ITEM_OPEN"%.*s"DOC_ITEM_CLOSE"</div>\n"
|
|
|
|
"</div>\n",
|
|
|
|
member->name.size, member->name.str,
|
|
|
|
member->value.size, member->value.str,
|
|
|
|
doc.main_doc.size, doc.main_doc.str
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
print_see_also(file, &doc);
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(file, "</div><hr>\n");
|
2016-07-01 05:42:19 +00:00
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t i = 0; i < struct_count; ++i, ++I){
|
2016-09-02 23:14:25 +00:00
|
|
|
Item_Node *member = &struct_set.items[i];
|
2016-07-02 14:15:15 +00:00
|
|
|
String name = member->name;
|
|
|
|
fprintf(file,
|
|
|
|
"<div id='%.*s_doc' style='margin-bottom: 1cm;'>\n"
|
2016-07-12 22:17:45 +00:00
|
|
|
"<h4>§"SECTION".%d: %.*s</h4>\n"
|
|
|
|
"<div style='"CODE_STYLE" "DESCRIPT_SECTION_STYLE"'>",
|
2016-07-02 14:15:15 +00:00
|
|
|
name.size, name.str, I,
|
|
|
|
name.size, name.str
|
|
|
|
);
|
|
|
|
|
|
|
|
// NOTE(allen): Code box
|
|
|
|
{
|
|
|
|
print_struct_html(file, member);
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(file, "</div>\n");
|
2016-07-01 05:42:19 +00:00
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
// NOTE(allen): Descriptive section
|
|
|
|
{
|
|
|
|
String doc_string = member->doc_string;
|
|
|
|
Documentation doc = {0};
|
|
|
|
perform_doc_parse(part, doc_string, &doc);
|
|
|
|
|
|
|
|
String main_doc = doc.main_doc;
|
|
|
|
if (main_doc.size != 0){
|
|
|
|
fprintf(file, DOC_HEAD_OPEN"Description"DOC_HEAD_CLOSE);
|
|
|
|
fprintf(file,
|
|
|
|
DOC_ITEM_OPEN"%.*s"DOC_ITEM_CLOSE,
|
|
|
|
main_doc.size, main_doc.str
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (member->first_child){
|
|
|
|
fprintf(file, DOC_HEAD_OPEN"Fields"DOC_HEAD_CLOSE);
|
|
|
|
print_struct_docs(file, part, member);
|
|
|
|
}
|
|
|
|
|
|
|
|
print_see_also(file, &doc);
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(file, "</div><hr>\n");
|
2016-07-01 05:42:19 +00:00
|
|
|
}
|
2016-06-27 14:25:17 +00:00
|
|
|
}
|
2016-07-02 14:15:15 +00:00
|
|
|
|
2016-07-06 19:18:10 +00:00
|
|
|
#undef MAJOR_SECTION
|
|
|
|
#define MAJOR_SECTION "4"
|
|
|
|
|
|
|
|
fprintf(file,
|
|
|
|
"<h2 id='section_%s'>§"MAJOR_SECTION" %s</h2>\n",
|
|
|
|
sections[3].id_string,
|
|
|
|
sections[3].display_string);
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
#undef SECTION
|
|
|
|
#define SECTION MAJOR_SECTION".1"
|
|
|
|
|
2016-07-12 22:17:45 +00:00
|
|
|
fprintf(file,
|
|
|
|
"<h3>§"SECTION" String Intro</h3>\n"
|
|
|
|
"<ul>\n");
|
|
|
|
|
|
|
|
{
|
|
|
|
fprintf(file,
|
|
|
|
"<div><i>\n"
|
|
|
|
"Coming Soon"
|
|
|
|
"</i><div>\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef SECTION
|
|
|
|
#define SECTION MAJOR_SECTION".2"
|
|
|
|
|
2016-07-06 19:18:10 +00:00
|
|
|
fprintf(file,
|
|
|
|
"<h3>§"SECTION" String Function List</h3>\n"
|
|
|
|
"<ul>\n");
|
|
|
|
|
|
|
|
String *used_strings = 0;
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t used_string_count = 0;
|
2016-07-06 19:18:10 +00:00
|
|
|
|
|
|
|
{
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t memory_size = sizeof(String)*(string_sig_count);
|
2016-07-06 19:18:10 +00:00
|
|
|
used_strings = (String*)malloc(memory_size);
|
|
|
|
memset(used_strings, 0, memory_size);
|
|
|
|
}
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t i = 0; i < string_sig_count; ++i){
|
2016-09-02 23:49:01 +00:00
|
|
|
String name = string_function_set.items[i].name;
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t index = 0;
|
2016-07-06 19:18:10 +00:00
|
|
|
if (!string_set_match(used_strings, used_string_count, name, &index)){
|
|
|
|
fprintf(file,
|
|
|
|
"<li>"
|
|
|
|
"<a href='#%.*s_str_doc'>%.*s</a>"
|
|
|
|
"</li>\n",
|
|
|
|
name.size, name.str,
|
|
|
|
name.size, name.str
|
|
|
|
);
|
|
|
|
used_strings[used_string_count++] = name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fprintf(file, "</ul>\n");
|
|
|
|
|
|
|
|
used_string_count = 0;
|
|
|
|
|
|
|
|
#undef SECTION
|
2016-07-12 22:17:45 +00:00
|
|
|
#define SECTION MAJOR_SECTION".3"
|
2016-07-06 19:18:10 +00:00
|
|
|
|
|
|
|
fprintf(file,
|
|
|
|
"<h3>§"SECTION" String Function Descriptions</h3>\n"
|
|
|
|
"<ul>\n");
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
for (int32_t i = 0; i < string_sig_count; ++i){
|
2016-09-02 23:49:01 +00:00
|
|
|
String name = string_function_set.items[i].name;
|
2016-08-29 01:03:26 +00:00
|
|
|
int32_t index = 0;
|
|
|
|
int32_t do_id = false;
|
2016-07-06 19:18:10 +00:00
|
|
|
if (!string_set_match(used_strings, used_string_count, name, &index)){
|
|
|
|
do_id = true;
|
|
|
|
used_strings[used_string_count++] = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (do_id){
|
|
|
|
fprintf(file,
|
|
|
|
"<div id='%.*s_str_doc'>",
|
|
|
|
name.size, name.str
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
fprintf(file, "<div>");
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(file,
|
2016-07-12 22:17:45 +00:00
|
|
|
"<h4>§"SECTION".%d: %.*s</h4>\n"
|
|
|
|
"<div style='"CODE_STYLE" "DESCRIPT_SECTION_STYLE"'>\n",
|
2016-07-06 19:18:10 +00:00
|
|
|
i+1, name.size, name.str);
|
|
|
|
|
2016-09-02 23:49:01 +00:00
|
|
|
if (string_function_set.items[i].t == Item_Macro){
|
|
|
|
print_macro_html(file, string_function_set.items[i], name);
|
2016-07-06 19:18:10 +00:00
|
|
|
}
|
|
|
|
else{
|
2016-09-02 23:49:01 +00:00
|
|
|
print_function_html(file, string_function_set.items[i], name, "");
|
2016-07-06 19:18:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(file, "</div>\n");
|
|
|
|
|
2016-07-12 22:17:45 +00:00
|
|
|
|
2016-09-02 23:49:01 +00:00
|
|
|
String doc_string = string_function_set.items[i].doc_string;
|
2016-07-12 22:17:45 +00:00
|
|
|
print_function_docs(file, part, name, doc_string);
|
|
|
|
|
2016-07-06 19:18:10 +00:00
|
|
|
fprintf(file, "</div><hr>\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
fprintf(file,
|
|
|
|
"</div>\n"
|
|
|
|
"</body>\n"
|
|
|
|
"</html>\n"
|
|
|
|
);
|
|
|
|
|
|
|
|
fclose(file);
|
2016-06-24 19:33:37 +00:00
|
|
|
}
|
2016-05-25 22:43:58 +00:00
|
|
|
}
|
|
|
|
|
2016-07-02 14:15:15 +00:00
|
|
|
int main(int argc, char **argv){
|
2016-08-30 19:30:41 +00:00
|
|
|
generate_keycode_enum();
|
|
|
|
generate_style();
|
|
|
|
generate_custom_headers();
|
2016-02-25 23:52:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// BOTTOM
|
|
|
|
|