Rexx to the Rescue!

Total Page:16

File Type:pdf, Size:1020Kb

Rexx to the Rescue! Session: G9 Rexx to the Rescue! Damon Anderson Anixter May 21, 2008 • 9:45 a.m. – 10:45 a.m. Platform: DB2 for z/OS Rexx is a powerful tool that can be used in your daily life as an z/OS DB2 Professional. This presentation will cover setup and execution for the novice. It will include Edit macro coding examples used by DBA staff to solve everyday tasks. DB2 data access techniques will be covered as will an example of calling a stored procedure. Examples of several homemade DBA tools built with Rexx will be provided. Damon Anderson is a Senior Technical DBA and Technical Architect at Anixter Inc. He has extensive experience in DB2 and IMS, data replication, ebusiness, Disaster Recovery, REXX, ISPF Dialog Manager, and related third-party tools and technologies. He is a certified DB2 Database Administrator. He has written articles for the IDUG Solutions Journal and presented at IDUG and regional user groups. Damon can be reached at [email protected] 1 Rexx to the Rescue! 5 Key Bullet Points: • Setting up and executing your first Rexx exec • Rexx execs versus edit macros • Edit macro capabilities and examples • Using Rexx with DB2 data • Examples to clone data, compare databases, generate utilities and more. 2 Agenda: • Overview of Anixter’s business, systems environment • The Rexx “Setup Problem” Knowing about Rexx but not knowing how to start using it. • Rexx execs versus Edit macros, including coding your first “script” macro. • The setup and syntax for accessing DB2 • Discuss examples for the purpose of providing tips for your Rexx execs • A few random tips along the way. 2 Overview of Anixter’s Business • Anixter Inc. is a Global Distributor ($4.9 Billion) • Wire, Cable, Sound & Security, Networking, Fasteners • Corporate Snapshot: • Year Founded: 1957 • Number of employees: 7500 • 2007 Revenues: $5.8 billion • Products: 400,000 • Inventory: $1 billion • Customers: 95,000 • Stock Symbol: AXE • Countries: 49 3 About Anixter Anixter Inc. is the world’s leading supplier of Supply Chain Services and products used to connect voice, video, data and security systems. Anixter is also the leading provider of specialty electrical and electronic wire and cable for building construction, industrial maintenance and repair, and original equipment manufacturing as well as the leader in providing fasteners and “C” Class components to OEMs and production lines. Anixter adds value to the distribution process by providing its customers access to the following: 1) Innovative inventory management programs. 2) More than 400,000 products and over $1 billion in inventory. 3) 226 warehouses with more than 5.5 million square feet of space. 4) locations in 251 cities in 49 countries. Founded in 1957 and headquartered near Chicago, Anixter trades on The New York Stock Exchange under the symbol AXE. 3 Overview of Anixter’s Systems Mainframe Mainframe Hardware: Software: 2 Mainframes • Z/8 • z/OS 1.7 • Z/9 - Moving to z/OS 1.9 • Soon: • DB2 8.1 • Replace Z/8 with Z/9 4 Anixter currently has 2 mainframes. We have 2-way Data Sharing for DB2 and IMS. CICS and WebSphere are the main OLTP (Online Transaction Processing) environments. At last count: 12 DB2 Subsystems 11 IMS Subsystems 4 Rexx – The Setup Problem Symptoms of the “Rexx Setup Problem” • I went to a REXX Class but still don’t use it. • I downloaded a REXX Exec of the Internet but I don’t know how to make it work. • I saw Kyle using an Edit Macro, but it doesn’t work for me. Solutions to the “Rexx Setup Problem” • Talk to the Systems Programmer(s) responsible for ISPF. • Talk to someone who it works for. • Investigate your environment. 5 REXX = Restructured Extended Executor A general-purpose, procedural language for end-user personal programming, designed for ease by both casual general users and computer professionals. It is also useful for application macros. REXX includes the capability of issuing commands to the underlying operating system from these macros and procedures. Features include powerful character-string manipulation, automatic data typing, manipulation of objects familiar to people, such as words, numbers, and names, and built-in interactive debugging. One of the main problems with Rexx tends to be what I call the “Setup” problem. Some people are familiar with the capabilities of Rexx, but cannot utilize it because they cannot established an environment where they can code and test their Rexx programs. The first quarter of this presentation is targeting those individuals. Walking them through the setup of a Rexx PDS and the various allocation options available. Additional steps are included for running Rexx execs in batch, interactively and running edit macros. 5 Setup – Step 1, Allocate a PDS. • Allocate a PDS or PDSE to hold your Rexx Execs. • Add the member REXXSYNT below to your Rexx PDS. Save the member. The comment on the first line is required to identify this as a REXX exec. Depending on where the exec resides, you may be able to remove it… my suggestion: just leave it. 6 Once you are ready to start coding Rexx exec and/or edit macros, you will need a library to store them in. The naming convention for this library should adhere to the naming conventions of your company. Sometimes, properly naming your Rexx PDS is all that will be required to get it properly allocated…. potentially simplifying upcoming step 4. Go to ISPF 3.2 and allocate a PDS. It can be Fixed Block, LRECL=80 or Variable Block, LRECL=255. Once allocated, proceed to create a member in the PDS called REXXSYNT. Add the three lines from the screenshot into the member and save it. The comment on the first line is required to identify this as a REXX exec. Depending on where the exec resides, you may be able to remove it… my suggestion: just leave it. 6 Setup – Step 2, Run a sample. • Execute your first REXX • On the command line, type TSO EXEC followed by the quoted fully qualified Rexx member… • TSO EXEC “E200301.PDS.REXX(REXXSYNT)” This was nice, but there has to be an easier way. 7 At this point, you have your Rexx PDS allocated and you have saved your first Rexx Exec into the PDS. We will now attempt to run the Exec. On the command line, type TSO EXEC followed by the quoted fully qualified Rexx PDS member, for example: TSO EXEC “E200301.PDS.REXX(REXXSYNT)” If all goes well, you should be greeted by the SAY statement of your first Rexx exec. I am notoriously lazy when it comes to typing. I really do not want to type a fully qualified PDS name and member every time I want to invoke a Rexx. Let’s investigate what can be done to simplify this. 7 Setup – Step 3, Run it in Batch. • Execute your first REXX in Batch mode. • Create a job similar to the following… Your Jobcard Your Rexx PDS 8 We will now attempt to run your first Rexx exec in a Batch job. The JCL is extremely simple. The parm to the Terminal Monitor Program is the member name of Rexx exec to be executed. The TMP may be one of the following: IKJEFT01, IKJEFT1A, or IKJEFT1B. Please refer to the TSO/E User’s Guide ( SA22-7794-03 ) for information on the differences between these programs. Just an opinion, but you will likely want to use IKJEFT1B. The PDS containing the Rexx exec is allocated to the SYSEXEC DD statement. It can also be a SYSPROC DD statement. 8 Setup – Step 3, Run it in Batch. • That’s worse… why did I just do that? 2 Reasons: 1. We learned that Rexx Execs can be easily executed in a batch job. 2. We learned that Rexx Execs can be loaded from the SYSEXEC DD. ( or the SYSPROC DD ) 9 It seemed to add no value to this Exec, but what about the Exec that processes for 10 minutes. The main takeaway is that Rexx Execs can easily be ran in a batch job. We also learned which DD statement Rexx Execs can be loaded from. We will use that information when we move on to allocating our Rexx PDS to our ISPF session. 9 Setup - Step 4, get allocated. • The goal is is to get your Rexx PDS in either your SYSPROC or SYSEXEC DD allocations for you ISPF Session. • Talk to the Systems Programmer(s) responsible for ISPF. • Find out if your site has a “Realloc” or “Setup” Exec or Clist to allocate your libraries. • Talk to someone that you know uses Rexx at your company. • Ask them for help… how do they get their Rexx PDS allocated to their ISPF Session? 10 For ease of use, it is best to get you Rexx PDS allocated to your TSO/ISPF session. There are several methods of accomplishing this: ALTLIB ACTIVATE can be used to dynamically add a Rexx Exec library to the search path. This method is not “global” in that it must be done for each new split screen. This isn’t a great option. The best method from the perspective of the person wanting to execute the Rexx program is to have your Rexx PDS in the concatenation of either your SYSPROC or SYSEXEC DD. Many sites utilize a “REALLOC” or “SETUP” Rexx Exec or clist to perform this concatenation every time you logon. It finds the names of PDS’s currently allocated to the DDNAME SYSEXEC or SYSPROC and then adds your Rexx PDS to the list. Ask around as you don’t want to utilize a lesser solution when a better one may exist.
Recommended publications
  • A New Macro-Programming Paradigm in Data Collection Sensor Networks
    SpaceTime Oriented Programming: A New Macro-Programming Paradigm in Data Collection Sensor Networks Hiroshi Wada and Junichi Suzuki Department of Computer Science University of Massachusetts, Boston Program Insert This paper proposes a new programming paradigm for wireless sensor networks (WSNs). It is designed to significantly reduce the complexity of WSN programming by providing a new high- level programming abstraction to specify spatio-temporal data collections in a WSN from a global viewpoint as a whole rather than sensor nodes as individuals. Abstract SpaceTime Oriented Programming (STOP) is new macro-programming paradigm for wireless sensor networks (WSNs) in that it supports both spatial and temporal aspects of sensor data and it provides a high-level abstraction to express data collections from a global viewpoint for WSNs as a whole rather than sensor nodes as individuals. STOP treats space and time as first-class citizens and combines them as spacetime continuum. A spacetime is a three dimensional object that consists of a two special dimensions and a time playing the role of the third dimension. STOP allows application developers to program data collections to spacetime, and abstracts away the details in WSNs, such as how many nodes are deployed in a WSN, how nodes are connected with each other, and how to route data queries in a WSN. Moreover, STOP provides a uniform means to specify data collections for the past and future. Using the STOP application programming interfaces (APIs), application programs (STOP macro programs) can obtain a “snapshot” space at a given time in a given spatial resolutions (e.g., a space containing data on at least 60% of nodes in a give spacetime at 30 minutes ago.) and a discrete set of spaces that meet specified spatial and temporal resolutions.
    [Show full text]
  • SQL Processing with SAS® Tip Sheet
    SQL Processing with SAS® Tip Sheet This tip sheet is associated with the SAS® Certified Professional Prep Guide Advanced Programming Using SAS® 9.4. For more information, visit www.sas.com/certify Basic Queries ModifyingBasic Queries Columns PROC SQL <options>; SELECT col-name SELECT column-1 <, ...column-n> LABEL= LABEL=’column label’ FROM input-table <WHERE expression> SELECT col-name <GROUP BY col-name> FORMAT= FORMAT=format. <HAVING expression> <ORDER BY col-name> <DESC> <,...col-name>; Creating a SELECT col-name AS SQL Query Order of Execution: new column new-col-name Filtering Clause Description WHERE CALCULATED new columns new-col-name SELECT Retrieve data from a table FROM Choose and join tables Modifying Rows WHERE Filter the data GROUP BY Aggregate the data INSERT INTO table SET column-name=value HAVING Filter the aggregate data <, ...column-name=value>; ORDER BY Sort the final data Inserting rows INSERT INTO table <(column-list)> into tables VALUES (value<,...value>); INSERT INTO table <(column-list)> Managing Tables SELECT column-1<,...column-n> FROM input-table; CREATE TABLE table-name Eliminating SELECT DISTINCT CREATE TABLE (column-specification-1<, duplicate rows col-name<,...col-name> ...column-specification-n>); WHERE col-name IN DESCRIBE TABLE table-name-1 DESCRIBE TABLE (value1, value2, ...) <,...table-name-n>; WHERE col-name LIKE “_string%” DROP TABLE table-name-1 DROP TABLE WHERE col-name BETWEEN <,...table-name-n>; Filtering value AND value rows WHERE col-name IS NULL WHERE date-value Managing Views “<01JAN2019>”d WHERE time-value “<14:45:35>”t CREATE VIEW CREATE VIEW table-name AS query; WHERE datetime-value “<01JAN201914:45:35>”dt DESCRIBE VIEW view-name-1 DESCRIBE VIEW <,...view-name-n>; Remerging Summary Statistics DROP VIEW DROP VIEW view-name-1 <,...view-name-n>; SELECT col-name, summary function(argument) FROM input table; Copyright © 2019 SAS Institute Inc.
    [Show full text]
  • The Semantics of Syntax Applying Denotational Semantics to Hygienic Macro Systems
    The Semantics of Syntax Applying Denotational Semantics to Hygienic Macro Systems Neelakantan R. Krishnaswami University of Birmingham <[email protected]> 1. Introduction body of a macro definition do not interfere with names oc- Typically, when semanticists hear the words “Scheme” or curring in the macro’s arguments. Consider this definition of and “Lisp”, what comes to mind is “untyped lambda calculus a short-circuiting operator: plus higher-order state and first-class control”. Given our (define-syntax and typical concerns, this seems to be the essence of Scheme: it (syntax-rules () is a dynamically typed applied lambda calculus that sup- ((and e1 e2) (let ((tmp e1)) ports mutable data and exposes first-class continuations to (if tmp the programmer. These features expose a complete com- e2 putational substrate to programmers so elegant that it can tmp))))) even be characterized mathematically; every monadically- representable effect can be implemented with state and first- In this definition, even if the variable tmp occurs freely class control [4]. in e2, it will not be in the scope of the variable definition However, these days even mundane languages like Java in the body of the and macro. As a result, it is important to support higher-order functions and state. So from the point interpret the body of the macro not merely as a piece of raw of view of a working programmer, the most distinctive fea- syntax, but as an alpha-equivalence class. ture of Scheme is something quite different – its support for 2.2 Open Recursion macros. The intuitive explanation is that a macro is a way of defining rewrites on abstract syntax trees.
    [Show full text]
  • Concatenative Programming
    Concatenative Programming From Ivory to Metal Jon Purdy ● Why Concatenative Programming Matters (2012) ● Spaceport (2012–2013) Compiler engineering ● Facebook (2013–2014) Site integrity infrastructure (Haxl) ● There Is No Fork: An Abstraction for Efficient, Concurrent, and Concise Data Access (ICFP 2014) ● Xamarin/Microsoft (2014–2017) Mono runtime (performance, GC) What I Want in a ● Prioritize reading & modifying code over writing it Programming ● Be expressive—syntax closely Language mirroring high-level semantics ● Encourage “good” code (reusable, refactorable, testable, &c.) ● “Make me do what I want anyway” ● Have an “obvious” efficient mapping to real hardware (C) ● Be small—easy to understand & implement tools for ● Be a good citizen—FFI, embedding ● Don’t “assume you’re the world” ● Forth (1970) Notable Chuck Moore Concatenative ● PostScript (1982) Warnock, Geschke, & Paxton Programming ● Joy (2001) Languages Manfred von Thun ● Factor (2003) Slava Pestov &al. ● Cat (2006) Christopher Diggins ● Kitten (2011) Jon Purdy ● Popr (2012) Dustin DeWeese ● … History Three ● Lambda Calculus (1930s) Alonzo Church Formal Systems of ● Turing Machine (1930s) Computation Alan Turing ● Recursive Functions (1930s) Kurt Gödel Church’s Lambdas e ::= x Variables λx.x ≅ λy.y | λx. e Functions λx.(λy.x) ≅ λy.(λz.y) | e1 e2 Applications λx.M[x] ⇒ λy.M[y] α-conversion (λx.λy.λz.xz(yz))(λx.λy.x)(λx.λy.x) ≅ (λy.λz.(λx.λy.x)z(yz))(λx.λy.x) (λx.M)E ⇒ M[E/x] β-reduction ≅ λz.(λx.λy.x)z((λx.λy.x)z) ≅ λz.(λx.λy.x)z((λx.λy.x)z) ≅ λz.z Turing’s Machines ⟨ ⟩ M
    [Show full text]
  • Metaprogramming with Julia
    Metaprogramming with Julia https://szufel.pl Programmers effort vs execution speed Octave R Python Matlab time, time, log scale - C JavaScript Java Go Julia C rozmiar kodu Sourcewego w KB Source: http://www.oceanographerschoice.com/2016/03/the-julia-language-is-the-way-of-the-future/ 2 Metaprogramming „Metaprogramming is a programming technique in which computer programs have the ability to treat other programs as their data. It means that a program can be designed to read, generate, analyze or transform other programs, and even modify itself while running.” (source: Wikipedia) julia> code = Meta.parse("x=5") :(x = 5) julia> dump(code) Expr head: Symbol = args: Array{Any}((2,)) 1: Symbol x 2: Int64 5 3 Metaprogramming (cont.) julia> code = Meta.parse("x=5") :(x = 5) julia> dump(code) Expr head: Symbol = args: Array{Any}((2,)) 1: Symbol x 2: Int64 5 julia> eval(code) 5 julia> x 5 4 Julia Compiler system not quite accurate picture... Source: https://www.researchgate.net/ publication/301876510_High- 5 level_GPU_programming_in_Julia Example 1. Select a field from an object function getValueOfA(x) return x.a end function getValueOf(x, name::String) return getproperty(x, Symbol(name)) end function getValueOf2(name::String) field = Symbol(name) code = quote (obj) -> obj.$field end return eval(code) end function getValueOf3(name::String) return eval(Meta.parse("obj -> obj.$name")) end 6 Let’s test using BenchmarkTools struct MyStruct a b end x = MyStruct(5,6) @btime getValueOfA($x) @btime getValueOf($x,"a") const getVal2 = getValueOf2("a") @btime
    [Show full text]
  • Dynamic Economics Quantitative Methods and Applications to Macro and Micro
    Dynamic Economics Quantitative Methods and Applications to Macro and Micro J¶er^ome Adda and Nicola Pavoni MACT1 2003-2004. I Overview Dynamic Programming Theory ² { Contraction mapping theorem. { Euler equation Numerical Methods ² Econometric Methods ² Applications ² MACT1 2003-2004. I Numerical Methods Examples: Cake Eating Deterministic Cake eating: ² V (K) = max u(c) + ¯V (K c) c ¡ with { K: size of cake. K 0 ¸ { c: amount of cake consumed. c 0 ¸ Stochastic Cake eating: ² V (K; y) = max u(c) + ¯Ey0 V (K0; y0) c K0 = K c + y ¡ Discrete Cake eating: ² V (K; ") = max[u(K; "); ¯E 0 V (½K; "0)] ½ [0; 1] " 2 MACT1 2003-2004. I How do we Solve These Models? Not necessarily a closed form solution for V (:). ² Numerical approximations. ² MACT1 2003-2004. I Solution Methods Value function iterations. (Contraction Mapping Th.) ² Policy function iterations. (Contraction Mapping Th.) ² Projection methods. (Euler equation) ² MACT1 2003-2004. I Value Function Iterations Value Function Iterations Vn(S) = max u(action; S) + ¯EVn 1(S0) action ¡ Vn(:) = T Vn 1(:) ¡ Take advantage of the Contraction Mapping Theorem. If T is ² the contraction operator, we use the fact that d(Vn; Vn 1) ¯d(Vn 1; Vn 2) ¡ · ¡ ¡ n Vn(:) = T V0(:) This guarantee that: ² 1. successive iterations will converge to the (unique) ¯xed point. 2. starting guess for V0 can be arbitrary. Successive iterations: ² { Start with a given V0(:). Usually V0(:) = 0. { Compute V1(:) = T V0(:) { Iterate Vn(:) = T Vn 1(:) ¡ { Stop when d(Vn; Vn 1) < ". ¡ MACT1 2003-2004. I Value Function Iterations: Deterministic Cake Eating Model: ² V (K) = max u(c) + ¯V (K c) c ¡ Can be rewritten as: ² V (K) = max u(K K0) + ¯V (K0) K0 ¡ The iterations will be on ² Vn(K) = max u(K K0) + ¯Vn 1(K0) K0 ¡ ¡ example: take u(c) = ln(c).
    [Show full text]
  • Top 10 Uses of Macro %Varlist - in Proc SQL, Data Step and Elsewhere
    PhUSE 2016 Paper CS09 Top 10 uses of macro %varlist - in proc SQL, Data Step and elsewhere Jean-Michel Bodart, Business & Decision Life Sciences, Brussels, Belgium ABSTRACT The SAS® macro-function %VARLIST(), a generic utility function that can retrieve lists of variables from one or more datasets, and process them in various ways in order to generate code fragments, was presented at the PhUSE 2015 Annual Conference in Vienna. That first paper focused on generating code for SQL joins of arbitrary complexity. However the macro was also meant to be useful in the Data Step as well as in other procedure calls, in global statements and as a building block in other macros. The full code of macro %VARLIST is freely available from the PhUSE Wiki (http://www.phusewiki.org/wiki/index.php?title=SAS_macro-function_%25VARLIST). The current paper reviews and provides examples of the top ten uses of %VARLIST() according to a survey of real-life SAS programs developed to create Analysis Datasets, Summary Tables and Figures in post-hoc and exploratory analyses of clinical trials data. It is meant to provide users with additional information about how and where to use it best. INTRODUCTION SAS Macro Language has been available for a long time. It provides users with the tools to control program flow execution, execute repeatedly and/or conditionally single or multiple SAS Data steps, Procedure steps and/or Global statements that are aggregated, included in user-written macro definitions. However, the macro statements that implement the repeating and conditional loops cannot be submitted on their own, as “open code”, but only as part of calls to the full macro definition.
    [Show full text]
  • (Dynamic (Programming Paradigms)) Performance and Expressivity Didier Verna
    (Dynamic (programming paradigms)) Performance and expressivity Didier Verna To cite this version: Didier Verna. (Dynamic (programming paradigms)) Performance and expressivity. Software Engineer- ing [cs.SE]. LRDE - Laboratoire de Recherche et de Développement de l’EPITA, 2020. hal-02988180 HAL Id: hal-02988180 https://hal.archives-ouvertes.fr/hal-02988180 Submitted on 4 Nov 2020 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. THÈSE D’HABILITATION À DIRIGER LES RECHERCHES Sorbonne Université Spécialité Sciences de l’Ingénieur (DYNAMIC (PROGRAMMING PARADIGMS)) PERFORMANCE AND EXPRESSIVITY Didier Verna [email protected] Laboratoire de Recherche et Développement de l’EPITA (LRDE) 14-16 rue Voltaire 94276 Le Kremlin-Bicêtre CEDEX Soutenue le 10 Juillet 2020 Rapporteurs: Robert Strandh Université de Bordeaux, France Nicolas Neuß FAU, Erlangen-Nürnberg, Allemagne Manuel Serrano INRIA, Sophia Antipolis, France Examinateurs: Marco Antoniotti Université de Milan-Bicocca, Italie Ralf Möller Université de Lübeck, Allemagne Gérard Assayag IRCAM, Paris, France DOI 10.5281/zenodo.4244393 Résumé (French Abstract) Ce rapport d’habilitation traite de travaux de recherche fondamentale et appliquée en informatique, effectués depuis 2006 au Laboratoire de Recherche et Développement de l’EPITA (LRDE). Ces travaux se situent dans le domaine des langages de pro- grammation dynamiques, et plus particulièrement autour de leur expressivité et de leur performance.
    [Show full text]
  • The Paradigms of Programming
    The Paradigms of Programming Robert W Floyd Stanford University Today I want to talk about the paradigms of programming, how they affect our success as designers of computer programs, how they should be taught, and how they should be embodied in our programming languages. A familiar example of a paradigm of programming is the technique of structured programming, which appears to be the dominant paradigm in most current treatments of programming methodology. Structured programming, as formulated by Dijkstra [6], Wirth [27,29], and Parnas [21], among others,. consists of two phases. In the first phase, that of top-down design, or stepwise refinement, the problem is decomposed into a very small number of simpler subproblems. In programming the solution of simultaneous linear equations, say, the first level of decomposition would be into a stage of triangularizing the equations and a following stage of back-substitution in the triangularized system. This gradual decomposition is continued until the subproblems that arise are simple enough to cope with directly. In the simultaneous equation example, the back substitution process would be further decomposed as a backwards iteration of a process which finds and stores the value of the ith variable from the ith equation. Yet further decomposition would yield a fully detailed algorithm. The second phase of the structured· programming paradigm entails working upward from the concrete objects and functions of the underlying machine to the more abstract objects and functions used throughout the modules produced by the top-down design. In the linear equation example, if the coefficients of the equations are rational functions of one variable, we might first design a multiple-precision arithmetic representation Robert W Floyd, Turing Award Lecture, 1978: "The Paradigms of Programming," Communications of the ACM, VoI.22:8, August 1979, pp.455-460.
    [Show full text]
  • PL/I for AIX: Programming Guide
    IBM PL/I for AIX Programming Guide Ve r s i o n 2.0.0 SC18-9328-00 IBM PL/I for AIX Programming Guide Ve r s i o n 2.0.0 SC18-9328-00 Note! Before using this information and the product it supports, be sure to read the general information under “Notices” on page 309. Second Edition (June 2004) This edition applies to IBM PL/I for AIX 2.0.0, 5724-H45, and to any subsequent releases until otherwise indicated in new editions or technical newsletters. Make sure you are using the correct edition for the level of the product. Order publications through your IBM representative or the IBM branch office serving your locality. Publications are not stocked at the address below. A form for readers’ comments is provided at the back of this publication. If the form has been removed, address your comments to: IBM Corporation, Department HHX/H1 555 Bailey Ave San Jose, CA, 95141-1099 United States of America When you send information to IBM, you grant IBM a nonexclusive right to use or distribute the information in any way it believes appropriate without incurring any obligation to you. ©International Business Machines Corporation 1998,2004. All rights reserved. Contents Figures . vii COMPILE . .47 COPYRIGHT . .48 CURRENCY . .48 Part 1. Introducing PL/I on your DEFAULT . .48 workstation . .1 EXIT. .54 EXTRN . .54 Chapter 1. About this book . .3 FLAG . .55 FLOATINMATH. .55 Chapter 2. How to read the syntax GONUMBER . .56 GRAPHIC . .56 diagrams . .5 IMPRECISE . .56 INCAFTER . .57 Chapter 3.
    [Show full text]
  • 61A Extra Lecture 8 Homoiconicity Macros
    Announcements • Extra Homework 3 due Thursday 4/16 @ 11:59pm § Extending the object system created in Extra Lecture 6 • Extra Homework 4 due Thursday 4/23 @ 11:59pm (Warning: same day as Project 4 is due!) § Complete the three extensions to Project 4 described today 61A Extra Lecture 8 Thursday, April 2 2 A Scheme Expression is a Scheme List Scheme programs consist of expressions, which can be: • Primitive expressions: 2 3.3 true + quotient • Combinations: (quotient 10 2) (not true) The built-in Scheme list data structure (which is a linked list) can represent combinations Homoiconicity scm> (list 'quotient 10 2) (quotient 10 2) ! scm> (eval (list 'quotient 10 2)) 5 In such a language, it is straightforward to write a program that writes a program (Demo) 4 Homoiconic Languages Languages have both a concrete syntax and an abstract syntax (Python Demo) A language is homoiconic if the abstract syntax can be read from the concrete syntax (Scheme Demo) Macros Quotation is actually a combination in disguise (Quote Demo) 5 Macros Perform Code Transformations Problem 1 A macro is an operation performed on the source code of a program before evaluation Define a macro that evaluates an expression for each value in a sequence Macros exist in many languages, but are easiest to define correctly in homoiconic languages (define (map fn vals) (if (null? vals) Scheme has a define-macro special form that defines a source code transformation () (cons (fn (car vals)) (map fn (cdr vals))))) (define-macro (twice expr) > (twice (print 2)) ! (list 'begin expr
    [Show full text]
  • Application Note: Object-Oriented Programming in C
    Application Note Object-Oriented Programming in C Document Revision J April 2019 Copyright © Quantum Leaps, LLC info@s tate-machine .com www.state-machine.com Table of Contents 0 Introduction .................................................................................................................................................... 1 1 Encapsulation ................................................................................................................................................. 1 2 Inheritance ...................................................................................................................................................... 5 3 Polymorphism (Virtual Functions) ................................................................................................................ 8 3.1 Virtual Table (vtbl) and Virtual Pointer (vptr) ............................................................................................ 10 3.2 Setting the vptr in the Constructor ............................................................................................................ 10 3.3 Inheriting the vtbl and Overriding the vptr in the Subclasses ................................................................... 12 3.4 Virtual Call (Late Binding) ........................................................................................................................ 13 3.5 Examples of Using Virtual Functions ......................................................................................................
    [Show full text]