Other names | CA-Librarian, Librarian |
---|---|
Original author(s) | Applied Data Research |
Developer(s) | |
Initial release | 1969 |
Stable release | 4.4 / 2010 |
Operating system | |
Platform | IBM mainframe |
Type | Revision control |
License | Proprietary |
Website | techdocs |
The Librarian is a version control system and source code management software product originally developed by Applied Data Research for IBM mainframe computers. It was designed to supplant physical punched card decks as a way of maintaining programs, but kept a card model in terms of its interface. During the 1970s and 1980s it was in use at thousands of IBM mainframe installations and was one of the best-selling software products in the computer industry.
After Applied Data Research was acquired by Computer Associates in 1988, the product became known as CA-Librarian. After that company was acquired by Broadcom in 2018, the product became known simply as Librarian.
Most computer source programs in the 1960s were kept on punched cards, which was problematic due to the amount of physical space they took, the constant chance of card decks being dropped or otherwise damaged, and problems with keeping a history of changes to the program. [1] [2] Even into the mid-to-late 1970s, when other forms of computer input emerged, the punched card deck was still the most important of these, and this was also true for the source code for computer programs themselves. [3] [4] [5]
During its early years, Applied Data Research (ADR) was developing Autoflow, a program for automatic flowcharting, which is often cited as one of the first commercial software applications. [6] The ADR staff wanted something to help manage the increasing size of the Autoflow source code base. [1] Martin Goetz, an ADR co-founder, had used the UNITYPER system during a prior employment with Sperry Rand. [1] This device wrote typed input onto a metal magnetic tape. [7] Goetz realized that source code did not have to live on punched cards, but instead could be kept in stable magnetic storage; a program called the Librarian that did this was then built for in-house use. [1]
ADR employees realized that what was valuable to them would be valuable to others. [1] At first, Librarian was offered as part of ADR's Autoflow, [1] and other software packages. [8] This arrangement was in place by 1969. [8] [9] At this point, Librarian master files were kept on magnetic tape; an advertisement that ADR ran in Datamation in 1970 related the story of being able to save Librarian tapes when a fire broke out, whereas it would have been impossible to save the equivalent amount of source code had it been in punched card file cabinets. [10]
Soon, ADR recognized that Librarian had a market of its own. [1] By 1971, advertisements were running for the Librarian in Computerworld that did not mention it in connection with any other ADR products. [11] A shift was made to Librarian master files being kept on mainframe disk drives, with ADR saying that data compression was used to keep disk drive usage to a minimum. [12]
"The Librarian ... took off very quickly. It was very well priced. Its practicality and its functionality were obvious. Companies were not happy maintaining card decks and if you replace a card with another card there is absolutely no way of keeping track of it; so from an auditing perspective, forgetting about security, there was no way to maintain an audit trail of changes you made to a program. It was just sort of an obvious type of application, so we sold lots of systems. They were low priced and sold very quickly. It was always very profitable for ADR."
—Martin Goetz in 2002 [1]
The Librarian quickly found success in the market and began being used by a large number of installations. [13] The Librarian, along with Autoflow, became responsible for much of ADR's revenue and rapid growth as a company. [14] Per a survey that ADR conducted amongst its customers, use of the Librarian significantly increased programmer productivity, especially in the areas of ongoing maintenance and enhancement of existing applications. [13] Buoyed by this, ADR introduced other software packages in the category of programming tools. [14]
By 1973, the Librarian had garnered a spot in the Datapro Research Corporation's Software Honor Roll for the number of customers and associated satisfaction that the package had, [15] based on surveys conducted by Datapro. [16] It made the Honor Roll in subsequent years as well. [17] One 1979 analysis of software packages for IBM mainframe environments rated the Librarian as one of the few packages that excelled both in total number of installations and total amount of sales volume. [13]
According to sales figures given to International Computer Programs, Inc. (ICP), [16] by 1977, the Librarian was in use at some 3,300 sites – the most of any such software package it was tracking – and had aggregate sales revenues of over $10 million. [17] By 1979, that number had increased to 4,500 installations. [13] In 1982, ICP gave The Librarian an award for $50 million in total sales. [18]
In 1985, the Librarian was named by ICP as a recipient for the $100 Million Award, again reflecting lifetime aggregate sales. [19] It was one of only a handful of system software products to reach that level. [19] This was followed in 1989, when ICP gave an award for $250 million in total sales for Librarian. [20]
Throughout much of its existence, Librarian's main competitor was the Panvalet product from Pansophic Systems. [15] [16] [21] It had roughly the same number of installations as the Librarian. As recollected by Pansophic's founder, Joseph A. Piscopo, "Panvalet and Librarian basically divided the program library market between the two of them.... Virtually everyone ended up with one or the other of the products." [2]
The punched card was at the time the model for many kinds of computer input, including for those representing source code. [3] The Librarian works by interspersing its own control cards with the source program cards. [22] These could be physical cards, or later, lines in a file kept on disk and shown and edited on display terminals. In any case, the Librarian operated under a batch processing model. [23]
Librarian control cards begin with a hyphen. [22] Some, such as -DESC
, -PGMR
, and -LANG
, are used to provide basic identifying information about a Librarian module. For the language, some typical values are ASM
for 370 Assembly language and CBL
for COBOL. [24]
The Librarian makes use of sequence numbers in the source file. Traditionally these occurred as columns 1–6 of a COBOL line (before the continuation indicator in column 7, area A starting in column 8 and area B starting in column 12), [4] or columns 73–80 of a 370 Assembly language line, [5] likewise columns 73–80 for FORTRAN, [25] and so forth. For instance, on the Librarian -ADD
control card, which adds a new source module to Librarian, the option SEQ=COBOL
indicates that the sequencing numbers to Librarian should match those normally used in COBOL programming. [24]
The main control cards used in modifying existing programs are -INS
, -REP
, and -DEL
. [22] An example set of cards to update a COBOL program might be:
-REP 340 RECORD CONTAINS 704 CHARACTERS -INS 360 01 PER-MASTER-REC. 03 PER-MASTER-KEY. 05 PER-MASTER-DIV PIC XX. 05 PER-MASTER-DEPT PIC 999. 05 PER-MASTER-JOB-CL PIC 999. 05 FILLER PIC XXX. -REP 430 03 FILLER PIC X(693). -DEL 540,590 -REP 1470 OR PER-MASTER-DIV GREATER THAN '94'.
The -INC
control card can be used for including the source of another module into this one. It serves as an extralinguistic feature for programming languages or kept data that do not have an include directive of any kind or for shops that prefer that the source configuration system do inclusions even for languages that did have such a directive. Librarian users have control over under which circumstances, or phase, any -INC
statements would be expanded. [26] For instance, the inclusion will be done by a -SEL modname
operation but not by a -PUNCH
operation. [24] In practice, however, inclusion of this kind can also be done using language-specific constructs, [24] such as the COBOL COPY
statement. [4]
While Librarian insert/replace/deletion operations were tractible for modifications to existing code, they were an awkward vehicle in which to write new programs, where large numbers of changes or refactorings would often take place. [23] One practice to work around this was to keep the program in a file in an online, interactive environment with a text editor, such as Source Program Maintenance Online running under CICS, that would be repeatedly submitted for batch compiles or assemblies. The file would comprise something like:
...//EXECSTRMLIB-DLM modulename, pswd-ADD modulename, pswd, [other options]complete source code of program//EXECASM/COBCL/whatever...
In this way, the module under development could be edited within the online text editor rather than with Librarian control cards, but the latest iteration would still be preserved within Librarian between batch compiles. Once the program was in a working state, however, normal Librarian updates would be done in order to keep track of changes to the module. [24] Later, a workflow such as this could be done via the editor in the IBM ISPF facility. [27]
In addition to keeping track of the history of changes to modules, the Librarian had features that supported the auditability, integrity, and recoverability of the master file of source modules. [28]
The Librarian went through a series of releases, both to add new functionality and to support changes in IBM mainframe environments. For instance, a new release in 1976 added support for the OS/VS1 and OS/VS2 operating systems. [29] An illustration of an enhancement was the addition of the LIB/AM interface in 1983, which allowed the Librarian to appear like a partitioned data set to certain programs and utilities. [30] Some of ADRs other offerings were integrated with the Librarian, for instance its Datadictionary product. [31] [32]
By 1981, Release 3.0 of the Librarian was out. [31] Release 3.4, made in 1985, added support for the more interactive VM/CMS operating system and ISPF environment, both at the CMS command line and in ISPF panels and menus and editors. [27] By 1986, the Librarian Release 3.5 was out, introducing a Change Control Facility for greater management and awareness of the software development cycle. [21] [33] Early 1988 saw version 3.7 which added the Change Control Facility to the CMS/ISPF environment [33] Release 3.8 of the Librarian came out later in 1988, just as the product was being acquired by Computer Associates. [34] It added the Librarian/Change Control Facility functionality for the DOS/VSE platform. [34]
Over time, approaches to version control began to move away from the Librarian model, with the Source Code Control System (SCCS) being an important early alternative. [23] This was, as one of the creators of it said, "a radical departure from conventional methods for controlling source code", [35] and gave more flexibility for complicated situations such as branching. [23] SCCS was actually originally written for IBM OS/370, [35] but found favor on the UNIX operating system for the PDP-11 where it was included in the Programmer's Workbench. [23]
Nonetheless, the IBM mainframe world still went on. In 1988, ADR was acquired by Computer Associates (CA). [34] The ADR product then became known as CA-Librarian. [36] CA made enhancements to some of its other products to integrate with CA-Librarian. [37] By 2003, version 4.3 of CA-Librarian was available, and was billed as being part of CA's AllFusion product suite. [22] Release 4.4 of CA-Librarian appears to have come out in 2010. [38]
In 2018, Broadcom Inc. acquired CA Technologies (the latest name for Computer Associates). [39] The product name then became simply Librarian, [40] although the CA-Librarian name did not disappear. [41]
As of 2023 [update] , the Librarian is part of Broadcom's Mainframe Software line under a category for DevOps-related products. [40] The current product version is Librarian 4.4. [42]
The 2022 book Modern Mainframe Development, published by O'Reilly Media, lists CA Librarian as one of the source control systems still in use by mainframe developers, along with a few others such as IBM Software Configuration and Library Manager and ChangeMan ZMF from Micro Focus. [41]
In computing, Interactive System Productivity Facility (ISPF) is a software product for many historic IBM mainframe operating systems and currently the z/OS and z/VM operating systems that run on IBM mainframes. It includes a screen editor, the user interface of which was emulated by some microcomputer editors sold commercially starting in the late 1980s, including SPF/PC.
Time Sharing Option (TSO) is an interactive time-sharing environment for IBM mainframe operating systems, including OS/360 MVT, OS/VS2 (SVS), MVS, OS/390, and z/OS.
IBM CICS is a family of mixed-language application servers that provide online transaction management and connectivity for applications on IBM mainframe systems under z/OS and z/VSE.
Adabas, a contraction of “adaptable database system," is a database package that was developed by Software AG to run on IBM mainframes. It was launched in 1971 as a non-relational database. As of 2019, Adabas is marketed for use on a wider range of platforms, including Linux, Unix, and Windows.
CA Technologies, Inc., formerly Computer Associates International, Inc., and CA, Inc., was an American multinational enterprise software developer and publisher that existed from 1976 to 2018. CA grew to rank as one of the largest independent software corporations in the world, and at one point was the second largest. The company created systems software that ran in IBM mainframe, distributed computing, virtual machine, and cloud computing environments.
In computer storage, a tape library is a physical area that holds magnetic data tapes. In an earlier era, tape libraries were maintained by people known as tape librarians and computer operators and the proper operation of the library was crucial to the running of batch processing jobs. Although tape libraries of this era were not automated, the use of tape management system software could assist in running them.
Plug compatible refers to "hardware that is designed to perform exactly like another vendor's product." The term PCM was originally applied to manufacturers who made replacements for IBM peripherals. Later this term was used to refer to IBM-compatible computers.
Since the rise of the personal computer in the 1980s, IBM and other vendors have created PC-based IBM mainframe-compatible systems which are compatible with the larger IBM mainframe computers. For a period of time PC-based mainframe-compatible systems had a lower price and did not require as much electricity or floor space. However, they sacrificed performance and were not as dependable as mainframe-class hardware. These products have been popular with mainframe developers, in education and training settings, for very small companies with non-critical processing, and in certain disaster relief roles.
Applied Data Research (ADR) was a large software vendor from the 1960s until the mid-1980s. ADR is often described as "the first independent software vendor".
Capex Corporation was an American computer software company in existence from 1969 through 1982 and based in Phoenix, Arizona. It made a variety of software products, mostly system utilities for the IBM mainframe platform, and was known for its Optimizer add-on to the IBM COBOL compiler. Capex was acquired by Computer Associates in 1982.
Datacom/DB is a relational database management system for mainframe computers. It was developed in the early 1970s by Computer Information Management Company and was subsequently owned by Insyte, Applied Data Research, Ameritech, and Computer Associates International, Inc. Datacom was acquired by CA Technologies, which renamed it to CA-Datacom/DB and later to CA Datacom/DB. In 2018, Broadcom acquired CA Technologies which included the CA Datacom product family. In 2021, Broadcom has dropped the CA and now refers to the product family as Datacom or Datacom/DB.
CPCS is an IBM software product that supports high-speed check sorting within financial institutions. The software works in conjunction with check-sorting equipment, such as the IBM 3890.
DUCS was a teleprocessing monitor from CFS Inc. It was one of two early local teleprocessing packages for IBM's DOS/VSE environment. DUCS provided an interface and access method for programmers to 'talk' to monitors. Such access methods later became known as APIs.
Edos is a discontinued operating system based upon IBM's original mainframe DOS. The name stood for extended disk operating system. It was later purchased by the West German computer company Nixdorf, who renamed it to NIDOS.
Maestro I was an early integrated development environment for software. developed by Softlab Munich in the 1970s and 1980s.
The ICL DRS was a range of departmental computers from International Computers Limited (ICL). Standing originally for Distributed Resource System, the full name was later dropped in favour of the abbreviation.
Martin A. Goetz was an American software engineer and pioneer in the development of the commercial software industry. He held the first software patent, and was product manager of Autoflow from Applied Data Research (ADR), which is generally cited as the first commercial software application.
Computer Associates Panvalet is a revision control and source code management system originally developed by Pansophic Systems for mainframe computers such as the IBM System z and IBM System/370 running the z/OS and z/VSE operating systems.
The IBM 711 was a punched card reader used as a peripheral device for IBM mainframe vacuum tube computers and early transistorized computers. Announced on May 21, 1952, it was first shipped with the IBM 701. Later IBM computers that used it were the IBM 704, the IBM 709, and the transistorized IBM 7090 and 7094.
Business Controls Corporation is a privately held computer company that developed an application-program-generator and also a series of accounting software packages. These packages were widely enough used for various business magazines to have back-of-the-book ads for companies seeking accountants with experience in one or more of them.