FingerOps.mesa
Last Edited by: Khall, August 13, 1984 10:17:23 am PDT
Last edited by: Donahue, April 9, 1986 3:31:59 pm PST
(Added notion of properties to Finger database; removed notion of "fingerable objects" and made clear separation between machines/users. Added procedures to dump and build maps of the available machines)
Last Edited by: Gifford, July 26, 1985 3:52:40 pm PDT
Carl Hauser, January 12, 1987 2:26:14 pm PST
(Removed references to Pup Net addresses of machines)
Ewan Tempero September 6, 1986 6:37:23 pm PDT
DIRECTORY
BasicTime USING [GMT],
FingerLog USING [StateChange],
Rope USING [ROPE];
FingerOps: CEDAR DEFINITIONS =
BEGIN
FingerList: TYPE = LIST OF Rope.ROPE;
The name of all of the objects matching a finger pattern
Reason: TYPE = {Error, Aborted, Failure};
These are the possible reasons why a Get or Put may fail. We try hard to avoid aborts, but they may be caused by changes in the collection of properties in the database; errors are programming problems; failures are problems with the server used to store the database
FingerError: ERROR[reason: Reason];
The procedure below that records information about the state of the machine and user logs its input so that if the server is unavailable at the time of the change of state it will still subsequently be recorded in the database (other users may find the database inconsistent with reality for short intervals, but we'll try hard to keep things as accurate as possible).
PropPair: TYPE = REF PropPairObject;
PropPairObject: TYPE = RECORD[prop: ATOM, val: Rope.ROPE];
A property pair consists of an atom describing the property and value currently assigned to the property in the database (or the value to be assigned to it)
The basic procedure for updating the state of the database. PutStateChange is not intended to be used by users of Finger; it is called when going into/out of the Idle state.
StateChange: TYPE = FingerLog.StateChange;
PutStateChange: PROC [change: StateChange, time: BasicTime.GMT];
Record the specified state change in the finger database
A Finger database can have an arbitrary collection of properties attached to either machines or users. The collection of procedures below allows extension of the properties in the database and provides the means of changing the value of the properties of database entities
ListUserProps: PROC[] RETURNS[propList: LIST OF ATOM];
Produce the list of properties for entities of the given type
ListMachineProps: PROC[] RETURNS[propList: LIST OF ATOM];
Produce the list of properties for entities of the given type
AddUserProp: PROC[name: Rope.ROPE];
Add a new property for entities of the given type (the value associated with all Finger properties are of type Rope.ROPE)
AddMachineProp: PROC[name: Rope.ROPE];
Add a new property for entities of the given type (the value associated with all Finger properties are of type Rope.ROPE)
DeleteUserProp: PROC[name: Rope.ROPE];
Remove this property from the database. If the property does not exist, then the operation has no effect
DeleteMachineProp: PROC[name: Rope.ROPE];
Remove this property from the database. If the property does not exist, then the operation has no effect
Changes made by the set properties operations are logged on the local machine (with the time at which the log entry is made). When recovering from a crash or a down server, the logged entries are replayed if they were made later than the last update made in the database (each update in the database also records the time it was made). It is possible that a log entry cannot be replayed because the associated property has been removed from the database in the interim.
SetUserProps: PROC[user: Rope.ROPE, props: LIST OF PropPair];
Save all of the properties for a user.
SetMachineProps: PROC[machine: Rope.ROPE, props: LIST OF PropPair];
Save all of the properties for a machine.
GetUserProps: PROC[userPattern: Rope.ROPE] RETURNS [propsList: LIST OF PropPair];
Get all of the stored information for these objects.
GetMachineProps: PROC[machinePattern: Rope.ROPE] RETURNS [propsList: LIST OF PropPair];
Get all of the stored information for these objects.
The basic query operations of Finger allow matching by name, by property value or listing all of the currently free machines or logged on users
GetMatchingPersons: PROC [pattern: Rope.ROPE] RETURNS [result: LIST OF Rope.ROPE];
Find all of the fingerable objects with names matching the given pattern
GetMatchingMachines: PROC [pattern: Rope.ROPE] RETURNS [result: LIST OF Rope.ROPE];
Find all of the fingerable objects with names matching the given pattern
MatchUserProperty: PROC[propVal: PropPair] RETURNS[result: LIST OF Rope.ROPE];
Return all of the users having the given value for the specified property
MatchMachineProperty: PROC[propVal: PropPair] RETURNS[result: LIST OF Rope.ROPE];
Return all of the machines having the given value for the specified property
CurrentUsers: PROC[] RETURNS[userList: LIST OF Rope.ROPE];
Return a list of all of the current users on the system
FreeMachines: PROC[] RETURNS[machineList: LIST OF Rope.ROPE];
Return the list of currently available machines
Two procedures to see if a user or a machine exists
PersonExists: PROC [name: Rope.ROPE] RETURNS [result: BOOLEAN];
See if a given person exists
MachineExists: PROC [name: Rope.ROPE] RETURNS [result: BOOLEAN];
See if a machine exists
Finally, two procedures to get login/logout information for a user or a machine
GetMachineData: PROC [name: Rope.ROPE] RETURNS[lastChange: StateChange, time: BasicTime.GMT, user: Rope.ROPE];
Get the information on the last recorded operation for this machine
GetUserData: PROC [name: Rope.ROPE] RETURNS[machineList: LIST OF Rope.ROPE];
Get the current information for the user, ie., the list of machines for which he was the last (perhaps the current user)
And, we add procedures to read and write a "machine map" (the contents of the map are dependent on the structure of the database when the map is written or read). The dump contains the name of each machine property and the value of each property for each machine.
ReadMachineMap: PROC [file: Rope.ROPE, resetProperties: BOOLEANFALSE];
Set the data for every machine from the data in the file. If resetProperties is T, then then reset the possible properties from the file. If resetProperties is F, then properties in the first line of the file are added.
WriteMachineMap: PROC [file: Rope.ROPE];
Dump the information on each machine and store as the contents of the specified file.
ReadUserMap: PROC [file: Rope.ROPE, resetProperties: BOOLEANFALSE];
Set the data for every user from the data in the file. If resetProperties is T, then then reset the possible properties from the file. If resetProperties is F, then properties in the first line of the file are added.
WriteUserMap: PROC [file: Rope.ROPE];
Dump the information on each user and store as the contents of the specified file.
END.
Ewan Tempero August 8, 1986 4:49:46 pm PDT
Added WriteUserMap and ReadUserMap.