mirror of
https://github.com/sasjs/core.git
synced 2026-01-15 12:30:06 +00:00
feat: new mcf_init.sas macro to handle function compilation tracking (and associated test). Further updates to support mp_stackdiffs test results so far
This commit is contained in:
44
fcmp/mcf_init.sas
Normal file
44
fcmp/mcf_init.sas
Normal file
@@ -0,0 +1,44 @@
|
||||
/**
|
||||
@file
|
||||
@brief Sets up the mcf_xx functions
|
||||
@details
|
||||
There is no (efficient) way to determine if an mcf_xx macro has already been
|
||||
invoked. So, we make use of a global macro variable list to keep track.
|
||||
|
||||
Usage:
|
||||
|
||||
%mcf_init(MCF_LENGTH)
|
||||
|
||||
Returns:
|
||||
|
||||
> 1 (if already initialised) else 0
|
||||
|
||||
@param [in] func The function to be initialised
|
||||
|
||||
<h4> Related Macros </h4>
|
||||
@li mcf_init.test.sas
|
||||
|
||||
**/
|
||||
|
||||
%macro mcf_init(func
|
||||
)/*/STORE SOURCE*/;
|
||||
|
||||
%if not (%symexist(SASJS_PREFIX)) %then %do;
|
||||
%global SASJS_PREFIX;
|
||||
%let SASJS_PREFIX=SASJS;
|
||||
%end;
|
||||
|
||||
%let func=%upcase(&func);
|
||||
|
||||
/* the / character is just a seperator */
|
||||
%global &sasjs_prefix._FUNCTIONS;
|
||||
%if %index(&&&sasjs_prefix._FUNCTIONS,&func/)>0 %then %do;
|
||||
1
|
||||
%return;
|
||||
%end;
|
||||
%else %do;
|
||||
%let &sasjs_prefix._FUNCTIONS=&&&sasjs_prefix._FUNCTIONS &func/;
|
||||
0
|
||||
%end;
|
||||
|
||||
%mend mcf_init;
|
||||
Reference in New Issue
Block a user