58%macro ms_createwebservice(path=0
62 ,desc=Not currently used
67%
if &mdebug=1 %then %
do;
68 %put &sysmacroname entry vars:;
73%mp_abort(iftrue=(&syscc ge 4 )
74 ,mac=ms_createwebservice
75 ,msg=%str(syscc=&syscc on macro entry)
77%mp_abort(iftrue=(
"&path"=
"0")
78 ,mac=ms_createwebservice
79 ,msg=%str(Path not provided)
83%
if "%substr(&path,%length(&path),1)" =
"/" %then
84 %let path=%substr(&path,1,%length(&path)-1);
92%let sasjsref=%mf_getuniquefileref();
94 file &sasjsref termstr=crlf lrecl=512;
95 put
"/* Created on %sysfunc(datetime(),datetime19.) by %mf_getuser() */";
97 put
'%macro mp_jsonout(action,ds,jref=_webout,dslabel=,fmt=Y ';
98 put
' ,engine=DATASTEP ';
99 put
' ,missing=NULL ';
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;); ';
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)" ''"''; ';
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)))"":"; ';
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. @@; ';
131 put
' filename _sjs1 clear; ';
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); ';
137 put
' %let colinfo=%scan(&syslast,2,.); ';
138 put
' proc sort data=&colinfo; ';
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,
''.
'');
';
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); ';
161 put
' /* 32 char unique name */ ';
162 put
' newname=''sasjs''!!substr(cats(put(md5(name),$hex32.)),1,27); ';
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''); ';
176 put
' %let tempds=%substr(_%sysfunc(compress(%sysfunc(uuidgen()),-)),1,32); ';
178 put
' select count(*) into: lastobs from &ds; ';
179 put
' %if &maxobs ne MAX %then %let lastobs=%sysfunc(min(&lastobs,&maxobs)); ';
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; ';
187 put
' data &tempds; ';
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; ';
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. @@; ';
205 put
' filename _sjs2 clear; ';
207 put
' %else %if &engine=DATASTEP %then %do; ';
209 put
' %if %sysfunc(exist(&ds)) ne 1 & %sysfunc(exist(&ds,VIEW)) ne 1 ';
211 put
' %put &sysmacroname: &ds NOT FOUND!!!; ';
215 put
' %if &fmt=Y %then %do; ';
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 ';
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, ';
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) ';
235 put
' create table &tmpds2( ';
236 put
' FMTNAME char(32), ';
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( )); ';
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; ';
250 put
' insert into &tmpds2 select distinct fmtname,length from &tmpds3; ';
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)) ';
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 */ ';
277 put
' %do i=1 %to &numcols; ';
278 put
' &&name&i $&&fmtlen&i ';
281 put
' /* rename on entry */ ';
282 put
' set &ds(rename=( ';
283 put
' %do i=1 %to &numcols; ';
284 put
' &&name&i=&&newname&i ';
290 put
' %do i=1 %to &numcols; ';
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)); ';
299 put
' &&name&i=put(&&newname&i,&&fmt&i); ';
302 put
' if _error_ then do; ';
303 put
' call symputx(''syscc'',1012); ';
307 put
' %let fmtds=&syslast; ';
308 put
' options varlenchk=&optval; ';
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 ';
317 put
' ._ = [quote()] ';
319 put
' .a - .z = [quote()] ';
321 put
' other = [best.]; ';
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...;
';
331 put ' %
if &fmt=Y %then %
do;
';
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,
';
344 put ' prxchange(
''s/\x0A/\n/
'',-1,
';
345 put ' prxchange(
''s/\x0D/\r/
'',-1,
';
346 put ' prxchange(
''s/\x09/\\t/
'',-1,
';
347 put ' prxchange(
''s/\x00/\\u0000/
'',-1,
';
348 put ' prxchange(
''s/\x0E/\\u000E/
'',-1,
';
349 put ' prxchange(
''s/\x0F/\\u000F/
'',-1,
';
350 put ' prxchange(
''s/\x01/\\u0001/
'',-1,
';
351 put ' prxchange(
''s/\x02/\\u0002/
'',-1,
';
352 put ' prxchange(
''s/\x10/\\u0010/
'',-1,
';
353 put ' prxchange(
''s/\x11/\\u0011/
'',-1,
';
354 put ' prxchange(
''s/\x1A/\\u001A/
'',-1,
';
355 put ' prxchange(
''s/\\/\\\\/
'',-1,&&name&i)
';
356 put ' )))))))))))))!!
''"''; ';
358 put ' else &&name&i=quote(cats(&&name&i)); ';
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 */ ';
375 put ' %if &action=ARR %then "]
" ; %else "}
" ; ; ';
377 put ' /* close out the table */ ';
378 put ' data _null_; ';
379 put ' file _sjs3 mod encoding=''utf-8''; ';
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. @@; ';
389 put ' filename _sjs3 clear; ';
393 put ' drop table &colinfo, &tempds; ';
395 put ' %if %substr(&showmeta,1,1)=Y %then %do; ';
396 put ' filename _sjs4 temp lrecl=131068 encoding=''utf-8''; ';
397 put ' data _null_; ';
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 ''}''; ';
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. @@; ';
421 put ' filename _sjs4 clear; ';
425 put '%else %if &action=CLOSE %then %do; ';
426 put ' data _null_; file &jref encoding=''utf-8'' mod ; ';
430 put '%mend mp_jsonout; ';
432 put '%macro mf_getuser( ';
433 put ')/*/STORE SOURCE*/; ';
434 put ' %local user; ';
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; ';
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,@)); ';
446 put ' %else %let user=&sysuserid; ';
448 put ' %quote(&user) ';
450 put '%mend mf_getuser; ';
452 put '%macro ms_webout(action,ds,dslabel=,fref=_webout,fmt=N,missing=NULL ';
453 put ' ,showmeta=N,maxobs=MAX,workobs=0 ';
455 put '%global _webin_file_count _webin_fileref1 _webin_name1 _program _debug ';
456 put ' sasjs_tables; ';
458 put '%local i tempds; ';
459 put '%let action=%upcase(&action); ';
461 put '%if &action=FETCH %then %do; ';
462 put ' %if %str(&_debug) ge 131 %then %do; ';
463 put ' options mprint notes mprintnest; ';
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; ';
472 put ' data _null_; ';
473 put ' infile &&_webin_fileref&i termstr=crlf lrecl=32767; ';
475 put ' call symputx(''input_statement'',_infile_); ';
476 put ' putlog "&&_webin_name&i input statement:
" _infile_; ';
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_; ';
486 put ' %let sasjs_tables=&sasjs_tables &&_webin_name&i; ';
490 put '%else %if &action=OPEN %then %do; ';
491 put ' /* fix encoding and ensure enough lrecl */ ';
492 put ' OPTIONS NOBOMFILE lrecl=32767; ';
494 put ' /* set the header */ ';
495 put ' %mfs_httpheader(Content-type,application/json) ';
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" ''"''; ';
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; ';
511 put ' %mp_jsonout(&action,&ds,dslabel=&dslabel,fmt=&fmt,jref=&fref ';
512 put ' ,engine=DATASTEP,missing=&missing,showmeta=&showmeta,maxobs=&maxobs ';
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_
"); ';
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 ';
545 put ' data _null_; file &fref mod encoding=''utf-8'' termstr=lf; ';
548 put ' data _null_; file &fref mod encoding=''utf-8'' termstr=lf; ';
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 ' )))))))))))))!!''"'';
';
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,
';
601 put ' prxchange(
''s/\x0A/\n/
'',-1,
';
602 put ' prxchange(
''s/\x0D/\r/
'',-1,
';
603 put ' prxchange(
''s/\x09/\\t/
'',-1,
';
604 put ' prxchange(
''s/\x00/\\u0000/
'',-1,
';
605 put ' prxchange(
''s/\x0E/\\u000E/
'',-1,
';
606 put ' prxchange(
''s/\x0F/\\u000F/
'',-1,
';
607 put ' prxchange(
''s/\x01/\\u0001/
'',-1,
';
608 put ' prxchange(
''s/\x02/\\u0002/
'',-1,
';
609 put ' prxchange(
''s/\x10/\\u0010/
'',-1,
';
610 put ' prxchange(
''s/\x11/\\u0011/
'',-1,
';
611 put ' prxchange(
''s/\x1A/\\u001A/
'',-1,
';
612 put ' prxchange(
''s/\\/\\\\/
'',-1,syswarningtext)
';
613 put ' )))))))))))))!!
''"''; ';
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; ';
626 put '%mend ms_webout; ';
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; ';
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()); ';
640 put '%let fid=%sysfunc(fopen(&fref,A)); ';
642 put '%if &fid=0 %then %do; ';
643 put ' %put %str(ERR)OR: %sysfunc(sysmsg()); ';
647 put '%let rc=%sysfunc(fput(&fid,%str(&header_name): %str(&header_value))); ';
648 put '%let rc=%sysfunc(fwrite(&fid)); ';
650 put '%let rc=%sysfunc(fclose(&fid)); ';
651 put '%let rc=%sysfunc(filename(&fref)); ';
653 put '%mend mfs_httpheader; ';
655 put '%macro webout(action,ds,dslabel=,fmt=,missing=NULL,showmeta=NO';
658 put ' %ms_webout(&action,ds=&ds,dslabel=&dslabel,fmt=&fmt,missing=&missing';
659 put ' ,showmeta=&showmeta,maxobs=&maxobs';
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;
671 file &sasjsref lrecl=3000 termstr=crlf mod;
672 infile &fref lrecl=3000;
678/* create the web service */
679%ms_createfile(&path/&name..sas, inref=&sasjsref, mdebug=&mdebug)
681%put ;%put ;%put ;%put ;%put ;%put ;
682%put &sysmacroname: STP &name successfully created in &path;
684%put Check it out here:;
686%put &_sasjs_apiserverurl.&_sasjs_apipath?_PROGRAM=&path/&name;
687%put ;%put ;%put ;%put ;%put ;%put ;
689%mend ms_createwebservice;