93 lines
2.4 KiB
C++
93 lines
2.4 KiB
C++
/*
|
|
* Mr. 4th Dimention - Allen Webster
|
|
*
|
|
* 28.06.2017
|
|
*
|
|
* Mac file tracking C++ wrapper.
|
|
*
|
|
*/
|
|
|
|
// TOP
|
|
|
|
File_Track_Result
|
|
init_track_system(File_Track_System *system, Partition *scratch, void *table_memory, i32 table_memory_size, void *listener_memory, i32 listener_memory_size){
|
|
File_Track_Result result = FileTrack_Good;
|
|
// NOTE(allen): Do nothing???
|
|
return(result);
|
|
}
|
|
|
|
File_Track_Result
|
|
add_listener(File_Track_System *system, Partition *scratch, u8 *filename){
|
|
File_Track_Result result = FileTrack_Good;
|
|
#if 1
|
|
#if 1
|
|
// HACK(allen) HACK(allen) HACK(allen)
|
|
char strspace[1024];
|
|
String str = make_fixed_width_string(strspace);
|
|
copy(&str, (char*)filename);
|
|
remove_last_folder(&str);
|
|
--str.size;
|
|
terminate_with_null(&str);
|
|
osx_add_file_listener(str.str);
|
|
#else
|
|
osx_add_file_listener((char*)filename);
|
|
#endif
|
|
#endif
|
|
return(result);
|
|
}
|
|
|
|
File_Track_Result
|
|
remove_listener(File_Track_System *system, Partition *scratch, u8 *filename){
|
|
File_Track_Result result = FileTrack_Good;
|
|
#if 1
|
|
// HACK(allen) HACK(allen) HACK(allen)
|
|
char strspace[1024];
|
|
String str = make_fixed_width_string(strspace);
|
|
copy(&str, (char*)filename);
|
|
remove_last_folder(&str);
|
|
--str.size;
|
|
terminate_with_null(&str);
|
|
osx_remove_file_listener(str.str);
|
|
#else
|
|
osx_remove_file_listener((char*)filename);
|
|
#endif
|
|
return(result);
|
|
}
|
|
|
|
File_Track_Result
|
|
move_track_system(File_Track_System *system, Partition *scratch, void *mem, i32 size){
|
|
File_Track_Result result = FileTrack_Good;
|
|
// NOTE(allen): Do nothing???
|
|
return(result);
|
|
}
|
|
|
|
File_Track_Result
|
|
expand_track_system_listeners(File_Track_System *system, Partition *scratch, void *mem, i32 size){
|
|
File_Track_Result result = FileTrack_Good;
|
|
// NOTE(allen): Do nothing???
|
|
return(result);
|
|
}
|
|
|
|
File_Track_Result
|
|
get_change_event(File_Track_System *system, Partition *scratch, u8 *buffer, i32 max, i32 *size){
|
|
File_Track_Result result = FileTrack_Good;
|
|
i32 status = osx_get_file_change_event((char*)buffer, max, size);
|
|
if (status == 0){
|
|
result = FileTrack_NoMoreEvents;
|
|
}
|
|
if (status == -1){
|
|
result = FileTrack_MemoryTooSmall;
|
|
}
|
|
return(result);
|
|
}
|
|
|
|
File_Track_Result
|
|
shut_down_track_system(File_Track_System *system, Partition *scratch){
|
|
File_Track_Result result = FileTrack_Good;
|
|
// NOTE(allen): Do nothing???
|
|
return(result);
|
|
}
|
|
|
|
// BOTTOM
|
|
|