summaryrefslogtreecommitdiff
path: root/lib/ZSubs.c
blob: a00c31cb5d08c44a850ea77eae3a4b459b41893d (plain)
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/* This file is part of the Project Athena Zephyr Notification System.
 * It contains source for the ZSubscribeTo, ZUnsubscribeTo, and
 * ZCancelSubscriptions functions.
 *
 *	Created by:	Robert French
 *
 *	$Source$
 *	$Author$
 *
 *	Copyright (c) 1987 by the Massachusetts Institute of Technology.
 *	For copying and distribution information, see the file
 *	"mit-copyright.h". 
 */
/* $Header$ */

#include <zephyr/mit-copyright.h>

#include <zephyr/zephyr_internal.h>

Code_t ZSubscribeTo(sublist,nitems,port)
	ZSubscription_t	*sublist;
	int nitems;
	u_short port;
{
	return (Z_Subscriptions(sublist,nitems,port,CLIENT_SUBSCRIBE));
}

Code_t ZUnsubscribeTo(sublist,nitems,port)
	ZSubscription_t	*sublist;
	int nitems;
	u_short port;
{
	return (Z_Subscriptions(sublist,nitems,port,CLIENT_UNSUBSCRIBE));
}

Code_t ZCancelSubscriptions(port)
	u_short port;
{
	return (Z_Subscriptions((ZSubscription_t *)0,0,port,
				CLIENT_CANCELSUB));
}

Z_Subscriptions(sublist,nitems,port,opcode)
	ZSubscription_t	*sublist;
	int nitems;
	u_short port;
	char *opcode;
{
	int i,retval;
	ZNotice_t notice,retnotice;
	ZPacket_t buffer;
	char **list;
	
	list = (char **)malloc((unsigned)nitems*3*sizeof(char *));
	if (!list)
		return (ENOMEM);
	
	notice.z_kind = ACKED;
	notice.z_port = port;
	notice.z_class = ZEPHYR_CTL_CLASS;
	notice.z_class_inst = ZEPHYR_CTL_CLIENT;
	notice.z_opcode = opcode;
	notice.z_sender = 0;
	notice.z_recipient = "";
	notice.z_message_len = 0;

	for (i=0;i<nitems;i++) {
		list[i*3] = sublist[i].class;
		list[i*3+1] = sublist[i].classinst;
		if (sublist[i].recipient && *sublist[i].recipient)
			list[i*3+2] = ZGetSender();
		else
			list[i*3+2] = "";
	}
	
	retval = ZSendList(&notice,list,nitems*3,ZAUTH);

	free((char *)list);

	if (retval != ZERR_NONE)
		return (retval);

	if ((retval = ZIfNotice(buffer,sizeof buffer,&retnotice,(int *)0,
			        ZCompareUIDPred,(char *)&notice.z_uid)) !=
	    ZERR_NONE)
		return (retval);

	if (retnotice.z_kind == SERVNAK)
		return (ZERR_SERVNAK);
	
	if (retnotice.z_kind != SERVACK)
		return (ZERR_INTERNAL);

	return (ZERR_NONE);
}