Reflection and Hyper-Programming in Persistent Programming Systems”
Total Page:16
File Type:pdf, Size:1020Kb
This thesis should be referenced as: Kirby, G.N.C. “Reflection and Hyper-Programming in Persistent Programming Systems”. Ph.D. Thesis, University of St Andrews (1992). Reflection and Hyper-Programming in Persistent Programming Systems Graham N. C. Kirby Department of Mathematical and Computational Sciences University of St Andrews St Andrews Fife KY16 9SS Scotland Abstract In an orthogonally persistent programming system, data is treated in a manner independent of its persistence. This gives simpler semantics, allows the programmer to ignore details of long-term data storage and enables type checking protection mechanisms to operate over the entire lifetime of the data. The ultimate goal of persistent programming language research is to reduce the costs of producing software. The work presented in this thesis seeks to improve programmer productivity in the following ways: • by reducing the amount of code that has to be written to construct an application; • by increasing the reliability of the code written; and • by improving the programmer’s understanding of the persistent environment in which applications are constructed. Two programming techniques that may be used to pursue these goals in a persistent environment are type-safe linguistic reflection and hyper-programming. The first provides a mechanism by which the programmer can write generators that, when executed, produce new program representations. This allows the specification of programs that are highly generic yet depend in non-trivial ways on the types of the data on which they operate. Genericity promotes software reuse which in turn reduces the amount of new code that has to be written. Hyper-programming allows a source program to contain links to data items in the persistent store. This improves program reliability by allowing certain program checking to be performed earlier than is otherwise possible. It also reduces the amount of code written by permitting direct links to data in the place of textual descriptions. Both techniques contribute to the understanding of the persistent environment through supporting the implementation of store browsing tools and allowing source representations to be associated with all executable programs in the persistent store. This thesis describes in detail the structure of type-safe linguistic reflection and hyper- programming, their benefits in the persistent context, and a suite of programming tools that support reflective programming and hyper-programming. These tools may be used in conjunction to allow reflection over hyper-program representations. The implementation of the tools is described. Acknowledgements I thank my supervisor Ron Morrison for his support, guidance and enthusiasm. He has succeeded in providing a superb research environment. Ron Morrison, Richard Connor, Quintin Cutts, Al Dearle and Dave Stemple have all been directly involved in the research described in this thesis. I thank them and the other members of the PISA group at St Andrews, Fred Brown, Dave Munro and Craig Baker, for the benefits of numerous discussions. I have also been helped by talking with Alex Farkas, Tim Sheard, John Rosenberg and Malcolm Atkinson. Ron Morrison, Dave Stemple and Richard Connor provided invaluable constructive criticism during the writing of this thesis. Thanks to Al for luring me into computing research in the first place with his diving trip tales of browser writing. Finally I thank Charlotte for always cheering me up. Contents 1 Introduction .......................................................................................................... 1 1.1 Persistence and Software Costs................................................................... 1 1.2 The FIDE View of Software Production..................................................... 2 1.3 Persistence as a Platform............................................................................. 3 1.3.1 Writing Less Code ............................................................................. 3 1.3.2 Writing More Reliable Code.............................................................. 4 1.3.3 Understanding the Persistent Environment........................................ 4 1.3.4 Research Topics ................................................................................. 4 1.4 Linguistic Reflection................................................................................... 5 1.5 Hyper-Programming ................................................................................... 5 1.6 Software Products ....................................................................................... 6 1.7 Thesis Structure........................................................................................... 6 2 Reflection ............................................................................................................. 7 2.1 Introduction ................................................................................................. 7 2.1.1 Behavioural Reflection ...................................................................... 7 2.1.2 Linguistic Reflection.......................................................................... 8 2.1.2.1 Characterisation ........................................................................ 8 2.1.2.2 Lisp............................................................................................ 8 2.1.2.3 POP-2 ........................................................................................ 9 2.1.2.4 TRPL ....................................................................................... 10 2.1.2.5 PS-algol ................................................................................... 11 2.1.2.6 Napier88.................................................................................. 13 2.2 Type-Safe Linguistic Reflection ............................................................... 14 2.3 Anatomy of Type-Safe Linguistic Reflection ........................................... 16 2.3.1 Reflection in General ....................................................................... 16 2.3.2 Compilation...................................................................................... 19 2.3.3 Compile-Time Linguistic Reflection ............................................... 20 2.3.4 Optimised Compile-Time Linguistic Reflection.............................. 21 2.3.5 Run-Time Linguistic Reflection ...................................................... 23 2.3.6 Combined Compile-Time and Run-Time Linguistic Reflection ..... 25 2.4 Dimensions of Type-Safe Linguistic Reflection....................................... 25 2.4.1 Initiation of Reflection ..................................................................... 26 2.4.2 Time of Generator Execution........................................................... 26 2.4.3 Nature of Generators ........................................................................ 26 2.4.4 Execution Environment of Generators............................................. 26 2.4.5 Time of Type Checking of Generated Code .................................... 27 2.4.6 Execution Environment of Generated Code .................................... 27 2.4.7 Linking Generated Code into the Original Program ........................ 27 2.4.8 Characterisation of TRPL, PS-algol and Napier88 .......................... 27 2.4.8.1 TRPL ....................................................................................... 27 2.4.8.2 PS-algol ................................................................................... 28 2.4.8.3 Napier88.................................................................................. 29 2.5 Applications of Type-Safe Linguistic Reflection ..................................... 30 2.5.1 Genericity and Efficiency ................................................................ 30 2.5.2 Software Evolution in Persistent Systems ....................................... 32 2.5.3 Implementing Data Models.............................................................. 35 2.5.4 Optimising Implementations............................................................ 35 2.5.5 Validating Specifications ................................................................. 35 2.6 Anatomy of Generators ............................................................................. 36 2.6.1 Generator Components .................................................................... 36 2.6.2 Components in TRPL Generators .................................................... 37 2.6.3 Components in PS-algol Generators ................................................ 37 2.6.4 Components in Napier88 Generators ............................................... 38 2.6.5 Factors in Understanding Generators............................................... 39 2.7 Research Areas.......................................................................................... 39 2.8 Conclusions ............................................................................................... 40 3 Hyper-Programming .......................................................................................... 42 3.1 Introduction ............................................................................................... 42 3.2 Motivations and Benefits .......................................................................... 44 3.2.1 Program Composition ...................................................................... 44 3.2.2 Early Checking................................................................................