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 ' else &&name&i=quote(cats(&&name&i)); ';
359 put ' %end; ';
360 put ' %end; ';
361 put ' run; ';
362 put ' ';
363 put ' filename _sjs3 temp lrecl=131068 ; ';
364 put ' data _null_; ';
365 put ' file _sjs3 encoding=''utf-8''; ';
366 put ' if _n_=1 then put "["; ';
367 put ' set &tempds; ';
368 put ' if _n_>1 then put "," @; put ';
369 put ' %if &action=ARR %then "[" ; %else "{" ; ';
370 put ' %do i=1 %to &numcols; ';
371 put ' %if &i>1 %then "," ; ';
372 put ' %if &action=OBJ %then """&&name&i"":" ; ';
373 put ' "&&name&i"n /* name literal for reserved variable names */ ';
374 put ' %end; ';
375 put ' %if &action=ARR %then "]" ; %else "}" ; ; ';
376 put ' ';
377 put ' /* close out the table */ ';
378 put ' data _null_; ';
379 put ' file _sjs3 mod encoding=''utf-8''; ';
380 put ' put '']''; ';
381 put ' run; ';
382 put ' data _null_; ';
383 put ' infile _sjs3 lrecl=1 recfm=n; ';
384 put ' file &jref mod lrecl=1 recfm=n; ';
385 put ' input sourcechar $char1. @@; ';
386 put ' format sourcechar hex2.; ';
387 put ' put sourcechar char1. @@; ';
388 put ' run; ';
389 put ' filename _sjs3 clear; ';
390 put ' %end; ';
391 put ' ';
392 put ' proc sql; ';
393 put ' drop table &colinfo, &tempds; ';
394 put ' ';
395 put ' %if %substr(&showmeta,1,1)=Y %then %do; ';
396 put ' filename _sjs4 temp lrecl=131068 encoding=''utf-8''; ';
397 put ' data _null_; ';
398 put ' file _sjs4; ';
399 put ' length label $350; ';
400 put ' put ", ""$%lowcase(%sysfunc(coalescec(&dslabel,&ds)))"":{""vars"":{"; ';
401 put ' do i=1 to &numcols; ';
402 put ' name=quote(trim(symget(cats(''name'',i)))); ';
403 put ' format=quote(trim(symget(cats(''fmt'',i)))); ';
404 put ' label=quote(prxchange(''s/\\/\\\\/'',-1,trim(symget(cats(''label'',i))))); ';
405 put ' length=quote(trim(symget(cats(''length'',i)))); ';
406 put ' type=quote(trim(symget(cats(''typelong'',i)))); ';
407 put ' if i>1 then put "," @@; ';
408 put ' put name '':{"format":'' format '',"label":'' label ';
409 put ' '',"length":'' length '',"type":'' type ''}''; ';
410 put ' end; ';
411 put ' put ''}}''; ';
412 put ' run; ';
413 put ' /* send back to webout */ ';
414 put ' data _null_; ';
415 put ' infile _sjs4 lrecl=1 recfm=n; ';
416 put ' file &jref mod lrecl=1 recfm=n; ';
417 put ' input sourcechar $char1. @@; ';
418 put ' format sourcechar hex2.; ';
419 put ' put sourcechar char1. @@; ';
420 put ' run; ';
421 put ' filename _sjs4 clear; ';
422 put ' %end; ';
423 put '%end; ';
424 put ' ';
425 put '%else %if &action=CLOSE %then %do; ';
426 put ' data _null_; file &jref encoding=''utf-8'' mod ; ';
427 put ' put "}"; ';
428 put ' run; ';
429 put '%end; ';
430 put '%mend mp_jsonout; ';
431 put ' ';
432 put '%macro mf_getuser( ';
433 put ')/*/STORE SOURCE*/; ';
434 put ' %local user; ';
435 put ' ';
436 put ' %if %symexist(_sasjs_username) %then %let user=&_sasjs_username; ';
437 put ' %else %if %symexist(SYS_COMPUTE_SESSION_OWNER) %then %do; ';
438 put ' %let user=&SYS_COMPUTE_SESSION_OWNER; ';
439 put ' %end; ';
440 put ' %else %if %symexist(_metaperson) %then %do; ';
441 put ' %if %length(&_metaperson)=0 %then %let user=&sysuserid; ';
442 put ' /* sometimes SAS will add @domain extension - remove for consistency */ ';
443 put ' /* but be sure to quote in case of usernames with commas */ ';
444 put ' %else %let user=%unquote(%scan(%quote(&_metaperson),1,@)); ';
445 put ' %end; ';
446 put ' %else %let user=&sysuserid; ';
447 put ' ';
448 put ' %quote(&user) ';
449 put ' ';
450 put '%mend mf_getuser; ';
451 put ' ';
452 put '%macro ms_webout(action,ds,dslabel=,fref=_webout,fmt=N,missing=NULL ';
453 put ' ,showmeta=N,maxobs=MAX,workobs=0 ';
454 put '); ';
455 put '%global _webin_file_count _webin_fileref1 _webin_name1 _program _debug ';
456 put ' sasjs_tables; ';
457 put ' ';
458 put '%local i tempds; ';
459 put '%let action=%upcase(&action); ';
460 put ' ';
461 put '%if &action=FETCH %then %do; ';
462 put ' %if %str(&_debug) ge 131 %then %do; ';
463 put ' options mprint notes mprintnest; ';
464 put ' %end; ';
465 put ' %let _webin_file_count=%eval(&_webin_file_count+0); ';
466 put ' /* now read in the data */ ';
467 put ' %do i=1 %to &_webin_file_count; ';
468 put ' %if &_webin_file_count=1 %then %do; ';
469 put ' %let _webin_fileref1=&_webin_fileref; ';
470 put ' %let _webin_name1=&_webin_name; ';
471 put ' %end; ';
472 put ' data _null_; ';
473 put ' infile &&_webin_fileref&i termstr=crlf lrecl=32767; ';
474 put ' input; ';
475 put ' call symputx(''input_statement'',_infile_); ';
476 put ' putlog "&&_webin_name&i input statement: " _infile_; ';
477 put ' stop; ';
478 put ' data &&_webin_name&i; ';
479 put ' infile &&_webin_fileref&i firstobs=2 dsd termstr=crlf encoding=''utf-8'' ';
480 put ' lrecl=32767; ';
481 put ' input &input_statement; ';
482 put ' %if %str(&_debug) ge 131 %then %do; ';
483 put ' if _n_<20 then putlog _infile_; ';
484 put ' %end; ';
485 put ' run; ';
486 put ' %let sasjs_tables=&sasjs_tables &&_webin_name&i; ';
487 put ' %end; ';
488 put '%end; ';
489 put ' ';
490 put '%else %if &action=OPEN %then %do; ';
491 put ' /* fix encoding and ensure enough lrecl */ ';
492 put ' OPTIONS NOBOMFILE lrecl=32767; ';
493 put ' ';
494 put ' /* set the header */ ';
495 put ' %mfs_httpheader(Content-type,application/json) ';
496 put ' ';
497 put ' /* setup json. */ ';
498 put ' data _null_;file &fref encoding=''utf-8'' termstr=lf ; ';
499 put ' put ''{"SYSDATE" : "'' "&SYSDATE" ''"''; ';
500 put ' put '',"SYSTIME" : "'' "&SYSTIME" ''"''; ';
501 put ' run; ';
502 put ' ';
503 put '%end; ';
504 put ' ';
505 put '%else %if &action=ARR or &action=OBJ %then %do; ';
506 put ' %if "%substr(&sysver,1,1)"="4" or "%substr(&sysver,1,1)"="5" %then %do; ';
507 put ' /* functions in formats unsupported */ ';
508 put ' %put &sysmacroname: forcing missing back to NULL as feature not supported; ';
509 put ' %let missing=NULL; ';
510 put ' %end; ';
511 put ' %mp_jsonout(&action,&ds,dslabel=&dslabel,fmt=&fmt,jref=&fref ';
512 put ' ,engine=DATASTEP,missing=&missing,showmeta=&showmeta,maxobs=&maxobs ';
513 put ' ) ';
514 put '%end; ';
515 put '%else %if &action=CLOSE %then %do; ';
516 put ' %if %str(&workobs) > 0 %then %do; ';
517 put ' /* if debug mode, send back first XX records of each work table also */ ';
518 put ' data;run;%let tempds=%scan(&syslast,2,.); ';
519 put ' ods output Members=&tempds; ';
520 put ' proc datasets library=WORK memtype=data; ';
521 put ' %local wtcnt;%let wtcnt=0; ';
522 put ' data _null_; ';
523 put ' set &tempds; ';
524 put ' if not (upcase(name) =:"DATA"); /* ignore temp datasets */ ';
525 put ' if not (upcase(name)=:"_DATA_"); ';
526 put ' i+1; ';
527 put ' call symputx(cats(''wt'',i),name,''l''); ';
528 put ' call symputx(''wtcnt'',i,''l''); ';
529 put ' data _null_; file &fref mod encoding=''utf-8'' termstr=lf; ';
530 put ' put ",""WORK"":{"; ';
531 put ' %do i=1 %to &wtcnt; ';
532 put ' %let wt=&&wt&i; ';
533 put ' data _null_; file &fref mod encoding=''utf-8'' termstr=lf; ';
534 put ' dsid=open("WORK.&wt",''is''); ';
535 put ' nlobs=attrn(dsid,''NLOBS''); ';
536 put ' nvars=attrn(dsid,''NVARS''); ';
537 put ' rc=close(dsid); ';
538 put ' if &i>1 then put '',''@; ';
539 put ' put " ""&wt"" : {"; ';
540 put ' put ''"nlobs":'' nlobs; ';
541 put ' put '',"nvars":'' nvars; ';
542 put ' %mp_jsonout(OBJ,&wt,jref=&fref,dslabel=first10rows,showmeta=Y ';
543 put ' ,maxobs=&workobs ';
544 put ' ) ';
545 put ' data _null_; file &fref mod encoding=''utf-8'' termstr=lf; ';
546 put ' put "}"; ';
547 put ' %end; ';
548 put ' data _null_; file &fref mod encoding=''utf-8'' termstr=lf; ';
549 put ' put "}"; ';
550 put ' run; ';
551 put ' %end; ';
552 put ' /* close off json */ ';
553 put ' data _null_;file &fref mod encoding=''utf-8'' termstr=lf lrecl=32767; ';
554 put ' length SYSPROCESSNAME syserrortext syswarningtext autoexec $512; ';
555 put ' put ",""_DEBUG"" : ""&_debug"" "; ';
556 put ' _PROGRAM=quote(trim(resolve(symget(''_PROGRAM'')))); ';
557 put ' put '',"_PROGRAM" : '' _PROGRAM ; ';
558 put ' autoexec=quote(urlencode(trim(getoption(''autoexec'')))); ';
559 put ' put '',"AUTOEXEC" : '' autoexec; ';
560 put ' put ",""MF_GETUSER"" : ""%mf_getuser()"" "; ';
561 put ' put ",""SYSCC"" : ""&syscc"" "; ';
562 put ' put ",""SYSENCODING"" : ""&sysencoding"" "; ';
563 put ' syserrortext=cats(symget(''syserrortext'')); ';
564 put ' if findc(syserrortext,''"\''!!''0A0D09000E0F010210111A''x) then do; ';
565 put ' syserrortext=''"''!!trim( ';
566 put ' prxchange(''s/"/\\"/'',-1, /* double quote */ ';
567 put ' prxchange(''s/\x0A/\n/'',-1, /* new line */ ';
568 put ' prxchange(''s/\x0D/\r/'',-1, /* carriage return */ ';
569 put ' prxchange(''s/\x09/\\t/'',-1, /* tab */ ';
570 put ' prxchange(''s/\x00/\\u0000/'',-1, /* NUL */ ';
571 put ' prxchange(''s/\x0E/\\u000E/'',-1, /* SS */ ';
572 put ' prxchange(''s/\x0F/\\u000F/'',-1, /* SF */ ';
573 put ' prxchange(''s/\x01/\\u0001/'',-1, /* SOH */ ';
574 put ' prxchange(''s/\x02/\\u0002/'',-1, /* STX */ ';
575 put ' prxchange(''s/\x10/\\u0010/'',-1, /* DLE */ ';
576 put ' prxchange(''s/\x11/\\u0011/'',-1, /* DC1 */ ';
577 put ' prxchange(''s/\x1A/\\u001A/'',-1, /* SUB */ ';
578 put ' prxchange(''s/\\/\\\\/'',-1,syserrortext) ';
579 put ' )))))))))))))!!''"''; ';
580 put ' end; ';
581 put ' else syserrortext=cats(''"'',syserrortext,''"''); ';
582 put ' put '',"SYSERRORTEXT" : '' syserrortext; ';
583 put ' SYSHOSTINFOLONG=quote(trim(symget(''SYSHOSTINFOLONG''))); ';
584 put ' put '',"SYSHOSTINFOLONG" : '' SYSHOSTINFOLONG; ';
585 put ' put ",""SYSHOSTNAME"" : ""&syshostname"" "; ';
586 put ' put ",""SYSPROCESSID"" : ""&SYSPROCESSID"" "; ';
587 put ' put ",""SYSPROCESSMODE"" : ""&SYSPROCESSMODE"" "; ';
588 put ' SYSPROCESSNAME=quote(urlencode(cats(SYSPROCESSNAME))); ';
589 put ' put ",""SYSPROCESSNAME"" : " SYSPROCESSNAME; ';
590 put ' put ",""SYSJOBID"" : ""&sysjobid"" "; ';
591 put ' put ",""SYSSCPL"" : ""&sysscpl"" "; ';
592 put ' put ",""SYSSITE"" : ""&syssite"" "; ';
593 put ' put ",""SYSTCPIPHOSTNAME"" : ""&SYSTCPIPHOSTNAME"" "; ';
594 put ' put ",""SYSUSERID"" : ""&sysuserid"" "; ';
595 put ' sysvlong=quote(trim(symget(''sysvlong''))); ';
596 put ' put '',"SYSVLONG" : '' sysvlong; ';
597 put ' syswarningtext=cats(symget(''syswarningtext'')); ';
598 put ' if findc(syswarningtext,''"\''!!''0A0D09000E0F010210111A''x) then do; ';
599 put ' syswarningtext=''"''!!trim( ';
600 put ' prxchange(''s/"/\\"/'',-1, /* double quote */ ';
601 put ' prxchange(''s/\x0A/\n/'',-1, /* new line */ ';
602 put ' prxchange(''s/\x0D/\r/'',-1, /* carriage return */ ';
603 put ' prxchange(''s/\x09/\\t/'',-1, /* tab */ ';
604 put ' prxchange(''s/\x00/\\u0000/'',-1, /* NUL */ ';
605 put ' prxchange(''s/\x0E/\\u000E/'',-1, /* SS */ ';
606 put ' prxchange(''s/\x0F/\\u000F/'',-1, /* SF */ ';
607 put ' prxchange(''s/\x01/\\u0001/'',-1, /* SOH */ ';
608 put ' prxchange(''s/\x02/\\u0002/'',-1, /* STX */ ';
609 put ' prxchange(''s/\x10/\\u0010/'',-1, /* DLE */ ';
610 put ' prxchange(''s/\x11/\\u0011/'',-1, /* DC1 */ ';
611 put ' prxchange(''s/\x1A/\\u001A/'',-1, /* SUB */ ';
612 put ' prxchange(''s/\\/\\\\/'',-1,syswarningtext) ';
613 put ' )))))))))))))!!''"''; ';
614 put ' end; ';
615 put ' else syswarningtext=cats(''"'',syswarningtext,''"''); ';
616 put ' put '',"SYSWARNINGTEXT" : '' syswarningtext; ';
617 put ' put '',"END_DTTM" : "'' "%sysfunc(datetime(),E8601DT26.6)" ''" ''; ';
618 put ' length memsize $32; ';
619 put ' memsize="%sysfunc(INPUTN(%sysfunc(getoption(memsize)), best.),sizekmg.)"; ';
620 put ' memsize=quote(cats(memsize)); ';
621 put ' put '',"MEMSIZE" : '' memsize; ';
622 put ' put "}" @; ';
623 put ' run; ';
624 put '%end; ';
625 put ' ';
626 put '%mend ms_webout; ';
627 put ' ';
628 put '%macro mfs_httpheader(header_name ';
629 put ' ,header_value ';
630 put ')/*/STORE SOURCE*/; ';
631 put '%global sasjs_stpsrv_header_loc; ';
632 put '%local fref fid i; ';
633 put ' ';
634 put '%if %sysfunc(filename(fref,&sasjs_stpsrv_header_loc)) ne 0 %then %do; ';
635 put ' %put &=fref &=sasjs_stpsrv_header_loc; ';
636 put ' %put %str(ERR)OR: %sysfunc(sysmsg()); ';
637 put ' %return; ';
638 put '%end; ';
639 put ' ';
640 put '%let fid=%sysfunc(fopen(&fref,A)); ';
641 put ' ';
642 put '%if &fid=0 %then %do; ';
643 put ' %put %str(ERR)OR: %sysfunc(sysmsg()); ';
644 put ' %return; ';
645 put '%end; ';
646 put ' ';
647 put '%let rc=%sysfunc(fput(&fid,%str(&header_name): %str(&header_value))); ';
648 put '%let rc=%sysfunc(fwrite(&fid)); ';
649 put ' ';
650 put '%let rc=%sysfunc(fclose(&fid)); ';
651 put '%let rc=%sysfunc(filename(&fref)); ';
652 put ' ';
653 put '%mend mfs_httpheader; ';
654/* WEBOUT END */
655 put '%macro webout(action,ds,dslabel=,fmt=,missing=NULL,showmeta=NO';
656 put ' ,maxobs=MAX';
657 put ');';
658 put ' %ms_webout(&action,ds=&ds,dslabel=&dslabel,fmt=&fmt,missing=&missing';
659 put ' ,showmeta=&showmeta,maxobs=&maxobs';
660 put ' )';
661 put '%mend;';
662run;
663
664/* add precode and code */
665%local x fref freflist;
666%let freflist=&precode &code ;
667%do x=1 %to %sysfunc(countw(&freflist));
668 %let fref=%scan(&freflist,&x);
669 %put &sysmacroname: adding &fref;
670 data _null_;
671 file &sasjsref lrecl=3000 termstr=crlf mod;
672 infile &fref lrecl=3000;
673 input;
674 put _infile_;
675 run;
676%end;
677
678/* create the web service */
679%ms_createfile(&path/&name..sas, inref=&sasjsref, mdebug=&mdebug)
680
681%put ;%put ;%put ;%put ;%put ;%put ;
682%put &sysmacroname: STP &name successfully created in &path;
683%put ;%put ;%put ;
684%put Check it out here:;
685%put ;%put ;%put ;
686%put &_sasjs_apiserverurl.&_sasjs_apipath?_PROGRAM=&path/&name;
687%put ;%put ;%put ;%put ;%put ;%put ;
688
689%mend ms_createwebservice;