Modular Programming Using AF/SCL: Kevin Graham, Montura, San Francisco, California
Modular Programming Using AF/SCL: Kevin Graham, Montura, San Francisco, California
Applications Development
Paper 006-31
ABSTRACT
Build modular SAS Frame applications using advanced programming techniques and features available in SAS SCL. Easily separate critical logic and business rules from your code base without creating tangled source code. Isolate and integrate decision-logic from task-logic without separating your brain from your sanity.
INTRODUCTION
Object programming is the science of program structure and organization. The goal in object programming is to produce modular and reusable code. The problem is that applications can be object-oriented but not modular. Rules are added, removed, or modified frequently and some changes can affect multiple sections of the application. The implementation of rules is what usually kills program modularity. This tutorial shows how to make a modular business rule.
STRUCTURES
A structure is composed of statements that mark the beginning and ending of a program. In Base/SAS, a macro is encapsulated with %macro and %mend. Object-oriented programs are encapsulated with class and endclass. This tutorial shows how legacy Base/SAS code can move from macro structure into object structure. The code fragment below shows an SQL procedure transitioning into an object structure -- without any alteration.
SUGI 31
Applications Development
Think of the method tags as replacements for %macro and %mend. These tags create a substructure used to separate logical steps within a program. Each method must be called individually to execute and methods do not execute in parallel. The following command invokes one method. call send(_self_, step1); Most programs have a lot of steps, so I use an important coding standard at this point; which is coding method names into a LIST at the top of the program. The list named activeMethods contains methods considered to be part of the standard execution process. Not all methods will be executed during the standard process. runInterface is a naming convention that indicates the main driver. Every object-oriented program in the application is required to have this method. A do-loop iterates over each method in the specified LIST.
runInterface: method; dcl num i; do i=1 to listlen(activeMethods); call send(_self_, getitemc(activeMethods, i)); end; endmethod; * cut ; endclass;
SUGI 31
Applications Development
SUGI 31
Applications Development
CORP and COMBOBOX1 were both coded to perform a single function. Corp obtains a list of unique values from one column in a relational table and stores the data in a list. COMBOBOX1 simply takes data from CORP for display on the Frame. CORP and COMBOBOX1 compile and execute with no problem whatsoever. If you attempt to move data from CORP into COMBOBOX then we have a major problem. This is where I found that two object programs in the same 4
SUGI 31
Applications Development
application are unable to communicate. There is no way to transfer data between CORP and COMBOBOX1, so they may as well exist in different galaxies. I have never seen documentation that says objects in the same application cant share data because they are unable to see each other. Someone forgot about that one. The following code fragment was coded into COMBOBOX1 and shows my first attempt to obtain data located in the CORP program. Of course, it didnt work. step3: method; items=corp.corp; endmethod;
From a logical standpoint, I need to see two things happen. 1. Every program containing data or functionality needed elsewhere must be able to contribute a pointer to a global pool - easily. The pointer must point back only to the contributing program. 2. Any program must access to the global pool. From a financial standpoint, cost was no object, so long as the solution was free. And whatever the cost, the global pool solution had to work exactly the same with Frame widgets and batch-mode programs. It was a major surprise to find that SAS already supported the use of pointers. 5
SUGI 31
Applications Development
Any number of eventhandlers can respond to a single event and the calling program does not know how many programs will respond. This is why we need a list to contain an unknown number of elements.
SUGI 31
Applications Development
Presto! A single SAS command (or two) performs a lot of work, as usual. The most powerful functionality in object programming is the combination of EVENT and EVENTHANDLER. The SAS System extends this feature into the realm of batch-mode programs.
BUSINESS RULES
The most important aspect in modular programming is the ability to engage and disengage a business rule. The goal is to code each rule as standalone module that can be added, removed, and modified without affecting any other program in the application. We really want the ability to change the functional response of several different parts of the application at the same time, without reprogramming. The solution is to pool object references of specific programs into a business rule module. The standard process of the entire application can be changed dramatically through rule programs. Rule modules provide a mechanism to have a standard process with many options. Include extra modules based on values in the data stream Enable or disable functions in multiple programs at the same time. Deviate from the standard process with new functions inserted into old code at a specific point. Execute optional steps. Alter data values in any program that control standard process execution, on a per-observation basis
The figure below shows a business rule that uses pointers to operate on several Frame widgets. In this case, decision logic runs in batch-mode while task logic runs in interactive-mode.
This example was taken from a production program that contains several hundred business rules.
CONCLUSION
The transition into object-oriented programming begins with solid Base/SAS programming skills. 7
SUGI 31
Object programming is easier than it looks.
Applications Development
REFERENCES
Repository Relationship Programming, www.uspto.gov