-
Notifications
You must be signed in to change notification settings - Fork 0
/
pt_daemon.c
263 lines (213 loc) · 6.69 KB
/
pt_daemon.c
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
#ifndef LINT
static char sccs_pt_daemon_id[] = "%Z%%M% Version %I% Date %D% Hour %T%";
#endif
/*---------------------------------------------------------------------------
pt_daemon.c: funzioni di lettura/scrittura delle code di messaggi
gestite dal pt_attiva.c per Link S.I.A. <-> GuestLink
(incluse nel programma fglgo di Informix)
---------------------------------------------------------------------------*/
#include "paytv.h"
#include <sys/wait.h>
#include <pwd.h>
pid_t dbpid;
unsigned int time_to_sleep=80;
int *sia_status;
int dls_readq(void)
/*---------------------------------------------------------------------------
dls_readq: funzione che, leggendo la coda di messaggi ritorna
la stringa e lo stato di ritorno al programma 4GL
---------------------------------------------------------------------------*/
{
int pt_qr;
char pt_stringa[MAXPTLEN];
struct pt_msg {
long mtype;
char mtext[MAXPTLEN];
};
struct pt_msg pt_msgstruct;
if((pt_qr = msgget((key_t)PT_MSGQR,0660)) == ERROR) {
perror("Can't access message queue ID (READ)");
retquote("Can't access message queue ID (READ)");
retint(ERROR);
return(2);
}
if(msgrcv(pt_qr,(void *)&pt_msgstruct,sizeof(pt_stringa),0L,0) == ERROR) {
perror("Can't receive message queue (READ)");
retquote("Fatal error while receiving !");
retint(ERROR);
return(2);
}
/*
* messaggio ricevuto correttamente !
*/
strcpy(pt_stringa,pt_msgstruct.mtext);
retquote(pt_stringa);
retint(FALSE);
return(2);
}
int dls_writeq(void)
/*---------------------------------------------------------------------------
dls_writeq: funzione che, prendendo in input la stringa e
la sua lunghezza, spedisce in message queue
Ritorna lo stato dell'operazione
---------------------------------------------------------------------------*/
{
int pt_qw,lunghezza;
char pt_stringa[MAXPTLEN];
struct pt_msg {
long mtype;
char mtext[MAXPTLEN];
};
struct pt_msg pt_msgstruct;
popint(&lunghezza);
popquote(pt_stringa,sizeof(pt_stringa));
pt_stringa[lunghezza]='\0';
if((pt_qw = msgget((key_t)PT_MSGQW,0660)) == ERROR) {
perror("Can't access message queue ID (WRITE)");
retint(ERROR);
return(1);
}
pt_msgstruct.mtype = 1L;
(void)strcpy(pt_msgstruct.mtext,pt_stringa);
if(msgsnd(pt_qw,(void *)&pt_msgstruct,sizeof(pt_stringa),0) == ERROR) {
perror("Can't send message queue (WRITE)");
retint(ERROR);
return(1);
}
/*
* messaggio spedito correttamente !
*/
retint(FALSE);
return(1);
}
int dls_setshm(void)
/*---------------------------------------------------------------------------
dls_setshm: funzione che, setta la Shared Memory a TRUE o FALSE
per disattivazione/attivazione processo PAY TV
Input: valore (TRUE o FALSE)
---------------------------------------------------------------------------*/
{
int stato,*sia_status,pt_shmid, pt_qr;
struct pt_msg {
long mtype;
char mtext[MAXPTLEN];
};
struct pt_msg pt_msgstruct;
char *pt_pointer;
int ptshm,pt_ute_id;
struct sembuf pt_operation={0, ERROR, SEM_UNDO};
popint(&stato);
if((pt_shmid = shmget((key_t)PT_SHM,sizeof(int),0660)) == ERROR) {
perror("Cannot access shared memory (LOCK)");
return(0);
}
/*
* Carico Shared Memory
*/
if((pt_pointer = shmat(pt_shmid,(char *)0,0)) == (char *)ERROR) {
perror("Cannot attache shared memory segment to my process (LOCK)");
return(0);
}
ptshm = semget((key_t)PT_SEM,1,0660);
(void)semop(pt_ute_id,&pt_operation,1);
sia_status = (int *)pt_pointer;
*sia_status = stato;
(void)semctl(ptshm,0,SETVAL,1);
if((pt_qr = msgget((key_t)PT_MSGQR,0660)) == ERROR) {
perror("Can't access message queue ID (LOCK)");
return(0);
}
pt_msgstruct.mtype = 1L;
if(stato == TRUE)
(void)strcpy(pt_msgstruct.mtext,"LOCK BY SIA");
else
(void)strcpy(pt_msgstruct.mtext,"UNLOCK BY SIA");
if(msgsnd(pt_qr,(void *)&pt_msgstruct,sizeof(pt_msgstruct.mtext),0) == ERROR) {
perror("Can't send message queue (LOCK)");
return(0);
}
return(0);
}
/*---------------------------------------------------------------------------
leggi_seq: lettura di una singola riga da un file line-sequential
Parametri in input (da programma INFORMIX-4GL): PathFile,
OperationCode
Parametri ritornati al programma 4GL: stringa letta + return code
0 = OK !
1 = Fine file
-1 = Errore fatale !
---------------------------------------------------------------------------*/
int leggi_seq(void)
{
static FILE *pointer=(FILE *)NULL;
char nomefile[80];
char tipo_estrazione[80];
char stringa[257];
int ind=0;
char *debug;
char *getenv();
debug = getenv("DBDBG");
popquote(tipo_estrazione,sizeof(tipo_estrazione));
if(debug != NULL )
fprintf(stderr,"tipo_estrazione %s\n",tipo_estrazione);
popquote(nomefile,sizeof(nomefile));
for ( ind=strlen(nomefile)-1; ind > 0 ; ind--) {
if ( nomefile[ind] == ' ' )
nomefile[ind]='\0';
else
break;
}
for ( ind=strlen(tipo_estrazione)-1; ind > 0 ; ind--) {
if ( tipo_estrazione[ind] == ' ' )
tipo_estrazione[ind]='\0';
else
break;
}
if(debug != NULL )
fprintf(stderr,"nome_file <%s>\n",nomefile);
if ( strcmp(tipo_estrazione, "OPEN") == 0) {
if ( pointer != (FILE *)NULL)
fclose(pointer);
if ((pointer = fopen(nomefile,"r")) == (FILE *)NULL) {
if ( debug != NULL )
perror("Non riesco ad aprire il file causa ");
retquote("");
retint(-1);
return(2);
}
if ( debug != NULL )
fprintf(stderr,"Ho aperto il file %s\n",nomefile);
retquote("");
retint(0);
return(2);
}
if ( strcmp(tipo_estrazione, "READ") == 0) {
if ( pointer == (FILE *)NULL) {
if ( debug != NULL )
fprintf(stderr,"Comando errato: file non aperto\n");
retquote("");
retint(-1);
return(2);
}
if ( fgets(stringa,256,pointer) == (char *)NULL ) {
if ( debug != NULL )
fprintf(stderr,"EOF od ERRORE: chiudo il file\n");
fclose(pointer);
retquote("");
retint(1);
return(2);
}
else {
if ( debug != NULL )
fprintf(stderr,"Stringa letta:.%s.\n",stringa);
retquote(stringa);
retint(0);
return(2);
}
}
if ( debug != NULL )
fprintf(stderr,"Comando NON riconosciuto!\n");
retquote("");
retint(-1);
return(2);
}