Annotation of papers/freem_history/freem_history.ms, revision 1.3
1.2 snw 1: \"
1.3 ! snw 2: \" $Id: freem_history.ms,v 1.2 2025/04/22 14:56:22 snw Exp $
1.2 snw 3: \" History of FreeM
4: \"
5: \" Copyright (C) 2025 Serena Willis
6: \"
1.3 ! snw 7: \" $Log: freem_history.ms,v $
! 8: \" Revision 1.2 2025/04/22 14:56:22 snw
! 9: \" Add comment header to FreeM History
1.2 snw 10: \"
1.3 ! snw 11: \"
! 12: .R1
! 13: database ../references.bib
! 14: move-punctuation
! 15: .R2
1.1 snw 16: .TL
17: The History of FreeM
18: .AU
19: Serena Willis
20: .AI
21: Coherent Logic Development
22: .AB
23: Since 2014, The author has been the maintainer of the primary fork of the FreeM implementation of the M programming language and database. In this paper, we will share some of the history of FreeM, as well as its current status and goals.
24: .AE
25: .SH
26: Initial Involvement
27: .PP
28: The author's mentor in computer programming and UNIX was Larry Landis, who got involved heavily in the M/MUMPS programming language ca. 1991. Mr. Landis promoted the M language to the author from 1991 forward, and first demonstrated FreeM to her in August 1998. In 2010, the author incorporated her company, Coherent Logic Development, learned M, and began doing contract work in M through Mr. Landis's company, Fourth Watch Software.
29: .PP
1.3 ! snw 30: Mr. Landis was the owner of FreeM's SourceForge repository
! 31: .[
! 32: gumpSF
! 33: .]
! 34: , which had not been touched in a number of years, following Fidelity National Information Services' decision to release GT.M under a free software license. In August 2011, the author downloaded the source code for FreeM and did enough work on it to enable building and running under modern GNU/Linux systems and posted it to the mumpster.org forums.
! 35: .[
! 36: freem014
! 37: .]
1.1 snw 38: .PP
39: In 2014, Mr. Landis gave the author administrator access to the FreeM SourceForge repository and transferred maintainership of the project to her.
1.3 ! snw 40: .[
! 41: gumpSF
! 42: .]
1.1 snw 43: .SH
44: Early History
45: .PP
1.3 ! snw 46: FreeM was developed in Germany in the mid-1990s by a developer who went by the pseudonym \fIShalom ha-Ashkenaz\fR, whose actual identity remains unknown,
! 47: .[
! 48: freemEvolutionShalom
! 49: .]
! 50: though it is thought by some that they are a dentist who learned C and developed FreeM on their own time. Shalom developed FreeM at a time when InterSystems Corporation (the company that developed the ISM implementation of M) was acquiring the majority of its competitors and shutting them down.
! 51: .[
! 52: freemEvolutionISC
! 53: .]
! 54: . Shalom wished to provide a community-driven, open-source implementation of M as a bulwark against the growing threat of single-vendor hegemony over the M language. Its design\(emas well as some of the documentation included with the original sources\(emindicate that FreeM was originally targeted to the MS-DOS family of operating systems. It made use of a very limited subset of the C library, and included instructions for renaming the MS-DOS style 8.3 filenames in order to compile under UNIX.
! 55: .[
! 56: freemREADME
! 57: .]
! 58: .PP
! 59: At one point in FreeM's early history, Shalom ported FreeM from MS-DOS to SCO UNIX, the UNIX System V Release III-derived descendant of Microsoft XENIX, now known as SCO OpenServer\(ema platform still supported by FreeM today.
! 60: .[
! 61: portSCO
! 62: .]
! 63: This port brought support for the \fIscoansi\fR terminal type, including colors and ANSI X3.64 control mnemonics.
1.1 snw 64: .SH
65: Enter the GUMP
66: .PP
67: Around the time Shalom ha-Ashkenaz was developing FreeM, Richard F. Walters, a professor from U.C. Davis, conceived of the GUMP, an acronym standing for \fIGeneric Universal M Project\fR. The GUMP, following the object-oriented programming craze of the 1990s, was intended to be a toolkit allowing M implementations to be built from discrete components with a well-defined and well-specified public interface among these components. These components included the global handler (supplying the persistent functionality), and the interpreter/compiler (responsible for implementing M language commands). The components would have been able to communicate over a network, or in-process on the same host, enabling distributed computing functionality.
1.3 ! snw 68: .[
! 69: c2m
! 70: .]
! 71: .PP
! 72: Although the specification for the GUM interface to global handlers attained a reasonably well-specified level of completeness,
! 73: .[
! 74: gumapi
! 75: .]
! 76: and Larry Landis and others developed a mostly-complete implementation of a GUM global handler,
! 77: .[
! 78: gumpsrc
! 79: .]
! 80: none of the other envisioned components were ever completed, and specifically, the interpreter component was missing.
1.1 snw 81: .SH
82: Shalom's Gift
83: .PP
84: In July of 1998, Shalom ha-Ashkenaz donated the FreeM source code (then known as FreeMUMPS) to the M User's Group-Deutschland (MUG-D), hoping that the community would take the nascent implementation from its infancy through to a state of production-ready completeness and robustness. Shalom also placed a few conditions on his gift: a public release could not be made until a substantial set of milestones were reached. Per his conditions, the FreeMUMPS project must:
1.3 ! snw 85: .[
! 86: freemREADME
! 87: .]
1.1 snw 88: .IP \(bu 2
89: Implement the entirety of \fIANSI X11.1-1995\fR
90: .IP \(bu 2
91: Use Structured System Variables instead of \fIVIEW\fR commands and \fI$VIEW\fR functions
92: .IP \(bu 2
93: Raise the string size limits
94: .IP \(bu 2
95: Implement MWAPI, OMI, X11 bindings, and GKS bindings
96: .IP \(bu 2
97: Be substantially free of major bugs
98: .PP
99: Although MUG-D readily accepted the contribution of FreeMUMPS, the organization itself lacked the manpower and expertise to complete the implementation. Just as it is now, the intersection of M community members who know enough of the M language and C language to work on a project this ambitious was quite small.
100: .SH
101: Merging GUMP and FreeM
102: .PP
1.3 ! snw 103: Very shortly after the contribution of FreeMUMPS to MUG-D, Richard F. Walters and a small team of developers and administrative staff who had been working on the GUMP assumed maintainership of the FreeMUMPS source code.
! 104: .[
! 105: freemEvolutionShalom
! 106: .]
! 107: This included representatives from the \fIM Technology Association\fR (an M vendor association having several foreign branches), the \fIM Development Committee\fR (the M standards organization hosting the ANSI/ISO standards for the M language, then sponsored by the M Technology Association), and others.
! 108: .[
! 109: freemContributors
! 110: .]
! 111: The goals of this team were to:
1.1 snw 112: .IP \(bu 2
113: Meet Shalom's requirements for a public release of FreeMUMPS
114: .IP \(bu 2
115: Convert FreeMUMPS into the first interpreter component of the GUMP
116: .PP
1.3 ! snw 117: During this era, Ronald L. Fox of Diagnostic Laboratory Services in Honolulu, HI (who passed in 2010)
! 118: .[
! 119: ronFoxGrave
! 120: .]
! 121: ported FreeMUMPS from SCO UNIX to Red Hat 5 and glibc-6.
! 122: .[
! 123: ronFoxPort
! 124: .]
! 125: Steve "Saintly" Zeck of the U.C. Davis Veterinary Medical Teaching Hospital
! 126: .[
! 127: saintlyBio
! 128: .]
! 129: also attempted to rewrite the symbol table code to lift string size limits,
! 130: .[
! 131: saintlySymtab
! 132: .]
! 133: David Whitten enhanced some of the implementation-specific extensions, and Larry Landis integrated Saintly's symbol table work.
! 134: .PP
! 135: In FreeM 0.1.0, the name of the implementation was changed from FreeMUMPS to Public Standard M, a change which was changed to Free Standard MUMPS and then FreeM when it was discovered in the FreeM 0.2.0 release that the PSM acronym was already in use for Patterson & Gray's
! 136: .[
! 137: mdc_implementations
! 138: .]
! 139: M implementation.
! 140: .[
! 141: Changes.GUM
! 142: .]
! 143: Dr. Walters also received the implementation ID of 49 from then secretary of the M Development Committee, Don Piccone.
! 144: .[
! 145: Changes.GUM
! 146: .]
1.1 snw 147: .PP
148: One of the contributors to FreeM at this stage\(emmainly in the area of M vendor routines\(emwas Axel Trocha, who would go on to develop and maintain his own private fork of FreeM.
1.3 ! snw 149: .[
! 150: trochaFork
! 151: .]
1.1 snw 152: .SH
153: The GT.M Free Software Release
154: .PP
155: GT.M, an acronym for \fIGreystone Technology MUMPS\fR, is an M implementation that was released by Greystone Technology in 1986. Greystone was later acquired by Sanchez Computer Associates, which was in turn acquired by Fidelity National Information Services.
1.3 ! snw 156: .[
! 157: fisSanchezAcquisition
! 158: .]
! 159: .PP
! 160: When GT.M was released under the GNU General Public License in 2000,
! 161: .[
! 162: gtmRelease
! 163: .]
! 164: it seemed to negate the entire \fIraison d'etre\fR for FreeM, as GT.M was a well-established, robust, and high-performance M implementation with which FreeM could not then compete. Unfortunately, at this time, the GUMP and FreeM projects lost all of their momentum, and new development along these lines rapidly ceased. The final GUMP team release of FreeM was 0.5.0.
! 165: .[
! 166: freem050
! 167: .]
! 168: However, Axel Trocha's private port would continue to be developed for some years.
1.1 snw 169: .SH
170: Axel Trocha's Fork
171: .PP
172: After FreeM's momentum ceased within the primary branch of development under Richard F. Walters' leadership, Axel Trocha, an aforementioned contributor of M vendor routines and member of Dr. Walters' team, continued development on the FreeM source code. Axel added many interesting features to the FreeM codebase, including:
173: .IP \(bu 2
174: A native port to Microsoft Windows
175: .IP \(bu 2
176: Compiling FreeM as an Apache web server module, allowing FreeM to be used easily for web development
177: .IP \(bu 2
178: The ability to output HTML code in a heredoc-style format, with any line of code beginning with a left angle bracket being interpreted as HTML with support for interpolated M locals and globals
179: .IP \(bu 2
180: Extensions allowing FreeM to be used as a command-line shell, along the lines of UNIX \fIbash\fR, Windows \fIcmd.exe\fR, etc.
181: .PP
1.3 ! snw 182: Axel also maintains ownership of the \fIfreem.net\fR Internet domain,
! 183: .[
! 184: trochaDomain
! 185: .]
! 186: and continued issuing public releases of his FreeM port on that site until sometime after 2004, at which point he took his port entirely private. Currently, freem.net is a blank page. However, Axel's fork of FreeM continues to this day as the back-end database and programming environment for the www.elvenrunes.de website.
! 187: .[
! 188: elvenRunes
! 189: .]
! 190: I have communicated with Axel on occasion.
1.1 snw 191: .SH
192: Resuming Primary Development Branch
193: .PP
194: In 2011, the author downloaded the FreeM source code from the GUM Project's SourceForge repository\(emdormant since 2000\(emand updated it just enough that it would compile and run on modern GNU/Linux systems. The author also quickly updated FreeM to support terminal sizes larger than 80x24.
195: .SH
196: Taking Maintainership
197: .PP
198: In 2014, Larry Landis transferred administrative access of the GUMP repository, conferring maintainership of the primary branch of FreeM development to the author. Since then, many features have been added and many bugs corrected, including:
1.3 ! snw 199: .IP \(bu 2
! 200: Adding support for proper namespaces, configured through a \fIfreem.conf\fR file, which standardizes routine and global storage locations
! 201: .IP \(bu 2
! 202: Adding support for Structured System Variables
! 203: .IP \(bu 2
! 204: Adding support for the asynchronous event specification from MDC Type A proposal \fIX11/1998-28\fR
! 205: .[
! 206: x119828
! 207: .]
! 208: .IP \(bu 2
! 209: Adding support for constants via the \fICONST\fR keyword
! 210: .IP \(bu 2
! 211: Adding a \fIWITH\fR command allowing the specification of an implicit prefix to all subsequent variable references
! 212: .IP \(bu 2
! 213: Adding a runtime \fIWATCH\fR command, tracking changes to specified local or global variables
! 214: .IP \(bu 2
! 215: Adding an \fIASSERT\fR command, which will fail with an error message if the following expression evaluates \fIfalse\fR
! 216: .IP \(bu 2
! 217: Removing the Steve Zeck symbol table implementation\(emwhich was unreliable\(emand reverting to the original implementation
! 218: .IP \(bu 2
! 219: Adding support for the GNU \fIreadline\fR library, with persistent command line history and editing
! 220: .IP \(bu 2
! 221: Adding REPL-like functionality (in direct mode, any M expression beginning with a number will be prepended with an implicit \fIWRITE\fR)
! 222: .IP \(bu 2
! 223: Adding transaction processing
! 224: .IP \(bu 2
! 225: Adding \fIKVALUE\fR and \fIKSUBSCRIPTS\fR
! 226: .IP \(bu 2
! 227: Preparing to support the \fIM Windowing API\fR (MWAPI)
! 228: .IP \(bu 2
! 229: Adding the \fIfmadm\fR command-line utility, for system administration functions
! 230: .IP \(bu 2
! 231: Adding support for after-image journaling and forward recovery of globals
! 232: .IP \(bu 2
! 233: Writing a \fItexinfo\fR manual, from which the HTML manual is derived
! 234: .IP \(bu 2
! 235: Porting to Solaris/SPARC, Solaris/x86, Linux/s390x, Linux/armv6l, Linux/armv7l, SCO OpenServer 5.0.7, Tru64 UNIX/alpha, AIX/ppc, Mac OS X/x86, GNU HURD, Cygwin, NetBSD, FreeBSD, OpenBSD, and WSL1/2
! 236: .PP
! 237: Also, the FreeM web site
! 238: .[
! 239: freemWebsite
! 240: .]
! 241: was created, to distribute downloads and documentation.
! 242: .SH
! 243: Future
! 244: .PP
! 245: FreeM is moving towards being a client-oriented desktop M implementation, for developing graphical user interfaces that will run on mobile and desktop devices.
! 246: .PP
! 247: The author also intends to adopt the original vision of the GUMP team, dividing FreeM's functionality into discrete components having a well-specified public interface, with the ability to run in distributed computing environments over a network.
! 248: .PP
! 249: FreeM's mission is to advance the state-of-the-art in M implementations, and push the evolution of the language forward. Maintaining portability to as many vintage and modern UNIX systems as possible is held as a high priority, while portability of M routines and MDC standards compliance will be maintained through the use of the new \fI$ZDIALECT\fR intrinsic special variable to ensure that such compliance does not conflict with the primary goal of elegantly advancing the state-of-the-art and finding new audiences for the concepts originated by Neil Pappalardo and Octo Barnett in 1966.
! 250: .PP
! 251: The FreeM project is also strongly committed to free software principles, and is firmly aligned with the goals of the GNU Project and the Free Software Foundation, believing that the ethical concerns surrounding proprietary software are at least as important as the practical concerns espoused by the Open Source movement.
! 252: .[
! 253: whyFreeSoftware
! 254: .]
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>