4coder/custom/4coder_project_commands.h

149 lines
4.8 KiB
C
Raw Normal View History

2018-05-09 05:22:33 +00:00
/*
4coder_project_commands.h - type header paired with 4coder_project_commands.cpp
*/
// TOP
#if !defined(FCODER_PROJECT_COMMANDS_H)
#define FCODER_PROJECT_COMMANDS_H
// TODO(allen): names pass
////////////////////////////////
// NOTE(allen): Match Pattern Types
2018-05-09 05:22:33 +00:00
struct Match_Pattern{
String8List absolutes;
};
struct Match_Pattern_Node{
Match_Pattern_Node *next;
Match_Pattern pattern;
};
struct Match_Pattern_List{
Match_Pattern_Node *first;
Match_Pattern_Node *last;
i32 count;
};
typedef u32 Prj_Open_File_Flags;
enum{
PrjOpenFileFlag_Recursive = 1,
};
///////////////////////////////
// NOTE(allen): Project v0-v1 Structure
struct Project_File_Load_Path{
String8 path;
b32 recursive;
b32 relative;
};
struct Project_File_Load_Path_Array{
Project_File_Load_Path *paths;
i32 count;
};
struct Project_Command{
String8 name;
String8 cmd;
String8 out;
b32 footer_panel;
b32 save_dirty_files;
b32 cursor_at_end;
};
struct Project_Command_Array{
Project_Command *commands;
i32 count;
2018-05-09 05:22:33 +00:00
};
struct Project{
b32 loaded;
2018-05-09 05:22:33 +00:00
String8 dir;
String8 name;
2018-05-09 05:22:33 +00:00
Match_Pattern_List pattern_list;
Match_Pattern_List blacklist_pattern_list;
Project_File_Load_Path_Array load_path_array;
Project_Command_Array command_array;
i32 fkey_commands[16];
};
enum Project_OS_Match_Level{
2018-06-16 20:57:32 +00:00
ProjectOSMatchLevel_NoMatch = 0,
ProjectOSMatchLevel_PassiveMatch = 1,
ProjectOSMatchLevel_ActiveMatch = 2,
};
2018-05-09 05:22:33 +00:00
///////////////////////////////
// NOTE(allen): Project Files
2018-05-09 05:22:33 +00:00
struct Project_Setup_Status{
b32 bat_exists;
b32 sh_exists;
b32 project_exists;
b32 everything_exists;
2018-05-09 05:22:33 +00:00
};
struct Project_Key_Strings{
b32 success;
String8 script_file;
String8 code_file;
String8 output_dir;
String8 binary_file;
};
////////////////////////////////
// NOTE(allen): File Pattern Operators
function Match_Pattern_List prj_pattern_list_from_extension_array(Arena *arena, String8Array list);
function Match_Pattern_List prj_pattern_list_from_var(Arena *arena, Variable_Handle var);
function Match_Pattern_List prj_get_standard_blacklist(Arena *arena);
function b32 prj_match_in_pattern_list(String8 string, Match_Pattern_List list);
function void prj_close_files_with_ext(Application_Links *app, String8Array extension_array);
function void prj_open_files_pattern_filter(Application_Links *app, String8 dir, Match_Pattern_List whitelist, Match_Pattern_List blacklist, Prj_Open_File_Flags flags);
function void prj_open_all_files_with_ext_in_hot(Application_Links *app, String8Array array, Prj_Open_File_Flags flags);
////////////////////////////////
// NOTE(allen): Project Parse
function void prj_parse_pattern_list(Arena *arena, Config *parsed, char *root_variable_name, Match_Pattern_List *list_out);
function Project_OS_Match_Level prj_parse_v1_os_match(String8 str, String8 this_os_str);
function Project *prj_parse_from_v1_config_data(Application_Links *app, Arena *arena, String8 root_dir, Config *parsed);
function String8 prj_join_pattern_string(Arena *arena, String8List list);
function String8 prj_sanitize_string(Arena *arena, String8 string);
function Variable_Handle prj_version_1_to_version_2(Application_Links *app, Config *parsed, Project *project);
////////////////////////////////
// NOTE(allen): Project Files
function Project_Setup_Status prj_file_is_setup(Application_Links *app, String8 script_path, String8 script_file);
function Project_Key_Strings prj_get_key_strings(Application_Links *app, b32 get_script_file, b32 get_code_file, u8* script_file_space, i32 script_file_cap, u8* code_file_space, i32 code_file_cap, u8* output_dir_space, i32 output_dir_cap, u8* binary_file_space, i32 binary_file_cap);
function b32 prj_generate_bat(Arena *scratch, String8 opts, String8 compiler, String8 script_path, String8 script_file, String8 code_file, String8 output_dir, String8 binary_file);
function b32 prj_generate_sh(Arena *scratch, String8 opts, String8 compiler, String8 script_path, String8 script_file, String8 code_file, String8 output_dir, String8 binary_file);
function b32 prj_generate_project(Arena *scratch, String8 script_path, String8 script_file, String8 output_dir, String8 binary_file);
////////////////////////////////
// NOTE(allen): Project Operations
function void prj_exec_command(Application_Links *app, Variable_Handle cmd_var);
function Variable_Handle prj_command_from_name(Application_Links *app, String8 cmd_name);
function void prj_exec_command_name(Application_Links *app, String8 cmd_name);
function void prj_exec_command_fkey_index(Application_Links *app, i32 fkey_index);
function String8 prj_path_from_project(Arena *arena, Variable_Handle project);
function Variable_Handle prj_cmd_from_user(Application_Links *app, Variable_Handle prj_var, String8 query);
2018-05-09 05:22:33 +00:00
#endif
// BOTTOM