PeanutRetrieve.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
March 4, 1983 10:54 am
Doug Wyatt, March 7, 1985 11:26:18 am PST
DIRECTORY
BasicTime USING [GMT],
GVBasics USING [RName],
PeanutParse USING [ParseStatus],
Rope USING [ROPE],
ViewerClasses USING [Viewer];
PeanutRetrieve: CEDAR DEFINITIONS
= BEGIN
RName: TYPE = GVBasics.RName;
ROPE: TYPE = Rope.ROPE;
MsgRec: TYPE = REF MessageRecObject;
MessageRecObject: TYPE = RECORD[
fullText: ROPE, -- The text for sending, or what came from Grapevine
dateCode: BasicTime.GMT, -- date in msg
gvSender: RName, -- The sender as given by Grapevine
gvID: ROPE, -- Rope.Cat[gvSender, " $ ", gvTimeStamp]
categories: LIST OF ROPE, -- categories & keywords, from prefix
The following items are parsed out of the fullText:
date: ROPE, -- The date.
inMsgSender: ROPE, -- non-NIL iff msg contains sender: field
from: ROPE, -- The From: field (may be freeform)
to: LIST OF RName, -- The To: field
subject: ROPE, -- The subject.
inReplyTo: ROPE, -- The In-Reply-To: field.
cc: LIST OF RName, -- The cc: field
replyTo: ROPE, -- the ReplyTo: field (may be freeform)
unrecognized: LIST OF ROPE, -- Other header items.
hasBeenRead: BOOLFALSE, -- has this message been displayed or not
headersText: ROPE, -- Just the headers
bodyText: ROPE -- The body of the message without header lines.
];
Operations for retrieving messages [PeanutRetrieveImpl]
OpenConnection: PROC[user: GVBasics.RName];
Establish a connection for this user.
CloseConnection: PROC;
NewUser: PROC[user: GVBasics.RName];
Establish a new user on this connection.
GetNewMsgs: PROC [open: BOOLTRUE];
FindMailViewer: PROC[name: ROPE] RETURNS[ViewerClasses.Viewer];
Returns NIL if no viewer found
GetMailViewer: PROC [name: ROPE] RETURNS[ViewerClasses.Viewer];
Creates a new viewer if none already there
CopyMessages: PROC [to: ROPE, delete: BOOL];
Operations for parsing new messages [PeanutRetrieveParseImpl]
ParseMsgIntoFields: PROC[msg: MsgRec] RETURNS[s: PeanutParse.ParseStatus, sPos, mPos: INT];
END.