DEFINITION MODULE DQPBSBMN; (*=========================================================== Version : 1.00 16 May 1989 C. Lins Compiler : TopSpeed Modula-2 Component: Monolithic Structures - Deque (Opaque version) Priority Balking Sequential Bounded Managed Non-Iterator REVISION HISTORY v1.00 16 May 1989 C. Lins: Initial TopSpeed implementation. (C) Copyright 1989 Charles A. Lins ===========================================================*) FROM ErrorHandling IMPORT (*--Type*) HandlerProc; FROM Items IMPORT (*--Type*) Item; FROM QEnum IMPORT (*--Type*) Exceptions; FROM Relations IMPORT (*--Type*) Relation; FROM TypeManager IMPORT (*--Type*) TypeID; (*--------------------*) TYPE Deque; TYPE DequeSize = [1..8100]; TYPE Location = (front, back); CONST NullDeque = Deque(NIL); TYPE Priority; TYPE PriorityProc = PROCEDURE (Item) : Priority; TYPE PriorityCompare = PROCEDURE (Priority, Priority) : Relation; (*---------------------------------*) (*-- EXCEPTIONS --*) CONST ModuleID = 6; PROCEDURE DequeError () : Exceptions (*-- out *); PROCEDURE SetHandler ( theError : Exceptions (*-- in *); theHandler : HandlerProc (*-- in *)); PROCEDURE GetHandler ( theError : Exceptions (*-- in *)) : HandlerProc (*-- out *); (*---------------------------------*) (*-- CONSTRUCTORS --*) PROCEDURE Create ( theType : TypeID (*-- in *); theSize : DequeSize (*-- in *); priorityOf : PriorityProc (*-- in *); comparison : PriorityCompare (*-- in *)) : Deque (*-- out *); PROCEDURE Destroy (VAR theDeque : Deque (*-- inout *)); PROCEDURE Clear (VAR theDeque : Deque (*-- inout *)); PROCEDURE Assign ( theDeque : Deque (*-- in *); VAR toDeque : Deque (*-- inout *)); PROCEDURE Arrive (VAR theDeque : Deque (*-- inout *); theItem : Item (*-- in *); theEnd : Location (*-- in *)); PROCEDURE Depart (VAR theDeque : Deque (*-- inout *); theEnd : Location (*-- in *)); PROCEDURE Leave (VAR theDeque : Deque (*-- inout *); theItem : Item (*-- in *); theEnd : Location (*-- in *)); (*---------------------------------*) (*-- SELECTORS --*) PROCEDURE IsDefined ( theDeque : Deque (*-- in *)) : BOOLEAN (*-- out *); PROCEDURE IsEmpty ( theDeque : Deque (*-- in *)) : BOOLEAN (*-- out *); PROCEDURE IsEqual ( left : Deque (*-- in *); right : Deque (*-- in *)) : BOOLEAN (*-- out *); PROCEDURE LengthOf ( theDeque : Deque (*-- in *)) : CARDINAL (*-- out *); PROCEDURE SizeOf ( theDeque : Deque (*-- in *)) : CARDINAL (*-- out *); PROCEDURE TypeOf ( theDeque : Deque (*-- in *)) : TypeID (*-- out *); PROCEDURE FrontOf ( theDeque : Deque (*-- in *)) : Item (*-- out *); PROCEDURE RearOf ( theDeque : Deque (*-- in *)) : Item (*-- out *); PROCEDURE EndOf ( theDeque : Deque (*-- in *); theEnd : Location (*-- in *)) : Item (*-- out *); PROCEDURE PositionOf ( theDeque: Deque (*-- in *); theItem : Item (*-- in *)) : CARDINAL (*-- out *); END DQPBSBMN.