1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/* ps_alloc.c - allocate a presentation stream */
/*
* isode/psap/ps_alloc.c
*/
/*
* NOTICE
*
* Acquisition, use, and distribution of this module and related
* materials are subject to the restrictions of a license agreement.
* Consult the Preface in the User's Manual for the full terms of
* this agreement.
*
*/
/* LINTLIBRARY */
#include <stdio.h>
#include "psap.h"
/* A Presentatation Stream (or PStream) is the second generation of
"generic" I/O stream-based handling. (For the first attempt,
take a look at the prototype implementation of the TTI Trusted Mail
Agent.) The idea is to present a common, simple I/O paradigm (i.e.,
the UNIX v7 philosophy) to protocol-translation entities regardless of
the underlying medium (files, pipes, sockets, or strings).
New streams are created by a call to ps_alloc(). It allocates memory
and calls an open routine. This routine fills in the dispatch vectors
for read/write and (optionally) close. It can also fill in any other
part of the stream's structure it likes.
Once created, I/O is done using the macros ps_read/ps_write. These
return either NOTOK or OK; depending on how things went. The read/write
routines are invoked as:
int iofunc (ps, data, n, in_line)
PS ps;
PElementData data;
PElementLen n;
int in_line;
They should read/write upto len bytes, starting at data, and return the
number of bytes processed, or NOTOK on error. The routine ps_io() will
make successive calls to fill/flush the data. If the read/write routine
returns NOTOK, it should set ps_errno as well.
Streams are removed by a call to ps_free (). It calls the close
routine, if any, which should de-commission any parts of the stream's
structure that are in use. ps_free() will then free the allocated
memory.
*/
/* */
PS ps_alloc (io)
register IFP io;
{
register PS ps;
if ((ps = (PS) calloc (1, sizeof *ps)) == NULLPS)
return NULLPS;
if ((*io) (ps) == NOTOK) {
ps_free (ps);
return NULLPS;
}
return ps;
}
|