MODULE M3ASTDisplay EXPORTS M3ASTDisplay, AST_DisplayRep; (***************************************************************************) (* Copyright (C) Olivetti 1989 *) (* All Rights reserved *) (* *) (* Use and copy of this software and preparation of derivative works based *) (* upon this software are permitted to any person, provided this same *) (* copyright notice and the following Olivetti warranty disclaimer are *) (* included in any copy of the software or any modification thereof or *) (* derivative work therefrom made by any person. *) (* *) (* This software is made available AS IS and Olivetti disclaims all *) (* warranties with respect to this software, whether expressed or implied *) (* under any law, including all implied warranties of merchantibility and *) (* fitness for any purpose. In no event shall Olivetti be liable for any *) (* damages whatsoever resulting from loss of use, data or profits or *) (* otherwise arising out of or in connection with the use or performance *) (* of this software. *) (***************************************************************************) IMPORT IO, M3AST, ASTWalk; IMPORT AST_DisplayRep, M3ASTDisplay_handle; IMPORT M3PPStream; REVEAL AST_DisplayRep.Handle = M3ASTDisplay_handle.T BRANDED OBJECT ignoreChildren: BOOLEAN := FALSE; callOnEntry: BOOLEAN := FALSE; callOnExit: BOOLEAN := FALSE; closure: Closure := NIL; OVERRIDES Visit := DoVisit; END; REVEAL Closure = ASTWalk.Closure BRANDED OBJECT handle: Handle := NIL; END; PROCEDURE Nodes( n: M3AST.NODE; s: IO.Stream; initial_indent := 0) RAISES {IO.Error}= VAR handle := NEW(Handle); BEGIN DoNodes(handle, n, s, initial_indent); END Nodes; PROCEDURE ModeNodes( n: M3AST.NODE; c: Closure; vm : ASTWalk.VisitModeControl; s: IO.Stream; initial_indent := 0) RAISES {IO.Error} = VAR handle := NEW(Handle, closure := c); BEGIN c.handle := handle; handle.callOnEntry := ASTWalk.VisitMode.Entry IN vm; handle.callOnExit := ASTWalk.VisitMode.Exit IN vm; DoNodes(handle, n, s, initial_indent); END ModeNodes; PROCEDURE DoNodes( handle: Handle; n: M3AST.NODE; s: IO.Stream; initial_indent: INTEGER) RAISES {IO.Error}= BEGIN handle.stream := M3PPStream.Open(s); handle.indent := initial_indent; TRY DoVisit(handle, n); EXCEPT ASTWalk.Aborted => END; IO.Close(handle.stream); END DoNodes; PROCEDURE DoVisit(handle: Handle; n: M3AST.NODE) RAISES ANY= BEGIN IF handle.callOnEntry THEN handle.closure.callback(n); END; IF NOT handle.ignoreChildren THEN n.display(handle) END; IF handle.callOnExit THEN handle.closure.callback(n); END; handle.ignoreChildren := FALSE; END DoVisit; (*PUBLIC*) PROCEDURE IgnoreChildren(c: Closure) RAISES {} = BEGIN c.handle.ignoreChildren := TRUE; END IgnoreChildren; BEGIN END M3ASTDisplay.