Macros for SAS Application Developers
https://github.com/sasjs/core
Loading...
Searching...
No Matches
ms_createwebservice.sas
Go to the documentation of this file.
1/**
2 @file ms_createwebservice.sas
3 @brief Create a Web-Ready Stored Program
4 @details This macro creates a Stored Program along with the necessary precode
5 to enable the %webout() macro
6
7 Usage:
8 <code>
9 %* compile macros ;
10 filename mc url "https://raw.githubusercontent.com/sasjs/core/main/all.sas";
11 %inc mc;
12
13 %* parmcards lets us write to a text file from open code ;
14 filename ft15f001 temp;
15 parmcards4;
16 %webout(FETCH)
17 %* do some sas, any inputs are now already WORK tables;
18 data example1 example2;
19 set sashelp.class;
20 run;
21 %* send data back;
22 %webout(OPEN)
23 %webout(ARR,example1) * Array format, fast, suitable for large tables ;
24 %webout(OBJ,example2) * Object format, easier to work with ;
25 %webout(CLOSE)
26 ;;;;
27 %ms_createwebservice(path=/Public/app/common,name=appInit,code=ft15f001)
28
29 </code>
30
31 For more examples of using these web services with the SASjs Adapter, see:
32 https://github.com/sasjs/adapter#readme
33
34 @param [in] path= (0) The full SASjs Drive path in which to create the service
35 @param [in] name= Stored Program name
36 @param [in] desc= The description of the service (not implemented yet)
37 @param [in] precode= Space separated list of filerefs, pointing to the code
38 that needs to be attached to the beginning of the service (optional)
39 @param [in] code= (ft15f001) Space seperated fileref(s) of the actual code to
40 be added
41 @param [in] mDebug= (0) set to 1 to show debug messages in the log
42
43 <h4> SAS Macros </h4>
44 @li ms_createfile.sas
45 @li mf_getuser.sas
46 @li mf_getuniquename.sas
47 @li mf_getuniquefileref.sas
48 @li mp_abort.sas
49
50 <h4> Related Files </h4>
51 @li ms_createwebservice.test.sas
52
53 @version 9.2
54 @author Allan Bowe
55
56**/
57
58%macro ms_createwebservice(path=0
59 ,name=initService
60 ,precode=
61 ,code=ft15f001
62 ,desc=Not currently used
63 ,mDebug=0
64)/*/STORE SOURCE*/;
65
66%local dbg;
67%if &mdebug=1 %then %do;
68 %put &sysmacroname entry vars:;
69 %put _local_;
70%end;
71%else %let dbg=*;
72
73%mp_abort(iftrue=(&syscc ge 4 )
74 ,mac=ms_createwebservice
75 ,msg=%str(syscc=&syscc on macro entry)
76)
77%mp_abort(iftrue=("&path"="0")
78 ,mac=ms_createwebservice
79 ,msg=%str(Path not provided)
80)
81
82/* remove any trailing slash */
83%if "%substr(&path,%length(&path),1)" = "/" %then
84 %let path=%substr(&path,1,%length(&path)-1);
85
86/**
87 * Add webout macro
88 * These put statements are auto generated - to change the macro, change the
89 * source (ms_webout) and run `build.py`
90 */
91%local sasjsref;
92%let sasjsref=%mf_getuniquefileref();
93data _null_;
94 file &sasjsref termstr=crlf lrecl=512;
95 put "/* Created on %sysfunc(datetime(),datetime19.) by %mf_getuser() */";
96/* WEBOUT BEGIN */
97 put '%macro mp_jsonout(action,ds,jref=_webout,dslabel=,fmt=Y ';
98 put ' ,engine=DATASTEP ';
99 put ' ,missing=NULL ';
100 put ' ,showmeta=N ';
101 put ' ,maxobs=MAX ';
102 put ')/*/STORE SOURCE*/; ';
103 put '%local tempds colinfo fmtds i numcols numobs stmt_obs lastobs optval ';
104 put ' tmpds1 tmpds2 tmpds3 tmpds4; ';
105 put '%let numcols=0; ';
106 put '%if &maxobs ne MAX %then %let stmt_obs=%str(if _n_>&maxobs then stop;); ';
107 put ' ';
108 put '%if &action=OPEN %then %do; ';
109 put ' options nobomfile; ';
110 put ' data _null_;file &jref encoding=''utf-8'' lrecl=200; ';
111 put ' put ''{"PROCESSED_DTTM" : "'' "%sysfunc(datetime(),E8601DT26.6)" ''"''; ';
112 put ' run; ';
113 put '%end; ';
114 put '%else %if (&action=ARR or &action=OBJ) %then %do; ';
115 put ' /* force variable names to always be uppercase in the JSON */ ';
116 put ' options validvarname=upcase; ';
117 put ' /* To avoid issues with _webout on EBI - such as encoding diffs and truncation ';
118 put ' (https://support.sas.com/kb/49/325.html) we use temporary files */ ';
119 put ' filename _sjs1 temp lrecl=200 ; ';
120 put ' data _null_; file _sjs1 encoding=''utf-8''; ';
121 put ' put ", ""%lowcase(%sysfunc(coalescec(&dslabel,&ds)))"":"; ';
122 put ' run; ';
123 put ' /* now write to _webout 1 char at a time */ ';
124 put ' data _null_; ';
125 put ' infile _sjs1 lrecl=1 recfm=n; ';
126 put ' file &jref mod lrecl=1 recfm=n; ';
127 put ' input sourcechar $char1. @@; ';
128 put ' format sourcechar hex2.; ';
129 put ' put sourcechar char1. @@; ';
130 put ' run; ';
131 put ' filename _sjs1 clear; ';
132 put ' ';
133 put ' /* grab col defs */ ';
134 put ' proc contents noprint data=&ds ';
135 put ' out=_data_(keep=name type length format formatl formatd varnum label); ';
136 put ' run; ';
137 put ' %let colinfo=%scan(&syslast,2,.); ';
138 put ' proc sort data=&colinfo; ';
139 put ' by varnum; ';
140 put ' run; ';
141 put ' /* move meta to mac vars */ ';
142 put ' data &colinfo; ';
143 put ' if _n_=1 then call symputx(''numcols'',nobs,''l''); ';
144 put ' set &colinfo end=last nobs=nobs; ';
145 put ' name=upcase(name); ';
146 put ' /* fix formats */ ';
147 put ' if type=2 or type=6 then do; ';
148 put ' typelong=''char''; ';
149 put ' length fmt $49.; ';
150 put ' if format='''' then fmt=cats(''$'',length,''.''); ';
151 put ' else if formatl=0 then fmt=cats(format,''.''); ';
152 put ' else fmt=cats(format,formatl,''.''); ';
153 put ' end; ';
154 put ' else do; ';
155 put ' typelong=''num''; ';
156 put ' if format='''' then fmt=''best.''; ';
157 put ' else if formatl=0 then fmt=cats(format,''.''); ';
158 put ' else if formatd=0 then fmt=cats(format,formatl,''.''); ';
159 put ' else fmt=cats(format,formatl,''.'',formatd); ';
160 put ' end; ';
161 put ' /* 32 char unique name */ ';
162 put ' newname=''sasjs''!!substr(cats(put(md5(name),$hex32.)),1,27); ';
163 put ' ';
164 put ' call symputx(cats(''name'',_n_),name,''l''); ';
165 put ' call symputx(cats(''newname'',_n_),newname,''l''); ';
166 put ' call symputx(cats(''length'',_n_),length,''l''); ';
167 put ' call symputx(cats(''fmt'',_n_),fmt,''l''); ';
168 put ' call symputx(cats(''type'',_n_),type,''l''); ';
169 put ' call symputx(cats(''typelong'',_n_),typelong,''l''); ';
170 put ' call symputx(cats(''label'',_n_),coalescec(label,name),''l''); ';
171 put ' /* overwritten when fmt=Y and a custom format exists in catalog */ ';
172 put ' if typelong=''num'' then call symputx(cats(''fmtlen'',_n_),200,''l''); ';
173 put ' else call symputx(cats(''fmtlen'',_n_),min(32767,ceil((length+10)*1.5)),''l''); ';
174 put ' run; ';
175 put ' ';
176 put ' %let tempds=%substr(_%sysfunc(compress(%sysfunc(uuidgen()),-)),1,32); ';
177 put ' proc sql; ';
178 put ' select count(*) into: lastobs from &ds; ';
179 put ' %if &maxobs ne MAX %then %let lastobs=%sysfunc(min(&lastobs,&maxobs)); ';
180 put ' ';
181 put ' %if &engine=PROCJSON %then %do; ';
182 put ' %if &missing=STRING %then %do; ';
183 put ' %put &sysmacroname: Special Missings not supported in proc json.; ';
184 put ' %put &sysmacroname: Switching to DATASTEP engine; ';
185 put ' %goto datastep; ';
186 put ' %end; ';
187 put ' data &tempds; ';
188 put ' set &ds; ';
189 put ' &stmt_obs; ';
190 put ' %if &fmt=N %then format _numeric_ best32.;; ';
191 put ' /* PRETTY is necessary to avoid line truncation in large files */ ';
192 put ' filename _sjs2 temp lrecl=131068 encoding=''utf-8''; ';
193 put ' proc json out=_sjs2 pretty ';
194 put ' %if &action=ARR %then nokeys ; ';
195 put ' ;export &tempds / nosastags fmtnumeric; ';
196 put ' run; ';
197 put ' /* send back to webout */ ';
198 put ' data _null_; ';
199 put ' infile _sjs2 lrecl=1 recfm=n; ';
200 put ' file &jref mod lrecl=1 recfm=n; ';
201 put ' input sourcechar $char1. @@; ';
202 put ' format sourcechar hex2.; ';
203 put ' put sourcechar char1. @@; ';
204 put ' run; ';
205 put ' filename _sjs2 clear; ';
206 put ' %end; ';
207 put ' %else %if &engine=DATASTEP %then %do; ';
208 put ' %datastep: ';
209 put ' %if %sysfunc(exist(&ds)) ne 1 & %sysfunc(exist(&ds,VIEW)) ne 1 ';
210 put ' %then %do; ';
211 put ' %put &sysmacroname: &ds NOT FOUND!!!; ';
212 put ' %return; ';
213 put ' %end; ';
214 put ' ';
215 put ' %if &fmt=Y %then %do; ';
216 put ' /** ';
217 put ' * Extract format definitions ';
218 put ' * First, by getting library locations from dictionary.formats ';
219 put ' * Then, by exporting the width using proc format ';
220 put ' * Cannot use maxw from sashelp.vformat as not always populated ';
221 put ' * Cannot use fmtinfo() as not supported in all flavours ';
222 put ' */ ';
223 put ' %let tmpds1=%substr(fmtsum%sysfunc(compress(%sysfunc(uuidgen()),-)),1,32); ';
224 put ' %let tmpds2=%substr(cntl%sysfunc(compress(%sysfunc(uuidgen()),-)),1,32); ';
225 put ' %let tmpds3=%substr(cntl%sysfunc(compress(%sysfunc(uuidgen()),-)),1,32); ';
226 put ' %let tmpds4=%substr(col%sysfunc(compress(%sysfunc(uuidgen()),-)),1,32); ';
227 put ' proc sql noprint; ';
228 put ' create table &tmpds1 as ';
229 put ' select cats(libname,''.'',memname) as FMTCAT, ';
230 put ' FMTNAME ';
231 put ' from dictionary.formats ';
232 put ' where fmttype=''F'' and libname is not null ';
233 put ' and fmtname in (select format from &colinfo where format is not null) ';
234 put ' order by 1; ';
235 put ' create table &tmpds2( ';
236 put ' FMTNAME char(32), ';
237 put ' LENGTH num ';
238 put ' ); ';
239 put ' %local catlist cat fmtlist i; ';
240 put ' select distinct fmtcat into: catlist separated by '' '' from &tmpds1; ';
241 put ' %do i=1 %to %sysfunc(countw(&catlist,%str( ))); ';
242 put ' %let cat=%scan(&catlist,&i,%str( )); ';
243 put ' proc sql; ';
244 put ' select distinct fmtname into: fmtlist separated by '' '' ';
245 put ' from &tmpds1 where fmtcat="&cat"; ';
246 put ' proc format lib=&cat cntlout=&tmpds3(keep=fmtname length); ';
247 put ' select &fmtlist; ';
248 put ' run; ';
249 put ' proc sql; ';
250 put ' insert into &tmpds2 select distinct fmtname,length from &tmpds3; ';
251 put ' %end; ';
252 put ' ';
253 put ' proc sql; ';
254 put ' create table &tmpds4 as ';
255 put ' select a.*, b.length as MAXW ';
256 put ' from &colinfo a ';
257 put ' left join &tmpds2 b ';
258 put ' on cats(a.format)=cats(upcase(b.fmtname)) ';
259 put ' order by a.varnum; ';
260 put ' data _null_; ';
261 put ' set &tmpds4; ';
262 put ' if not missing(maxw); ';
263 put ' call symputx( ';
264 put ' cats(''fmtlen'',_n_), ';
265 put ' /* vars need extra padding due to JSON escaping of special chars */ ';
266 put ' min(32767,ceil((max(length,maxw)+10)*1.5)) ';
267 put ' ,''l'' ';
268 put ' ); ';
269 put ' run; ';
270 put ' ';
271 put ' /* configure varlenchk - as we are explicitly shortening the variables */ ';
272 put ' %let optval=%sysfunc(getoption(varlenchk)); ';
273 put ' options varlenchk=NOWARN; ';
274 put ' data _data_(compress=char); ';
275 put ' /* shorten the new vars */ ';
276 put ' length ';
277 put ' %do i=1 %to &numcols; ';
278 put ' &&name&i $&&fmtlen&i ';
279 put ' %end; ';
280 put ' ; ';
281 put ' /* rename on entry */ ';
282 put ' set &ds(rename=( ';
283 put ' %do i=1 %to &numcols; ';
284 put ' &&name&i=&&newname&i ';
285 put ' %end; ';
286 put ' )); ';
287 put ' &stmt_obs; ';
288 put ' ';
289 put ' drop ';
290 put ' %do i=1 %to &numcols; ';
291 put ' &&newname&i ';
292 put ' %end; ';
293 put ' ; ';
294 put ' %do i=1 %to &numcols; ';
295 put ' %if &&typelong&i=num %then %do; ';
296 put ' &&name&i=cats(put(&&newname&i,&&fmt&i)); ';
297 put ' %end; ';
298 put ' %else %do; ';
299 put ' &&name&i=put(&&newname&i,&&fmt&i); ';
300 put ' %end; ';
301 put ' %end; ';
302 put ' if _error_ then do; ';
303 put ' call symputx(''syscc'',1012); ';
304 put ' stop; ';
305 put ' end; ';
306 put ' run; ';
307 put ' %let fmtds=&syslast; ';
308 put ' options varlenchk=&optval; ';
309 put ' %end; ';
310 put ' ';
311 put ' proc format; /* credit yabwon for special null removal */ ';
312 put ' value bart (default=40) ';
313 put ' %if &missing=NULL %then %do; ';
314 put ' ._ - .z = null ';
315 put ' %end; ';
316 put ' %else %do; ';
317 put ' ._ = [quote()] ';
318 put ' . = null ';
319 put ' .a - .z = [quote()] ';
320 put ' %end; ';
321 put ' other = [best.]; ';
322 put ' ';
323 put ' data &tempds; ';
324 put ' attrib _all_ label=''''; ';
325 put ' %do i=1 %to &numcols; ';
326 put ' %if &&typelong&i=char or &fmt=Y %then %do; ';
327 put ' length &&name&i $&&fmtlen&i...; ';
328 put ' format &&name&i $&&fmtlen&i...; ';
329 put ' %end; ';
330 put ' %end; ';
331 put ' %if &fmt=Y %then %do; ';
332 put ' set &fmtds; ';
333 put ' %end; ';
334 put ' %else %do; ';
335 put ' set &ds; ';
336 put ' %end; ';
337 put ' &stmt_obs; ';
338 put ' format _numeric_ bart.; ';
339 put ' %do i=1 %to &numcols; ';
340 put ' %if &&typelong&i=char or &fmt=Y %then %do; ';
341 put ' if findc(&&name&i,''"\''!!''0A0D09000E0F010210111A''x) then do; ';
342 put ' &&name&i=''"''!!trim( ';
343 put ' prxchange(''s/"/\\"/'',-1, /* double quote */ ';
344 put ' prxchange(''s/\x0A/\n/'',-1, /* new line */ ';
345 put ' prxchange(''s/\x0D/\r/'',-1, /* carriage return */ ';
346 put ' prxchange(''s/\x09/\\t/'',-1, /* tab */ ';
347 put ' prxchange(''s/\x00/\\u0000/'',-1, /* NUL */ ';
348 put ' prxchange(''s/\x0E/\\u000E/'',-1, /* SS */ ';
349 put ' prxchange(''s/\x0F/\\u000F/'',-1, /* SF */ ';
350 put ' prxchange(''s/\x01/\\u0001/'',-1, /* SOH */ ';
351 put ' prxchange(''s/\x02/\\u0002/'',-1, /* STX */ ';
352 put ' prxchange(''s/\x10/\\u0010/'',-1, /* DLE */ ';
353 put ' prxchange(''s/\x11/\\u0011/'',-1, /* DC1 */ ';
354 put ' prxchange(''s/\x1A/\\u001A/'',-1, /* SUB */ ';
355 put ' prxchange(''s/\\/\\\\/'',-1,&&name&i) ';
356 put ' )))))))))))))!!''"''; ';
357 put ' end; ';
358 put ' /* trim (not cats) so leading blanks are retained */ ';
359 put ' else &&name&i=''"''!!trim(&&name&i)!!''"''; ';
360 put ' %end; ';
361 put ' %end; ';
362 put ' run; ';
363 put ' ';
364 put ' filename _sjs3 temp lrecl=131068 ; ';
365 put ' data _null_; ';
366 put ' file _sjs3 encoding=''utf-8''; ';
367 put ' if _n_=1 then put "["; ';
368 put ' set &tempds; ';
369 put ' if _n_>1 then put "," @; put ';
370 put ' %if &action=ARR %then "[" ; %else "{" ; ';
371 put ' %do i=1 %to &numcols; ';
372 put ' %if &i>1 %then "," ; ';
373 put ' %if &action=OBJ %then """&&name&i"":" ; ';
374 put ' "&&name&i"n /* name literal for reserved variable names */ ';
375 put ' %end; ';
376 put ' %if &action=ARR %then "]" ; %else "}" ; ; ';
377 put ' ';
378 put ' /* close out the table */ ';
379 put ' data _null_; ';
380 put ' file _sjs3 mod encoding=''utf-8''; ';
381 put ' put '']''; ';
382 put ' run; ';
383 put ' data _null_; ';
384 put ' infile _sjs3 lrecl=1 recfm=n; ';
385 put ' file &jref mod lrecl=1 recfm=n; ';
386 put ' input sourcechar $char1. @@; ';
387 put ' format sourcechar hex2.; ';
388 put ' put sourcechar char1. @@; ';
389 put ' run; ';
390 put ' filename _sjs3 clear; ';
391 put ' %end; ';
392 put ' ';
393 put ' proc sql; ';
394 put ' drop table &colinfo, &tempds; ';
395 put ' ';
396 put ' %if %substr(&showmeta,1,1)=Y %then %do; ';
397 put ' filename _sjs4 temp lrecl=131068 encoding=''utf-8''; ';
398 put ' data _null_; ';
399 put ' file _sjs4; ';
400 put ' length label $350; ';
401 put ' put ", ""$%lowcase(%sysfunc(coalescec(&dslabel,&ds)))"":{""vars"":{"; ';
402 put ' do i=1 to &numcols; ';
403 put ' name=quote(trim(symget(cats(''name'',i)))); ';
404 put ' format=quote(trim(symget(cats(''fmt'',i)))); ';
405 put ' label=quote(prxchange(''s/\\/\\\\/'',-1,trim(symget(cats(''label'',i))))); ';
406 put ' length=quote(trim(symget(cats(''length'',i)))); ';
407 put ' type=quote(trim(symget(cats(''typelong'',i)))); ';
408 put ' if i>1 then put "," @@; ';
409 put ' put name '':{"format":'' format '',"label":'' label ';
410 put ' '',"length":'' length '',"type":'' type ''}''; ';
411 put ' end; ';
412 put ' put ''}}''; ';
413 put ' run; ';
414 put ' /* send back to webout */ ';
415 put ' data _null_; ';
416 put ' infile _sjs4 lrecl=1 recfm=n; ';
417 put ' file &jref mod lrecl=1 recfm=n; ';
418 put ' input sourcechar $char1. @@; ';
419 put ' format sourcechar hex2.; ';
420 put ' put sourcechar char1. @@; ';
421 put ' run; ';
422 put ' filename _sjs4 clear; ';
423 put ' %end; ';
424 put '%end; ';
425 put ' ';
426 put '%else %if &action=CLOSE %then %do; ';
427 put ' data _null_; file &jref encoding=''utf-8'' mod ; ';
428 put ' put "}"; ';
429 put ' run; ';
430 put '%end; ';
431 put '%mend mp_jsonout; ';
432 put ' ';
433 put '%macro mf_getuser( ';
434 put ')/*/STORE SOURCE*/; ';
435 put ' %local user; ';
436 put ' ';
437 put ' %if %symexist(_sasjs_username) %then %let user=&_sasjs_username; ';
438 put ' %else %if %symexist(SYS_COMPUTE_SESSION_OWNER) %then %do; ';
439 put ' %let user=&SYS_COMPUTE_SESSION_OWNER; ';
440 put ' %end; ';
441 put ' %else %if %symexist(_metaperson) %then %do; ';
442 put ' %if %length(&_metaperson)=0 %then %let user=&sysuserid; ';
443 put ' /* sometimes SAS will add @domain extension - remove for consistency */ ';
444 put ' /* but be sure to quote in case of usernames with commas */ ';
445 put ' %else %let user=%unquote(%scan(%quote(&_metaperson),1,@)); ';
446 put ' %end; ';
447 put ' %else %let user=&sysuserid; ';
448 put ' ';
449 put ' %quote(&user) ';
450 put ' ';
451 put '%mend mf_getuser; ';
452 put ' ';
453 put '%macro ms_webout(action,ds,dslabel=,fref=_webout,fmt=N,missing=NULL ';
454 put ' ,showmeta=N,maxobs=MAX,workobs=0 ';
455 put '); ';
456 put '%global _webin_file_count _webin_fileref1 _webin_name1 _program _debug ';
457 put ' sasjs_tables; ';
458 put ' ';
459 put '%local i tempds; ';
460 put '%let action=%upcase(&action); ';
461 put ' ';
462 put '%if &action=FETCH %then %do; ';
463 put ' %if %str(&_debug) ge 131 %then %do; ';
464 put ' options mprint notes mprintnest; ';
465 put ' %end; ';
466 put ' %let _webin_file_count=%eval(&_webin_file_count+0); ';
467 put ' /* now read in the data */ ';
468 put ' %do i=1 %to &_webin_file_count; ';
469 put ' %if &_webin_file_count=1 %then %do; ';
470 put ' %let _webin_fileref1=&_webin_fileref; ';
471 put ' %let _webin_name1=&_webin_name; ';
472 put ' %end; ';
473 put ' data _null_; ';
474 put ' infile &&_webin_fileref&i termstr=crlf lrecl=32767; ';
475 put ' input; ';
476 put ' /* a plain $ informat strips leading blanks - use $char instead */ ';
477 put ' call symputx(''input_statement'' ';
478 put ' ,prxchange(''s/:\$(?=[0-9 ])/:\$char/i'',-1,_infile_) ';
479 put ' ); ';
480 put ' putlog "&&_webin_name&i input statement: " _infile_; ';
481 put ' stop; ';
482 put ' data &&_webin_name&i; ';
483 put ' infile &&_webin_fileref&i firstobs=2 dsd termstr=crlf encoding=''utf-8'' ';
484 put ' lrecl=32767; ';
485 put ' input &input_statement; ';
486 put ' %if %str(&_debug) ge 131 %then %do; ';
487 put ' if _n_<20 then putlog _infile_; ';
488 put ' %end; ';
489 put ' run; ';
490 put ' %let sasjs_tables=&sasjs_tables &&_webin_name&i; ';
491 put ' %end; ';
492 put '%end; ';
493 put ' ';
494 put '%else %if &action=OPEN %then %do; ';
495 put ' /* fix encoding and ensure enough lrecl */ ';
496 put ' OPTIONS NOBOMFILE lrecl=32767; ';
497 put ' ';
498 put ' /* set the header */ ';
499 put ' %mfs_httpheader(Content-type,application/json) ';
500 put ' ';
501 put ' /* setup json. */ ';
502 put ' data _null_;file &fref encoding=''utf-8'' termstr=lf ; ';
503 put ' put ''{"SYSDATE" : "'' "&SYSDATE" ''"''; ';
504 put ' put '',"SYSTIME" : "'' "&SYSTIME" ''"''; ';
505 put ' run; ';
506 put ' ';
507 put '%end; ';
508 put ' ';
509 put '%else %if &action=ARR or &action=OBJ %then %do; ';
510 put ' %if "%substr(&sysver,1,1)"="4" or "%substr(&sysver,1,1)"="5" %then %do; ';
511 put ' /* functions in formats unsupported */ ';
512 put ' %put &sysmacroname: forcing missing back to NULL as feature not supported; ';
513 put ' %let missing=NULL; ';
514 put ' %end; ';
515 put ' %mp_jsonout(&action,&ds,dslabel=&dslabel,fmt=&fmt,jref=&fref ';
516 put ' ,engine=DATASTEP,missing=&missing,showmeta=&showmeta,maxobs=&maxobs ';
517 put ' ) ';
518 put '%end; ';
519 put '%else %if &action=CLOSE %then %do; ';
520 put ' %if %str(&workobs) > 0 %then %do; ';
521 put ' /* if debug mode, send back first XX records of each work table also */ ';
522 put ' data;run;%let tempds=%scan(&syslast,2,.); ';
523 put ' ods output Members=&tempds; ';
524 put ' proc datasets library=WORK memtype=data; ';
525 put ' %local wtcnt;%let wtcnt=0; ';
526 put ' data _null_; ';
527 put ' set &tempds; ';
528 put ' if not (upcase(name) =:"DATA"); /* ignore temp datasets */ ';
529 put ' if not (upcase(name)=:"_DATA_"); ';
530 put ' i+1; ';
531 put ' call symputx(cats(''wt'',i),name,''l''); ';
532 put ' call symputx(''wtcnt'',i,''l''); ';
533 put ' data _null_; file &fref mod encoding=''utf-8'' termstr=lf; ';
534 put ' put ",""WORK"":{"; ';
535 put ' %do i=1 %to &wtcnt; ';
536 put ' %let wt=&&wt&i; ';
537 put ' data _null_; file &fref mod encoding=''utf-8'' termstr=lf; ';
538 put ' dsid=open("WORK.&wt",''is''); ';
539 put ' nlobs=attrn(dsid,''NLOBS''); ';
540 put ' nvars=attrn(dsid,''NVARS''); ';
541 put ' rc=close(dsid); ';
542 put ' if &i>1 then put '',''@; ';
543 put ' put " ""&wt"" : {"; ';
544 put ' put ''"nlobs":'' nlobs; ';
545 put ' put '',"nvars":'' nvars; ';
546 put ' %mp_jsonout(OBJ,&wt,jref=&fref,dslabel=first10rows,showmeta=Y ';
547 put ' ,maxobs=&workobs ';
548 put ' ) ';
549 put ' data _null_; file &fref mod encoding=''utf-8'' termstr=lf; ';
550 put ' put "}"; ';
551 put ' %end; ';
552 put ' data _null_; file &fref mod encoding=''utf-8'' termstr=lf; ';
553 put ' put "}"; ';
554 put ' run; ';
555 put ' %end; ';
556 put ' /* close off json */ ';
557 put ' data _null_;file &fref mod encoding=''utf-8'' termstr=lf lrecl=32767; ';
558 put ' length SYSPROCESSNAME syserrortext syswarningtext autoexec $512; ';
559 put ' put ",""_DEBUG"" : ""&_debug"" "; ';
560 put ' _PROGRAM=quote(trim(resolve(symget(''_PROGRAM'')))); ';
561 put ' put '',"_PROGRAM" : '' _PROGRAM ; ';
562 put ' autoexec=quote(urlencode(trim(getoption(''autoexec'')))); ';
563 put ' put '',"AUTOEXEC" : '' autoexec; ';
564 put ' put ",""MF_GETUSER"" : ""%mf_getuser()"" "; ';
565 put ' put ",""SYSCC"" : ""&syscc"" "; ';
566 put ' put ",""SYSENCODING"" : ""&sysencoding"" "; ';
567 put ' syserrortext=cats(symget(''syserrortext'')); ';
568 put ' if findc(syserrortext,''"\''!!''0A0D09000E0F010210111A''x) then do; ';
569 put ' syserrortext=''"''!!trim( ';
570 put ' prxchange(''s/"/\\"/'',-1, /* double quote */ ';
571 put ' prxchange(''s/\x0A/\n/'',-1, /* new line */ ';
572 put ' prxchange(''s/\x0D/\r/'',-1, /* carriage return */ ';
573 put ' prxchange(''s/\x09/\\t/'',-1, /* tab */ ';
574 put ' prxchange(''s/\x00/\\u0000/'',-1, /* NUL */ ';
575 put ' prxchange(''s/\x0E/\\u000E/'',-1, /* SS */ ';
576 put ' prxchange(''s/\x0F/\\u000F/'',-1, /* SF */ ';
577 put ' prxchange(''s/\x01/\\u0001/'',-1, /* SOH */ ';
578 put ' prxchange(''s/\x02/\\u0002/'',-1, /* STX */ ';
579 put ' prxchange(''s/\x10/\\u0010/'',-1, /* DLE */ ';
580 put ' prxchange(''s/\x11/\\u0011/'',-1, /* DC1 */ ';
581 put ' prxchange(''s/\x1A/\\u001A/'',-1, /* SUB */ ';
582 put ' prxchange(''s/\\/\\\\/'',-1,syserrortext) ';
583 put ' )))))))))))))!!''"''; ';
584 put ' end; ';
585 put ' else syserrortext=cats(''"'',syserrortext,''"''); ';
586 put ' put '',"SYSERRORTEXT" : '' syserrortext; ';
587 put ' SYSHOSTINFOLONG=quote(trim(symget(''SYSHOSTINFOLONG''))); ';
588 put ' put '',"SYSHOSTINFOLONG" : '' SYSHOSTINFOLONG; ';
589 put ' put ",""SYSHOSTNAME"" : ""&syshostname"" "; ';
590 put ' put ",""SYSPROCESSID"" : ""&SYSPROCESSID"" "; ';
591 put ' put ",""SYSPROCESSMODE"" : ""&SYSPROCESSMODE"" "; ';
592 put ' SYSPROCESSNAME=quote(urlencode(cats(SYSPROCESSNAME))); ';
593 put ' put ",""SYSPROCESSNAME"" : " SYSPROCESSNAME; ';
594 put ' put ",""SYSJOBID"" : ""&sysjobid"" "; ';
595 put ' put ",""SYSSCPL"" : ""&sysscpl"" "; ';
596 put ' put ",""SYSSITE"" : ""&syssite"" "; ';
597 put ' put ",""SYSTCPIPHOSTNAME"" : ""&SYSTCPIPHOSTNAME"" "; ';
598 put ' put ",""SYSUSERID"" : ""&sysuserid"" "; ';
599 put ' sysvlong=quote(trim(symget(''sysvlong''))); ';
600 put ' put '',"SYSVLONG" : '' sysvlong; ';
601 put ' syswarningtext=cats(symget(''syswarningtext'')); ';
602 put ' if findc(syswarningtext,''"\''!!''0A0D09000E0F010210111A''x) then do; ';
603 put ' syswarningtext=''"''!!trim( ';
604 put ' prxchange(''s/"/\\"/'',-1, /* double quote */ ';
605 put ' prxchange(''s/\x0A/\n/'',-1, /* new line */ ';
606 put ' prxchange(''s/\x0D/\r/'',-1, /* carriage return */ ';
607 put ' prxchange(''s/\x09/\\t/'',-1, /* tab */ ';
608 put ' prxchange(''s/\x00/\\u0000/'',-1, /* NUL */ ';
609 put ' prxchange(''s/\x0E/\\u000E/'',-1, /* SS */ ';
610 put ' prxchange(''s/\x0F/\\u000F/'',-1, /* SF */ ';
611 put ' prxchange(''s/\x01/\\u0001/'',-1, /* SOH */ ';
612 put ' prxchange(''s/\x02/\\u0002/'',-1, /* STX */ ';
613 put ' prxchange(''s/\x10/\\u0010/'',-1, /* DLE */ ';
614 put ' prxchange(''s/\x11/\\u0011/'',-1, /* DC1 */ ';
615 put ' prxchange(''s/\x1A/\\u001A/'',-1, /* SUB */ ';
616 put ' prxchange(''s/\\/\\\\/'',-1,syswarningtext) ';
617 put ' )))))))))))))!!''"''; ';
618 put ' end; ';
619 put ' else syswarningtext=cats(''"'',syswarningtext,''"''); ';
620 put ' put '',"SYSWARNINGTEXT" : '' syswarningtext; ';
621 put ' put '',"END_DTTM" : "'' "%sysfunc(datetime(),E8601DT26.6)" ''" ''; ';
622 put ' length memsize $32; ';
623 put ' memsize="%sysfunc(INPUTN(%sysfunc(getoption(memsize)), best.),sizekmg.)"; ';
624 put ' memsize=quote(cats(memsize)); ';
625 put ' put '',"MEMSIZE" : '' memsize; ';
626 put ' put "}" @; ';
627 put ' run; ';
628 put '%end; ';
629 put ' ';
630 put '%mend ms_webout; ';
631 put ' ';
632 put '%macro mfs_httpheader(header_name ';
633 put ' ,header_value ';
634 put ')/*/STORE SOURCE*/; ';
635 put '%global sasjs_stpsrv_header_loc; ';
636 put '%local fref fid i; ';
637 put ' ';
638 put '%if %sysfunc(filename(fref,&sasjs_stpsrv_header_loc)) ne 0 %then %do; ';
639 put ' %put &=fref &=sasjs_stpsrv_header_loc; ';
640 put ' %put %str(ERR)OR: %sysfunc(sysmsg()); ';
641 put ' %return; ';
642 put '%end; ';
643 put ' ';
644 put '%let fid=%sysfunc(fopen(&fref,A)); ';
645 put ' ';
646 put '%if &fid=0 %then %do; ';
647 put ' %put %str(ERR)OR: %sysfunc(sysmsg()); ';
648 put ' %return; ';
649 put '%end; ';
650 put ' ';
651 put '%let rc=%sysfunc(fput(&fid,%str(&header_name): %str(&header_value))); ';
652 put '%let rc=%sysfunc(fwrite(&fid)); ';
653 put ' ';
654 put '%let rc=%sysfunc(fclose(&fid)); ';
655 put '%let rc=%sysfunc(filename(&fref)); ';
656 put ' ';
657 put '%mend mfs_httpheader; ';
658/* WEBOUT END */
659 put '%macro webout(action,ds,dslabel=,fmt=,missing=NULL,showmeta=NO';
660 put ' ,maxobs=MAX';
661 put ');';
662 put ' %ms_webout(&action,ds=&ds,dslabel=&dslabel,fmt=&fmt,missing=&missing';
663 put ' ,showmeta=&showmeta,maxobs=&maxobs';
664 put ' )';
665 put '%mend;';
666run;
667
668/* add precode and code */
669%local x fref freflist;
670%let freflist=&precode &code ;
671%do x=1 %to %sysfunc(countw(&freflist));
672 %let fref=%scan(&freflist,&x);
673 %put &sysmacroname: adding &fref;
674 data _null_;
675 file &sasjsref lrecl=3000 termstr=crlf mod;
676 infile &fref lrecl=3000;
677 input;
678 put _infile_;
679 run;
680%end;
681
682/* create the web service */
683%ms_createfile(&path/&name..sas, inref=&sasjsref, mdebug=&mdebug)
684
685%put ;%put ;%put ;%put ;%put ;%put ;
686%put &sysmacroname: STP &name successfully created in &path;
687%put ;%put ;%put ;
688%put Check it out here:;
689%put ;%put ;%put ;
690%put &_sasjs_apiserverurl.&_sasjs_apipath?_PROGRAM=&path/&name;
691%put ;%put ;%put ;%put ;%put ;%put ;
692
693%mend ms_createwebservice;