# fakegen.rb # A simple code generator to create some C macros for defining test fake functions $cpp_output = true $MAX_ARGS = 10 $DEFAULT_ARG_HISTORY = 50 $MAX_CALL_HISTORY = 50 def output_constants putd "#define FFF_MAX_ARGS (#{$MAX_ARGS}u)" putd "#ifndef FFF_ARG_HISTORY_LEN" putd " #define FFF_ARG_HISTORY_LEN (#{$DEFAULT_ARG_HISTORY}u)" putd "#endif" putd "#ifndef FFF_CALL_HISTORY_LEN" putd " #define FFF_CALL_HISTORY_LEN (#{$MAX_CALL_HISTORY}u)" putd "#endif" end # ------ Helper macros to use internally ------ # def output_internal_helper_macros putd "/* -- INTERNAL HELPER MACROS -- */" define_return_sequence_helper define_reset_fake_helper define_declare_arg_helper define_declare_all_func_common_helper define_save_arg_helper define_room_for_more_history define_save_arg_history_helper define_history_dropped_helper define_value_function_variables_helper define_increment_call_count_helper define_return_fake_result_helper define_extern_c_helper putd "/* -- END INTERNAL HELPER MACROS -- */" putd "" end def define_return_sequence_helper putd "#define SET_RETURN_SEQ( FUNCNAME, ARRAY_POINTER, ARRAY_LEN) \\" putd " FUNCNAME##_fake.return_val_seq = ARRAY_POINTER; \\" putd " FUNCNAME##_fake.return_val_seq_len = ARRAY_LEN;" end def define_reset_fake_helper putd "" putd "/* Defining a function to reset a fake function */" putd "#define RESET_FAKE(FUNCNAME) { \\" putd " FUNCNAME##_reset(); \\" putd "} \\" putd "" end def define_declare_arg_helper putd "" putd "#define DECLARE_ARG(type, n, FUNCNAME) \\" putd " type arg##n##_val; \\" putd " type arg##n##_history[FFF_ARG_HISTORY_LEN];" end def define_declare_all_func_common_helper putd "" # todo remove funcname putd "#define DECLARE_ALL_FUNC_COMMON \\" putd " unsigned int call_count; \\" putd " unsigned int arg_history_len;\\" putd " unsigned int arg_histories_dropped; \\" end def define_save_arg_helper putd "" putd "#define SAVE_ARG(FUNCNAME, n) \\" putd " FUNCNAME##_fake.arg##n##_val = arg##n" end def define_room_for_more_history putd "" putd "#define ROOM_FOR_MORE_HISTORY(FUNCNAME) \\" putd " FUNCNAME##_fake.call_count < FFF_ARG_HISTORY_LEN" end def define_save_arg_history_helper putd "" putd "#define SAVE_ARG_HISTORY(FUNCNAME, ARGN) \\" putd " FUNCNAME##_fake.arg##ARGN##_history[FUNCNAME##_fake.call_count] = arg##ARGN" end def define_history_dropped_helper putd "" putd "#define HISTORY_DROPPED(FUNCNAME) \\" putd " FUNCNAME##_fake.arg_histories_dropped++" end def define_value_function_variables_helper putd "" putd "#define DECLARE_VALUE_FUNCTION_VARIABLES(RETURN_TYPE) \\" putd " RETURN_TYPE return_val; \\" putd " int return_val_seq_len; \\" putd " int return_val_seq_idx; \\" putd " RETURN_TYPE * return_val_seq; \\" end def define_increment_call_count_helper putd "" putd "#define INCREMENT_CALL_COUNT(FUNCNAME) \\" putd " FUNCNAME##_fake.call_count++" end def define_return_fake_result_helper putd "" putd "#define RETURN_FAKE_RESULT(FUNCNAME) \\" putd " if (FUNCNAME##_fake.return_val_seq_len){ /* then its a sequence */ \\" putd " if(FUNCNAME##_fake.return_val_seq_idx < FUNCNAME##_fake.return_val_seq_len) { \\" putd " return FUNCNAME##_fake.return_val_seq[FUNCNAME##_fake.return_val_seq_idx++]; \\" putd " } \\" putd " return FUNCNAME##_fake.return_val_seq[FUNCNAME##_fake.return_val_seq_len-1]; /* return last element */ \\" putd " } \\" putd " return FUNCNAME##_fake.return_val; \\" end def define_extern_c_helper putd "" putd "#ifdef __cplusplus" putd " #define EXTERN_C extern \"C\"{" putd " #define END_EXTERN_C } " putd "#else /* ansi c */" putd " #define EXTERN_C " putd " #define END_EXTERN_C " putd "#endif /* cpp/ansi c */" end # ------ End Helper macros ------ # #fakegen helpers to print at levels of indentation $current_depth = 0 def putd(str) $current_depth.times {|not_used| print " "} puts str end def pushd $current_depth = $current_depth + 4 end def popd $current_depth = $current_depth - 4 end def output_macro(arg_count, is_value_function) fake_macro_name = is_value_function ? "FAKE_VALUE_FUNC#{arg_count}" : "FAKE_VOID_FUNC#{arg_count}"; declare_macro_name = "DECLARE_#{fake_macro_name}" define_macro_name = "DEFINE_#{fake_macro_name}" return_type = is_value_function ? "RETURN_TYPE" : "" putd "" output_macro_header(declare_macro_name, arg_count, return_type) pushd extern_c { # define argument capture variables output_variables(arg_count, is_value_function) } popd putd "" output_macro_header(define_macro_name, arg_count, return_type) pushd extern_c { putd "FUNCNAME##_Fake FUNCNAME##_fake;\\" putd function_signature(arg_count, is_value_function) + "{ \\" pushd output_function_body(arg_count, is_value_function) popd putd "} \\" output_reset_function(arg_count, is_value_function) } popd putd "" output_macro_header(fake_macro_name, arg_count, return_type) pushd putd macro_signature_for(declare_macro_name, arg_count, return_type) putd macro_signature_for(define_macro_name, arg_count, return_type) putd "" popd end def output_cpp_reset_code putd <<-REGISTRATION #include typedef void (*void_fptr)(); std::vector reset_functions; static void RESET_FAKES() { std::vector::iterator it = reset_functions.begin(); for( ; it != reset_functions.end(); ++it) { void_fptr ptr = *it; ptr(); } } REGISTRATION end def output_cpp_static_initializer putd <<-MY_STATIC_INITIALIZER #define STATIC_INIT(FUNCNAME) \\ class StaticInitializer_##FUNCNAME \\ { \\ public: \\ StaticInitializer_##FUNCNAME() \\ { \\ reset_functions.push_back(FUNCNAME##_reset); \\ } \\ }; \\ static StaticInitializer_##FUNCNAME staticInitializer_##FUNCNAME; \\ MY_STATIC_INITIALIZER end def output_macro_header(macro_name, arg_count, return_type) output_macro_name(macro_name, arg_count, return_type) end # #define #macro_name(RETURN_TYPE, FUNCNAME, ARG0,...) def output_macro_name(macro_name, arg_count, return_type) putd "#define " + macro_signature_for(macro_name, arg_count, return_type) end # #macro_name(RETURN_TYPE, FUNCNAME, ARG0,...) def macro_signature_for(macro_name, arg_count, return_type) parameter_list = "#{macro_name}(" if return_type != "" parameter_list += return_type parameter_list += ", " end parameter_list += "FUNCNAME" arg_count.times { |i| parameter_list += ", ARG#{i}_TYPE" } parameter_list += ") \\" parameter_list end def output_argument_capture_variables(argN) putd " DECLARE_ARG(ARG#{argN}_TYPE, #{argN}, FUNCNAME) \\" end def in_struct putd "typedef struct FUNCNAME##_Fake { \\" pushd yield popd putd "} FUNCNAME##_Fake;\\" end def output_variables(arg_count, is_value_function) in_struct{ arg_count.times { |argN| putd "DECLARE_ARG(ARG#{argN}_TYPE, #{argN}, FUNCNAME) \\" } putd "DECLARE_ALL_FUNC_COMMON \\" putd "DECLARE_VALUE_FUNCTION_VARIABLES(RETURN_TYPE) \\" unless not is_value_function output_custom_function_signature(arg_count, is_value_function) } putd "extern FUNCNAME##_Fake FUNCNAME##_fake;\\" putd "void FUNCNAME##_reset(); \\" end #example: ARG0_TYPE arg0, ARG1_TYPE arg1 def arg_val_list(args_count) arguments = [] args_count.times { |i| arguments << "ARG#{i}_TYPE arg#{i}" } arguments.join(", ") end #example: arg0, arg1 def arg_list(args_count) arguments = [] args_count.times { |i| arguments << "arg#{i}" } arguments.join(", ") end # RETURN_TYPE (*custom_fake)(ARG0_TYPE arg0);\ # void (*custom_fake)(ARG0_TYPE arg0, ARG1_TYPE arg1, ARG2_TYPE arg2);\ def output_custom_function_signature(arg_count, is_value_function) return_type = is_value_function ? "RETURN_TYPE" : "void" signature = "(*custom_fake)(#{arg_val_list(arg_count)}); \\" putd return_type + signature end # example: RETURN_TYPE FUNCNAME(ARG0_TYPE arg0, ARG1_TYPE arg1) def function_signature(arg_count, is_value_function) return_type = is_value_function ? "RETURN_TYPE" : "void" "#{return_type} FUNCNAME(#{arg_val_list(arg_count)})" end def output_function_body(arg_count, is_value_function) arg_count.times { |i| putd "SAVE_ARG(FUNCNAME, #{i}); \\" } putd "if(ROOM_FOR_MORE_HISTORY(FUNCNAME)){\\" arg_count.times { |i| putd " SAVE_ARG_HISTORY(FUNCNAME, #{i}); \\" } putd "}\\" putd "else{\\" putd " HISTORY_DROPPED(FUNCNAME);\\" putd "}\\" putd "INCREMENT_CALL_COUNT(FUNCNAME); \\" putd "if (FUNCNAME##_fake.custom_fake) FUNCNAME##_fake.custom_fake(#{arg_list(arg_count)}); \\" putd "REGISTER_CALL(FUNCNAME); \\" putd "RETURN_FAKE_RESULT(FUNCNAME) \\" if is_value_function end def output_reset_function(arg_count, is_value_function) putd "void FUNCNAME##_reset(){ \\" putd " memset(&FUNCNAME##_fake, 0, sizeof(FUNCNAME##_fake)); \\" putd " FUNCNAME##_fake.arg_history_len = FFF_ARG_HISTORY_LEN;\\" putd "} \\" end def define_fff_globals putd "extern void * call_history[FFF_CALL_HISTORY_LEN];" putd "extern unsigned int call_history_idx;" putd "void RESET_HISTORY();" putd "" putd "#define DEFINE_FFF_GLOBALS \\" putd " void * call_history[FFF_CALL_HISTORY_LEN]; \\" putd " unsigned int call_history_idx; \\" putd " void RESET_HISTORY() { \\" putd " call_history_idx = 0; \\" putd " } \\" putd "" putd "#define REGISTER_CALL(function) \\" putd " if(call_history_idx < FFF_CALL_HISTORY_LEN) call_history[call_history_idx++] = (void *)function;" end def extern_c putd "EXTERN_C \\" pushd yield popd putd "END_EXTERN_C \\" end def include_guard putd "#ifndef FAKE_FUNCTIONS" putd "#define FAKE_FUNCTIONS" putd "" yield putd "" putd "#endif // FAKE_FUNCTIONS" end def output_macro_counting_shortcuts putd <<-MACRO_COUNTING #define PP_NARG_MINUS2(...) \ PP_NARG_MINUS2_(__VA_ARGS__, PP_RSEQ_N_MINUS2()) #define PP_NARG_MINUS2_(...) \ PP_ARG_MINUS2_N(__VA_ARGS__) #define PP_ARG_MINUS2_N(returnVal, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, N, ...) N #define PP_RSEQ_N_MINUS2() \ 9,8,7,6,5,4,3,2,1,0 #define FAKE_VALUE_FUNC(...) \ FUNC_VALUE_(PP_NARG_MINUS2(__VA_ARGS__), __VA_ARGS__) #define FUNC_VALUE_(N,...) \ FUNC_VALUE_N(N,__VA_ARGS__) #define FUNC_VALUE_N(N,...) \ FAKE_VALUE_FUNC ## N(__VA_ARGS__) #define PP_NARG_MINUS1(...) \ PP_NARG_MINUS1_(__VA_ARGS__, PP_RSEQ_N_MINUS1()) #define PP_NARG_MINUS1_(...) \ PP_ARG_MINUS1_N(__VA_ARGS__) #define PP_ARG_MINUS1_N(_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, N, ...) N #define PP_RSEQ_N_MINUS1() \ 9,8,7,6,5,4,3,2,1,0 #define FAKE_VOID_FUNC(...) \ FUNC_VOID_(PP_NARG_MINUS1(__VA_ARGS__), __VA_ARGS__) #define FUNC_VOID_(N,...) \ FUNC_VOID_N(N,__VA_ARGS__) #define FUNC_VOID_N(N,...) \ FAKE_VOID_FUNC ## N(__VA_ARGS__) MACRO_COUNTING end def output_c_and_cpp include_guard { output_constants output_internal_helper_macros yield output_macro_counting_shortcuts } end # lets generate!! output_c_and_cpp{ define_fff_globals $MAX_ARGS.times {|arg_count| output_macro(arg_count, false)} $MAX_ARGS.times {|arg_count| output_macro(arg_count, true)} }