mirror of
https://github.com/yabwon/SAS_PACKAGES.git
synced 2025-12-11 11:14:35 +00:00
Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
40f3a00cb2 | ||
|
|
6f1f30fef9 | ||
|
|
78f202b150 | ||
|
|
97d393bb71 | ||
|
|
98af4c8bc3 | ||
|
|
c04d9c4eb2 | ||
|
|
8b65e85f3a | ||
|
|
582c12d908 | ||
|
|
50f307f370 | ||
|
|
acd3a4872d |
2
LICENSE
2
LICENSE
@@ -1,6 +1,6 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) since 2019 Bartosz Jablonski
|
||||
Copyright (c) 2019 - 2021 Bartosz Jablonski
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
||||
@@ -8,7 +8,7 @@ A **SAS package** is an automatically generated, single, stand alone *zip* file
|
||||
|
||||
The *purpose of a package* is to be a simple, and easy to access, code sharing medium, which will allow: on the one hand, to separate the code complex dependencies created by the developer from the user experience with the final product and, on the other hand, reduce developer's and user's unnecessary frustration related to a remote deployment process.
|
||||
|
||||
In this repository we are presenting the **SAS Packages Framework** which allows to develop and use SAS packages. The latest version of SPF is **`20210109`**.
|
||||
In this repository we are presenting the **SAS Packages Framework** which allows to develop and use SAS packages. **The latest version** of SPF is **`20210204`**.
|
||||
|
||||
To get started with SAS Packages try this [**`Getting Started with SAS Packages`**](https://github.com/yabwon/SAS_PACKAGES/blob/main/SPF/Documentation/Getting_Started_with_SAS_Packages.pdf "Getting Started with SAS Packages") presentation (see the `./SPF/Documentation` directory).
|
||||
|
||||
@@ -16,7 +16,8 @@ The documentation and more advance reading would be the [**`SAS(r) packages - th
|
||||
|
||||
Short description of the SAS Packages Framework macros can be found [here](https://github.com/yabwon/SAS_PACKAGES/blob/main/SPF/SPFinit.md "Short description of the SAS Packages Framework macros")
|
||||
|
||||
**General overview video:**
|
||||
**General overview video** (the newer the better):
|
||||
|
||||
- [SAS Global Forum 2020 V.E.](https://www.youtube.com/watch?v=qCkb-bx0Dv8&t=0s "SGF2020") (April 2020)
|
||||
- [Sasensei International Dojo](https://www.youtube.com/watch?v=BFhdUBQgjYQ&t=0s "SID no. 1") (April 2020)
|
||||
- [SAS dla Administratorów i Praktyków 2020](https://www.youtube.com/watch?v=mXuep2k48Z8&feature=youtu.be&t=0s "SASAiP2020") (October 2020, in Polish)
|
||||
@@ -111,9 +112,9 @@ SHA256 digest for MacroCore: A23C29529F3CE7D0C8BEE9545C5D22D5B5594907547374A5135
|
||||
|
||||
[Documentation for MacroCore](https://core.sasjs.io "Documentation for MacroCore")
|
||||
|
||||
- **DFA** (Dynamic Function Arrays)\[0.4\], contains set of macros and FCMP functions which implement: a dynamically allocated array, a stack, a fifo queue, an ordered stack, and a priority queue, run `%helpPackage(DFA,createDFArray)` to find examples.
|
||||
- **DFA** (Dynamic Function Arrays)\[0.5\], contains set of macros and FCMP functions which implement: a dynamically allocated array, a stack, a fifo queue, an ordered stack, and a priority queue, run `%helpPackage(DFA,createDFArray)` to find examples.
|
||||
|
||||
SHA256 digest for DFA: E777D4578DFDEB2277D58264BAB5BFDBEAFD4E538D4831CDCBFFB4216D2441C2
|
||||
SHA256 digest for DFA: 179AAB9DF3DE8F049A4EFDF5FB0BE92AE5F7BFA7708D4365F39D4DC71C4F90FE
|
||||
|
||||
[Documentation for DFA](https://github.com/yabwon/SAS_PACKAGES/blob/main/packages/dfa.md "Documentation for DFA")
|
||||
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -20,7 +20,7 @@ A **SAS package** is an automatically generated, single, stand alone *zip* file
|
||||
|
||||
The *purpose of a package* is to be a simple, and easy to access, code sharing medium, which will allow: on the one hand, to separate the code complex dependencies created by the developer from the user experience with the final product and, on the other hand, reduce developer's and user's unnecessary frustration related to a remote deployment process.
|
||||
|
||||
In this repository we are presenting the **SAS Packages Framework** which allows to develop and use SAS packages. The latest version of SPF is **`20210109`**.
|
||||
In this repository we are presenting the **SAS Packages Framework** which allows to develop and use SAS packages. The latest version of SPF is **`20210204`**.
|
||||
|
||||
**To get started with SAS Packages** try this [**`Getting Started with SAS Packages`**](https://github.com/yabwon/SAS_PACKAGES/blob/main/SPF/Documentation/Getting_Started_with_SAS_Packages.pdf "Getting Started with SAS Packages") presentation (see the `./SPF/Documentation` directory).
|
||||
|
||||
@@ -38,7 +38,7 @@ After assigning the directory do not change them when using the SPF since it may
|
||||
## This is short help information for the `installPackage` macro <a name="installpackage"></a>
|
||||
--------------------------------------------------------------------------------------------
|
||||
|
||||
Macro to install SAS packages, version `20210109`
|
||||
Macro to install SAS packages, version `20210204`
|
||||
|
||||
A SAS package is a zip file containing a group
|
||||
of SAS codes (macros, functions, data steps generating
|
||||
@@ -60,13 +60,22 @@ After assigning the directory do not change them when using the SPF since it may
|
||||
If the package name is *SPFinit* or *SASPackagesFramework*
|
||||
then the framework itself is downloaded.
|
||||
|
||||
- `sourcePath=` Location of the package, e.g. "www.some.web.page/" (mind the "/" at the end of the path!) <br>
|
||||
Current default location for packages is: <br> `https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/main/packages/` <br>
|
||||
Current default location for the framework is: <br> `https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/main/SPF/`
|
||||
- `sourcePath=` Location of the package, e.g. "www.some.web.page/" (mind the "/" at the end of the path!)
|
||||
Current default location for packages is:
|
||||
`https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/main/packages/`
|
||||
Current default location for the framework is:
|
||||
`https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/main/SPF/`
|
||||
|
||||
- `replace=` With default value of `1` it causes existing package file
|
||||
to be replaceed by new downloaded file.
|
||||
|
||||
- `URLuser=` A user name for the password protected URLs, no quotes needed.
|
||||
|
||||
- `URLpass=` A password for the password protected URLs, no quotes needed.
|
||||
|
||||
- `URLoptions=` Options for the `sourcePath` URLs filename. Consult the SAS
|
||||
documentation for the further details.
|
||||
|
||||
--------------------------------------------------------------------------------------------
|
||||
|
||||
Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/main/SPF/Documentation` to learn more.
|
||||
@@ -95,7 +104,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages;
|
||||
## This is short help information for the `helpPackage` macro <a name="helppackage"></a>
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
Macro to get help about SAS packages, version `20210109`
|
||||
Macro to get help about SAS packages, version `20210204`
|
||||
|
||||
A SAS package is a zip file containing a group
|
||||
of SAS codes (macros, functions, data steps generating
|
||||
@@ -165,7 +174,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages;
|
||||
## This is short help information for the `loadPackage` macro <a name="loadpackage"></a>
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
Macro to *load* SAS packages, version `20210109`
|
||||
Macro to *load* SAS packages, version `20210204`
|
||||
|
||||
A SAS package is a zip file containing a group
|
||||
of SAS codes (macros, functions, data steps generating
|
||||
@@ -238,7 +247,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages;
|
||||
## This is short help information for the `loadPackageS` macro <a name="loadpackages"></a>
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
Macro wrapper for the loadPackage macro, version `20210109`
|
||||
Macro wrapper for the loadPackage macro, version `20210204`
|
||||
|
||||
A SAS package is a zip file containing a group
|
||||
of SAS codes (macros, functions, data steps generating
|
||||
@@ -287,7 +296,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages;
|
||||
## This is short help information for the `unloadPackage` macro <a name="unloadpackage"></a>
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
Macro to unload SAS packages, version `20210109`
|
||||
Macro to unload SAS packages, version `20210204`
|
||||
|
||||
A SAS package is a zip file containing a group
|
||||
of SAS codes (macros, functions, data steps generating
|
||||
@@ -352,7 +361,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages;
|
||||
## This is short help information for the `listPackages` macro <a name="listpackages"></a>
|
||||
-----------------------------------------------------------------------------------------
|
||||
|
||||
Macro to list available SAS packages, version `20210109`
|
||||
Macro to list available SAS packages, version `20210204`
|
||||
|
||||
A SAS package is a zip file containing a group
|
||||
of SAS codes (macros, functions, data steps generating
|
||||
@@ -393,7 +402,7 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages;
|
||||
## This is short help information for the `verifyPackage` macro <a name="verifypackage"></a>
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
Macro to verify SAS package with it hash digest, version `20210109`
|
||||
Macro to verify SAS package with it hash digest, version `20210204`
|
||||
|
||||
A SAS package is a zip file containing a group
|
||||
of SAS codes (macros, functions, data steps generating
|
||||
@@ -446,7 +455,7 @@ filename packages "C:/SAS_PACKAGES"; %* set-up a directory for packages;
|
||||
## This is short help information for the `previewPackage` macro <a name="previewpackage"></a>
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
Macro to get previwe of a SAS packages, version `20210109`
|
||||
Macro to get previwe of a SAS packages, version `20210204`
|
||||
|
||||
A SAS package is a zip file containing a group
|
||||
of SAS codes (macros, functions, data steps generating
|
||||
@@ -507,13 +516,13 @@ filename packages "C:/SAS_PACKAGES"; %* setup a directory for packages;
|
||||
%include packages(SPFinit.sas); %* enable the framework;
|
||||
|
||||
%installPackage(SQLinDS) %* install the package from the Internet;
|
||||
%previewpPackage(SQLinDS) %* get content of the package;
|
||||
%previewPackage(SQLinDS) %* get content of the package;
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
## This is short help information for the `generatePackage` macro <a name="generatepackage"></a>
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
Macro to generate SAS packages, version `20210109`
|
||||
Macro to generate SAS packages, version `20210204`
|
||||
|
||||
A SAS package is a zip file containing a group
|
||||
of SAS codes (macros, functions, data steps generating
|
||||
|
||||
229
SPF/SPFinit.sas
229
SPF/SPFinit.sas
@@ -12,7 +12,7 @@
|
||||
/* */
|
||||
/* Here is the official version: */
|
||||
/*
|
||||
Copyright (c) 2019 - 2020 Bartosz Jablonski (yabwon@gmail.com)
|
||||
Copyright (c) 2019 - 2021 Bartosz Jablonski (yabwon@gmail.com)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
@@ -42,7 +42,7 @@
|
||||
- to unload, or
|
||||
- to generate SAS packages.
|
||||
|
||||
Version 20210109.
|
||||
Version 20210204.
|
||||
See examples below.
|
||||
|
||||
A SAS package is a zip file containing a group of files
|
||||
@@ -81,7 +81,7 @@
|
||||
*/
|
||||
)/secure
|
||||
/*** HELP END ***/
|
||||
des = 'Macro to load SAS package, version 20210109. Run %loadPackage() for help info.'
|
||||
des = 'Macro to load SAS package, version 20210204. Run %loadPackage() for help info.'
|
||||
;
|
||||
%if (%superq(packageName) = ) OR (%qupcase(&packageName.) = HELP) %then
|
||||
%do;
|
||||
@@ -96,7 +96,7 @@ des = 'Macro to load SAS package, version 20210109. Run %loadPackage() for help
|
||||
%put ### This is short help information for the `loadPackage` macro #;
|
||||
%put #-------------------------------------------------------------------------------#;
|
||||
%put # #;
|
||||
%put # Macro to *load* SAS packages, version `20210109` #;
|
||||
%put # Macro to *load* SAS packages, version `20210204` #;
|
||||
%put # #;
|
||||
%put # A SAS package is a zip file containing a group #;
|
||||
%put # of SAS codes (macros, functions, data steps generating #;
|
||||
@@ -251,7 +251,7 @@ des = 'Macro to load SAS package, version 20210109. Run %loadPackage() for help
|
||||
*/
|
||||
)/secure
|
||||
/*** HELP END ***/
|
||||
des = 'Macro to unload SAS package, version 20210109. Run %unloadPackage() for help info.'
|
||||
des = 'Macro to unload SAS package, version 20210204. Run %unloadPackage() for help info.'
|
||||
;
|
||||
%if (%superq(packageName) = ) OR (%qupcase(&packageName.) = HELP) %then
|
||||
%do;
|
||||
@@ -266,7 +266,7 @@ des = 'Macro to unload SAS package, version 20210109. Run %unloadPackage() for h
|
||||
%put ### This is short help information for the `unloadPackage` macro #;
|
||||
%put #-------------------------------------------------------------------------------#;
|
||||
%put # #;
|
||||
%put # Macro to unload SAS packages, version `20210109` #;
|
||||
%put # Macro to unload SAS packages, version `20210204` #;
|
||||
%put # #;
|
||||
%put # A SAS package is a zip file containing a group #;
|
||||
%put # of SAS codes (macros, functions, data steps generating #;
|
||||
@@ -390,7 +390,7 @@ des = 'Macro to unload SAS package, version 20210109. Run %unloadPackage() for h
|
||||
*/
|
||||
)/secure
|
||||
/*** HELP END ***/
|
||||
des = 'Macro to get help about SAS package, version 20210109. Run %helpPackage() for help info.'
|
||||
des = 'Macro to get help about SAS package, version 20210204. Run %helpPackage() for help info.'
|
||||
;
|
||||
%if (%superq(packageName) = ) OR (%qupcase(&packageName.) = HELP) %then
|
||||
%do;
|
||||
@@ -405,7 +405,7 @@ des = 'Macro to get help about SAS package, version 20210109. Run %helpPackage()
|
||||
%put ### This is short help information for the `helpPackage` macro #;
|
||||
%put #-------------------------------------------------------------------------------#;
|
||||
%put # #;
|
||||
%put # Macro to get help about SAS packages, version `20210109` #;
|
||||
%put # Macro to get help about SAS packages, version `20210204` #;
|
||||
%put # #;
|
||||
%put # A SAS package is a zip file containing a group #;
|
||||
%put # of SAS codes (macros, functions, data steps generating #;
|
||||
@@ -515,7 +515,7 @@ TODO:
|
||||
- add MD5(&packageName.) value hash instead "package" word in filenames [DONE]
|
||||
*/
|
||||
|
||||
/* Macros to install SAS packages, version 20210109 */
|
||||
/* Macros to install SAS packages, version 20210204 */
|
||||
/* A SAS package is a zip file containing a group of files
|
||||
with SAS code (macros, functions, data steps generating
|
||||
data, etc.) wrapped up together and %INCLUDEed by
|
||||
@@ -527,11 +527,14 @@ TODO:
|
||||
packagesNames /* space separated list of packages names, without the zip extension */
|
||||
, sourcePath = /* location of the package, e.g. "www.some.page/", mind the "/" at the end */
|
||||
, replace = 1 /* 1 = replace if the package already exist, 0 = otherwise */
|
||||
, URLuser = /* user name for the password protected URLs */
|
||||
, URLpass = /* password for the password protected URLs */
|
||||
, URLoptions = /* options for the `sourcePath` URLs */
|
||||
)
|
||||
/secure
|
||||
minoperator
|
||||
/*** HELP END ***/
|
||||
des = 'Macro to install SAS package, version 20210109. Run %%installPackage() for help info.'
|
||||
des = 'Macro to install SAS package, version 20210204. Run %%installPackage() for help info.'
|
||||
;
|
||||
%if (%superq(packagesNames) = ) OR (%qupcase(&packagesNames.) = HELP) %then
|
||||
%do;
|
||||
@@ -546,7 +549,7 @@ des = 'Macro to install SAS package, version 20210109. Run %%installPackage() fo
|
||||
%put ### This is short help information for the `installPackage` macro #;
|
||||
%put #--------------------------------------------------------------------------------------------#;;
|
||||
%put # #;
|
||||
%put # Macro to install SAS packages, version `20210109` #;
|
||||
%put # Macro to install SAS packages, version `20210204` #;
|
||||
%put # #;
|
||||
%put # A SAS package is a zip file containing a group #;
|
||||
%put # of SAS codes (macros, functions, data steps generating #;
|
||||
@@ -578,6 +581,13 @@ des = 'Macro to install SAS package, version 20210109. Run %%installPackage() fo
|
||||
%put # - `replace=` With default value of `1` it causes existing package file #;
|
||||
%put # to be replaceed by new downloaded file. #;
|
||||
%put # #;
|
||||
%put # - `URLuser=` A user name for the password protected URLs, no quotes needed. #;
|
||||
%put # #;
|
||||
%put # - `URLpass=` A password for the password protected URLs, no quotes needed. #;
|
||||
%put # #;
|
||||
%put # - `URLoptions=` Options for the `sourcePath` URLs filename. Consult the SAS #;
|
||||
%put # documentation for the further details. #;
|
||||
%put # #;
|
||||
%put #--------------------------------------------------------------------------------------------#;
|
||||
%put # #;
|
||||
%put # Visit: `https://github.com/yabwon/SAS_PACKAGES/tree/main/SPF/Documentation` #;
|
||||
@@ -655,7 +665,14 @@ des = 'Macro to install SAS package, version 20210109. Run %%installPackage() fo
|
||||
%end;
|
||||
%else
|
||||
%do;
|
||||
filename &in URL "&sourcePath.%lowcase(&packageName.).zip" recfm=N lrecl=1;
|
||||
filename &in URL "&sourcePath.%lowcase(&packageName.).zip"
|
||||
%if (%superq(URLuser) ne ) %then
|
||||
%do;
|
||||
user = "&URLuser."
|
||||
pass = "&URLuser."
|
||||
%end;
|
||||
&URLoptions.
|
||||
recfm=N lrecl=1;
|
||||
filename &out "%sysfunc(pathname(packages))/%lowcase(&packageName.).zip" recfm=N lrecl=1;
|
||||
%end;
|
||||
/*
|
||||
@@ -842,7 +859,7 @@ des = 'Macro to install SAS package, version 20210109. Run %%installPackage() fo
|
||||
|
||||
/* Macro to list SAS packages in packages folder.
|
||||
|
||||
Version 20210109
|
||||
Version 20210204
|
||||
|
||||
A SAS package is a zip file containing a group
|
||||
of SAS codes (macros, functions, data steps generating
|
||||
@@ -862,7 +879,7 @@ des = 'Macro to install SAS package, version 20210109. Run %%installPackage() fo
|
||||
|
||||
|
||||
%macro listPackages()/PARMBUFF
|
||||
des = 'Macro to list SAS packages from `packages` fileref, type %listPackages(HELP) for help, version 20210109.'
|
||||
des = 'Macro to list SAS packages from `packages` fileref, type %listPackages(HELP) for help, version 20210204.'
|
||||
;
|
||||
%if %QUPCASE(&SYSPBUFF.) = %str(%(HELP%)) %then
|
||||
%do;
|
||||
@@ -877,7 +894,7 @@ des = 'Macro to list SAS packages from `packages` fileref, type %listPackages(HE
|
||||
%put ### This is short help information for the `listPackages` macro #;
|
||||
%put #-----------------------------------------------------------------------------------------#;;
|
||||
%put # #;
|
||||
%put # Macro to list available SAS packages, version `20210109` #;
|
||||
%put # Macro to list available SAS packages, version `20210204` #;
|
||||
%put # #;
|
||||
%put # A SAS package is a zip file containing a group #;
|
||||
%put # of SAS codes (macros, functions, data steps generating #;
|
||||
@@ -1008,7 +1025,7 @@ options ls = &ls_tmp. ps = &ps_tmp. ¬es_tmp. &source_tmp.;
|
||||
|
||||
/* Macro to generate SAS packages.
|
||||
|
||||
Version 20210109
|
||||
Version 20210204
|
||||
|
||||
A SAS package is a zip file containing a group
|
||||
of SAS codes (macros, functions, data steps generating
|
||||
@@ -1040,7 +1057,7 @@ options ls = &ls_tmp. ps = &ps_tmp. ¬es_tmp. &source_tmp.;
|
||||
if set to DEF then the !SASROOT/sasv9.cfg is used */
|
||||
)/secure minoperator
|
||||
/*** HELP END ***/
|
||||
des = 'Macro to generate SAS packages, version 20210109. Run %generatePackage() for help info.'
|
||||
des = 'Macro to generate SAS packages, version 20210204. Run %generatePackage() for help info.'
|
||||
;
|
||||
%if (%superq(filesLocation) = ) OR (%qupcase(&filesLocation.) = HELP) %then
|
||||
%do;
|
||||
@@ -1055,7 +1072,7 @@ des = 'Macro to generate SAS packages, version 20210109. Run %generatePackage()
|
||||
%put ### This is short help information for the `generatePackage` macro #;
|
||||
%put #-------------------------------------------------------------------------------#;
|
||||
%put # #;
|
||||
%put # Macro to generate SAS packages, version `20210109` #;
|
||||
%put # Macro to generate SAS packages, version `20210204` #;
|
||||
%put # #;
|
||||
%put # A SAS package is a zip file containing a group #;
|
||||
%put # of SAS codes (macros, functions, data steps generating #;
|
||||
@@ -1466,7 +1483,7 @@ title6 "MD5 hashed fileref of package lowcase name: &_PackageFileref_.";
|
||||
%end;
|
||||
|
||||
|
||||
proc print data = &filesWithCodes.(drop=base);
|
||||
proc print data = &filesWithCodes.(drop=base folderRef fileRef rc folderid _abort_ fileId);
|
||||
run;
|
||||
title;
|
||||
|
||||
@@ -1839,7 +1856,11 @@ data _null_;
|
||||
continue;
|
||||
end;
|
||||
put '%put NOTE- ;';
|
||||
put '%put NOTE- Element of type ' type 'from the file "' file +(-1) '" will be included;' /;
|
||||
put '%put NOTE: Element of type ' type 'from the file "' file +(-1) '" will be included;';
|
||||
if upcase(type)=:'MACRO' then
|
||||
put '%put %sysfunc(ifc(%SYSMACEXIST(' fileshort ')=1, NOTE# Macro ' fileshort
|
||||
"exist. It will be overwritten by the macro from the &packageName. package, ));";
|
||||
put " ";
|
||||
|
||||
if upcase(type)=:'EXEC' then
|
||||
do;
|
||||
@@ -2438,7 +2459,7 @@ data _null_;
|
||||
put ' end ; ';
|
||||
%end;
|
||||
|
||||
put 'put "***"; put "* SAS package generated by generatePackage, version 20210109 *"; put "***";';
|
||||
put 'put "***"; put "* SAS package generated by generatePackage, version 20210204 *"; put "***";';
|
||||
|
||||
put 'run; ' /;
|
||||
|
||||
@@ -2631,20 +2652,20 @@ filename &zipReferrence. clear;
|
||||
|
||||
|
||||
/* tests of package are executed by default */
|
||||
%if %bquote(&testPackage.) ne Y %then
|
||||
%if %bquote(&testPackage.) ne Y %then
|
||||
%do;
|
||||
%put WARNING: ** NO TESTING WILL BE EXECUTED. **;
|
||||
%GOTO NOTESTING;
|
||||
%end;
|
||||
/* check if systask is available */
|
||||
%if %sysfunc(GETOPTION(XCMD)) = NOXCMD %then
|
||||
%if %sysfunc(GETOPTION(XCMD)) = NOXCMD %then
|
||||
%do;
|
||||
data _null_;
|
||||
put 'WARNING: NO TESTING WILL BE EXECUTED DUE TO NOXCMD.';
|
||||
put '***************************************************';
|
||||
put ;
|
||||
|
||||
put 'NOTE-To execute the loading test manualy';
|
||||
put 'NOTE-To execute the loading test manualy';
|
||||
put 'NOTE-run the following code:';
|
||||
put 'NOTE-';
|
||||
|
||||
@@ -2683,7 +2704,7 @@ filename &zipReferrence. clear;
|
||||
put ;
|
||||
put '***************************************************';
|
||||
run;
|
||||
|
||||
|
||||
%GOTO NOTESTING;
|
||||
%end;
|
||||
|
||||
@@ -2707,7 +2728,7 @@ filename &zipReferrence. clear;
|
||||
%let SASROOT=%sysfunc(PATHNAME(sasroot));
|
||||
filename sasroot;
|
||||
%put *&SASROOT.*;
|
||||
%let SASEXE=&SASROOT./sas;
|
||||
%let SASEXE=&SASROOT./sas;
|
||||
%end;
|
||||
%else
|
||||
%do;
|
||||
@@ -2766,7 +2787,7 @@ filename &zipReferrence. clear;
|
||||
|
||||
options DLCREATEDIR; /* turns-on creation of subdirectories by libname */
|
||||
/* temporary location for tests results is WORK unless developer provide &testResults. */
|
||||
%local testPackageTimesamp;
|
||||
%local testPackageTimesamp;
|
||||
%let testPackageTimesamp = %lowcase(&packageName._%sysfunc(datetime(),b8601dt15.));
|
||||
%if %qsysfunc(fileexist(%bquote(&testResults.))) %then
|
||||
%do;
|
||||
@@ -2781,7 +2802,7 @@ libname TESTWORK "&SASWORK./testwork_&testPackageTimesamp.";
|
||||
%local dirForTest dirForTestWork;
|
||||
%let dirForTest = %sysfunc(pathname(TEST));
|
||||
%let dirForTestWork = %sysfunc(pathname(TESTWORK));
|
||||
%put &=dirForTest.;
|
||||
%put &=dirForTest.;
|
||||
%put &=dirForTestWork.;
|
||||
|
||||
/* remember location of sessions current directory */
|
||||
@@ -2815,6 +2836,10 @@ options NOquotelenmax;
|
||||
data _null_;
|
||||
file "./loading.sas";
|
||||
|
||||
put "proc printto";
|
||||
put "log = '&dirForTest./loading.log0'";
|
||||
put "; run;";
|
||||
|
||||
put "filename packages '&packages.';" /;
|
||||
|
||||
if fileexist("&packages./SPFinit.sas") then
|
||||
@@ -2853,32 +2878,32 @@ data _null_;
|
||||
select;
|
||||
when (upcase(type) in ("LAZYDATA")) /* the "DATA" type will pop-up during deletion */
|
||||
do;
|
||||
if 1 = FIRST.type then
|
||||
if 1 = FIRST.type then
|
||||
put "data _null_; " ;
|
||||
put " if not exist('" fileshortUP "') then " /
|
||||
" put 'WARNING: Dataset " fileshortUP "does not exist!'; "
|
||||
;
|
||||
if 1 = LAST.type then
|
||||
put "run; ";
|
||||
end;
|
||||
|
||||
when (upcase(type) = "MACRO")
|
||||
do;
|
||||
if 1 = FIRST.type then
|
||||
put "data _null_; " ;
|
||||
put ' if not input(resolve(''%SYSMACEXIST(' fileshortUP ')''), best.) then ' /
|
||||
" put 'WARNING: Macro " fileshortUP "does not exist!'; "
|
||||
put " if not exist('" fileshortUP "') then " /
|
||||
" put 'WARNING: Dataset " fileshortUP "does not exist!'; "
|
||||
;
|
||||
if 1 = LAST.type then
|
||||
put "run; ";
|
||||
|
||||
end;
|
||||
|
||||
when (upcase(type) =: "MACRO")
|
||||
do;
|
||||
if 1 = FIRST.type then
|
||||
put "data _null_; " ;
|
||||
put ' if not input(resolve(''%SYSMACEXIST(' fileshortUP ')''), best.) then ' /
|
||||
" put 'WARNING: Macro " fileshortUP "does not exist!'; "
|
||||
;
|
||||
if 1 = LAST.type then
|
||||
put "run; ";
|
||||
|
||||
end;
|
||||
/* the "FUNCTION" type will pop-up during deletion */
|
||||
|
||||
/* figure out checks for remaining list: */
|
||||
/*
|
||||
"IMLMODULE"
|
||||
"PROTO"
|
||||
/*
|
||||
"IMLMODULE"
|
||||
"PROTO"
|
||||
"FORMAT"
|
||||
*/
|
||||
otherwise;
|
||||
@@ -2889,6 +2914,9 @@ data _null_;
|
||||
put '%unloadPackage'"(&packageName.,";
|
||||
put " path=&filesLocation.) " /;
|
||||
|
||||
put "proc printto";
|
||||
put "; run;";
|
||||
|
||||
stop;
|
||||
run;
|
||||
|
||||
@@ -2901,46 +2929,55 @@ setup for testing session:
|
||||
-work - location for work
|
||||
-noterminal - for batch execution mode
|
||||
-rsasuser - to avoid the "Unable to copy SASUSER registry to WORK registry." warning
|
||||
-linesize - MAX
|
||||
-linesize - MAX
|
||||
-pagesize - MAX
|
||||
*/
|
||||
systask kill sas0 wait;
|
||||
%local sasstat0 TEST_0 TESTRC_0;;
|
||||
%let TEST_0 = loading;
|
||||
systask command
|
||||
"""&SASEXE.""
|
||||
-sysin ""&dirForTest./&TEST_0..sas""
|
||||
-print ""&dirForTest./&TEST_0..lst""
|
||||
-log ""&dirForTest./&TEST_0..log""
|
||||
|
||||
%local STSK;
|
||||
%let STSK = systask command
|
||||
%str(%')"&SASEXE."
|
||||
-sysin "&dirForTest./&TEST_0..sas"
|
||||
-print "&dirForTest./&TEST_0..lst"
|
||||
-log "&dirForTest./&TEST_0..log"
|
||||
/*-altlog "&dirForTest./&TEST_0..altlog"*/
|
||||
&SASCONFIG.
|
||||
-work ""&dirForTestWork.""
|
||||
-work "&dirForTestWork."
|
||||
-noterminal
|
||||
-rsasuser -linesize MAX -pagesize MAX"
|
||||
-rsasuser -linesize MAX -pagesize MAX -noautoexec %str(%')
|
||||
taskname=sas0
|
||||
status=sasstat0
|
||||
WAIT
|
||||
;
|
||||
|
||||
%put %superq(STSK);
|
||||
;
|
||||
%unquote(&STSK.);
|
||||
;
|
||||
|
||||
%let TESTRC_0 = &SYSRC.;
|
||||
%put *&=sasstat0.*&=TESTRC_0.*;
|
||||
%local notesSourceOptions;
|
||||
%let notesSourceOptions = %sysfunc(getoption(notes)) %sysfunc(getoption(source));
|
||||
options NOnotes NOsource;
|
||||
data _null_;
|
||||
if _N_ = 1 then
|
||||
if _N_ = 1 then
|
||||
put "##########################################################################" /
|
||||
"./loading.log" /
|
||||
"./loading.log0" /
|
||||
"##########################################################################" ;
|
||||
infile "./loading.log" dlm='0a0d'x end=EOF;
|
||||
infile "./loading.log0" dlm='0a0d'x end=EOF;
|
||||
input;
|
||||
if _INFILE_ =: 'WARNING:' then
|
||||
if _INFILE_ =: 'WARNING:' then
|
||||
do;
|
||||
warning+1;
|
||||
warning+1;
|
||||
put _N_= "**" _INFILE_;
|
||||
end;
|
||||
if _INFILE_ =: 'ERROR:' then
|
||||
if _INFILE_ =: 'ERROR:' then
|
||||
do;
|
||||
error+1;
|
||||
put _N_= "$$" _INFILE_;
|
||||
put _N_= "$$" _INFILE_;
|
||||
end;
|
||||
if EOF then
|
||||
do;
|
||||
@@ -2970,14 +3007,17 @@ data _null_;
|
||||
_RC_ = filename(cats("_TOUT_",test), cats("./", file));
|
||||
|
||||
_RC_ = fcopy(cats("_TIN_",test), cats("_TOUT_", test));
|
||||
|
||||
|
||||
call symputX(cats("TEST_", test), fileshort, "L");
|
||||
call symputX("numberOfTests", test, "L");
|
||||
|
||||
|
||||
_RC_ = filename(cats("_TIN_",test));
|
||||
_RC_ = filename(cats("_TOUT_",test));
|
||||
run;
|
||||
|
||||
|
||||
%local t;
|
||||
%do t = 1 %to &numberOfTests.;
|
||||
/* each test is executed with autoexec loading the package */
|
||||
data _null_;
|
||||
/* break if no data */
|
||||
@@ -2985,6 +3025,10 @@ data _null_;
|
||||
|
||||
file "./autoexec.sas";
|
||||
|
||||
put "proc printto";
|
||||
put "log = '&dirForTest./&&TEST_&t...log0'";
|
||||
put "; run;";
|
||||
|
||||
put "filename packages '&packages.';" /;
|
||||
|
||||
if fileexist("&packages./SPFinit.sas") then
|
||||
@@ -2997,52 +3041,63 @@ data _null_;
|
||||
put '%loadpackage'"(&packageName.,";
|
||||
put " path=&filesLocation., lazyData=*)" /;
|
||||
|
||||
/*
|
||||
put "proc printto";
|
||||
put "; run;";
|
||||
*/
|
||||
|
||||
stop;
|
||||
set &filesWithCodes. nobs = NOBS;
|
||||
run;
|
||||
|
||||
%local t;
|
||||
%do t = 1 %to &numberOfTests.;
|
||||
systask kill sas&t. wait;
|
||||
%local sasstat&t. TESTRC_&t;
|
||||
%let STSK =
|
||||
systask command
|
||||
"""&SASEXE.""
|
||||
-sysin ""&dirForTest./&&TEST_&t...sas""
|
||||
-print ""&dirForTest./&&TEST_&t...lst""
|
||||
-log ""&dirForTest./&&TEST_&t...log""
|
||||
%str(%')"&SASEXE."
|
||||
-sysin "&dirForTest./&&TEST_&t...sas"
|
||||
-print "&dirForTest./&&TEST_&t...lst"
|
||||
-log "&dirForTest./&&TEST_&t...log"
|
||||
/*-altlog "&dirForTest./&&TEST_&t...altlog"*/
|
||||
&SASCONFIG.
|
||||
-work ""&dirForTestWork.""
|
||||
-autoexec ""&dirForTest./autoexec.sas""
|
||||
-work "&dirForTestWork."
|
||||
-autoexec "&dirForTest./autoexec.sas"
|
||||
-noterminal
|
||||
-rsasuser"
|
||||
-rsasuser %str(%')
|
||||
taskname=sas&t.
|
||||
status=sasstat&t.
|
||||
WAIT
|
||||
;
|
||||
|
||||
%put %superq(STSK);
|
||||
;
|
||||
%unquote(&STSK.);
|
||||
;
|
||||
|
||||
%let TESTRC_&t = &SYSRC.;
|
||||
%put *sasstat&t.=&&sasstat&t.*TESTRC_&t=&&TESTRC_&t*;
|
||||
%local notesSourceOptions;
|
||||
%let notesSourceOptions = %sysfunc(getoption(notes)) %sysfunc(getoption(source));
|
||||
options NOnotes NOsource;
|
||||
data _null_;
|
||||
if _N_ = 1 then
|
||||
if _N_ = 1 then
|
||||
put "##########################################################################" /
|
||||
"./&&TEST_&t...log" /
|
||||
"./&&TEST_&t...log0" /
|
||||
"##########################################################################" ;
|
||||
infile "./&&TEST_&t...log" dlm='0a0d'x end=EOF;
|
||||
infile "./&&TEST_&t...log0" dlm='0a0d'x end=EOF;
|
||||
input;
|
||||
if _INFILE_ =: 'WARNING:' then
|
||||
if _INFILE_ =: 'WARNING:' then
|
||||
do;
|
||||
warning+1;
|
||||
warning+1;
|
||||
/*length warningline $ 1024;
|
||||
warningline = catx(',', strip(warningline), _N_);*/
|
||||
put _N_= "**" _INFILE_;
|
||||
end;
|
||||
if _INFILE_ =: 'ERROR:' then
|
||||
if _INFILE_ =: 'ERROR:' then
|
||||
do;
|
||||
error+1;
|
||||
/*length errorline $ 1024;
|
||||
errorline = catx(',', strip(errorline), _N_);*/
|
||||
errorline = catx(',', strip(errorline), _N_);*/
|
||||
put _N_= "$$" _INFILE_;
|
||||
end;
|
||||
if EOF then
|
||||
@@ -3124,7 +3179,7 @@ TODO: (in Polish)
|
||||
|
||||
- dodac ICEloadPackage() [v]
|
||||
|
||||
- weryfikacja nadpisywania makr [ ]
|
||||
- weryfikacja nadpisywania makr [v]
|
||||
|
||||
- weryfikacja srodowiska [ ]
|
||||
|
||||
@@ -3170,7 +3225,7 @@ TODO: (in Polish)
|
||||
*/
|
||||
)/secure
|
||||
/*** HELP END ***/
|
||||
des = 'Macro to load multiple SAS packages at one run, version 20210109. Run %loadPackages() for help info.'
|
||||
des = 'Macro to load multiple SAS packages at one run, version 20210204. Run %loadPackages() for help info.'
|
||||
parmbuff
|
||||
;
|
||||
%if (%superq(packagesNames) = ) OR (%qupcase(&packagesNames.) = HELP) %then
|
||||
@@ -3186,7 +3241,7 @@ parmbuff
|
||||
%put ### This is short help information for the `loadPackageS` macro #;
|
||||
%put #-------------------------------------------------------------------------------#;
|
||||
%put # #;
|
||||
%put # Macro wrapper for the loadPackage macro, version `20210109` #;
|
||||
%put # Macro wrapper for the loadPackage macro, version `20210204` #;
|
||||
%put # #;
|
||||
%put # A SAS package is a zip file containing a group #;
|
||||
%put # of SAS codes (macros, functions, data steps generating #;
|
||||
@@ -3270,7 +3325,7 @@ parmbuff
|
||||
hashing_file() function, SAS 9.4M6 */
|
||||
)/secure
|
||||
/*** HELP END ***/
|
||||
des = 'Macro to verify SAS package with the hash digest, version 20210109. Run %verifyPackage() for help info.'
|
||||
des = 'Macro to verify SAS package with the hash digest, version 20210204. Run %verifyPackage() for help info.'
|
||||
;
|
||||
%if (%superq(packageName) = ) OR (%qupcase(&packageName.) = HELP) %then
|
||||
%do;
|
||||
@@ -3285,7 +3340,7 @@ des = 'Macro to verify SAS package with the hash digest, version 20210109. Run %
|
||||
%put ### This is short help information for the `verifyPackage` macro #;
|
||||
%put #-------------------------------------------------------------------------------#;
|
||||
%put # #;
|
||||
%put # Macro to verify SAS package with it hash digest, version `20210109` #;
|
||||
%put # Macro to verify SAS package with it hash digest, version `20210204` #;
|
||||
%put # #;
|
||||
%put # A SAS package is a zip file containing a group #;
|
||||
%put # of SAS codes (macros, functions, data steps generating #;
|
||||
@@ -3438,7 +3493,7 @@ des = 'Macro to verify SAS package with the hash digest, version 20210109. Run %
|
||||
*/
|
||||
)/secure
|
||||
/*** HELP END ***/
|
||||
des = 'Macro to preview content of a SAS package, version 20210109. Run %previewPackage() for help info.'
|
||||
des = 'Macro to preview content of a SAS package, version 20210204. Run %previewPackage() for help info.'
|
||||
;
|
||||
%if (%superq(packageName) = ) OR (%qupcase(&packageName.) = HELP) %then
|
||||
%do;
|
||||
@@ -3453,7 +3508,7 @@ des = 'Macro to preview content of a SAS package, version 20210109. Run %preview
|
||||
%put ### This is short help information for the `previewPackage` macro #;
|
||||
%put #-------------------------------------------------------------------------------#;
|
||||
%put # #;
|
||||
%put # Macro to get previwe of a SAS packages, version `20210109` #;
|
||||
%put # Macro to get previwe of a SAS packages, version `20210204` #;
|
||||
%put # #;
|
||||
%put # A SAS package is a zip file containing a group #;
|
||||
%put # of SAS codes (macros, functions, data steps generating #;
|
||||
@@ -3513,7 +3568,7 @@ des = 'Macro to preview content of a SAS package, version 20210109. Run %preview
|
||||
%put %nrstr( %%include packages(SPFinit.sas); %%* enable the framework; );
|
||||
%put ;
|
||||
%put %nrstr( %%installPackage(SQLinDS) %%* install the package from the Internet; );
|
||||
%put %nrstr( %%previewpPackage(SQLinDS) %%* get content of the package; );
|
||||
%put %nrstr( %%previewPackage(SQLinDS) %%* get content of the package; );
|
||||
%put ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~;
|
||||
%put #################################################################################;
|
||||
%put ;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
Copyright (c) 2019 - 2020 Bartosz Jablonski
|
||||
Copyright (c) 2019 - 2021 Bartosz Jablonski
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
||||
@@ -32,7 +32,7 @@ SHA256 digest for MacroCore: A23C29529F3CE7D0C8BEE9545C5D22D5B5594907547374A5135
|
||||
|
||||
---
|
||||
|
||||
- **DFA** (Dynamic Function Arrays)\[0.4\], contains set of macros and FCMP functions which implement: a dynamically allocated array, a stack, a fifo queue, an ordered stack, and a priority queue, run `%helpPackage(DFA,createDFArray)` to find examples.
|
||||
- **DFA** (Dynamic Function Arrays)\[0.5\], contains set of macros and FCMP functions which implement: a dynamically allocated array, a stack, a fifo queue, an ordered stack, and a priority queue, run `%helpPackage(DFA,createDFArray)` to find examples.
|
||||
```sas
|
||||
%createDFArray(ArrDynamic, resizefactor=17);
|
||||
|
||||
@@ -59,7 +59,7 @@ data _null_;
|
||||
end;
|
||||
run;
|
||||
```
|
||||
SHA256 digest for DFA: E777D4578DFDEB2277D58264BAB5BFDBEAFD4E538D4831CDCBFFB4216D2441C2
|
||||
SHA256 digest for DFA: 179AAB9DF3DE8F049A4EFDF5FB0BE92AE5F7BFA7708D4365F39D4DC71C4F90FE
|
||||
|
||||
[Documentation for DFA](https://github.com/yabwon/SAS_PACKAGES/blob/main/packages/dfa.md "Documentation for DFA")
|
||||
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
/* 20210117 */
|
||||
DFA: 179AAB9DF3DE8F049A4EFDF5FB0BE92AE5F7BFA7708D4365F39D4DC71C4F90FE
|
||||
|
||||
/* 20210109 */
|
||||
BasePlus: 28F3DE865C5E3B914FFB7CC2627D8B0975527EEECEE7AFEAD7B335C3FDC1BFD3
|
||||
DFA: E777D4578DFDEB2277D58264BAB5BFDBEAFD4E538D4831CDCBFFB4216D2441C2
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
|
||||
---
|
||||
|
||||
# The DFA package [ver. 0.4] <a name="dfa-package"></a> ###############################################
|
||||
# The DFA package [ver. 0.5] <a name="dfa-package"></a> ###############################################
|
||||
|
||||
The **DFA** (a.k.a. *Dynamic Function Array*) package implements:
|
||||
- dynamic numeric and character arrays,
|
||||
@@ -55,7 +55,7 @@ Package contains:
|
||||
*SAS package generated by generatePackage, version 20210109*
|
||||
|
||||
The SHA256 hash digest for package BasePlus:
|
||||
`E777D4578DFDEB2277D58264BAB5BFDBEAFD4E538D4831CDCBFFB4216D2441C2`
|
||||
`179AAB9DF3DE8F049A4EFDF5FB0BE92AE5F7BFA7708D4365F39D4DC71C4F90FE`
|
||||
|
||||
---
|
||||
# Content description ############################################################################################
|
||||
@@ -81,6 +81,7 @@ The basic syntax is the following, the `<...>` means optional parameters:
|
||||
<,resizeFactor=0>
|
||||
<,outlib=work.DFAfcmp.package>
|
||||
<,hashexp=13>
|
||||
<,header=1>
|
||||
)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
@@ -118,6 +119,10 @@ The basic syntax is the following, the `<...>` means optional parameters:
|
||||
* `hashexp=` - *Optional*, the default value is `13`. It is the default `hashexp=`
|
||||
value for internal hash table used by the function.
|
||||
|
||||
* `header=` - *Optional*, the default value is `1`. Indicates if
|
||||
the `proc fcmp outlib = &outlib.;` header is added to
|
||||
the executed code. If not 1 then no header is added.
|
||||
|
||||
**Created function arguments description**:
|
||||
|
||||
A function generated by the macro is:
|
||||
@@ -323,6 +328,7 @@ The basic syntax is the following, the `<...>` means optional parameters:
|
||||
<,type=8>
|
||||
<,outlib=work.DFAfcmp.package>
|
||||
<,hashexp=13>
|
||||
<,header=1>
|
||||
)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
@@ -351,6 +357,10 @@ The basic syntax is the following, the `<...>` means optional parameters:
|
||||
* `hashexp=` - *Optional*, the default value is `13`. It is the default `hashexp=`
|
||||
value for internal hash table used by the function.
|
||||
|
||||
* `header=` - *Optional*, the default value is `1`. Indicates if
|
||||
the `proc fcmp outlib = &outlib.;` header is added to
|
||||
the executed code. If not 1 then no header is added.
|
||||
|
||||
**Created function arguments description**:
|
||||
|
||||
A function generated by the macro is:
|
||||
@@ -477,6 +487,7 @@ The basic syntax is the following, the `<...>` means optional parameters:
|
||||
<,type=8>
|
||||
<,outlib=work.DFAfcmp.package>
|
||||
<,hashexp=13>
|
||||
<,header=1>
|
||||
)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
@@ -505,6 +516,10 @@ The basic syntax is the following, the `<...>` means optional parameters:
|
||||
* `hashexp=` - *Optional*, the default value is `13`. It is the default `hashexp=`
|
||||
value for internal hash table used by the function.
|
||||
|
||||
* `header=` - *Optional*, the default value is `1`. Indicates if
|
||||
the `proc fcmp outlib = &outlib.;` header is added to
|
||||
the executed code. If not 1 then no header is added.
|
||||
|
||||
**Created function arguments description**:
|
||||
|
||||
A function generated by the macro is:
|
||||
@@ -648,6 +663,7 @@ The basic syntax is the following, the `<...>` means optional parameters:
|
||||
<,order=A>
|
||||
<,outlib=work.DFAfcmp.package>
|
||||
<,hashexp=13>
|
||||
<,header=1>
|
||||
)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
@@ -680,7 +696,10 @@ The basic syntax is the following, the `<...>` means optional parameters:
|
||||
* `hashexp=` - *Optional*, the default value is `13`. It is the default `hashexp=`
|
||||
value for internal hash table used by the function.
|
||||
|
||||
|
||||
* `header=` - *Optional*, the default value is `1`. Indicates if
|
||||
the `proc fcmp outlib = &outlib.;` header is added to
|
||||
the executed code. If not 1 then no header is added.
|
||||
|
||||
**Created function arguments description**:
|
||||
|
||||
A function generated by the macro is:
|
||||
@@ -804,6 +823,7 @@ The basic syntax is the following, the `<...>` means optional parameters:
|
||||
<,newOnTop=+>
|
||||
<,outlib=work.DFAfcmp.package>
|
||||
<,hashexp=13>
|
||||
<,header=1>
|
||||
)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
@@ -837,7 +857,10 @@ The basic syntax is the following, the `<...>` means optional parameters:
|
||||
* `hashexp=` - *Optional*, the default value is `13`. It is the default `hashexp=`
|
||||
value for internal hash table used by the function.
|
||||
|
||||
|
||||
* `header=` - *Optional*, the default value is `1`. Indicates if
|
||||
the `proc fcmp outlib = &outlib.;` header is added to
|
||||
the executed code. If not 1 then no header is added.
|
||||
|
||||
**Created function arguments description**:
|
||||
|
||||
A function generated by the macro is:
|
||||
@@ -965,6 +988,7 @@ The basic syntax is the following, the `<...>` means optional parameters:
|
||||
<,type=8>
|
||||
<,outlib=work.DFAfcmp.package>
|
||||
<,hashexp=13>
|
||||
<,header=1>
|
||||
)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
@@ -993,7 +1017,10 @@ The basic syntax is the following, the `<...>` means optional parameters:
|
||||
* `hashexp=` - *Optional*, the default value is `13`. It is the default `hashexp=`
|
||||
value for internal hash table used by the function.
|
||||
|
||||
|
||||
* `header=` - *Optional*, the default value is `1`. Indicates if
|
||||
the `proc fcmp outlib = &outlib.;` header is added to
|
||||
the executed code. If not 1 then no header is added.
|
||||
|
||||
**Created function arguments description**:
|
||||
|
||||
A function generated by the macro is:
|
||||
@@ -1289,6 +1316,7 @@ The basic syntax is the following, the `<...>` means optional parameters:
|
||||
<,debug=0>
|
||||
<,outlib=work.DFAfcmp.package>
|
||||
<,type=32>
|
||||
<,header=1>
|
||||
)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
@@ -1315,6 +1343,10 @@ The basic syntax is the following, the `<...>` means optional parameters:
|
||||
and with 52 the `bit64orDFA()` and `bit64and DFA()` FCMP
|
||||
functions are used.
|
||||
|
||||
* `header=` - *Optional*, the default value is `1`. Indicates if
|
||||
the `proc fcmp outlib = &outlib.;` header is added to
|
||||
the executed code. If not 1 then no header is added.
|
||||
|
||||
**Created function arguments description**:
|
||||
|
||||
A function generated by the macro is:
|
||||
|
||||
BIN
packages/dfa.zip
BIN
packages/dfa.zip
Binary file not shown.
Reference in New Issue
Block a user