Shared Variables are a feature of the programming languageAPL which allows APL programs running on oneprocessor to share information with another processor.[1] Although originally developed formainframe computers, Shared Variables were also used inpersonal computer implementations of APL.[1] Shared Variables could be used to controlperipheral devices, or to communicate with external files,database management systems, or other users.[1] Shared Variables were first introduced by International Business Machines Corporation (IBM) in their APL.SVsoftware product in 1973,[2] and are still available as of 2017[update], in APLs from IBM and Dyalog,[3] for the operating systemsLinux andWindows.
When APL\360 was first introduced in 1968, there were no built-in means by which a user could directly access data from outside of the APL system. Thus, starting in 1969, IBM developed the shared variable facility.[2] Following APL.SV, the IBM VS APL and APL2 program products also supported shared variables, as did theIBM 5100 line of computers.
Shared Variable Processors were available to allow APL access to the following:
In the early 1980s,I. P. Sharp Associates, which offered a rich and advanced APL, introduced Shared Variables in their product. Many of the Shared Variable Processors available for IBM products were also written for Sharp APL, notably TSIO (called PJAM), AP124, AP126, and AP127. Further, as I. P. Sharp also offeredIPSANET which allowed in-house clients of SHARP APL to be connected to the network, a Network Shared Variable Processor (NSVP) allowed programs from one mainframe site to access another.[5] NSVP predates the widespread use of the Internet by five years.
Shared Variables were one technique used by APL implementors and vendors to increase the richness of the APL language, doing so without changing the core implementation. With the advent of more powerful personal computing, the exodus of the APL user community to smaller computers was inevitable. APL was first available onIntel 8008,8080, andZilog Z80 based hardware, later the original IBM PC, and as of 2015, on the 32- and 64-bit Linux and Windows workstations. Although Dyalog APL included an implementation of shared variables for communication with the now-deprecated Microsoft WindowsDynamic Data Exchange (DDE), only IBM continued to use Shared Variables as a means to supply new features to their versions of the APL2 language for non-mainframe computers.[citation needed]
Nearly all other APL vendors chose to implement new functions, such as access toLinux and Windows native features,graphical user interfaces, presentation graphics, database management system interfaces, and so on, more directly in their respective versions of the APL language.[citation needed] In modern non-IBM APL implementations, the Shared Variable interface has been largely supplanted byComponent Object Model (COM),ActiveX, and.NET Framework.