File: sendmsg.c

package info (click to toggle)
libtlen 20041113-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 832 kB
  • ctags: 1,514
  • sloc: ansic: 13,713; sh: 214; makefile: 156
file content (161 lines) | stat: -rw-r--r-- 2,968 bytes parent folder | download
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/*
 * Po wicej informacji zajyj do rozdziau o lib/testclient.c, gdy
 * podstawa dokumentacji na nim si opiera.
 *
 */ 
 
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/select.h>
#include <sys/time.h>
#include <sys/types.h>
#include <signal.h>

/*
 * Inkludujemy nagwek libtlen
 *
 */

#include "libtlen.h"

int main (int argc, char **argv)
{
	/*
	 * Deklarujemy struktur sesji
	 *
	 */ 
	 
	struct tlen_session *sesja;
	struct tlen_event *event;
	struct timeval tv;

	tlen_setdebug(0);

	if (argc==5) { 
	    /*
	     * Inicjujemy sesj
	     *
	     */
	    sesja = tlen_init();
	    /*
	     * Ustawiamy uytkownika i haso z parametru programu
	     *
	     */
	    tlen_set_auth(sesja,argv[1],argv[2]);
	    /*
	     * czenie z hubem ma przebiega jako nieblokowalne
	     *
	     */
	    tlen_set_hub_blocking(sesja,0);
	    /*
	     * Okej, czymy
	     *
	     */
	    tlen_login(sesja);
	} else {
            printf("Usage: %s login password user message\n",argv[0]);
            return 1;
        }
	
	// tutaj jest obserwowany socket
	while ((!sesja->error))
	{
		fd_set rd, wr;
		int retval;

		tv.tv_sec = 60;
		tv.tv_usec = 0;

		FD_ZERO (&rd);
		FD_ZERO (&wr);

		/*
		 * Ustawiamy opcje monitorowania deskryptorw
		 *
		 */
		
		if ((sesja->check & TLEN_CHECK_READ))
			FD_SET (sesja->fd, &rd);
		if ((sesja->check & TLEN_CHECK_WRITE))
			FD_SET (sesja->fd, &wr);

		if ((retval = select (sesja->fd + 1, &rd, &wr, NULL, &tv) == -1))
		{
			perror ("select");
		}
		else if (sesja && (FD_ISSET (sesja->fd, &rd) || FD_ISSET (sesja->fd, &wr)))
		{
			/*
			 * Sprawdzamy co si zmienio na gniedzie
			 *
			 */
			tlen_watch_fd (sesja);
			/*
			 * Ptla obsugi zdarze
			 *
			 */
			while ((event=tlen_getevent(sesja))!=NULL) {
				switch (event->type)
				{
					/*
					 * Poczony! Pobieramy id.
					 *
					 */
					case TLEN_EVENT_NOWGETID:
					{
						tlen_getid(sesja);
						break;
					}
					/*
					 * Logujemy si
					 *
					 */
					case TLEN_EVENT_GOTID:
					{
						tlen_authorize(sesja);
						break;
					}
					/* 
					 * Udao si - pobieramy ksik adresow
					 *
					 */
					case TLEN_EVENT_AUTHORIZED:
					{
						tlen_getroster(sesja);
						break;
					}
					/*
					 * Ups - co nie wyszo. Wychodzimy
					 *
					 */
					case TLEN_EVENT_UNAUTHORIZED:
					{
						exit(0);
						break;
					}
					/*
					 * Ksika adresowa si odebraa (nie obsugujemy poszczeglnych elementw, bo nie ma po co. 
					 * Moemy wic wysa wiadomo (TLEN_MESSAGE, nie TLEN_CHAT), a nastpnie si rozczy
					 *
					 */
					case TLEN_EVENT_ENDROSTER:
					{
						tlen_sendmsg(sesja,argv[3],argv[4],TLEN_MESSAGE);
						tlen_presence_disconnect (sesja);
						tlen_freesession (sesja);				
						break;
					}

				}
				/*
				 * Zwalniamy zdarzenie
				 *
				 */
				tlen_freeevent(event);
			}	/* while(event=tlen_getevent(sesja)) */
		}
	}
	return 0;
}