MERGE
This commit is contained in:
commit
98da59b05c
|
@ -738,11 +738,6 @@ parse_buffer_to_jump_array(Application_Links *app, Arena *arena, Buffer_Summary
|
||||||
return(parse_buffer_to_jump_array(app, arena, buffer.buffer_id));
|
return(parse_buffer_to_jump_array(app, arena, buffer.buffer_id));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
|
||||||
lock_jump_buffer(Buffer_Summary buffer){
|
|
||||||
lock_jump_buffer(buffer.buffer_name, buffer.buffer_name_len);
|
|
||||||
}
|
|
||||||
|
|
||||||
static Face_Description
|
static Face_Description
|
||||||
get_buffer_face_description(Application_Links *app, Buffer_Summary *buffer){
|
get_buffer_face_description(Application_Links *app, Buffer_Summary *buffer){
|
||||||
Face_Description result = {};
|
Face_Description result = {};
|
||||||
|
|
|
@ -176,6 +176,8 @@ make_data(void *memory, umem size){
|
||||||
return(data);
|
return(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#define make_data_struct(s) make_data((s), sizeof(*(s)))
|
||||||
|
|
||||||
global_const Data zero_data = {};
|
global_const Data zero_data = {};
|
||||||
|
|
||||||
#define data_initr(m,s) {(m), (s)}
|
#define data_initr(m,s) {(m), (s)}
|
||||||
|
@ -3329,28 +3331,45 @@ string_substring(String_Const_u32 str, Range_i64 range){
|
||||||
}
|
}
|
||||||
|
|
||||||
static umem
|
static umem
|
||||||
string_find_first(String_Const_char str, char c){
|
string_find_first(String_Const_char str, umem start_pos, char c){
|
||||||
umem i = 0;
|
umem i = start_pos;
|
||||||
for (;i < str.size && c != str.str[i]; i += 1);
|
for (;i < str.size && c != str.str[i]; i += 1);
|
||||||
return(i);
|
return(i);
|
||||||
}
|
}
|
||||||
static umem
|
static umem
|
||||||
|
string_find_first(String_Const_u8 str, umem start_pos, u8 c){
|
||||||
|
umem i = start_pos;
|
||||||
|
for (;i < str.size && c != str.str[i]; i += 1);
|
||||||
|
return(i);
|
||||||
|
}
|
||||||
|
static umem
|
||||||
|
string_find_first(String_Const_u16 str, umem start_pos, u16 c){
|
||||||
|
umem i = start_pos;
|
||||||
|
for (;i < str.size && c != str.str[i]; i += 1);
|
||||||
|
return(i);
|
||||||
|
}
|
||||||
|
static umem
|
||||||
|
string_find_first(String_Const_u32 str, umem start_pos, u32 c){
|
||||||
|
umem i = start_pos;
|
||||||
|
for (;i < str.size && c != str.str[i]; i += 1);
|
||||||
|
return(i);
|
||||||
|
}
|
||||||
|
|
||||||
|
static umem
|
||||||
|
string_find_first(String_Const_char str, char c){
|
||||||
|
return(string_find_first(str, 0, c));
|
||||||
|
}
|
||||||
|
static umem
|
||||||
string_find_first(String_Const_u8 str, u8 c){
|
string_find_first(String_Const_u8 str, u8 c){
|
||||||
umem i = 0;
|
return(string_find_first(str, 0, c));
|
||||||
for (;i < str.size && c != str.str[i]; i += 1);
|
|
||||||
return(i);
|
|
||||||
}
|
}
|
||||||
static umem
|
static umem
|
||||||
string_find_first(String_Const_u16 str, u16 c){
|
string_find_first(String_Const_u16 str, u16 c){
|
||||||
umem i = 0;
|
return(string_find_first(str, 0, c));
|
||||||
for (;i < str.size && c != str.str[i]; i += 1);
|
|
||||||
return(i);
|
|
||||||
}
|
}
|
||||||
static umem
|
static umem
|
||||||
string_find_first(String_Const_u32 str, u32 c){
|
string_find_first(String_Const_u32 str, u32 c){
|
||||||
umem i = 0;
|
return(string_find_first(str, 0, c));
|
||||||
for (;i < str.size && c != str.str[i]; i += 1);
|
|
||||||
return(i);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static imem
|
static imem
|
||||||
|
@ -5982,6 +6001,30 @@ data_is_ascii(Data data){
|
||||||
|
|
||||||
////////////////////////////////
|
////////////////////////////////
|
||||||
|
|
||||||
|
static String_Const_u8
|
||||||
|
string_escape(Arena *arena, String_Const_u8 string){
|
||||||
|
List_String_Const_u8 list = string_replace_list(arena, string, string_u8_litexpr("\\"),
|
||||||
|
string_u8_litexpr("\\\\"));
|
||||||
|
Node_String_Const_u8 **fixup_ptr = &list.first;
|
||||||
|
for (Node_String_Const_u8 *node = list.first, *next = 0;
|
||||||
|
node != 0;
|
||||||
|
node = next){
|
||||||
|
next = node->next;
|
||||||
|
List_String_Const_u8 relist = string_replace_list(arena, node->string, string_u8_litexpr("\""),
|
||||||
|
string_u8_litexpr("\\\""));
|
||||||
|
if (relist.first != 0){
|
||||||
|
*fixup_ptr = relist.first;
|
||||||
|
relist.last->next = next;
|
||||||
|
fixup_ptr = &relist.last->next;
|
||||||
|
list.last = relist.last;
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
*fixup_ptr = next;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return(string_list_flatten(arena, list, StringFill_NullTerminate));
|
||||||
|
}
|
||||||
|
|
||||||
static String_Const_char
|
static String_Const_char
|
||||||
string_interpret_escapes(Arena *arena, String_Const_char string){
|
string_interpret_escapes(Arena *arena, String_Const_char string){
|
||||||
char *space = push_array(arena, char, string.size + 1);
|
char *space = push_array(arena, char, string.size + 1);
|
||||||
|
|
|
@ -1107,8 +1107,6 @@ struct Scratch_Block{
|
||||||
Temp_Memory temp;
|
Temp_Memory temp;
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// BOTTOM
|
// BOTTOM
|
||||||
|
|
|
@ -132,7 +132,7 @@ CUSTOM_DOC("Looks for a build.bat, build.sh, or makefile in the current and pare
|
||||||
Buffer_ID buffer = view_get_buffer(app, view, AccessAll);
|
Buffer_ID buffer = view_get_buffer(app, view, AccessAll);
|
||||||
standard_search_and_build(app, view, buffer);
|
standard_search_and_build(app, view, buffer);
|
||||||
memset(&prev_location, 0, sizeof(prev_location));
|
memset(&prev_location, 0, sizeof(prev_location));
|
||||||
lock_jump_buffer(string_u8_litexpr("*compilation*"));
|
lock_jump_buffer(app, string_u8_litexpr("*compilation*"));
|
||||||
}
|
}
|
||||||
|
|
||||||
static Buffer_ID
|
static Buffer_ID
|
||||||
|
@ -172,7 +172,7 @@ CUSTOM_DOC("Looks for a build.bat, build.sh, or makefile in the current and pare
|
||||||
set_fancy_compilation_buffer_font(app);
|
set_fancy_compilation_buffer_font(app);
|
||||||
|
|
||||||
memset(&prev_location, 0, sizeof(prev_location));
|
memset(&prev_location, 0, sizeof(prev_location));
|
||||||
lock_jump_buffer(string_u8_litexpr("*compilation*"));
|
lock_jump_buffer(app, string_u8_litexpr("*compilation*"));
|
||||||
}
|
}
|
||||||
|
|
||||||
CUSTOM_COMMAND_SIG(close_build_panel)
|
CUSTOM_COMMAND_SIG(close_build_panel)
|
||||||
|
|
|
@ -11,16 +11,20 @@ unlock_jump_buffer(void){
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
lock_jump_buffer(String_Const_u8 name){
|
lock_jump_buffer(Application_Links *app, String_Const_u8 name){
|
||||||
if (name.size < sizeof(locked_buffer_space)){
|
if (name.size < sizeof(locked_buffer_space)){
|
||||||
block_copy(locked_buffer_space, name.str, name.size);
|
block_copy(locked_buffer_space, name.str, name.size);
|
||||||
locked_buffer = SCu8(locked_buffer_space, name.size);
|
locked_buffer = SCu8(locked_buffer_space, name.size);
|
||||||
|
Scratch_Block scratch(app);
|
||||||
|
String_Const_u8 escaped = string_escape(scratch, name);
|
||||||
|
LogEventF(log_string(app, M), scratch, 0, 0, thread_get_id(app),
|
||||||
|
"lock jump buffer [name=\"%.*s\"]", string_expand(escaped));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
lock_jump_buffer(char *name, i32 size){
|
lock_jump_buffer(Application_Links *app, char *name, i32 size){
|
||||||
lock_jump_buffer(SCu8(name, size));
|
lock_jump_buffer(app, SCu8(name, size));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -28,7 +32,7 @@ lock_jump_buffer(Application_Links *app, Buffer_ID buffer_id){
|
||||||
Arena *scratch = context_get_arena(app);
|
Arena *scratch = context_get_arena(app);
|
||||||
Temp_Memory temp = begin_temp(scratch);
|
Temp_Memory temp = begin_temp(scratch);
|
||||||
String_Const_u8 buffer_name = push_buffer_unique_name(app, scratch, buffer_id);
|
String_Const_u8 buffer_name = push_buffer_unique_name(app, scratch, buffer_id);
|
||||||
lock_jump_buffer(buffer_name);
|
lock_jump_buffer(app, buffer_name);
|
||||||
end_temp(temp);
|
end_temp(temp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -54,7 +54,9 @@
|
||||||
#include "4coder_function_list.h"
|
#include "4coder_function_list.h"
|
||||||
#include "4coder_scope_commands.h"
|
#include "4coder_scope_commands.h"
|
||||||
#include "4coder_combined_write_commands.h"
|
#include "4coder_combined_write_commands.h"
|
||||||
|
#include "4coder_log_parser.h"
|
||||||
|
|
||||||
|
#include "4coder_log.cpp"
|
||||||
#include "4coder_hash_functions.cpp"
|
#include "4coder_hash_functions.cpp"
|
||||||
#include "4coder_table.cpp"
|
#include "4coder_table.cpp"
|
||||||
#include "4coder_string_match.cpp"
|
#include "4coder_string_match.cpp"
|
||||||
|
@ -64,6 +66,7 @@
|
||||||
|
|
||||||
#include "4coder_default_framework_variables.cpp"
|
#include "4coder_default_framework_variables.cpp"
|
||||||
#include "4coder_helper.cpp"
|
#include "4coder_helper.cpp"
|
||||||
|
#include "4coder_log_parser.cpp"
|
||||||
#include "4coder_seek.cpp"
|
#include "4coder_seek.cpp"
|
||||||
#include "4coder_fancy.cpp"
|
#include "4coder_fancy.cpp"
|
||||||
#include "4coder_ui_helper.cpp"
|
#include "4coder_ui_helper.cpp"
|
||||||
|
|
|
@ -257,7 +257,7 @@ list_all_functions(Application_Links *app, Buffer_ID optional_target_buffer){
|
||||||
View_ID view = get_active_view(app, AccessAll);
|
View_ID view = get_active_view(app, AccessAll);
|
||||||
view_set_buffer(app, view, decls_buffer, 0);
|
view_set_buffer(app, view, decls_buffer, 0);
|
||||||
|
|
||||||
lock_jump_buffer(decls_name);
|
lock_jump_buffer(app, decls_name);
|
||||||
|
|
||||||
end_temp(temp);
|
end_temp(temp);
|
||||||
|
|
||||||
|
|
|
@ -113,6 +113,8 @@ struct Application_Links;
|
||||||
#define START_QUERY_BAR_SIG(n) b32 n(Application_Links *app, Query_Bar *bar, u32 flags)
|
#define START_QUERY_BAR_SIG(n) b32 n(Application_Links *app, Query_Bar *bar, u32 flags)
|
||||||
#define END_QUERY_BAR_SIG(n) void n(Application_Links *app, Query_Bar *bar, u32 flags)
|
#define END_QUERY_BAR_SIG(n) void n(Application_Links *app, Query_Bar *bar, u32 flags)
|
||||||
#define PRINT_MESSAGE_SIG(n) b32 n(Application_Links *app, String_Const_u8 message)
|
#define PRINT_MESSAGE_SIG(n) b32 n(Application_Links *app, String_Const_u8 message)
|
||||||
|
#define LOG_STRING_SIG(n) b32 n(Application_Links *app, String_Const_u8 str)
|
||||||
|
#define THREAD_GET_ID_SIG(n) i32 n(Application_Links *app)
|
||||||
#define GET_LARGEST_FACE_ID_SIG(n) Face_ID n(Application_Links *app)
|
#define GET_LARGEST_FACE_ID_SIG(n) Face_ID n(Application_Links *app)
|
||||||
#define SET_GLOBAL_FACE_SIG(n) b32 n(Application_Links *app, Face_ID id, b32 apply_to_all_buffers)
|
#define SET_GLOBAL_FACE_SIG(n) b32 n(Application_Links *app, Face_ID id, b32 apply_to_all_buffers)
|
||||||
#define BUFFER_HISTORY_GET_MAX_RECORD_INDEX_SIG(n) History_Record_Index n(Application_Links *app, Buffer_ID buffer_id)
|
#define BUFFER_HISTORY_GET_MAX_RECORD_INDEX_SIG(n) History_Record_Index n(Application_Links *app, Buffer_ID buffer_id)
|
||||||
|
@ -286,6 +288,8 @@ typedef GET_ACTIVE_QUERY_BARS_SIG(Get_Active_Query_Bars_Function);
|
||||||
typedef START_QUERY_BAR_SIG(Start_Query_Bar_Function);
|
typedef START_QUERY_BAR_SIG(Start_Query_Bar_Function);
|
||||||
typedef END_QUERY_BAR_SIG(End_Query_Bar_Function);
|
typedef END_QUERY_BAR_SIG(End_Query_Bar_Function);
|
||||||
typedef PRINT_MESSAGE_SIG(Print_Message_Function);
|
typedef PRINT_MESSAGE_SIG(Print_Message_Function);
|
||||||
|
typedef LOG_STRING_SIG(Log_String_Function);
|
||||||
|
typedef THREAD_GET_ID_SIG(Thread_Get_ID_Function);
|
||||||
typedef GET_LARGEST_FACE_ID_SIG(Get_Largest_Face_ID_Function);
|
typedef GET_LARGEST_FACE_ID_SIG(Get_Largest_Face_ID_Function);
|
||||||
typedef SET_GLOBAL_FACE_SIG(Set_Global_Face_Function);
|
typedef SET_GLOBAL_FACE_SIG(Set_Global_Face_Function);
|
||||||
typedef BUFFER_HISTORY_GET_MAX_RECORD_INDEX_SIG(Buffer_History_Get_Max_Record_Index_Function);
|
typedef BUFFER_HISTORY_GET_MAX_RECORD_INDEX_SIG(Buffer_History_Get_Max_Record_Index_Function);
|
||||||
|
@ -461,6 +465,8 @@ Get_Active_Query_Bars_Function *get_active_query_bars;
|
||||||
Start_Query_Bar_Function *start_query_bar;
|
Start_Query_Bar_Function *start_query_bar;
|
||||||
End_Query_Bar_Function *end_query_bar;
|
End_Query_Bar_Function *end_query_bar;
|
||||||
Print_Message_Function *print_message;
|
Print_Message_Function *print_message;
|
||||||
|
Log_String_Function *log_string;
|
||||||
|
Thread_Get_ID_Function *thread_get_id;
|
||||||
Get_Largest_Face_ID_Function *get_largest_face_id;
|
Get_Largest_Face_ID_Function *get_largest_face_id;
|
||||||
Set_Global_Face_Function *set_global_face;
|
Set_Global_Face_Function *set_global_face;
|
||||||
Buffer_History_Get_Max_Record_Index_Function *buffer_history_get_max_record_index;
|
Buffer_History_Get_Max_Record_Index_Function *buffer_history_get_max_record_index;
|
||||||
|
@ -635,6 +641,8 @@ Get_Active_Query_Bars_Function *get_active_query_bars_;
|
||||||
Start_Query_Bar_Function *start_query_bar_;
|
Start_Query_Bar_Function *start_query_bar_;
|
||||||
End_Query_Bar_Function *end_query_bar_;
|
End_Query_Bar_Function *end_query_bar_;
|
||||||
Print_Message_Function *print_message_;
|
Print_Message_Function *print_message_;
|
||||||
|
Log_String_Function *log_string_;
|
||||||
|
Thread_Get_ID_Function *thread_get_id_;
|
||||||
Get_Largest_Face_ID_Function *get_largest_face_id_;
|
Get_Largest_Face_ID_Function *get_largest_face_id_;
|
||||||
Set_Global_Face_Function *set_global_face_;
|
Set_Global_Face_Function *set_global_face_;
|
||||||
Buffer_History_Get_Max_Record_Index_Function *buffer_history_get_max_record_index_;
|
Buffer_History_Get_Max_Record_Index_Function *buffer_history_get_max_record_index_;
|
||||||
|
@ -817,6 +825,8 @@ app_links->get_active_query_bars_ = Get_Active_Query_Bars;\
|
||||||
app_links->start_query_bar_ = Start_Query_Bar;\
|
app_links->start_query_bar_ = Start_Query_Bar;\
|
||||||
app_links->end_query_bar_ = End_Query_Bar;\
|
app_links->end_query_bar_ = End_Query_Bar;\
|
||||||
app_links->print_message_ = Print_Message;\
|
app_links->print_message_ = Print_Message;\
|
||||||
|
app_links->log_string_ = Log_String;\
|
||||||
|
app_links->thread_get_id_ = Thread_Get_ID;\
|
||||||
app_links->get_largest_face_id_ = Get_Largest_Face_ID;\
|
app_links->get_largest_face_id_ = Get_Largest_Face_ID;\
|
||||||
app_links->set_global_face_ = Set_Global_Face;\
|
app_links->set_global_face_ = Set_Global_Face;\
|
||||||
app_links->buffer_history_get_max_record_index_ = Buffer_History_Get_Max_Record_Index;\
|
app_links->buffer_history_get_max_record_index_ = Buffer_History_Get_Max_Record_Index;\
|
||||||
|
@ -991,6 +1001,8 @@ static b32 get_active_query_bars(Application_Links *app, View_ID view_id, i32 ma
|
||||||
static b32 start_query_bar(Application_Links *app, Query_Bar *bar, u32 flags){return(app->start_query_bar(app, bar, flags));}
|
static b32 start_query_bar(Application_Links *app, Query_Bar *bar, u32 flags){return(app->start_query_bar(app, bar, flags));}
|
||||||
static void end_query_bar(Application_Links *app, Query_Bar *bar, u32 flags){(app->end_query_bar(app, bar, flags));}
|
static void end_query_bar(Application_Links *app, Query_Bar *bar, u32 flags){(app->end_query_bar(app, bar, flags));}
|
||||||
static b32 print_message(Application_Links *app, String_Const_u8 message){return(app->print_message(app, message));}
|
static b32 print_message(Application_Links *app, String_Const_u8 message){return(app->print_message(app, message));}
|
||||||
|
static b32 log_string(Application_Links *app, String_Const_u8 str){return(app->log_string(app, str));}
|
||||||
|
static i32 thread_get_id(Application_Links *app){return(app->thread_get_id(app));}
|
||||||
static Face_ID get_largest_face_id(Application_Links *app){return(app->get_largest_face_id(app));}
|
static Face_ID get_largest_face_id(Application_Links *app){return(app->get_largest_face_id(app));}
|
||||||
static b32 set_global_face(Application_Links *app, Face_ID id, b32 apply_to_all_buffers){return(app->set_global_face(app, id, apply_to_all_buffers));}
|
static b32 set_global_face(Application_Links *app, Face_ID id, b32 apply_to_all_buffers){return(app->set_global_face(app, id, apply_to_all_buffers));}
|
||||||
static History_Record_Index buffer_history_get_max_record_index(Application_Links *app, Buffer_ID buffer_id){return(app->buffer_history_get_max_record_index(app, buffer_id));}
|
static History_Record_Index buffer_history_get_max_record_index(Application_Links *app, Buffer_ID buffer_id){return(app->buffer_history_get_max_record_index(app, buffer_id));}
|
||||||
|
@ -1165,6 +1177,8 @@ static b32 get_active_query_bars(Application_Links *app, View_ID view_id, i32 ma
|
||||||
static b32 start_query_bar(Application_Links *app, Query_Bar *bar, u32 flags){return(app->start_query_bar_(app, bar, flags));}
|
static b32 start_query_bar(Application_Links *app, Query_Bar *bar, u32 flags){return(app->start_query_bar_(app, bar, flags));}
|
||||||
static void end_query_bar(Application_Links *app, Query_Bar *bar, u32 flags){(app->end_query_bar_(app, bar, flags));}
|
static void end_query_bar(Application_Links *app, Query_Bar *bar, u32 flags){(app->end_query_bar_(app, bar, flags));}
|
||||||
static b32 print_message(Application_Links *app, String_Const_u8 message){return(app->print_message_(app, message));}
|
static b32 print_message(Application_Links *app, String_Const_u8 message){return(app->print_message_(app, message));}
|
||||||
|
static b32 log_string(Application_Links *app, String_Const_u8 str){return(app->log_string_(app, str));}
|
||||||
|
static i32 thread_get_id(Application_Links *app){return(app->thread_get_id_(app));}
|
||||||
static Face_ID get_largest_face_id(Application_Links *app){return(app->get_largest_face_id_(app));}
|
static Face_ID get_largest_face_id(Application_Links *app){return(app->get_largest_face_id_(app));}
|
||||||
static b32 set_global_face(Application_Links *app, Face_ID id, b32 apply_to_all_buffers){return(app->set_global_face_(app, id, apply_to_all_buffers));}
|
static b32 set_global_face(Application_Links *app, Face_ID id, b32 apply_to_all_buffers){return(app->set_global_face_(app, id, apply_to_all_buffers));}
|
||||||
static History_Record_Index buffer_history_get_max_record_index(Application_Links *app, Buffer_ID buffer_id){return(app->buffer_history_get_max_record_index_(app, buffer_id));}
|
static History_Record_Index buffer_history_get_max_record_index(Application_Links *app, Buffer_ID buffer_id){return(app->buffer_history_get_max_record_index_(app, buffer_id));}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
#define command_id(c) (fcoder_metacmd_ID_##c)
|
#define command_id(c) (fcoder_metacmd_ID_##c)
|
||||||
#define command_metadata(c) (&fcoder_metacmd_table[command_id(c)])
|
#define command_metadata(c) (&fcoder_metacmd_table[command_id(c)])
|
||||||
#define command_metadata_by_id(id) (&fcoder_metacmd_table[id])
|
#define command_metadata_by_id(id) (&fcoder_metacmd_table[id])
|
||||||
#define command_one_past_last_id 237
|
#define command_one_past_last_id 238
|
||||||
#if defined(CUSTOM_COMMAND_SIG)
|
#if defined(CUSTOM_COMMAND_SIG)
|
||||||
#define PROC_LINKS(x,y) x
|
#define PROC_LINKS(x,y) x
|
||||||
#else
|
#else
|
||||||
|
@ -10,6 +10,7 @@
|
||||||
#endif
|
#endif
|
||||||
#if defined(CUSTOM_COMMAND_SIG)
|
#if defined(CUSTOM_COMMAND_SIG)
|
||||||
CUSTOM_COMMAND_SIG(write_explicit_enum_flags);
|
CUSTOM_COMMAND_SIG(write_explicit_enum_flags);
|
||||||
|
CUSTOM_COMMAND_SIG(parse_the_log);
|
||||||
CUSTOM_COMMAND_SIG(seek_beginning_of_textual_line);
|
CUSTOM_COMMAND_SIG(seek_beginning_of_textual_line);
|
||||||
CUSTOM_COMMAND_SIG(seek_end_of_textual_line);
|
CUSTOM_COMMAND_SIG(seek_end_of_textual_line);
|
||||||
CUSTOM_COMMAND_SIG(seek_beginning_of_line);
|
CUSTOM_COMMAND_SIG(seek_beginning_of_line);
|
||||||
|
@ -257,28 +258,29 @@ char *source_name;
|
||||||
int32_t source_name_len;
|
int32_t source_name_len;
|
||||||
int32_t line_number;
|
int32_t line_number;
|
||||||
};
|
};
|
||||||
static Command_Metadata fcoder_metacmd_table[237] = {
|
static Command_Metadata fcoder_metacmd_table[238] = {
|
||||||
{ PROC_LINKS(write_explicit_enum_flags, 0), "write_explicit_enum_flags", 25, "If the cursor is found to be on the '{' of an enum definition, the values of the enum will be filled in to give each a unique power of 2 value, starting from 1. Existing values are overwritten.", 194, "w:\\4ed\\code\\4coder_experiments.cpp", 34, 699 },
|
{ PROC_LINKS(write_explicit_enum_flags, 0), "write_explicit_enum_flags", 25, "If the cursor is found to be on the '{' of an enum definition, the values of the enum will be filled in to give each a unique power of 2 value, starting from 1. Existing values are overwritten.", 194, "w:\\4ed\\code\\4coder_experiments.cpp", 34, 699 },
|
||||||
|
{ PROC_LINKS(parse_the_log, 0), "parse_the_log", 13, "Tests the log parser", 20, "w:\\4ed\\code\\4coder_log_parser.cpp", 33, 357 },
|
||||||
{ PROC_LINKS(seek_beginning_of_textual_line, 0), "seek_beginning_of_textual_line", 30, "Seeks the cursor to the beginning of the line across all text.", 62, "w:\\4ed\\code\\4coder_seek.cpp", 27, 28 },
|
{ PROC_LINKS(seek_beginning_of_textual_line, 0), "seek_beginning_of_textual_line", 30, "Seeks the cursor to the beginning of the line across all text.", 62, "w:\\4ed\\code\\4coder_seek.cpp", 27, 28 },
|
||||||
{ PROC_LINKS(seek_end_of_textual_line, 0), "seek_end_of_textual_line", 24, "Seeks the cursor to the end of the line across all text.", 56, "w:\\4ed\\code\\4coder_seek.cpp", 27, 34 },
|
{ PROC_LINKS(seek_end_of_textual_line, 0), "seek_end_of_textual_line", 24, "Seeks the cursor to the end of the line across all text.", 56, "w:\\4ed\\code\\4coder_seek.cpp", 27, 34 },
|
||||||
{ PROC_LINKS(seek_beginning_of_line, 0), "seek_beginning_of_line", 22, "Seeks the cursor to the beginning of the visual line.", 53, "w:\\4ed\\code\\4coder_seek.cpp", 27, 40 },
|
{ PROC_LINKS(seek_beginning_of_line, 0), "seek_beginning_of_line", 22, "Seeks the cursor to the beginning of the visual line.", 53, "w:\\4ed\\code\\4coder_seek.cpp", 27, 40 },
|
||||||
{ PROC_LINKS(seek_end_of_line, 0), "seek_end_of_line", 16, "Seeks the cursor to the end of the visual line.", 47, "w:\\4ed\\code\\4coder_seek.cpp", 27, 46 },
|
{ PROC_LINKS(seek_end_of_line, 0), "seek_end_of_line", 16, "Seeks the cursor to the end of the visual line.", 47, "w:\\4ed\\code\\4coder_seek.cpp", 27, 46 },
|
||||||
{ PROC_LINKS(goto_beginning_of_file, 0), "goto_beginning_of_file", 22, "Sets the cursor to the beginning of the file.", 45, "w:\\4ed\\code\\4coder_seek.cpp", 27, 52 },
|
{ PROC_LINKS(goto_beginning_of_file, 0), "goto_beginning_of_file", 22, "Sets the cursor to the beginning of the file.", 45, "w:\\4ed\\code\\4coder_seek.cpp", 27, 52 },
|
||||||
{ PROC_LINKS(goto_end_of_file, 0), "goto_end_of_file", 16, "Sets the cursor to the end of the file.", 39, "w:\\4ed\\code\\4coder_seek.cpp", 27, 60 },
|
{ PROC_LINKS(goto_end_of_file, 0), "goto_end_of_file", 16, "Sets the cursor to the end of the file.", 39, "w:\\4ed\\code\\4coder_seek.cpp", 27, 60 },
|
||||||
{ PROC_LINKS(change_active_panel, 0), "change_active_panel", 19, "Change the currently active panel, moving to the panel with the next highest view_id.", 85, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 197 },
|
{ PROC_LINKS(change_active_panel, 0), "change_active_panel", 19, "Change the currently active panel, moving to the panel with the next highest view_id.", 85, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 201 },
|
||||||
{ PROC_LINKS(change_active_panel_backwards, 0), "change_active_panel_backwards", 29, "Change the currently active panel, moving to the panel with the next lowest view_id.", 84, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 207 },
|
{ PROC_LINKS(change_active_panel_backwards, 0), "change_active_panel_backwards", 29, "Change the currently active panel, moving to the panel with the next lowest view_id.", 84, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 211 },
|
||||||
{ PROC_LINKS(open_panel_vsplit, 0), "open_panel_vsplit", 17, "Create a new panel by vertically splitting the active panel.", 60, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 217 },
|
{ PROC_LINKS(open_panel_vsplit, 0), "open_panel_vsplit", 17, "Create a new panel by vertically splitting the active panel.", 60, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 221 },
|
||||||
{ PROC_LINKS(open_panel_hsplit, 0), "open_panel_hsplit", 17, "Create a new panel by horizontally splitting the active panel.", 62, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 227 },
|
{ PROC_LINKS(open_panel_hsplit, 0), "open_panel_hsplit", 17, "Create a new panel by horizontally splitting the active panel.", 62, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 231 },
|
||||||
{ PROC_LINKS(suppress_mouse, 0), "suppress_mouse", 14, "Hides the mouse and causes all mosue input (clicks, position, wheel) to be ignored.", 83, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 288 },
|
{ PROC_LINKS(suppress_mouse, 0), "suppress_mouse", 14, "Hides the mouse and causes all mosue input (clicks, position, wheel) to be ignored.", 83, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 292 },
|
||||||
{ PROC_LINKS(allow_mouse, 0), "allow_mouse", 11, "Shows the mouse and causes all mouse input to be processed normally.", 68, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 294 },
|
{ PROC_LINKS(allow_mouse, 0), "allow_mouse", 11, "Shows the mouse and causes all mouse input to be processed normally.", 68, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 298 },
|
||||||
{ PROC_LINKS(toggle_mouse, 0), "toggle_mouse", 12, "Toggles the mouse suppression mode, see suppress_mouse and allow_mouse.", 71, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 300 },
|
{ PROC_LINKS(toggle_mouse, 0), "toggle_mouse", 12, "Toggles the mouse suppression mode, see suppress_mouse and allow_mouse.", 71, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 304 },
|
||||||
{ PROC_LINKS(set_mode_to_original, 0), "set_mode_to_original", 20, "Sets the edit mode to 4coder original.", 38, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 306 },
|
{ PROC_LINKS(set_mode_to_original, 0), "set_mode_to_original", 20, "Sets the edit mode to 4coder original.", 38, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 310 },
|
||||||
{ PROC_LINKS(set_mode_to_notepad_like, 0), "set_mode_to_notepad_like", 24, "Sets the edit mode to Notepad like.", 35, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 312 },
|
{ PROC_LINKS(set_mode_to_notepad_like, 0), "set_mode_to_notepad_like", 24, "Sets the edit mode to Notepad like.", 35, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 316 },
|
||||||
{ PROC_LINKS(toggle_highlight_line_at_cursor, 0), "toggle_highlight_line_at_cursor", 31, "Toggles the line highlight at the cursor.", 41, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 318 },
|
{ PROC_LINKS(toggle_highlight_line_at_cursor, 0), "toggle_highlight_line_at_cursor", 31, "Toggles the line highlight at the cursor.", 41, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 322 },
|
||||||
{ PROC_LINKS(toggle_highlight_enclosing_scopes, 0), "toggle_highlight_enclosing_scopes", 33, "In code files scopes surrounding the cursor are highlighted with distinguishing colors.", 87, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 324 },
|
{ PROC_LINKS(toggle_highlight_enclosing_scopes, 0), "toggle_highlight_enclosing_scopes", 33, "In code files scopes surrounding the cursor are highlighted with distinguishing colors.", 87, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 328 },
|
||||||
{ PROC_LINKS(toggle_paren_matching_helper, 0), "toggle_paren_matching_helper", 28, "In code files matching parentheses pairs are colored with distinguishing colors.", 80, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 330 },
|
{ PROC_LINKS(toggle_paren_matching_helper, 0), "toggle_paren_matching_helper", 28, "In code files matching parentheses pairs are colored with distinguishing colors.", 80, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 334 },
|
||||||
{ PROC_LINKS(toggle_fullscreen, 0), "toggle_fullscreen", 17, "Toggle fullscreen mode on or off. The change(s) do not take effect until the next frame.", 89, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 336 },
|
{ PROC_LINKS(toggle_fullscreen, 0), "toggle_fullscreen", 17, "Toggle fullscreen mode on or off. The change(s) do not take effect until the next frame.", 89, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 340 },
|
||||||
{ PROC_LINKS(remap_interactive, 0), "remap_interactive", 17, "Switch to a named key binding map.", 34, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 344 },
|
{ PROC_LINKS(remap_interactive, 0), "remap_interactive", 17, "Switch to a named key binding map.", 34, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 348 },
|
||||||
{ PROC_LINKS(write_character, 0), "write_character", 15, "Inserts whatever character was used to trigger this command.", 60, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 66 },
|
{ PROC_LINKS(write_character, 0), "write_character", 15, "Inserts whatever character was used to trigger this command.", 60, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 66 },
|
||||||
{ PROC_LINKS(write_underscore, 0), "write_underscore", 16, "Inserts an underscore.", 22, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 75 },
|
{ PROC_LINKS(write_underscore, 0), "write_underscore", 16, "Inserts an underscore.", 22, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 75 },
|
||||||
{ PROC_LINKS(delete_char, 0), "delete_char", 11, "Deletes the character to the right of the cursor.", 49, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 82 },
|
{ PROC_LINKS(delete_char, 0), "delete_char", 11, "Deletes the character to the right of the cursor.", 49, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 82 },
|
||||||
|
@ -497,240 +499,241 @@ static Command_Metadata fcoder_metacmd_table[237] = {
|
||||||
{ PROC_LINKS(write_explicit_enum_values, 0), "write_explicit_enum_values", 26, "If the cursor is found to be on the '{' of an enum definition, the values of the enum will be filled in sequentially starting from zero. Existing values are overwritten.", 170, "w:\\4ed\\code\\4coder_experiments.cpp", 34, 693 },
|
{ PROC_LINKS(write_explicit_enum_values, 0), "write_explicit_enum_values", 26, "If the cursor is found to be on the '{' of an enum definition, the values of the enum will be filled in sequentially starting from zero. Existing values are overwritten.", 170, "w:\\4ed\\code\\4coder_experiments.cpp", 34, 693 },
|
||||||
};
|
};
|
||||||
static int32_t fcoder_metacmd_ID_write_explicit_enum_flags = 0;
|
static int32_t fcoder_metacmd_ID_write_explicit_enum_flags = 0;
|
||||||
static int32_t fcoder_metacmd_ID_seek_beginning_of_textual_line = 1;
|
static int32_t fcoder_metacmd_ID_parse_the_log = 1;
|
||||||
static int32_t fcoder_metacmd_ID_seek_end_of_textual_line = 2;
|
static int32_t fcoder_metacmd_ID_seek_beginning_of_textual_line = 2;
|
||||||
static int32_t fcoder_metacmd_ID_seek_beginning_of_line = 3;
|
static int32_t fcoder_metacmd_ID_seek_end_of_textual_line = 3;
|
||||||
static int32_t fcoder_metacmd_ID_seek_end_of_line = 4;
|
static int32_t fcoder_metacmd_ID_seek_beginning_of_line = 4;
|
||||||
static int32_t fcoder_metacmd_ID_goto_beginning_of_file = 5;
|
static int32_t fcoder_metacmd_ID_seek_end_of_line = 5;
|
||||||
static int32_t fcoder_metacmd_ID_goto_end_of_file = 6;
|
static int32_t fcoder_metacmd_ID_goto_beginning_of_file = 6;
|
||||||
static int32_t fcoder_metacmd_ID_change_active_panel = 7;
|
static int32_t fcoder_metacmd_ID_goto_end_of_file = 7;
|
||||||
static int32_t fcoder_metacmd_ID_change_active_panel_backwards = 8;
|
static int32_t fcoder_metacmd_ID_change_active_panel = 8;
|
||||||
static int32_t fcoder_metacmd_ID_open_panel_vsplit = 9;
|
static int32_t fcoder_metacmd_ID_change_active_panel_backwards = 9;
|
||||||
static int32_t fcoder_metacmd_ID_open_panel_hsplit = 10;
|
static int32_t fcoder_metacmd_ID_open_panel_vsplit = 10;
|
||||||
static int32_t fcoder_metacmd_ID_suppress_mouse = 11;
|
static int32_t fcoder_metacmd_ID_open_panel_hsplit = 11;
|
||||||
static int32_t fcoder_metacmd_ID_allow_mouse = 12;
|
static int32_t fcoder_metacmd_ID_suppress_mouse = 12;
|
||||||
static int32_t fcoder_metacmd_ID_toggle_mouse = 13;
|
static int32_t fcoder_metacmd_ID_allow_mouse = 13;
|
||||||
static int32_t fcoder_metacmd_ID_set_mode_to_original = 14;
|
static int32_t fcoder_metacmd_ID_toggle_mouse = 14;
|
||||||
static int32_t fcoder_metacmd_ID_set_mode_to_notepad_like = 15;
|
static int32_t fcoder_metacmd_ID_set_mode_to_original = 15;
|
||||||
static int32_t fcoder_metacmd_ID_toggle_highlight_line_at_cursor = 16;
|
static int32_t fcoder_metacmd_ID_set_mode_to_notepad_like = 16;
|
||||||
static int32_t fcoder_metacmd_ID_toggle_highlight_enclosing_scopes = 17;
|
static int32_t fcoder_metacmd_ID_toggle_highlight_line_at_cursor = 17;
|
||||||
static int32_t fcoder_metacmd_ID_toggle_paren_matching_helper = 18;
|
static int32_t fcoder_metacmd_ID_toggle_highlight_enclosing_scopes = 18;
|
||||||
static int32_t fcoder_metacmd_ID_toggle_fullscreen = 19;
|
static int32_t fcoder_metacmd_ID_toggle_paren_matching_helper = 19;
|
||||||
static int32_t fcoder_metacmd_ID_remap_interactive = 20;
|
static int32_t fcoder_metacmd_ID_toggle_fullscreen = 20;
|
||||||
static int32_t fcoder_metacmd_ID_write_character = 21;
|
static int32_t fcoder_metacmd_ID_remap_interactive = 21;
|
||||||
static int32_t fcoder_metacmd_ID_write_underscore = 22;
|
static int32_t fcoder_metacmd_ID_write_character = 22;
|
||||||
static int32_t fcoder_metacmd_ID_delete_char = 23;
|
static int32_t fcoder_metacmd_ID_write_underscore = 23;
|
||||||
static int32_t fcoder_metacmd_ID_backspace_char = 24;
|
static int32_t fcoder_metacmd_ID_delete_char = 24;
|
||||||
static int32_t fcoder_metacmd_ID_set_mark = 25;
|
static int32_t fcoder_metacmd_ID_backspace_char = 25;
|
||||||
static int32_t fcoder_metacmd_ID_cursor_mark_swap = 26;
|
static int32_t fcoder_metacmd_ID_set_mark = 26;
|
||||||
static int32_t fcoder_metacmd_ID_delete_range = 27;
|
static int32_t fcoder_metacmd_ID_cursor_mark_swap = 27;
|
||||||
static int32_t fcoder_metacmd_ID_backspace_alpha_numeric_boundary = 28;
|
static int32_t fcoder_metacmd_ID_delete_range = 28;
|
||||||
static int32_t fcoder_metacmd_ID_delete_alpha_numeric_boundary = 29;
|
static int32_t fcoder_metacmd_ID_backspace_alpha_numeric_boundary = 29;
|
||||||
static int32_t fcoder_metacmd_ID_snipe_backward_whitespace_or_token_boundary = 30;
|
static int32_t fcoder_metacmd_ID_delete_alpha_numeric_boundary = 30;
|
||||||
static int32_t fcoder_metacmd_ID_snipe_forward_whitespace_or_token_boundary = 31;
|
static int32_t fcoder_metacmd_ID_snipe_backward_whitespace_or_token_boundary = 31;
|
||||||
static int32_t fcoder_metacmd_ID_center_view = 32;
|
static int32_t fcoder_metacmd_ID_snipe_forward_whitespace_or_token_boundary = 32;
|
||||||
static int32_t fcoder_metacmd_ID_left_adjust_view = 33;
|
static int32_t fcoder_metacmd_ID_center_view = 33;
|
||||||
static int32_t fcoder_metacmd_ID_click_set_cursor_and_mark = 34;
|
static int32_t fcoder_metacmd_ID_left_adjust_view = 34;
|
||||||
static int32_t fcoder_metacmd_ID_click_set_cursor = 35;
|
static int32_t fcoder_metacmd_ID_click_set_cursor_and_mark = 35;
|
||||||
static int32_t fcoder_metacmd_ID_click_set_cursor_if_lbutton = 36;
|
static int32_t fcoder_metacmd_ID_click_set_cursor = 36;
|
||||||
static int32_t fcoder_metacmd_ID_click_set_mark = 37;
|
static int32_t fcoder_metacmd_ID_click_set_cursor_if_lbutton = 37;
|
||||||
static int32_t fcoder_metacmd_ID_mouse_wheel_scroll = 38;
|
static int32_t fcoder_metacmd_ID_click_set_mark = 38;
|
||||||
static int32_t fcoder_metacmd_ID_move_up = 39;
|
static int32_t fcoder_metacmd_ID_mouse_wheel_scroll = 39;
|
||||||
static int32_t fcoder_metacmd_ID_move_down = 40;
|
static int32_t fcoder_metacmd_ID_move_up = 40;
|
||||||
static int32_t fcoder_metacmd_ID_move_up_10 = 41;
|
static int32_t fcoder_metacmd_ID_move_down = 41;
|
||||||
static int32_t fcoder_metacmd_ID_move_down_10 = 42;
|
static int32_t fcoder_metacmd_ID_move_up_10 = 42;
|
||||||
static int32_t fcoder_metacmd_ID_move_down_textual = 43;
|
static int32_t fcoder_metacmd_ID_move_down_10 = 43;
|
||||||
static int32_t fcoder_metacmd_ID_page_up = 44;
|
static int32_t fcoder_metacmd_ID_move_down_textual = 44;
|
||||||
static int32_t fcoder_metacmd_ID_page_down = 45;
|
static int32_t fcoder_metacmd_ID_page_up = 45;
|
||||||
static int32_t fcoder_metacmd_ID_move_up_to_blank_line = 46;
|
static int32_t fcoder_metacmd_ID_page_down = 46;
|
||||||
static int32_t fcoder_metacmd_ID_move_down_to_blank_line = 47;
|
static int32_t fcoder_metacmd_ID_move_up_to_blank_line = 47;
|
||||||
static int32_t fcoder_metacmd_ID_move_up_to_blank_line_skip_whitespace = 48;
|
static int32_t fcoder_metacmd_ID_move_down_to_blank_line = 48;
|
||||||
static int32_t fcoder_metacmd_ID_move_down_to_blank_line_skip_whitespace = 49;
|
static int32_t fcoder_metacmd_ID_move_up_to_blank_line_skip_whitespace = 49;
|
||||||
static int32_t fcoder_metacmd_ID_move_up_to_blank_line_end = 50;
|
static int32_t fcoder_metacmd_ID_move_down_to_blank_line_skip_whitespace = 50;
|
||||||
static int32_t fcoder_metacmd_ID_move_down_to_blank_line_end = 51;
|
static int32_t fcoder_metacmd_ID_move_up_to_blank_line_end = 51;
|
||||||
static int32_t fcoder_metacmd_ID_move_left = 52;
|
static int32_t fcoder_metacmd_ID_move_down_to_blank_line_end = 52;
|
||||||
static int32_t fcoder_metacmd_ID_move_right = 53;
|
static int32_t fcoder_metacmd_ID_move_left = 53;
|
||||||
static int32_t fcoder_metacmd_ID_move_right_whitespace_boundary = 54;
|
static int32_t fcoder_metacmd_ID_move_right = 54;
|
||||||
static int32_t fcoder_metacmd_ID_move_left_whitespace_boundary = 55;
|
static int32_t fcoder_metacmd_ID_move_right_whitespace_boundary = 55;
|
||||||
static int32_t fcoder_metacmd_ID_move_right_token_boundary = 56;
|
static int32_t fcoder_metacmd_ID_move_left_whitespace_boundary = 56;
|
||||||
static int32_t fcoder_metacmd_ID_move_left_token_boundary = 57;
|
static int32_t fcoder_metacmd_ID_move_right_token_boundary = 57;
|
||||||
static int32_t fcoder_metacmd_ID_move_right_whitespace_or_token_boundary = 58;
|
static int32_t fcoder_metacmd_ID_move_left_token_boundary = 58;
|
||||||
static int32_t fcoder_metacmd_ID_move_left_whitespace_or_token_boundary = 59;
|
static int32_t fcoder_metacmd_ID_move_right_whitespace_or_token_boundary = 59;
|
||||||
static int32_t fcoder_metacmd_ID_move_right_alpha_numeric_boundary = 60;
|
static int32_t fcoder_metacmd_ID_move_left_whitespace_or_token_boundary = 60;
|
||||||
static int32_t fcoder_metacmd_ID_move_left_alpha_numeric_boundary = 61;
|
static int32_t fcoder_metacmd_ID_move_right_alpha_numeric_boundary = 61;
|
||||||
static int32_t fcoder_metacmd_ID_move_right_alpha_numeric_or_camel_boundary = 62;
|
static int32_t fcoder_metacmd_ID_move_left_alpha_numeric_boundary = 62;
|
||||||
static int32_t fcoder_metacmd_ID_move_left_alpha_numeric_or_camel_boundary = 63;
|
static int32_t fcoder_metacmd_ID_move_right_alpha_numeric_or_camel_boundary = 63;
|
||||||
static int32_t fcoder_metacmd_ID_select_all = 64;
|
static int32_t fcoder_metacmd_ID_move_left_alpha_numeric_or_camel_boundary = 64;
|
||||||
static int32_t fcoder_metacmd_ID_to_uppercase = 65;
|
static int32_t fcoder_metacmd_ID_select_all = 65;
|
||||||
static int32_t fcoder_metacmd_ID_to_lowercase = 66;
|
static int32_t fcoder_metacmd_ID_to_uppercase = 66;
|
||||||
static int32_t fcoder_metacmd_ID_clean_all_lines = 67;
|
static int32_t fcoder_metacmd_ID_to_lowercase = 67;
|
||||||
static int32_t fcoder_metacmd_ID_basic_change_active_panel = 68;
|
static int32_t fcoder_metacmd_ID_clean_all_lines = 68;
|
||||||
static int32_t fcoder_metacmd_ID_close_panel = 69;
|
static int32_t fcoder_metacmd_ID_basic_change_active_panel = 69;
|
||||||
static int32_t fcoder_metacmd_ID_show_scrollbar = 70;
|
static int32_t fcoder_metacmd_ID_close_panel = 70;
|
||||||
static int32_t fcoder_metacmd_ID_hide_scrollbar = 71;
|
static int32_t fcoder_metacmd_ID_show_scrollbar = 71;
|
||||||
static int32_t fcoder_metacmd_ID_show_filebar = 72;
|
static int32_t fcoder_metacmd_ID_hide_scrollbar = 72;
|
||||||
static int32_t fcoder_metacmd_ID_hide_filebar = 73;
|
static int32_t fcoder_metacmd_ID_show_filebar = 73;
|
||||||
static int32_t fcoder_metacmd_ID_toggle_filebar = 74;
|
static int32_t fcoder_metacmd_ID_hide_filebar = 74;
|
||||||
static int32_t fcoder_metacmd_ID_toggle_line_wrap = 75;
|
static int32_t fcoder_metacmd_ID_toggle_filebar = 75;
|
||||||
static int32_t fcoder_metacmd_ID_toggle_fps_meter = 76;
|
static int32_t fcoder_metacmd_ID_toggle_line_wrap = 76;
|
||||||
static int32_t fcoder_metacmd_ID_increase_line_wrap = 77;
|
static int32_t fcoder_metacmd_ID_toggle_fps_meter = 77;
|
||||||
static int32_t fcoder_metacmd_ID_decrease_line_wrap = 78;
|
static int32_t fcoder_metacmd_ID_increase_line_wrap = 78;
|
||||||
static int32_t fcoder_metacmd_ID_increase_face_size = 79;
|
static int32_t fcoder_metacmd_ID_decrease_line_wrap = 79;
|
||||||
static int32_t fcoder_metacmd_ID_decrease_face_size = 80;
|
static int32_t fcoder_metacmd_ID_increase_face_size = 80;
|
||||||
static int32_t fcoder_metacmd_ID_mouse_wheel_change_face_size = 81;
|
static int32_t fcoder_metacmd_ID_decrease_face_size = 81;
|
||||||
static int32_t fcoder_metacmd_ID_toggle_virtual_whitespace = 82;
|
static int32_t fcoder_metacmd_ID_mouse_wheel_change_face_size = 82;
|
||||||
static int32_t fcoder_metacmd_ID_toggle_show_whitespace = 83;
|
static int32_t fcoder_metacmd_ID_toggle_virtual_whitespace = 83;
|
||||||
static int32_t fcoder_metacmd_ID_toggle_line_numbers = 84;
|
static int32_t fcoder_metacmd_ID_toggle_show_whitespace = 84;
|
||||||
static int32_t fcoder_metacmd_ID_eol_dosify = 85;
|
static int32_t fcoder_metacmd_ID_toggle_line_numbers = 85;
|
||||||
static int32_t fcoder_metacmd_ID_eol_nixify = 86;
|
static int32_t fcoder_metacmd_ID_eol_dosify = 86;
|
||||||
static int32_t fcoder_metacmd_ID_exit_4coder = 87;
|
static int32_t fcoder_metacmd_ID_eol_nixify = 87;
|
||||||
static int32_t fcoder_metacmd_ID_goto_line = 88;
|
static int32_t fcoder_metacmd_ID_exit_4coder = 88;
|
||||||
static int32_t fcoder_metacmd_ID_search = 89;
|
static int32_t fcoder_metacmd_ID_goto_line = 89;
|
||||||
static int32_t fcoder_metacmd_ID_reverse_search = 90;
|
static int32_t fcoder_metacmd_ID_search = 90;
|
||||||
static int32_t fcoder_metacmd_ID_search_identifier = 91;
|
static int32_t fcoder_metacmd_ID_reverse_search = 91;
|
||||||
static int32_t fcoder_metacmd_ID_reverse_search_identifier = 92;
|
static int32_t fcoder_metacmd_ID_search_identifier = 92;
|
||||||
static int32_t fcoder_metacmd_ID_replace_in_range = 93;
|
static int32_t fcoder_metacmd_ID_reverse_search_identifier = 93;
|
||||||
static int32_t fcoder_metacmd_ID_replace_in_buffer = 94;
|
static int32_t fcoder_metacmd_ID_replace_in_range = 94;
|
||||||
static int32_t fcoder_metacmd_ID_replace_in_all_buffers = 95;
|
static int32_t fcoder_metacmd_ID_replace_in_buffer = 95;
|
||||||
static int32_t fcoder_metacmd_ID_query_replace = 96;
|
static int32_t fcoder_metacmd_ID_replace_in_all_buffers = 96;
|
||||||
static int32_t fcoder_metacmd_ID_query_replace_identifier = 97;
|
static int32_t fcoder_metacmd_ID_query_replace = 97;
|
||||||
static int32_t fcoder_metacmd_ID_query_replace_selection = 98;
|
static int32_t fcoder_metacmd_ID_query_replace_identifier = 98;
|
||||||
static int32_t fcoder_metacmd_ID_save_all_dirty_buffers = 99;
|
static int32_t fcoder_metacmd_ID_query_replace_selection = 99;
|
||||||
static int32_t fcoder_metacmd_ID_delete_file_query = 100;
|
static int32_t fcoder_metacmd_ID_save_all_dirty_buffers = 100;
|
||||||
static int32_t fcoder_metacmd_ID_save_to_query = 101;
|
static int32_t fcoder_metacmd_ID_delete_file_query = 101;
|
||||||
static int32_t fcoder_metacmd_ID_rename_file_query = 102;
|
static int32_t fcoder_metacmd_ID_save_to_query = 102;
|
||||||
static int32_t fcoder_metacmd_ID_make_directory_query = 103;
|
static int32_t fcoder_metacmd_ID_rename_file_query = 103;
|
||||||
static int32_t fcoder_metacmd_ID_move_line_up = 104;
|
static int32_t fcoder_metacmd_ID_make_directory_query = 104;
|
||||||
static int32_t fcoder_metacmd_ID_move_line_down = 105;
|
static int32_t fcoder_metacmd_ID_move_line_up = 105;
|
||||||
static int32_t fcoder_metacmd_ID_duplicate_line = 106;
|
static int32_t fcoder_metacmd_ID_move_line_down = 106;
|
||||||
static int32_t fcoder_metacmd_ID_delete_line = 107;
|
static int32_t fcoder_metacmd_ID_duplicate_line = 107;
|
||||||
static int32_t fcoder_metacmd_ID_open_file_in_quotes = 108;
|
static int32_t fcoder_metacmd_ID_delete_line = 108;
|
||||||
static int32_t fcoder_metacmd_ID_open_matching_file_cpp = 109;
|
static int32_t fcoder_metacmd_ID_open_file_in_quotes = 109;
|
||||||
static int32_t fcoder_metacmd_ID_view_buffer_other_panel = 110;
|
static int32_t fcoder_metacmd_ID_open_matching_file_cpp = 110;
|
||||||
static int32_t fcoder_metacmd_ID_swap_buffers_between_panels = 111;
|
static int32_t fcoder_metacmd_ID_view_buffer_other_panel = 111;
|
||||||
static int32_t fcoder_metacmd_ID_kill_buffer = 112;
|
static int32_t fcoder_metacmd_ID_swap_buffers_between_panels = 112;
|
||||||
static int32_t fcoder_metacmd_ID_save = 113;
|
static int32_t fcoder_metacmd_ID_kill_buffer = 113;
|
||||||
static int32_t fcoder_metacmd_ID_reopen = 114;
|
static int32_t fcoder_metacmd_ID_save = 114;
|
||||||
static int32_t fcoder_metacmd_ID_undo = 115;
|
static int32_t fcoder_metacmd_ID_reopen = 115;
|
||||||
static int32_t fcoder_metacmd_ID_redo = 116;
|
static int32_t fcoder_metacmd_ID_undo = 116;
|
||||||
static int32_t fcoder_metacmd_ID_undo_all_buffers = 117;
|
static int32_t fcoder_metacmd_ID_redo = 117;
|
||||||
static int32_t fcoder_metacmd_ID_redo_all_buffers = 118;
|
static int32_t fcoder_metacmd_ID_undo_all_buffers = 118;
|
||||||
static int32_t fcoder_metacmd_ID_open_in_other = 119;
|
static int32_t fcoder_metacmd_ID_redo_all_buffers = 119;
|
||||||
static int32_t fcoder_metacmd_ID_lister__quit = 120;
|
static int32_t fcoder_metacmd_ID_open_in_other = 120;
|
||||||
static int32_t fcoder_metacmd_ID_lister__activate = 121;
|
static int32_t fcoder_metacmd_ID_lister__quit = 121;
|
||||||
static int32_t fcoder_metacmd_ID_lister__write_character = 122;
|
static int32_t fcoder_metacmd_ID_lister__activate = 122;
|
||||||
static int32_t fcoder_metacmd_ID_lister__backspace_text_field = 123;
|
static int32_t fcoder_metacmd_ID_lister__write_character = 123;
|
||||||
static int32_t fcoder_metacmd_ID_lister__move_up = 124;
|
static int32_t fcoder_metacmd_ID_lister__backspace_text_field = 124;
|
||||||
static int32_t fcoder_metacmd_ID_lister__move_down = 125;
|
static int32_t fcoder_metacmd_ID_lister__move_up = 125;
|
||||||
static int32_t fcoder_metacmd_ID_lister__wheel_scroll = 126;
|
static int32_t fcoder_metacmd_ID_lister__move_down = 126;
|
||||||
static int32_t fcoder_metacmd_ID_lister__mouse_press = 127;
|
static int32_t fcoder_metacmd_ID_lister__wheel_scroll = 127;
|
||||||
static int32_t fcoder_metacmd_ID_lister__mouse_release = 128;
|
static int32_t fcoder_metacmd_ID_lister__mouse_press = 128;
|
||||||
static int32_t fcoder_metacmd_ID_lister__repaint = 129;
|
static int32_t fcoder_metacmd_ID_lister__mouse_release = 129;
|
||||||
static int32_t fcoder_metacmd_ID_lister__write_character__default = 130;
|
static int32_t fcoder_metacmd_ID_lister__repaint = 130;
|
||||||
static int32_t fcoder_metacmd_ID_lister__backspace_text_field__default = 131;
|
static int32_t fcoder_metacmd_ID_lister__write_character__default = 131;
|
||||||
static int32_t fcoder_metacmd_ID_lister__move_up__default = 132;
|
static int32_t fcoder_metacmd_ID_lister__backspace_text_field__default = 132;
|
||||||
static int32_t fcoder_metacmd_ID_lister__move_down__default = 133;
|
static int32_t fcoder_metacmd_ID_lister__move_up__default = 133;
|
||||||
static int32_t fcoder_metacmd_ID_lister__write_character__file_path = 134;
|
static int32_t fcoder_metacmd_ID_lister__move_down__default = 134;
|
||||||
static int32_t fcoder_metacmd_ID_lister__backspace_text_field__file_path = 135;
|
static int32_t fcoder_metacmd_ID_lister__write_character__file_path = 135;
|
||||||
static int32_t fcoder_metacmd_ID_lister__write_character__fixed_list = 136;
|
static int32_t fcoder_metacmd_ID_lister__backspace_text_field__file_path = 136;
|
||||||
static int32_t fcoder_metacmd_ID_interactive_switch_buffer = 137;
|
static int32_t fcoder_metacmd_ID_lister__write_character__fixed_list = 137;
|
||||||
static int32_t fcoder_metacmd_ID_interactive_kill_buffer = 138;
|
static int32_t fcoder_metacmd_ID_interactive_switch_buffer = 138;
|
||||||
static int32_t fcoder_metacmd_ID_interactive_open_or_new = 139;
|
static int32_t fcoder_metacmd_ID_interactive_kill_buffer = 139;
|
||||||
static int32_t fcoder_metacmd_ID_interactive_new = 140;
|
static int32_t fcoder_metacmd_ID_interactive_open_or_new = 140;
|
||||||
static int32_t fcoder_metacmd_ID_interactive_open = 141;
|
static int32_t fcoder_metacmd_ID_interactive_new = 141;
|
||||||
static int32_t fcoder_metacmd_ID_command_lister = 142;
|
static int32_t fcoder_metacmd_ID_interactive_open = 142;
|
||||||
static int32_t fcoder_metacmd_ID_auto_tab_whole_file = 143;
|
static int32_t fcoder_metacmd_ID_command_lister = 143;
|
||||||
static int32_t fcoder_metacmd_ID_auto_tab_line_at_cursor = 144;
|
static int32_t fcoder_metacmd_ID_auto_tab_whole_file = 144;
|
||||||
static int32_t fcoder_metacmd_ID_auto_tab_range = 145;
|
static int32_t fcoder_metacmd_ID_auto_tab_line_at_cursor = 145;
|
||||||
static int32_t fcoder_metacmd_ID_write_and_auto_tab = 146;
|
static int32_t fcoder_metacmd_ID_auto_tab_range = 146;
|
||||||
static int32_t fcoder_metacmd_ID_list_all_locations = 147;
|
static int32_t fcoder_metacmd_ID_write_and_auto_tab = 147;
|
||||||
static int32_t fcoder_metacmd_ID_list_all_substring_locations = 148;
|
static int32_t fcoder_metacmd_ID_list_all_locations = 148;
|
||||||
static int32_t fcoder_metacmd_ID_list_all_locations_case_insensitive = 149;
|
static int32_t fcoder_metacmd_ID_list_all_substring_locations = 149;
|
||||||
static int32_t fcoder_metacmd_ID_list_all_substring_locations_case_insensitive = 150;
|
static int32_t fcoder_metacmd_ID_list_all_locations_case_insensitive = 150;
|
||||||
static int32_t fcoder_metacmd_ID_list_all_locations_of_identifier = 151;
|
static int32_t fcoder_metacmd_ID_list_all_substring_locations_case_insensitive = 151;
|
||||||
static int32_t fcoder_metacmd_ID_list_all_locations_of_identifier_case_insensitive = 152;
|
static int32_t fcoder_metacmd_ID_list_all_locations_of_identifier = 152;
|
||||||
static int32_t fcoder_metacmd_ID_list_all_locations_of_selection = 153;
|
static int32_t fcoder_metacmd_ID_list_all_locations_of_identifier_case_insensitive = 153;
|
||||||
static int32_t fcoder_metacmd_ID_list_all_locations_of_selection_case_insensitive = 154;
|
static int32_t fcoder_metacmd_ID_list_all_locations_of_selection = 154;
|
||||||
static int32_t fcoder_metacmd_ID_list_all_locations_of_type_definition = 155;
|
static int32_t fcoder_metacmd_ID_list_all_locations_of_selection_case_insensitive = 155;
|
||||||
static int32_t fcoder_metacmd_ID_list_all_locations_of_type_definition_of_identifier = 156;
|
static int32_t fcoder_metacmd_ID_list_all_locations_of_type_definition = 156;
|
||||||
static int32_t fcoder_metacmd_ID_word_complete = 157;
|
static int32_t fcoder_metacmd_ID_list_all_locations_of_type_definition_of_identifier = 157;
|
||||||
static int32_t fcoder_metacmd_ID_goto_jump_at_cursor_direct = 158;
|
static int32_t fcoder_metacmd_ID_word_complete = 158;
|
||||||
static int32_t fcoder_metacmd_ID_goto_jump_at_cursor_same_panel_direct = 159;
|
static int32_t fcoder_metacmd_ID_goto_jump_at_cursor_direct = 159;
|
||||||
static int32_t fcoder_metacmd_ID_goto_next_jump_direct = 160;
|
static int32_t fcoder_metacmd_ID_goto_jump_at_cursor_same_panel_direct = 160;
|
||||||
static int32_t fcoder_metacmd_ID_goto_prev_jump_direct = 161;
|
static int32_t fcoder_metacmd_ID_goto_next_jump_direct = 161;
|
||||||
static int32_t fcoder_metacmd_ID_goto_next_jump_no_skips_direct = 162;
|
static int32_t fcoder_metacmd_ID_goto_prev_jump_direct = 162;
|
||||||
static int32_t fcoder_metacmd_ID_goto_prev_jump_no_skips_direct = 163;
|
static int32_t fcoder_metacmd_ID_goto_next_jump_no_skips_direct = 163;
|
||||||
static int32_t fcoder_metacmd_ID_goto_first_jump_direct = 164;
|
static int32_t fcoder_metacmd_ID_goto_prev_jump_no_skips_direct = 164;
|
||||||
static int32_t fcoder_metacmd_ID_newline_or_goto_position_direct = 165;
|
static int32_t fcoder_metacmd_ID_goto_first_jump_direct = 165;
|
||||||
static int32_t fcoder_metacmd_ID_newline_or_goto_position_same_panel_direct = 166;
|
static int32_t fcoder_metacmd_ID_newline_or_goto_position_direct = 166;
|
||||||
static int32_t fcoder_metacmd_ID_goto_jump_at_cursor_sticky = 167;
|
static int32_t fcoder_metacmd_ID_newline_or_goto_position_same_panel_direct = 167;
|
||||||
static int32_t fcoder_metacmd_ID_goto_jump_at_cursor_same_panel_sticky = 168;
|
static int32_t fcoder_metacmd_ID_goto_jump_at_cursor_sticky = 168;
|
||||||
static int32_t fcoder_metacmd_ID_goto_next_jump_sticky = 169;
|
static int32_t fcoder_metacmd_ID_goto_jump_at_cursor_same_panel_sticky = 169;
|
||||||
static int32_t fcoder_metacmd_ID_goto_prev_jump_sticky = 170;
|
static int32_t fcoder_metacmd_ID_goto_next_jump_sticky = 170;
|
||||||
static int32_t fcoder_metacmd_ID_goto_next_jump_no_skips_sticky = 171;
|
static int32_t fcoder_metacmd_ID_goto_prev_jump_sticky = 171;
|
||||||
static int32_t fcoder_metacmd_ID_goto_prev_jump_no_skips_sticky = 172;
|
static int32_t fcoder_metacmd_ID_goto_next_jump_no_skips_sticky = 172;
|
||||||
static int32_t fcoder_metacmd_ID_goto_first_jump_sticky = 173;
|
static int32_t fcoder_metacmd_ID_goto_prev_jump_no_skips_sticky = 173;
|
||||||
static int32_t fcoder_metacmd_ID_goto_first_jump_same_panel_sticky = 174;
|
static int32_t fcoder_metacmd_ID_goto_first_jump_sticky = 174;
|
||||||
static int32_t fcoder_metacmd_ID_newline_or_goto_position_sticky = 175;
|
static int32_t fcoder_metacmd_ID_goto_first_jump_same_panel_sticky = 175;
|
||||||
static int32_t fcoder_metacmd_ID_newline_or_goto_position_same_panel_sticky = 176;
|
static int32_t fcoder_metacmd_ID_newline_or_goto_position_sticky = 176;
|
||||||
static int32_t fcoder_metacmd_ID_view_jump_list_with_lister = 177;
|
static int32_t fcoder_metacmd_ID_newline_or_goto_position_same_panel_sticky = 177;
|
||||||
static int32_t fcoder_metacmd_ID_copy = 178;
|
static int32_t fcoder_metacmd_ID_view_jump_list_with_lister = 178;
|
||||||
static int32_t fcoder_metacmd_ID_cut = 179;
|
static int32_t fcoder_metacmd_ID_copy = 179;
|
||||||
static int32_t fcoder_metacmd_ID_paste = 180;
|
static int32_t fcoder_metacmd_ID_cut = 180;
|
||||||
static int32_t fcoder_metacmd_ID_paste_next = 181;
|
static int32_t fcoder_metacmd_ID_paste = 181;
|
||||||
static int32_t fcoder_metacmd_ID_paste_and_indent = 182;
|
static int32_t fcoder_metacmd_ID_paste_next = 182;
|
||||||
static int32_t fcoder_metacmd_ID_paste_next_and_indent = 183;
|
static int32_t fcoder_metacmd_ID_paste_and_indent = 183;
|
||||||
static int32_t fcoder_metacmd_ID_execute_previous_cli = 184;
|
static int32_t fcoder_metacmd_ID_paste_next_and_indent = 184;
|
||||||
static int32_t fcoder_metacmd_ID_execute_any_cli = 185;
|
static int32_t fcoder_metacmd_ID_execute_previous_cli = 185;
|
||||||
static int32_t fcoder_metacmd_ID_build_search = 186;
|
static int32_t fcoder_metacmd_ID_execute_any_cli = 186;
|
||||||
static int32_t fcoder_metacmd_ID_build_in_build_panel = 187;
|
static int32_t fcoder_metacmd_ID_build_search = 187;
|
||||||
static int32_t fcoder_metacmd_ID_close_build_panel = 188;
|
static int32_t fcoder_metacmd_ID_build_in_build_panel = 188;
|
||||||
static int32_t fcoder_metacmd_ID_change_to_build_panel = 189;
|
static int32_t fcoder_metacmd_ID_close_build_panel = 189;
|
||||||
static int32_t fcoder_metacmd_ID_close_all_code = 190;
|
static int32_t fcoder_metacmd_ID_change_to_build_panel = 190;
|
||||||
static int32_t fcoder_metacmd_ID_open_all_code = 191;
|
static int32_t fcoder_metacmd_ID_close_all_code = 191;
|
||||||
static int32_t fcoder_metacmd_ID_open_all_code_recursive = 192;
|
static int32_t fcoder_metacmd_ID_open_all_code = 192;
|
||||||
static int32_t fcoder_metacmd_ID_load_project = 193;
|
static int32_t fcoder_metacmd_ID_open_all_code_recursive = 193;
|
||||||
static int32_t fcoder_metacmd_ID_project_fkey_command = 194;
|
static int32_t fcoder_metacmd_ID_load_project = 194;
|
||||||
static int32_t fcoder_metacmd_ID_project_go_to_root_directory = 195;
|
static int32_t fcoder_metacmd_ID_project_fkey_command = 195;
|
||||||
static int32_t fcoder_metacmd_ID_setup_new_project = 196;
|
static int32_t fcoder_metacmd_ID_project_go_to_root_directory = 196;
|
||||||
static int32_t fcoder_metacmd_ID_setup_build_bat = 197;
|
static int32_t fcoder_metacmd_ID_setup_new_project = 197;
|
||||||
static int32_t fcoder_metacmd_ID_setup_build_sh = 198;
|
static int32_t fcoder_metacmd_ID_setup_build_bat = 198;
|
||||||
static int32_t fcoder_metacmd_ID_setup_build_bat_and_sh = 199;
|
static int32_t fcoder_metacmd_ID_setup_build_sh = 199;
|
||||||
static int32_t fcoder_metacmd_ID_project_command_lister = 200;
|
static int32_t fcoder_metacmd_ID_setup_build_bat_and_sh = 200;
|
||||||
static int32_t fcoder_metacmd_ID_list_all_functions_current_buffer = 201;
|
static int32_t fcoder_metacmd_ID_project_command_lister = 201;
|
||||||
static int32_t fcoder_metacmd_ID_list_all_functions_current_buffer_lister = 202;
|
static int32_t fcoder_metacmd_ID_list_all_functions_current_buffer = 202;
|
||||||
static int32_t fcoder_metacmd_ID_list_all_functions_all_buffers = 203;
|
static int32_t fcoder_metacmd_ID_list_all_functions_current_buffer_lister = 203;
|
||||||
static int32_t fcoder_metacmd_ID_list_all_functions_all_buffers_lister = 204;
|
static int32_t fcoder_metacmd_ID_list_all_functions_all_buffers = 204;
|
||||||
static int32_t fcoder_metacmd_ID_select_surrounding_scope = 205;
|
static int32_t fcoder_metacmd_ID_list_all_functions_all_buffers_lister = 205;
|
||||||
static int32_t fcoder_metacmd_ID_select_next_scope_absolute = 206;
|
static int32_t fcoder_metacmd_ID_select_surrounding_scope = 206;
|
||||||
static int32_t fcoder_metacmd_ID_select_prev_scope_absolute = 207;
|
static int32_t fcoder_metacmd_ID_select_next_scope_absolute = 207;
|
||||||
static int32_t fcoder_metacmd_ID_place_in_scope = 208;
|
static int32_t fcoder_metacmd_ID_select_prev_scope_absolute = 208;
|
||||||
static int32_t fcoder_metacmd_ID_delete_current_scope = 209;
|
static int32_t fcoder_metacmd_ID_place_in_scope = 209;
|
||||||
static int32_t fcoder_metacmd_ID_scope_absorb_down = 210;
|
static int32_t fcoder_metacmd_ID_delete_current_scope = 210;
|
||||||
static int32_t fcoder_metacmd_ID_open_long_braces = 211;
|
static int32_t fcoder_metacmd_ID_scope_absorb_down = 211;
|
||||||
static int32_t fcoder_metacmd_ID_open_long_braces_semicolon = 212;
|
static int32_t fcoder_metacmd_ID_open_long_braces = 212;
|
||||||
static int32_t fcoder_metacmd_ID_open_long_braces_break = 213;
|
static int32_t fcoder_metacmd_ID_open_long_braces_semicolon = 213;
|
||||||
static int32_t fcoder_metacmd_ID_if0_off = 214;
|
static int32_t fcoder_metacmd_ID_open_long_braces_break = 214;
|
||||||
static int32_t fcoder_metacmd_ID_write_todo = 215;
|
static int32_t fcoder_metacmd_ID_if0_off = 215;
|
||||||
static int32_t fcoder_metacmd_ID_write_hack = 216;
|
static int32_t fcoder_metacmd_ID_write_todo = 216;
|
||||||
static int32_t fcoder_metacmd_ID_write_note = 217;
|
static int32_t fcoder_metacmd_ID_write_hack = 217;
|
||||||
static int32_t fcoder_metacmd_ID_write_block = 218;
|
static int32_t fcoder_metacmd_ID_write_note = 218;
|
||||||
static int32_t fcoder_metacmd_ID_write_zero_struct = 219;
|
static int32_t fcoder_metacmd_ID_write_block = 219;
|
||||||
static int32_t fcoder_metacmd_ID_comment_line = 220;
|
static int32_t fcoder_metacmd_ID_write_zero_struct = 220;
|
||||||
static int32_t fcoder_metacmd_ID_uncomment_line = 221;
|
static int32_t fcoder_metacmd_ID_comment_line = 221;
|
||||||
static int32_t fcoder_metacmd_ID_comment_line_toggle = 222;
|
static int32_t fcoder_metacmd_ID_uncomment_line = 222;
|
||||||
static int32_t fcoder_metacmd_ID_snippet_lister = 223;
|
static int32_t fcoder_metacmd_ID_comment_line_toggle = 223;
|
||||||
static int32_t fcoder_metacmd_ID_set_bindings_choose = 224;
|
static int32_t fcoder_metacmd_ID_snippet_lister = 224;
|
||||||
static int32_t fcoder_metacmd_ID_set_bindings_default = 225;
|
static int32_t fcoder_metacmd_ID_set_bindings_choose = 225;
|
||||||
static int32_t fcoder_metacmd_ID_set_bindings_mac_default = 226;
|
static int32_t fcoder_metacmd_ID_set_bindings_default = 226;
|
||||||
static int32_t fcoder_metacmd_ID_miblo_increment_basic = 227;
|
static int32_t fcoder_metacmd_ID_set_bindings_mac_default = 227;
|
||||||
static int32_t fcoder_metacmd_ID_miblo_decrement_basic = 228;
|
static int32_t fcoder_metacmd_ID_miblo_increment_basic = 228;
|
||||||
static int32_t fcoder_metacmd_ID_miblo_increment_time_stamp = 229;
|
static int32_t fcoder_metacmd_ID_miblo_decrement_basic = 229;
|
||||||
static int32_t fcoder_metacmd_ID_miblo_decrement_time_stamp = 230;
|
static int32_t fcoder_metacmd_ID_miblo_increment_time_stamp = 230;
|
||||||
static int32_t fcoder_metacmd_ID_miblo_increment_time_stamp_minute = 231;
|
static int32_t fcoder_metacmd_ID_miblo_decrement_time_stamp = 231;
|
||||||
static int32_t fcoder_metacmd_ID_miblo_decrement_time_stamp_minute = 232;
|
static int32_t fcoder_metacmd_ID_miblo_increment_time_stamp_minute = 232;
|
||||||
static int32_t fcoder_metacmd_ID_kill_rect = 233;
|
static int32_t fcoder_metacmd_ID_miblo_decrement_time_stamp_minute = 233;
|
||||||
static int32_t fcoder_metacmd_ID_multi_line_edit = 234;
|
static int32_t fcoder_metacmd_ID_kill_rect = 234;
|
||||||
static int32_t fcoder_metacmd_ID_rename_parameter = 235;
|
static int32_t fcoder_metacmd_ID_multi_line_edit = 235;
|
||||||
static int32_t fcoder_metacmd_ID_write_explicit_enum_values = 236;
|
static int32_t fcoder_metacmd_ID_rename_parameter = 236;
|
||||||
|
static int32_t fcoder_metacmd_ID_write_explicit_enum_values = 237;
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -0,0 +1,54 @@
|
||||||
|
/*
|
||||||
|
* Mr. 4th Dimention - Allen Webster
|
||||||
|
*
|
||||||
|
* 14.08.2019
|
||||||
|
*
|
||||||
|
* Logging helpers.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
// TOP
|
||||||
|
|
||||||
|
#if !defined(FCODER_LOG_CPP)
|
||||||
|
#define FCODER_LOG_CPP
|
||||||
|
|
||||||
|
internal String_Const_u8
|
||||||
|
log_event(Arena *arena, String_Const_u8 event_name, String_Const_u8 src_name, i32 line_number,
|
||||||
|
i32 buffer, i32 view, i32 thread_id){
|
||||||
|
List_String_Const_u8 list = {};
|
||||||
|
string_list_pushf(arena, &list, "%.*s:%d: %.*s",
|
||||||
|
string_expand(src_name), line_number, string_expand(event_name));
|
||||||
|
if (thread_id != 0){
|
||||||
|
string_list_pushf(arena, &list, " [thread=%d]", thread_id);
|
||||||
|
}
|
||||||
|
if (buffer != 0){
|
||||||
|
string_list_pushf(arena, &list, " [buffer=%d]", buffer);
|
||||||
|
}
|
||||||
|
if (view != 0){
|
||||||
|
string_list_pushf(arena, &list, " [view=%d]", view);
|
||||||
|
}
|
||||||
|
string_list_push(arena, &list, string_u8_litexpr("\n"));
|
||||||
|
return(string_list_flatten(arena, list));
|
||||||
|
}
|
||||||
|
|
||||||
|
#define LogEventStr(log_call, arena, B, V, T, E) \
|
||||||
|
Stmnt(Temp_Memory temp_LOG = begin_temp(arena); \
|
||||||
|
String_Const_u8 M = log_event(arena, E, \
|
||||||
|
string_u8_litexpr(__FILE__), \
|
||||||
|
__LINE__, (B), (V), (T)); \
|
||||||
|
log_call; \
|
||||||
|
end_temp(temp_LOG); )
|
||||||
|
|
||||||
|
#define LogEventLit(log_call, arena, B, V, T, Elit) \
|
||||||
|
LogEventStr(log_call, arena, (B), (V), (T), string_u8_litexpr(Elit))
|
||||||
|
|
||||||
|
#define LogEventF(log_call, arena, B, V, T, Ef, ...) \
|
||||||
|
Stmnt(Temp_Memory temp_LOG_F = begin_temp(arena); \
|
||||||
|
String_Const_u8 E = push_u8_stringf(arena, Ef, __VA_ARGS__); \
|
||||||
|
LogEventStr(log_call, arena, B, V, T, E); \
|
||||||
|
end_temp(temp_LOG_F); )
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// BOTTOM
|
||||||
|
|
|
@ -0,0 +1,417 @@
|
||||||
|
/*
|
||||||
|
* Mr. 4th Dimention - Allen Webster
|
||||||
|
*
|
||||||
|
* 14.08.2019
|
||||||
|
*
|
||||||
|
* Log parser.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
// TOP
|
||||||
|
|
||||||
|
internal u64
|
||||||
|
log_parse__string_code(Log_Parse *parse, String_Const_u8 string, Log_String_Source string_source){
|
||||||
|
u64 result = 0;
|
||||||
|
if (string.size > 0){
|
||||||
|
Data data = make_data(string.str, string.size);
|
||||||
|
Table_Lookup lookup = table_lookup(&parse->string_to_id_table, data);
|
||||||
|
if (lookup.found_match){
|
||||||
|
table_read(&parse->string_to_id_table, lookup, &result);
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
if (string_source == LogParse_ExternalString){
|
||||||
|
data = push_data_copy(parse->arena, data);
|
||||||
|
}
|
||||||
|
result = parse->string_id_counter;
|
||||||
|
parse->string_id_counter += 1;
|
||||||
|
table_insert(&parse->string_to_id_table, data, result);
|
||||||
|
table_insert(&parse->id_to_string_table, result, data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return(result);
|
||||||
|
}
|
||||||
|
|
||||||
|
internal String_Const_u8
|
||||||
|
log_parse__get_string(Log_Parse *parse, u64 code){
|
||||||
|
Table_Lookup lookup = table_lookup(&parse->id_to_string_table, code);
|
||||||
|
String_Const_u8 result = {};
|
||||||
|
if (lookup.found_match){
|
||||||
|
Data val = {};
|
||||||
|
table_read(&parse->id_to_string_table, lookup, &val);
|
||||||
|
result = SCu8(val.data, val.size);
|
||||||
|
}
|
||||||
|
return(result);
|
||||||
|
}
|
||||||
|
|
||||||
|
internal Log_Event*
|
||||||
|
log_parse__event(Log_Parse *parse,
|
||||||
|
String_Const_u8 file_name, String_Const_u8 line_number, String_Const_u8 event_name){
|
||||||
|
Log_Event *new_event = push_array(parse->arena, Log_Event, 1);
|
||||||
|
sll_queue_push(parse->first_event, parse->last_event, new_event);
|
||||||
|
parse->event_count += 1;
|
||||||
|
new_event->src_file_name = log_parse__string_code(parse, file_name, LogParse_ExternalString);
|
||||||
|
new_event->event_name = log_parse__string_code(parse, event_name, LogParse_ExternalString);
|
||||||
|
new_event->line_number = string_to_integer(line_number, 10);
|
||||||
|
new_event->event_number = parse->event_count;
|
||||||
|
return(new_event);
|
||||||
|
}
|
||||||
|
|
||||||
|
internal Log_Tag*
|
||||||
|
log_parse__tag(Log_Parse *parse, Log_Event *event, String_Const_u8 tag_name, String_Const_u8 tag_value){
|
||||||
|
Log_Tag *new_tag = push_array(parse->arena, Log_Tag, 1);
|
||||||
|
sll_queue_push(event->first_tag, event->last_tag, new_tag);
|
||||||
|
event->tag_count += 1;
|
||||||
|
new_tag->name = log_parse__string_code(parse, tag_name, LogParse_ExternalString);
|
||||||
|
if (tag_value.size == 0){
|
||||||
|
new_tag->value.kind = LogTagKind_String;
|
||||||
|
new_tag->value.value = 0;
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
if (tag_value.str[0] == '"'){
|
||||||
|
if (tag_value.size == 1){
|
||||||
|
new_tag->value.kind = LogTagKind_String;
|
||||||
|
new_tag->value.value = 0;
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
tag_value = string_skip(tag_value, 1);
|
||||||
|
if (tag_value.str[tag_value.size - 1] == '"'){
|
||||||
|
tag_value = string_chop(tag_value, 1);
|
||||||
|
}
|
||||||
|
String_Const_u8 escape = string_interpret_escapes(parse->arena, tag_value);
|
||||||
|
new_tag->value.kind = LogTagKind_String;
|
||||||
|
new_tag->value.value = log_parse__string_code(parse, escape, LogParse_PreAllocatedString);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
new_tag->value.kind = LogTagKind_Integer;
|
||||||
|
b32 is_negative = false;
|
||||||
|
if (string_match(string_prefix(tag_value, 1), string_u8_litexpr("-"))){
|
||||||
|
tag_value = string_skip(tag_value, 1);
|
||||||
|
is_negative = true;
|
||||||
|
}
|
||||||
|
if (string_match(string_prefix(tag_value, 2), string_u8_litexpr("0x"))){
|
||||||
|
tag_value = string_skip(tag_value, 2);
|
||||||
|
new_tag->value.value_s = (i64)string_to_integer(tag_value, 16);
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
new_tag->value.value_s = (i64)string_to_integer(tag_value, 10);
|
||||||
|
}
|
||||||
|
if (is_negative){
|
||||||
|
new_tag->value.value_s = -new_tag->value.value_s;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return(new_tag);
|
||||||
|
}
|
||||||
|
|
||||||
|
internal Log_Event_List*
|
||||||
|
log_parse_get_list_tag_value(Log_Parse *parse, u64 name, Log_Tag_Value value){
|
||||||
|
Log_Event_List *result = 0;
|
||||||
|
Log_Tag_Name_Value key = {name, value};
|
||||||
|
Table_Lookup lookup = table_lookup(&parse->tag_value_to_event_list_table, make_data_struct(&key));
|
||||||
|
if (lookup.found_match){
|
||||||
|
u64 val = 0;
|
||||||
|
table_read(&parse->tag_value_to_event_list_table, lookup, &val);
|
||||||
|
result = (Log_Event_List*)IntAsPtr(val);
|
||||||
|
}
|
||||||
|
return(result);
|
||||||
|
}
|
||||||
|
|
||||||
|
internal Log_Event_List*
|
||||||
|
log_parse__get_or_make_list_tag_value(Log_Parse *parse, Log_Tag *tag){
|
||||||
|
Log_Event_List *result = 0;
|
||||||
|
Log_Tag_Name_Value key = {tag->name, tag->value};
|
||||||
|
Data data_key = make_data_struct(&key);
|
||||||
|
Table_Lookup lookup = table_lookup(&parse->tag_value_to_event_list_table, data_key);
|
||||||
|
if (lookup.found_match){
|
||||||
|
u64 val = 0;
|
||||||
|
table_read(&parse->tag_value_to_event_list_table, lookup, &val);
|
||||||
|
result = (Log_Event_List*)IntAsPtr(val);
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
result = push_array_zero(parse->arena, Log_Event_List, 1);
|
||||||
|
table_insert(&parse->tag_value_to_event_list_table, push_data_copy(parse->arena, data_key),
|
||||||
|
(u64)PtrAsInt(result));
|
||||||
|
}
|
||||||
|
return(result);
|
||||||
|
}
|
||||||
|
|
||||||
|
internal Log_Event_List*
|
||||||
|
log_parse__get_or_make_list_tag_name(Log_Parse *parse, Log_Tag *tag){
|
||||||
|
Log_Event_List *result = 0;
|
||||||
|
Table_Lookup lookup = table_lookup(&parse->tag_name_to_event_list_table, tag->name);
|
||||||
|
if (lookup.found_match){
|
||||||
|
u64 val = 0;
|
||||||
|
table_read(&parse->tag_name_to_event_list_table, lookup, &val);
|
||||||
|
result = (Log_Event_List*)IntAsPtr(val);
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
result = push_array_zero(parse->arena, Log_Event_List, 1);
|
||||||
|
table_insert(&parse->tag_name_to_event_list_table, tag->name, (u64)PtrAsInt(result));
|
||||||
|
}
|
||||||
|
return(result);
|
||||||
|
}
|
||||||
|
|
||||||
|
internal Log_Parse
|
||||||
|
make_log_parse(Arena *arena, String_Const_u8 source){
|
||||||
|
Log_Parse parse = {};
|
||||||
|
parse.arena = arena;
|
||||||
|
parse.string_id_counter = 1;
|
||||||
|
parse.string_to_id_table = make_table_Data_u64(arena->base_allocator, 500);
|
||||||
|
parse.id_to_string_table = make_table_u64_Data(arena->base_allocator, 500);
|
||||||
|
|
||||||
|
for (;source.size > 0;){
|
||||||
|
umem end_of_line = string_find_first(source, '\n');
|
||||||
|
String_Const_u8 line = string_prefix(source, end_of_line);
|
||||||
|
line = string_skip_chop_whitespace(line);
|
||||||
|
source = string_skip(source, end_of_line + 1);
|
||||||
|
|
||||||
|
String_Const_u8 src_file_name = {};
|
||||||
|
String_Const_u8 src_line_number = {};
|
||||||
|
b32 got_source_position = false;
|
||||||
|
|
||||||
|
String_Const_u8 whole_line = line;
|
||||||
|
|
||||||
|
{
|
||||||
|
umem colon1 = string_find_first(line, ':');
|
||||||
|
src_file_name = string_prefix(line, colon1);
|
||||||
|
line = string_skip(line, colon1 + 1);
|
||||||
|
|
||||||
|
umem colon2 = string_find_first(line, ':');
|
||||||
|
src_line_number = string_prefix(line, colon2);
|
||||||
|
line = string_skip(line, colon2 + 1);
|
||||||
|
|
||||||
|
if (string_is_integer(src_line_number, 10)){
|
||||||
|
got_source_position = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!got_source_position){
|
||||||
|
line = whole_line;
|
||||||
|
|
||||||
|
umem colon0 = string_find_first(line, ':');
|
||||||
|
umem colon1 = string_find_first(line, colon0 + 1, ':');
|
||||||
|
src_file_name = string_prefix(line, colon1);
|
||||||
|
line = string_skip(line, colon1 + 1);
|
||||||
|
|
||||||
|
umem colon2 = string_find_first(line, ':');
|
||||||
|
src_line_number = string_prefix(line, colon2);
|
||||||
|
line = string_skip(line, colon2 + 1);
|
||||||
|
|
||||||
|
if (string_is_integer(src_line_number, 10)){
|
||||||
|
got_source_position = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (got_source_position){
|
||||||
|
umem bracket_open = string_find_first(line, '[');
|
||||||
|
String_Const_u8 event_name = string_prefix(line, bracket_open);
|
||||||
|
event_name = string_skip_chop_whitespace(event_name);
|
||||||
|
line = string_skip(line, bracket_open + 1);
|
||||||
|
|
||||||
|
Log_Event *event = log_parse__event(&parse,
|
||||||
|
src_file_name, src_line_number, event_name);
|
||||||
|
|
||||||
|
for (;line.size > 0;){
|
||||||
|
umem bracket_close = string_find_first(line, ']');
|
||||||
|
String_Const_u8 tag = string_prefix(line, bracket_close);
|
||||||
|
line = string_skip(line, bracket_close + 1);
|
||||||
|
bracket_open = string_find_first(line, '[');
|
||||||
|
line = string_skip(line, bracket_open + 1);
|
||||||
|
|
||||||
|
umem equal_sign = string_find_first(tag, '=');
|
||||||
|
String_Const_u8 tag_name = string_prefix(tag, equal_sign);
|
||||||
|
String_Const_u8 tag_contents = string_skip(tag, equal_sign + 1);
|
||||||
|
|
||||||
|
log_parse__tag(&parse, event, tag_name, tag_contents);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////
|
||||||
|
|
||||||
|
// NOTE(allen): fill acceleration structures
|
||||||
|
|
||||||
|
parse.tag_value_to_event_list_table = make_table_Data_u64(arena->base_allocator, Thousand(1));
|
||||||
|
parse.tag_name_to_event_list_table = make_table_u64_u64(arena->base_allocator, 100);
|
||||||
|
|
||||||
|
for (Log_Event *event = parse.first_event;
|
||||||
|
event != 0;
|
||||||
|
event = event->next){
|
||||||
|
for (Log_Tag *tag = event->first_tag;
|
||||||
|
tag != 0;
|
||||||
|
tag = tag->next){
|
||||||
|
{
|
||||||
|
Log_Event_List *list = log_parse__get_or_make_list_tag_value(&parse, tag);
|
||||||
|
Log_Event_Ptr_Node *node = push_array(arena, Log_Event_Ptr_Node, 1);
|
||||||
|
sll_queue_push(list->first, list->last, node);
|
||||||
|
list->count += 1;
|
||||||
|
node->event = event;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
Log_Event_List *list = log_parse__get_or_make_list_tag_name(&parse, tag);
|
||||||
|
Log_Event_Ptr_Node *node = push_array(arena, Log_Event_Ptr_Node, 1);
|
||||||
|
sll_queue_push(list->first, list->last, node);
|
||||||
|
list->count += 1;
|
||||||
|
node->event = event;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (Log_Event *event = parse.first_event;
|
||||||
|
event != 0;
|
||||||
|
event = event->next){
|
||||||
|
i32 slot_count = event->tag_count*3/2;
|
||||||
|
event->tag_name_to_tag_ptr_table = make_table_u64_u64(arena->base_allocator, slot_count);
|
||||||
|
for (Log_Tag *tag = event->first_tag;
|
||||||
|
tag != 0;
|
||||||
|
tag = tag->next){
|
||||||
|
table_insert(&event->tag_name_to_tag_ptr_table, tag->name, (u64)PtrAsInt(tag));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return(parse);
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////
|
||||||
|
|
||||||
|
internal void
|
||||||
|
log_events_sort_by_tag__inner(Log_Event **events, Log_Sort_Key *keys, i32 first, i32 one_past_last){
|
||||||
|
if (first + 1 < one_past_last){
|
||||||
|
i32 pivot_index = one_past_last - 1;
|
||||||
|
Log_Sort_Key *pivot_key = keys + pivot_index;
|
||||||
|
i32 j = first;
|
||||||
|
for (i32 i = first; i < one_past_last; i += 1){
|
||||||
|
Log_Sort_Key *key = keys + i;
|
||||||
|
b32 key_is_less_than_pivot_key = false;
|
||||||
|
if (key->value.kind < pivot_key->value.kind){
|
||||||
|
key_is_less_than_pivot_key = true;
|
||||||
|
}
|
||||||
|
else if (key->value.kind == pivot_key->value.kind){
|
||||||
|
if (key->value.value < pivot_key->value.value){
|
||||||
|
key_is_less_than_pivot_key = true;
|
||||||
|
}
|
||||||
|
else if (key->value.value == pivot_key->value.value){
|
||||||
|
if (key->number < pivot_key->number){
|
||||||
|
key_is_less_than_pivot_key = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (key_is_less_than_pivot_key){
|
||||||
|
if (j < i){
|
||||||
|
Swap(Log_Event*, events[i], events[j]);
|
||||||
|
Swap(Log_Sort_Key, keys[i], keys[j]);
|
||||||
|
}
|
||||||
|
j += 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Swap(Log_Event*, events[pivot_index], events[j]);
|
||||||
|
Swap(Log_Sort_Key, keys[pivot_index], keys[j]);
|
||||||
|
log_events_sort_by_tag__inner(events, keys, first, j);
|
||||||
|
log_events_sort_by_tag__inner(events, keys, j + 1, one_past_last);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
internal void
|
||||||
|
log_events_sort_by_tag(Arena *scratch, Log_Event_Ptr_Array array, u64 tag_name){
|
||||||
|
Temp_Memory temp = begin_temp(scratch);
|
||||||
|
Log_Sort_Key *keys = push_array(scratch, Log_Sort_Key, array.count);
|
||||||
|
for (i32 i = 0; i < array.count; i += 1){
|
||||||
|
Log_Event *event = array.events[i];
|
||||||
|
Table_Lookup lookup = table_lookup(&event->tag_name_to_tag_ptr_table, tag_name);
|
||||||
|
if (lookup.found_match){
|
||||||
|
u64 read_val = 0;
|
||||||
|
table_read(&event->tag_name_to_tag_ptr_table, lookup, &read_val);
|
||||||
|
Log_Tag *tag = (Log_Tag*)IntAsPtr(read_val);
|
||||||
|
keys[i].value = tag->value;
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
keys[i].value.kind = LogTagKind_Null;
|
||||||
|
keys[i].value.value = 0;
|
||||||
|
}
|
||||||
|
keys[i].number = event->event_number;
|
||||||
|
}
|
||||||
|
|
||||||
|
log_events_sort_by_tag__inner(array.events, keys, 0, array.count);
|
||||||
|
|
||||||
|
end_temp(temp);
|
||||||
|
}
|
||||||
|
|
||||||
|
internal Log_Event_Ptr_Array
|
||||||
|
log_event_array_from_list(Arena *arena, Log_Event_List list){
|
||||||
|
Log_Event_Ptr_Array array = {};
|
||||||
|
array.count = list.count;
|
||||||
|
array.events = push_array(arena, Log_Event*, array.count);
|
||||||
|
i32 counter = 0;
|
||||||
|
for (Log_Event_Ptr_Node *node = list.first;
|
||||||
|
node != 0;
|
||||||
|
node = node->next){
|
||||||
|
array.events[counter] = node->event;
|
||||||
|
counter += 1;
|
||||||
|
}
|
||||||
|
return(array);
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////
|
||||||
|
|
||||||
|
CUSTOM_COMMAND_SIG(parse_the_log)
|
||||||
|
CUSTOM_DOC("Tests the log parser")
|
||||||
|
{
|
||||||
|
Buffer_ID log_buffer = get_buffer_by_name(app, string_u8_litexpr("*log*"), AccessAll);
|
||||||
|
Scratch_Block scratch(app);
|
||||||
|
String_Const_u8 log_text = push_whole_buffer(app, scratch, log_buffer);
|
||||||
|
Log_Parse parse = make_log_parse(scratch, log_text);
|
||||||
|
|
||||||
|
u64 buffer_code = log_parse__string_code(&parse, string_u8_litexpr("buffer"),
|
||||||
|
LogParse_ExternalString);
|
||||||
|
u64 thread_code = log_parse__string_code(&parse, string_u8_litexpr("thread"),
|
||||||
|
LogParse_ExternalString);
|
||||||
|
|
||||||
|
Log_Tag_Value value = {};
|
||||||
|
value.kind = LogTagKind_Integer;
|
||||||
|
value.value_s = 10;
|
||||||
|
Log_Event_List *list = log_parse_get_list_tag_value(&parse, buffer_code, value);
|
||||||
|
|
||||||
|
Log_Event_Ptr_Array array = log_event_array_from_list(scratch, *list);
|
||||||
|
log_events_sort_by_tag(scratch, array, thread_code);
|
||||||
|
|
||||||
|
for (i32 i = 0; i < array.count; i += 1){
|
||||||
|
Log_Event *event = array.events[i];
|
||||||
|
String_Const_u8 src_name = log_parse__get_string(&parse, event->src_file_name);
|
||||||
|
String_Const_u8 event_name = log_parse__get_string(&parse, event->event_name);
|
||||||
|
u64 line_number = event->line_number;
|
||||||
|
|
||||||
|
List_String_Const_u8 line = {};
|
||||||
|
string_list_pushf(scratch, &line, "%.*s:%llu: %.*s",
|
||||||
|
string_expand(src_name), line_number, string_expand(event_name));
|
||||||
|
|
||||||
|
for (Log_Tag *node = event->first_tag;
|
||||||
|
node != 0;
|
||||||
|
node = node->next){
|
||||||
|
String_Const_u8 tag_name = log_parse__get_string(&parse, node->name);
|
||||||
|
|
||||||
|
switch (node->value.kind){
|
||||||
|
case LogTagKind_Integer:
|
||||||
|
{
|
||||||
|
string_list_pushf(scratch, &line, " [%.*s:%lld]",
|
||||||
|
string_expand(tag_name), node->value.value_s);
|
||||||
|
}break;
|
||||||
|
|
||||||
|
case LogTagKind_String:
|
||||||
|
{
|
||||||
|
String_Const_u8 value = log_parse__get_string(&parse, node->value.value);
|
||||||
|
string_list_pushf(scratch, &line, " [%.*s:%.*s]",
|
||||||
|
string_expand(tag_name), string_expand(value));
|
||||||
|
}break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
string_list_push(scratch, &line, string_u8_litexpr("\n"));
|
||||||
|
|
||||||
|
String_Const_u8 line_string = string_list_flatten(scratch, line);
|
||||||
|
print_message(app, line_string);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// BOTTOM
|
||||||
|
|
|
@ -0,0 +1,106 @@
|
||||||
|
/*
|
||||||
|
* Mr. 4th Dimention - Allen Webster
|
||||||
|
*
|
||||||
|
* 14.08.2019
|
||||||
|
*
|
||||||
|
* Log parser.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
// TOP
|
||||||
|
|
||||||
|
#if !defined(FCODER_LOG_PARSER_H)
|
||||||
|
#define FCODER_LOG_PARSER_H
|
||||||
|
|
||||||
|
typedef i64 Log_Tag_Kind;
|
||||||
|
enum{
|
||||||
|
LogTagKind_Null,
|
||||||
|
LogTagKind_Integer,
|
||||||
|
LogTagKind_String,
|
||||||
|
};
|
||||||
|
|
||||||
|
typedef i32 Log_String_Source;
|
||||||
|
enum{
|
||||||
|
LogParse_ExternalString,
|
||||||
|
LogParse_PreAllocatedString,
|
||||||
|
};
|
||||||
|
|
||||||
|
struct Log_Tag_Value{
|
||||||
|
Log_Tag_Kind kind;
|
||||||
|
union{
|
||||||
|
u64 value;
|
||||||
|
i64 value_s;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
struct Log_Sort_Key{
|
||||||
|
Log_Tag_Value value;
|
||||||
|
i32 number;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct Log_Tag_Name_Value{
|
||||||
|
u64 name;
|
||||||
|
Log_Tag_Value value;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct Log_Tag{
|
||||||
|
Log_Tag *next;
|
||||||
|
u64 name;
|
||||||
|
Log_Tag_Value value;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct Log_Event{
|
||||||
|
Log_Event *next;
|
||||||
|
u64 src_file_name;
|
||||||
|
u64 event_name;
|
||||||
|
u64 line_number;
|
||||||
|
|
||||||
|
Log_Tag *first_tag;
|
||||||
|
Log_Tag *last_tag;
|
||||||
|
i32 tag_count;
|
||||||
|
|
||||||
|
i32 event_number;
|
||||||
|
|
||||||
|
Table_u64_u64 tag_name_to_tag_ptr_table;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct Log_Event_Ptr_Node{
|
||||||
|
Log_Event_Ptr_Node *next;
|
||||||
|
Log_Event *event;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct Log_Event_List{
|
||||||
|
Log_Event_Ptr_Node *first;
|
||||||
|
Log_Event_Ptr_Node *last;
|
||||||
|
i32 count;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct Log_Event_Ptr_Array{
|
||||||
|
Log_Event **events;
|
||||||
|
i32 count;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct Log_Tag_Value_Array{
|
||||||
|
Log_Tag_Value *vals;
|
||||||
|
i32 count;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct Log_Parse{
|
||||||
|
Arena *arena;
|
||||||
|
|
||||||
|
Log_Event *first_event;
|
||||||
|
Log_Event *last_event;
|
||||||
|
i32 event_count;
|
||||||
|
|
||||||
|
u64 string_id_counter;
|
||||||
|
Table_Data_u64 string_to_id_table;
|
||||||
|
Table_u64_Data id_to_string_table;
|
||||||
|
|
||||||
|
Table_Data_u64 tag_value_to_event_list_table;
|
||||||
|
Table_u64_u64 tag_name_to_event_list_table;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// BOTTOM
|
||||||
|
|
|
@ -856,7 +856,7 @@ exec_project_command(Application_Links *app, Project_Command *command){
|
||||||
}
|
}
|
||||||
|
|
||||||
block_zero_struct(&prev_location);
|
block_zero_struct(&prev_location);
|
||||||
lock_jump_buffer(command->out);
|
lock_jump_buffer(app, command->out);
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
// TODO(allen): fix the exec_system_command call so it can take a null buffer_id.
|
// TODO(allen): fix the exec_system_command call so it can take a null buffer_id.
|
||||||
|
|
|
@ -15,7 +15,7 @@ CUSTOM_DOC("If the command execute_any_cli has already been used, this will exec
|
||||||
View_ID view = get_active_view(app, AccessAll);
|
View_ID view = get_active_view(app, AccessAll);
|
||||||
Buffer_Identifier id = buffer_identifier(out_buffer);
|
Buffer_Identifier id = buffer_identifier(out_buffer);
|
||||||
exec_system_command(app, view, id, hot_directory, cmd, CLI_OverlapWithConflict|CLI_CursorAtEnd|CLI_SendEndSignal);
|
exec_system_command(app, view, id, hot_directory, cmd, CLI_OverlapWithConflict|CLI_CursorAtEnd|CLI_SendEndSignal);
|
||||||
lock_jump_buffer(out_buffer);
|
lock_jump_buffer(app, out_buffer);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -85,9 +85,8 @@ table_lookup(Table_u64_u64 *table, u64 key){
|
||||||
}
|
}
|
||||||
|
|
||||||
internal b32
|
internal b32
|
||||||
table_read(Table_u64_u64 *table, u64 key, u64 *val_out){
|
table_read(Table_u64_u64 *table, Table_Lookup lookup, u64 *val_out){
|
||||||
b32 result = false;
|
b32 result = false;
|
||||||
Table_Lookup lookup = table_lookup(table, key);
|
|
||||||
if (lookup.found_match){
|
if (lookup.found_match){
|
||||||
*val_out = table->vals[lookup.index];
|
*val_out = table->vals[lookup.index];
|
||||||
result = true;
|
result = true;
|
||||||
|
@ -95,6 +94,12 @@ table_read(Table_u64_u64 *table, u64 key, u64 *val_out){
|
||||||
return(result);
|
return(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal b32
|
||||||
|
table_read(Table_u64_u64 *table, u64 key, u64 *val_out){
|
||||||
|
Table_Lookup lookup = table_lookup(table, key);
|
||||||
|
return(table_read(table, lookup, val_out));
|
||||||
|
}
|
||||||
|
|
||||||
internal void
|
internal void
|
||||||
table_insert__inner(Table_u64_u64 *table, Table_Lookup lookup, u64 val){
|
table_insert__inner(Table_u64_u64 *table, Table_Lookup lookup, u64 val){
|
||||||
Assert(lookup.found_empty_slot || lookup.found_erased_slot);
|
Assert(lookup.found_empty_slot || lookup.found_erased_slot);
|
||||||
|
@ -371,9 +376,8 @@ table_lookup(Table_Data_u64 *table, Data key){
|
||||||
}
|
}
|
||||||
|
|
||||||
internal b32
|
internal b32
|
||||||
table_read(Table_Data_u64 *table, Data key, u64 *val_out){
|
table_read(Table_Data_u64 *table, Table_Lookup lookup, u64 *val_out){
|
||||||
b32 result = false;
|
b32 result = false;
|
||||||
Table_Lookup lookup = table_lookup(table, key);
|
|
||||||
if (lookup.found_match){
|
if (lookup.found_match){
|
||||||
*val_out = table->vals[lookup.index];
|
*val_out = table->vals[lookup.index];
|
||||||
result = true;
|
result = true;
|
||||||
|
@ -381,6 +385,12 @@ table_read(Table_Data_u64 *table, Data key, u64 *val_out){
|
||||||
return(result);
|
return(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal b32
|
||||||
|
table_read(Table_Data_u64 *table, Data key, u64 *val_out){
|
||||||
|
Table_Lookup lookup = table_lookup(table, key);
|
||||||
|
return(table_read(table, lookup, val_out));
|
||||||
|
}
|
||||||
|
|
||||||
internal void
|
internal void
|
||||||
table_insert__inner(Table_Data_u64 *table, Table_Lookup lookup, Data key, u64 val){
|
table_insert__inner(Table_Data_u64 *table, Table_Lookup lookup, Data key, u64 val){
|
||||||
Assert(lookup.found_empty_slot || lookup.found_erased_slot);
|
Assert(lookup.found_empty_slot || lookup.found_erased_slot);
|
||||||
|
@ -515,9 +525,8 @@ table_lookup(Table_u64_Data *table, u64 key){
|
||||||
}
|
}
|
||||||
|
|
||||||
internal b32
|
internal b32
|
||||||
table_read(Table_u64_Data *table, u64 key, Data *val_out){
|
table_read(Table_u64_Data *table, Table_Lookup lookup, Data *val_out){
|
||||||
b32 result = false;
|
b32 result = false;
|
||||||
Table_Lookup lookup = table_lookup(table, key);
|
|
||||||
if (lookup.found_match){
|
if (lookup.found_match){
|
||||||
*val_out = table->vals[lookup.index];
|
*val_out = table->vals[lookup.index];
|
||||||
result = true;
|
result = true;
|
||||||
|
@ -525,6 +534,12 @@ table_read(Table_u64_Data *table, u64 key, Data *val_out){
|
||||||
return(result);
|
return(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal b32
|
||||||
|
table_read(Table_u64_Data *table, u64 key, Data *val_out){
|
||||||
|
Table_Lookup lookup = table_lookup(table, key);
|
||||||
|
return(table_read(table, lookup, val_out));
|
||||||
|
}
|
||||||
|
|
||||||
internal void
|
internal void
|
||||||
table_insert__inner(Table_u64_Data *table, Table_Lookup lookup, Data val){
|
table_insert__inner(Table_u64_Data *table, Table_Lookup lookup, Data val){
|
||||||
Assert(lookup.found_empty_slot || lookup.found_erased_slot);
|
Assert(lookup.found_empty_slot || lookup.found_erased_slot);
|
||||||
|
|
13
4ed.cpp
13
4ed.cpp
|
@ -843,6 +843,12 @@ launch_command_via_keycode(System_Functions *system, Models *models, View *view,
|
||||||
launch_command_via_event(system, models, view, event);
|
launch_command_via_event(system, models, view, event);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal Log_Function*
|
||||||
|
app_get_logger(System_Functions *system){
|
||||||
|
log_init(system);
|
||||||
|
return(log_string);
|
||||||
|
}
|
||||||
|
|
||||||
App_Read_Command_Line_Sig(app_read_command_line){
|
App_Read_Command_Line_Sig(app_read_command_line){
|
||||||
i32 out_size = 0;
|
i32 out_size = 0;
|
||||||
Models *models = app_setup_memory(system, memory);
|
Models *models = app_setup_memory(system, memory);
|
||||||
|
@ -958,7 +964,8 @@ App_Init_Sig(app_init){
|
||||||
// NOTE(allen): init baked in buffers
|
// NOTE(allen): init baked in buffers
|
||||||
File_Init init_files[] = {
|
File_Init init_files[] = {
|
||||||
{ string_u8_litinit("*messages*"), &models->message_buffer, true , },
|
{ string_u8_litinit("*messages*"), &models->message_buffer, true , },
|
||||||
{ string_u8_litinit("*scratch*"), &models->scratch_buffer, false, },
|
{ string_u8_litinit("*scratch*") , &models->scratch_buffer, false, },
|
||||||
|
{ string_u8_litinit("*log*") , &models->log_buffer , true , },
|
||||||
};
|
};
|
||||||
|
|
||||||
Heap *heap = &models->mem.heap;
|
Heap *heap = &models->mem.heap;
|
||||||
|
@ -1483,6 +1490,9 @@ App_Step_Sig(app_step){
|
||||||
end_render_section(target, system);
|
end_render_section(target, system);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NOTE(allen): flush the log
|
||||||
|
log_flush(models);
|
||||||
|
|
||||||
// NOTE(allen): set the app_result
|
// NOTE(allen): set the app_result
|
||||||
Application_Step_Result app_result = {};
|
Application_Step_Result app_result = {};
|
||||||
app_result.mouse_cursor_type = APP_MOUSE_CURSOR_DEFAULT;
|
app_result.mouse_cursor_type = APP_MOUSE_CURSOR_DEFAULT;
|
||||||
|
@ -1536,6 +1546,7 @@ App_Step_Sig(app_step){
|
||||||
extern "C" App_Get_Functions_Sig(app_get_functions){
|
extern "C" App_Get_Functions_Sig(app_get_functions){
|
||||||
App_Functions result = {};
|
App_Functions result = {};
|
||||||
|
|
||||||
|
result.get_logger = app_get_logger;
|
||||||
result.read_command_line = app_read_command_line;
|
result.read_command_line = app_read_command_line;
|
||||||
result.init = app_init;
|
result.init = app_init;
|
||||||
result.step = app_step;
|
result.step = app_step;
|
||||||
|
|
3
4ed.h
3
4ed.h
|
@ -111,8 +111,11 @@ Application_Step_Input *input)
|
||||||
|
|
||||||
typedef App_Step_Sig(App_Step);
|
typedef App_Step_Sig(App_Step);
|
||||||
|
|
||||||
|
typedef b32 Log_Function(String_Const_u8 str);
|
||||||
|
typedef Log_Function *App_Get_Logger(System_Functions *system);
|
||||||
|
|
||||||
struct App_Functions{
|
struct App_Functions{
|
||||||
|
App_Get_Logger *get_logger;
|
||||||
App_Read_Command_Line *read_command_line;
|
App_Read_Command_Line *read_command_line;
|
||||||
App_Init *init;
|
App_Init *init;
|
||||||
App_Step *step;
|
App_Step *step;
|
||||||
|
|
|
@ -2704,6 +2704,17 @@ DOC(This call posts a string to the *messages* buffer.)
|
||||||
return(result);
|
return(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
API_EXPORT b32
|
||||||
|
Log_String(Application_Links *app, String_Const_u8 str){
|
||||||
|
return(log_string(str));
|
||||||
|
}
|
||||||
|
|
||||||
|
API_EXPORT i32
|
||||||
|
Thread_Get_ID(Application_Links *app){
|
||||||
|
Models *models = (Models*)app->cmd_context;
|
||||||
|
return(models->system->thread_get_id());
|
||||||
|
}
|
||||||
|
|
||||||
API_EXPORT Face_ID
|
API_EXPORT Face_ID
|
||||||
Get_Largest_Face_ID(Application_Links *app)
|
Get_Largest_Face_ID(Application_Links *app)
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -91,6 +91,7 @@ struct Models{
|
||||||
|
|
||||||
Editing_File *message_buffer;
|
Editing_File *message_buffer;
|
||||||
Editing_File *scratch_buffer;
|
Editing_File *scratch_buffer;
|
||||||
|
Editing_File *log_buffer;
|
||||||
|
|
||||||
Hot_Directory hot_directory;
|
Hot_Directory hot_directory;
|
||||||
|
|
||||||
|
|
|
@ -71,8 +71,11 @@ struct Mem_Options{
|
||||||
#include "4ed_edit.h"
|
#include "4ed_edit.h"
|
||||||
#include "4ed_text_layout.h"
|
#include "4ed_text_layout.h"
|
||||||
#include "4ed_font_set.h"
|
#include "4ed_font_set.h"
|
||||||
|
#include "4ed_log.h"
|
||||||
#include "4ed_app_models.h"
|
#include "4ed_app_models.h"
|
||||||
|
|
||||||
|
#include "4ed_log.cpp"
|
||||||
|
#include "4coder_log.cpp"
|
||||||
#include "4ed_coroutine.cpp"
|
#include "4ed_coroutine.cpp"
|
||||||
#include "4ed_mem.cpp"
|
#include "4ed_mem.cpp"
|
||||||
#include "4ed_ptr_check.cpp"
|
#include "4ed_ptr_check.cpp"
|
||||||
|
|
12
4ed_file.cpp
12
4ed_file.cpp
|
@ -196,6 +196,8 @@ save_file_to_name(System_Functions *system, Models *models, Editing_File *file,
|
||||||
}
|
}
|
||||||
file->attributes = new_attributes;
|
file->attributes = new_attributes;
|
||||||
}
|
}
|
||||||
|
LogEventF(log_string(M), scratch, file->id, 0, system->thread_get_id(),
|
||||||
|
"save file [last_write_time=0x%llx]", new_attributes.last_write_time);
|
||||||
|
|
||||||
file_clear_dirty_flags(file);
|
file_clear_dirty_flags(file);
|
||||||
end_temp(temp);
|
end_temp(temp);
|
||||||
|
@ -474,6 +476,16 @@ file_create_from_string(System_Functions *system, Models *models, Editing_File *
|
||||||
}
|
}
|
||||||
|
|
||||||
file->settings.is_initialized = true;
|
file->settings.is_initialized = true;
|
||||||
|
|
||||||
|
{
|
||||||
|
Temp_Memory temp = begin_temp(scratch);
|
||||||
|
String_Const_u8 name = SCu8(file->unique_name.name_space, file->unique_name.name_size);
|
||||||
|
name = string_escape(scratch, name);
|
||||||
|
LogEventF(log_string(M), scratch, file->id, 0, system->thread_get_id(),
|
||||||
|
"init file [last_write_time=0x%llx] [name=\"%.*s\"]",
|
||||||
|
attributes.last_write_time, string_expand(name));
|
||||||
|
end_temp(temp);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
internal void
|
internal void
|
||||||
|
|
|
@ -0,0 +1,60 @@
|
||||||
|
/*
|
||||||
|
* Mr. 4th Dimention - Allen Webster
|
||||||
|
*
|
||||||
|
* 14.08.2019
|
||||||
|
*
|
||||||
|
* Core logging implementation.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
// TOP
|
||||||
|
|
||||||
|
global Log global_log = {};
|
||||||
|
|
||||||
|
internal void
|
||||||
|
log_init(System_Functions *system){
|
||||||
|
global_log.mutex = system->mutex_make();
|
||||||
|
global_log.mutex_acquire = system->mutex_acquire;
|
||||||
|
global_log.mutex_release = system->mutex_release;
|
||||||
|
global_log.thread_get_id = system->thread_get_id;
|
||||||
|
global_log.arena = make_arena_system(system);
|
||||||
|
}
|
||||||
|
|
||||||
|
internal b32
|
||||||
|
log_string(String_Const_u8 str){
|
||||||
|
b32 result = false;
|
||||||
|
i32 thread_id = global_log.thread_get_id();
|
||||||
|
if (global_log.disabled_thread_id != thread_id){
|
||||||
|
global_log.mutex_acquire(global_log.mutex);
|
||||||
|
string_list_push(&global_log.arena, &global_log.list, push_string_copy(&global_log.arena, str));
|
||||||
|
global_log.mutex_release(global_log.mutex);
|
||||||
|
result = true;
|
||||||
|
}
|
||||||
|
return(result);
|
||||||
|
}
|
||||||
|
|
||||||
|
internal void
|
||||||
|
output_file_append(Models *models, Editing_File *file, String_Const_u8 value);
|
||||||
|
|
||||||
|
internal b32
|
||||||
|
log_flush(Models *models){
|
||||||
|
b32 result = false;
|
||||||
|
|
||||||
|
global_log.mutex_acquire(global_log.mutex);
|
||||||
|
global_log.disabled_thread_id = global_log.thread_get_id();
|
||||||
|
|
||||||
|
if (global_log.list.total_size > 0){
|
||||||
|
String_Const_u8 text = string_list_flatten(&global_log.arena, global_log.list);
|
||||||
|
output_file_append(models, models->log_buffer, text);
|
||||||
|
result = true;
|
||||||
|
}
|
||||||
|
linalloc_clear(&global_log.arena);
|
||||||
|
block_zero_struct(&global_log.list);
|
||||||
|
|
||||||
|
global_log.disabled_thread_id = 0;
|
||||||
|
global_log.mutex_release(global_log.mutex);
|
||||||
|
|
||||||
|
return(result);
|
||||||
|
}
|
||||||
|
|
||||||
|
// BOTTOM
|
|
@ -0,0 +1,27 @@
|
||||||
|
/*
|
||||||
|
* Mr. 4th Dimention - Allen Webster
|
||||||
|
*
|
||||||
|
* 14.08.2019
|
||||||
|
*
|
||||||
|
* Core logging structures.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
// TOP
|
||||||
|
|
||||||
|
#if !defined(FRED_LOG_H)
|
||||||
|
#define FRED_LOG_H
|
||||||
|
|
||||||
|
struct Log{
|
||||||
|
System_Mutex mutex;
|
||||||
|
Arena arena;
|
||||||
|
List_String_Const_u8 list;
|
||||||
|
volatile i32 disabled_thread_id;
|
||||||
|
System_Mutex_Acquire *mutex_acquire;
|
||||||
|
System_Mutex_Release *mutex_release;
|
||||||
|
System_Thread_Get_ID *thread_get_id;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// BOTTOM
|
|
@ -114,6 +114,9 @@ typedef Sys_Thread_Join_Sig(System_Thread_Join);
|
||||||
#define Sys_Thread_Free_Sig(name) void name(System_Thread thread)
|
#define Sys_Thread_Free_Sig(name) void name(System_Thread thread)
|
||||||
typedef Sys_Thread_Free_Sig(System_Thread_Free);
|
typedef Sys_Thread_Free_Sig(System_Thread_Free);
|
||||||
|
|
||||||
|
#define Sys_Thread_Get_ID_Sig(name) i32 name(void)
|
||||||
|
typedef Sys_Thread_Get_ID_Sig(System_Thread_Get_ID);
|
||||||
|
|
||||||
#define Sys_Mutex_Make_Sig(name) System_Mutex name(void)
|
#define Sys_Mutex_Make_Sig(name) System_Mutex name(void)
|
||||||
typedef Sys_Mutex_Make_Sig(System_Mutex_Make);
|
typedef Sys_Mutex_Make_Sig(System_Mutex_Make);
|
||||||
|
|
||||||
|
@ -204,6 +207,7 @@ struct System_Functions{
|
||||||
System_Thread_Launch *thread_launch;
|
System_Thread_Launch *thread_launch;
|
||||||
System_Thread_Join *thread_join;
|
System_Thread_Join *thread_join;
|
||||||
System_Thread_Free *thread_free;
|
System_Thread_Free *thread_free;
|
||||||
|
System_Thread_Get_ID *thread_get_id;
|
||||||
System_Mutex_Make *mutex_make;
|
System_Mutex_Make *mutex_make;
|
||||||
System_Mutex_Acquire *mutex_acquire;
|
System_Mutex_Acquire *mutex_acquire;
|
||||||
System_Mutex_Release *mutex_release;
|
System_Mutex_Release *mutex_release;
|
||||||
|
|
|
@ -27,6 +27,8 @@ file_change_notification_check(System_Functions *system, Working_Set *working_se
|
||||||
if (attributes.last_write_time > file->attributes.last_write_time){
|
if (attributes.last_write_time > file->attributes.last_write_time){
|
||||||
file_add_dirty_flag(file, DirtyState_UnloadedChanges);
|
file_add_dirty_flag(file, DirtyState_UnloadedChanges);
|
||||||
if (file->external_mod_node.next == 0){
|
if (file->external_mod_node.next == 0){
|
||||||
|
LogEventF(log_string(M), &working_set->arena, file->id, 0, system->thread_get_id(),
|
||||||
|
"external modification [last_write_time=0x%llx]", attributes.last_write_time);
|
||||||
dll_insert_back(&working_set->has_external_mod_sentinel, &file->external_mod_node);
|
dll_insert_back(&working_set->has_external_mod_sentinel, &file->external_mod_node);
|
||||||
system->signal_step(0);
|
system->signal_step(0);
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,6 +43,7 @@ link_system_code(void){
|
||||||
SYSLINK(thread_launch);
|
SYSLINK(thread_launch);
|
||||||
SYSLINK(thread_join);
|
SYSLINK(thread_join);
|
||||||
SYSLINK(thread_free);
|
SYSLINK(thread_free);
|
||||||
|
SYSLINK(thread_get_id);
|
||||||
SYSLINK(mutex_make);
|
SYSLINK(mutex_make);
|
||||||
SYSLINK(mutex_acquire);
|
SYSLINK(mutex_acquire);
|
||||||
SYSLINK(mutex_release);
|
SYSLINK(mutex_release);
|
||||||
|
|
|
@ -32,8 +32,10 @@
|
||||||
# include "4coder_lib/4coder_heap.cpp"
|
# include "4coder_lib/4coder_heap.cpp"
|
||||||
|
|
||||||
# include "4coder_base_types.cpp"
|
# include "4coder_base_types.cpp"
|
||||||
|
# include "4coder_stringf.cpp"
|
||||||
# include "4coder_hash_functions.cpp"
|
# include "4coder_hash_functions.cpp"
|
||||||
# include "4coder_table.cpp"
|
# include "4coder_table.cpp"
|
||||||
|
# include "4coder_log.cpp"
|
||||||
|
|
||||||
# include "4coder_API/4coder_keycodes.h"
|
# include "4coder_API/4coder_keycodes.h"
|
||||||
# include "4coder_API/4coder_default_colors.h"
|
# include "4coder_API/4coder_default_colors.h"
|
||||||
|
@ -51,8 +53,6 @@
|
||||||
#include <Windows.h>
|
#include <Windows.h>
|
||||||
#include "win32_gl.h"
|
#include "win32_gl.h"
|
||||||
|
|
||||||
# include "4coder_stringf.cpp"
|
|
||||||
|
|
||||||
#define GL_TEXTURE_MAX_LEVEL 0x813D
|
#define GL_TEXTURE_MAX_LEVEL 0x813D
|
||||||
|
|
||||||
//////////////////////////////
|
//////////////////////////////
|
||||||
|
@ -196,7 +196,7 @@ struct Win32_Vars{
|
||||||
CONDITION_VARIABLE thread_launch_cv;
|
CONDITION_VARIABLE thread_launch_cv;
|
||||||
b32 waiting_for_launch;
|
b32 waiting_for_launch;
|
||||||
|
|
||||||
u32 log_position;
|
Log_Function *log_string;
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////
|
////////////////////////////////
|
||||||
|
@ -950,6 +950,12 @@ Sys_Thread_Free_Sig(system_thread_free){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal
|
||||||
|
Sys_Thread_Get_ID_Sig(system_thread_get_id){
|
||||||
|
DWORD result = GetCurrentThreadId();
|
||||||
|
return((i32)result);
|
||||||
|
}
|
||||||
|
|
||||||
internal
|
internal
|
||||||
Sys_Mutex_Make_Sig(system_mutex_make){
|
Sys_Mutex_Make_Sig(system_mutex_make){
|
||||||
Win32_Object *object = win32_alloc_object(Win32ObjectKind_Mutex);
|
Win32_Object *object = win32_alloc_object(Win32ObjectKind_Mutex);
|
||||||
|
@ -1243,6 +1249,8 @@ win32_proc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam){
|
||||||
case WM_CLIPBOARDUPDATE:
|
case WM_CLIPBOARDUPDATE:
|
||||||
{
|
{
|
||||||
win32vars.got_useful_event = true;
|
win32vars.got_useful_event = true;
|
||||||
|
LogEventLit(win32vars.log_string(M), &shared_vars.scratch, 0, 0, system_thread_get_id(),
|
||||||
|
"new clipboard contents");
|
||||||
}break;
|
}break;
|
||||||
|
|
||||||
case WM_CLOSE:
|
case WM_CLOSE:
|
||||||
|
@ -1556,14 +1564,8 @@ WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdS
|
||||||
|
|
||||||
init_shared_vars();
|
init_shared_vars();
|
||||||
|
|
||||||
//
|
|
||||||
// Load Core Code
|
|
||||||
//
|
|
||||||
load_app_code();
|
load_app_code();
|
||||||
|
win32vars.log_string = app.get_logger(&sysfunc);
|
||||||
//
|
|
||||||
// Read Command Line
|
|
||||||
//
|
|
||||||
read_command_line(&shared_vars.scratch, argc, argv);
|
read_command_line(&shared_vars.scratch, argc, argv);
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -1601,7 +1603,6 @@ WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdS
|
||||||
|
|
||||||
HGLRC window_opengl_context = 0;
|
HGLRC window_opengl_context = 0;
|
||||||
if (!win32_gl_create_window(&win32vars.window_handle, &window_opengl_context, window_style, window_rect)){
|
if (!win32_gl_create_window(&win32vars.window_handle, &window_opengl_context, window_style, window_rect)){
|
||||||
//LOG("Window creation failed\n");
|
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1612,7 +1613,6 @@ WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdS
|
||||||
// Misc System Initializations
|
// Misc System Initializations
|
||||||
//
|
//
|
||||||
|
|
||||||
//LOG("Initializing clipboard\n");
|
|
||||||
if (!AddClipboardFormatListener(win32vars.window_handle)){
|
if (!AddClipboardFormatListener(win32vars.window_handle)){
|
||||||
win32_output_error_string(ErrorString_UseLog);
|
win32_output_error_string(ErrorString_UseLog);
|
||||||
}
|
}
|
||||||
|
@ -1645,12 +1645,10 @@ WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdS
|
||||||
LARGE_INTEGER f;
|
LARGE_INTEGER f;
|
||||||
if (QueryPerformanceFrequency(&f)){
|
if (QueryPerformanceFrequency(&f)){
|
||||||
win32vars.count_per_usecond = (f32)f.QuadPart / 1000000.f;
|
win32vars.count_per_usecond = (f32)f.QuadPart / 1000000.f;
|
||||||
//LOGF("Got performance frequency %f\n", win32vars.count_per_usecond);
|
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
// NOTE(allen): Just guess.
|
// NOTE(allen): Just guess.
|
||||||
win32vars.count_per_usecond = 1.f;
|
win32vars.count_per_usecond = 1.f;
|
||||||
//LOG("Did not get performance frequency, just guessing with 1.\n");
|
|
||||||
}
|
}
|
||||||
Assert(win32vars.count_per_usecond > 0.f);
|
Assert(win32vars.count_per_usecond > 0.f);
|
||||||
|
|
||||||
|
@ -1658,7 +1656,6 @@ WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdS
|
||||||
// App init
|
// App init
|
||||||
//
|
//
|
||||||
|
|
||||||
//LOG("Initializing application variables\n");
|
|
||||||
{
|
{
|
||||||
Temp_Memory temp = begin_temp(&shared_vars.scratch);
|
Temp_Memory temp = begin_temp(&shared_vars.scratch);
|
||||||
String_Const_u8 curdir = sysfunc.get_current_path(&shared_vars.scratch);
|
String_Const_u8 curdir = sysfunc.get_current_path(&shared_vars.scratch);
|
||||||
|
|
Loading…
Reference in New Issue