-- Copyright (C) 1986 by Xerox Corporation.  All rights reserved.
-- Stub file  was translated on May 4, 1986 9:44:09 pm PDT by Lupine of May 23, 1985 8:38:08 am PDT
-- Source interface ComputeServer came from file ComputeServer.bcd, which was created on May 4, 1986 9:42:38 pm PDT with version stamp 214#324#34015571650 from source of May 4, 1986 9:42:11 pm PDT.

-- The RPC stub modules for ComputeServer are:
--   ComputeServerRpcControl.mesa;
--   ComputeServerRpcClientImpl.mesa;
--   ComputeServerRpcBinderImpl.mesa;
--   ComputeServerRpcServerImpl.mesa.

-- The parameters for this translation are:
--   Target language = Cedar
--   Default parameter passing = VALUE
--   Deallocate server heap arguments = TRUE
--   Inline RpcServerImpl dispatcher stubs = TRUE
--   Declare signals = TRUE
--   Warn about short POINTER ("MDS") allocations = TRUE
--   Maximum number of dynamic heap NEWs = 50, MDS NEWs = 50
--   Acceptable parameter protocols = VersionRange[1..1].


DIRECTORY
  ComputeServerClient,
  Pup,
  Rope,
  RPC,
  ComputeServer,
  RPCLupine USING [ImportHandle];


ComputeServerRpcControl: DEFINITIONS
  SHARES  ComputeServer
  = BEGIN OPEN ComputeServer, RpcPublic: RPC, RpcPrivate: RPCLupine;


-- Public RPC types and constants.

  InterfaceName: TYPE = RpcPublic.InterfaceName;
  VersionRange: TYPE = RpcPublic.VersionRange;
  Principal: TYPE = RpcPublic.Principal;
  EncryptionKey: TYPE = RpcPublic.EncryptionKey;
  Zones: TYPE = RpcPublic.Zones;
  
  defaultInterfaceName: InterfaceName = RpcPublic.defaultInterfaceName;
  standardZones: Zones = RpcPublic.standardZones;


-- Standard remote binding routines.

  ImportInterface: SAFE PROCEDURE [
        interface: InterfaceRecord,
        interfaceName: InterfaceName ← defaultInterfaceName,
        parameterStorage: Zones ← standardZones ];


  ExportInterface: SAFE PROCEDURE [
        interfaceName: InterfaceName ← defaultInterfaceName,
        user: Principal,
        password: EncryptionKey,
        parameterStorage: Zones ← standardZones ];

  UnexportInterface: SAFE PROCEDURE;


-- Dynamic instantiation and binding.

  ImportNewInterface: SAFE PROCEDURE [
        interfaceName: InterfaceName ← defaultInterfaceName,
        parameterStorage: Zones ← standardZones ]
    RETURNS [interfaceRecord: InterfaceRecord];

  -- NewInterfaceRecord is necessary for Cedar clients who want to
  -- manufacture a private interface instance, because
  -- RpcBindingImpl has finalization on type InterfaceRecord.
  NewInterfaceRecord: SAFE PROCEDURE
    RETURNS [interfaceRecord: InterfaceRecord];

  InterfaceRecord: TYPE = REF InterfaceRecordObject;

  InterfaceRecordObject: TYPE = RECORD [
          myInterface: RpcPrivate.ImportHandle ← NIL,
      paramZones: RpcPublic.Zones ← RpcPublic.standardZones,
      clientStubAskForService: SAFE PROCEDURE [interface: InterfaceRecord,
          service: Rope.ROPE, version: RPC.ShortROPE, clientMachineName:
          RPC.ShortROPE, userName: RPC.ShortROPE] RETURNS [found: ATOM,
          serverPupAddress: Pup.Address, errMsg: Rope.ROPE],
      clientStubDoService: SAFE PROCEDURE [interface: InterfaceRecord,
          serverPupAddress: Pup.Address, clientNetAddressRope: RPC.ShortROPE,
          commandLine: Rope.ROPE, WorkingDirectory: Rope.ROPE, needRemoteInStream:
          BOOL, needRemoteOutStream: BOOL] RETURNS [success: ComputeServerClient.RemoteSuccess,
          msg: Rope.ROPE],
      clientStubAskForAbort: SAFE PROCEDURE [interface: InterfaceRecord,
          serverPupAddress: Pup.Address],
      clientStubGenericClientToServer: SAFE PROCEDURE [interface: InterfaceRecord,
          requestCode: ATOM, requestString: Rope.ROPE] RETURNS [resultCode:
          ATOM, resultString: Rope.ROPE],
      bound: BOOL ← FALSE];

  AskForService: SAFE PROCEDURE [interface: InterfaceRecord, service:
      Rope.ROPE, version: RPC.ShortROPE, clientMachineName: RPC.ShortROPE,
      userName: RPC.ShortROPE] RETURNS [found: ATOM, serverPupAddress:
      Pup.Address, errMsg: Rope.ROPE] = CHECKED INLINE  { RETURN interface.clientStubAskForService[interface,
      service, version, clientMachineName, userName]};
   DoService: SAFE PROCEDURE [interface: InterfaceRecord, serverPupAddress:
      Pup.Address, clientNetAddressRope: RPC.ShortROPE, commandLine: Rope.ROPE,
      WorkingDirectory: Rope.ROPE, needRemoteInStream: BOOL, needRemoteOutStream:
      BOOL] RETURNS [success: ComputeServerClient.RemoteSuccess, msg:
      Rope.ROPE] = CHECKED INLINE  { RETURN interface.clientStubDoService[interface,
      serverPupAddress, clientNetAddressRope, commandLine, WorkingDirectory,
      needRemoteInStream, needRemoteOutStream]};
   AskForAbort: SAFE PROCEDURE [interface: InterfaceRecord, serverPupAddress:
      Pup.Address] = CHECKED INLINE  { interface.clientStubAskForAbort[interface,
      serverPupAddress]};
   GenericClientToServer: SAFE PROCEDURE [interface: InterfaceRecord,
      requestCode: ATOM, requestString: Rope.ROPE] RETURNS [resultCode:
      ATOM, resultString: Rope.ROPE] = CHECKED INLINE  { RETURN interface.clientStubGenericClientToServer[interface,
      requestCode, requestString]};
 
 -- Definitions for the stubs.
 
 LupineProtocolVersion: PUBLIC VersionRange = [first: 1, last: 1];
 
 InterMdsCallsOnly: PUBLIC BOOLEAN = FALSE;

  ProcedureIndex: PRIVATE TYPE = MACHINE DEPENDENT {
      LupineUnusedIndex (0), LupineLastIndex (3),
      AskForService (4), DoService (5), AskForAbort (6), GenericClientToServer
      (7)};

  SignalIndex: PRIVATE TYPE = MACHINE DEPENDENT {
      LupineUnusedIndex (0), LupineLastIndex (3)};


END.  -- ComputeServerRpcControl.