GetPath(1,&stgptr); printf("GetPath indicates string is '%s'.\n",stgptr);
ROUTINE GetPath MINARG=2 MAXARG=2 MODULE=SERVICES; ARG 1 NUM INPUT BYVALUE FORMAT=PIB4.; ARG 2 NUM OUTPUT BYADDR FORMAT=PIB4.;and could be invoked as follows:
call module('GetPath',1,stgptr); put stgptr= stgptr=hex8.;If the pointer value in STGPTR is 0035F780, STGPTR would actually be set to the decimal value 3536768, which is the decimal equivalent of 0035F780. So the PUT statement above would produce:
STGPTR=3536768 STGPTR=0035F780However, you want the data at address 0035F780, not the value of the pointer itself. To access that data, you need to use the PEEKCLONG function.
call module('SERVICES,GetPath',1,stgptr); length path $64; path = peekclong(stgptr,64); i = index(path,'00'x); if i then substr(path,i)=' '; /* path now contains the string */
call module('SERVICES,GetPath',1,stgptr); length path $64; path = put(peekclong(stgptr,64),$cstr64.);The $CSTR format accepts as input a character string of a specified width. It looks for a null terminator and pads the output string with blanks from that point.
* routines XYZ and BBB in FIRST.DLL; ROUTINE XYZ MINARG=1 MAXARG=1 MODULE=FIRST; ARG 1 NUM INPUT; ROUTINE BBB MINARG=1 MAXARG=1 MODULE=FIRST; ARG 1 NUM INPUT; * routines ABC and DDD in SECOND.DLL; ROUTINE ABC MINARG=1 MAXARG=1 MODULE=SECOND; ARG 1 NUM INPUT; ROUTINE DDD MINARG=1 MAXARG=1 MODULE=SECOND; ARG 1 NUM INPUT;and the DATA step looked like:
filename sascbtbl 'myattr.tbl'; data _null_; do i=1 to 50; /* FIRST.DLL is loaded only once */ value = modulen('XYZ',i); /* SECOND.DLL is loaded only once */ value2 = modulen('ABC',value); put i= value= value2=; end; run;In this example, MODULEN parses the attribute table during DATA step compilation. In the first loop iteration (i=1), FIRST.DLL is loaded and the XYZ routine is accessed when MODULEN calls for it. Next, SECOND.DLL is loaded and the ABC routine is accessed. For subsequent loop iterations (starting when i=2), FIRST.DLL and SECOND.DLL remain loaded, so the MODULEN function simply accesses the XYZ and ABC routines. SAS unloads both DLLs at the end of the DATA step.
HWND GetForegroundWindow(VOID); BOOL GetClientRect(HWND hWnd, LPRECT lprc);In C, the code to invoke them is:
typedef struct tagRECT { int left; int top; int right; int bottom; } RECT; /* RECT is a structure variable */ .... /* other code */ /* Need the window handle first */ hWnd=GetForegroundWindow(); /* Function call, passing the address */ /* of RECT */ GetClientRect(hWnd, &RECT);
routine GetForegroundWindow minarg=0 maxarg=0 stackpop=called module=USER32 returns=long; routine GetClientRect minarg=5 maxarg=5 stackpop=called module=USER32; arg 1 num input byvalue format=pib4.; arg 2 num update fdstart format=ib4.; arg 3 num update format=ib4.; arg 4 num update format=ib4.; arg 5 num update format=ib4.;with the following DATA step:
filename sascbtbl 'sascbtbl.dat'; data _null_; hwnd=modulen('GetForegroundWindow'); call module('GetClientRect',hwnd,left, top,right,bottom); put left= top= right= bottom=; run;
* attribute table entry for ABC; routine abc minarg=2 maxarg=2; arg 1 input format=ib4.; arg 2 output format=ib4.;Here is the DATA step with the MODULE calls:
data _null_; x=5; /* passing a variable as the */ /* second argument - OK */ call module('abc',1,x); /* passing a constant as the */ /* second argument - INVALID */ call module('abc',1,2); /* passing an expression as the */ /* second argument - INVALID */ call module('abc',1,x+1); run;
x
is updated with what the abc
routine returns for the second argument. The second call to MODULE
is not correct because a constant is passed. MODULE issues a warning
indicating you have passed a constant, and MODULE passes a temporary
area instead. The third call to MODULE is not correct as an arithmetic
expression is passed, causing a temporary location from the DATA step
to be used. The returned value is lost.
* attribute table entry; routine abc minarg=1 maxarg=1; arg 1 input char format=$cstr10.;
my string
before passing it to the abc
routine. This
action is equivalent to the following attribute entry: * attribute table entry; routine abc minarg=1 maxarg=1; arg 1 input char format=$char10.;
long xyz(a,b) long a; double b; { static char c = 'Y'; if (a == 'X') return(1); else if (b == c) return(2); else return(3); }
xyz
routine expects two arguments, a long and a double.
If the long is an X
, the actual value of
the long is 88 in decimal. This value is because an ASCII X
is stored as hexadecimal 58, and this value is promoted
to a long, represented as 0x00000058 (or 88 decimal). If the value
of a
is X
, or 88,
a 1 is returned. If the second argument, a double, is Y
(which is interpreted as 89), then 2 is returned.
xyz
. In C, you would invoke them as follows: x = xyz('X',(double)'Z'); y = xyz('Q',(double)'Y');This action occurs because
X
and Q
values are automatically
promoted to ints (which are the same as longs for the sake of this
example). The integer values corresponding to Z
and Y
are cast to doubles.
xyz
using the MODULEN function, your attribute table
must reflect the fact that you want to pass characters: routine xyz minarg=2 maxarg=2 returns=long; arg 1 input char byvalue format=$byval4.; arg 2 input char byvalue format=$byval8.;Note that it is important that the BYVALUE option appear in the ARG statement as well. Otherwise, MODULEN assumes that you want to pass a pointer to the routine, instead of a value.
i
in the control
string parameter to MODULE, SAS prints several informational messages
to the log. You can use these messages to determine whether you have
passed incorrect arguments or coded the attribute table incorrectly.
changi
routine (stored
in theoretical TRYMOD.DLL). In the example, MODULEIN passes the constant
6 and the matrix x2, which is a 4x5 matrix to be converted to an integer
matrix. The attribute table for changi
is
as follows: routine changi module=trymod returns=long; arg 1 input num format=ib4. byvalue; arg 2 update num format=ib4.;The following IML step invokes MODULEIN:
proc iml; x1 = J(4,5,0); do i=1 to 4; do j=1 to 5; x1[i,j] = i*10+j+3; end; end; y1= x1; x2 = x1; y2 = y1; rc = modulein('*i','changi',6,x2); ....The
'*i'
control
string causes the lines shown in MODULEIN Output to be printed in the log.
---PARM LIST FOR MODULEIN ROUTINE--- CHR PARM 1 885E0AA8 2A69 (*i) CHR PARM 2 885E0AD0 6368616E6769 (changi) NUM PARM 3 885E0AE0 0000000000001840 NUM PARM 4 885E07F0 0000000000002C400000000000002E40000000000000304000000000000031400000000000003240 000000000000384000000000000039400000000000003A400000000000003B400000000000003C40 0000000000004140000000000080414000000000 ---ROUTINE changi LOADED AT ADDRESS 886119B8 (PARMLIST AT 886033A0)--- PARM 1 06000000 <CALL-BY-VALUE> PARM 2 88604720 0E0000000F00000010000000110000001200000018000000190000001A0000001B0000001C000000 22000000230000002400000025000000260000002C0000002D0000002E0000002F00000030000000 ---VALUES UPON RETURN FROM changi ROUTINE--- PARM 1 06000000 <CALL-BY-VALUE> PARM 2 88604720 140000001F0000002A0000003500000040000000820000008D00000098000000A3000000AE000000 F0000000FB00000006010000110100001C0100005E01000069010000740100007F0100008A010000 ---VALUES UPON RETURN FROM MODULEIN ROUTINE--- NUM PARM 3 885E0AE0 0000000000001840 NUM PARM 4 885E07F0 00000000000034400000000000003F4000000000000045400000000000804A400000000000005040 00000000004060400000000000A06140000000000000634000000000006064400000000000C06540 0000000000006E400000000000606F4000000000
*i
option prints the entire argument; be careful if you use this option
with large matrices because the log might become quite large.