This repository has been archived by the owner on Dec 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tcp-server.py
357 lines (295 loc) · 9.76 KB
/
tcp-server.py
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
import socket, sys, threading, signal, os
from threading import RLock
server = -1
bind_ip = '127.0.0.1'
bind_port = 9993
connections=[]
lock = RLock()
MAX_MSG =1024
MAX_ACTIV= 100
#default messages
OK_DEF = "Ok: "
ERR_DEF = "ERROR: "
#mensagens de OK
OK_LOC_REGIST = "{} Local registado.\n"
OK_BALANCE = "Saldo Atual : {}.\n"
OK_CANCEL_LOC = "1 Registo local foi cancelado.\n"
OK_CR_ACTIV = "{} Atividade Criada.\n"
OK_MOD_ACTIV ="1 Atividade Modificada.\n"
OK_REM_ACTIV = "1 Atividade Removida.\n"
#mensagens de erro
ERR_REGIST_LOC_INFO = "0 Registo de Local: falta de paramêtros.\n"
ERR_REGIST_LOC_EXIST= "0 Registo de Local: o local já existe.\n"
ERR_REGIST_LOC_NOINFO = "0 Registo de Local: sem paramêtros.\n"
ERR_REGIST_LOC_MAXINFO = "0 Registo de Local: paramêtros a mais.\n"
ERR_SALDO_NEXIST = "0 Consulta de Saldo: o Local não existe.\n"
ERR_SALDO_TOMUCHINFO = "0 Consulta de Saldo: paramêtros a mais.\n"
ERR_SALDO_NOINFO = "0 Consulta de Saldo: paramêtros em falta.\n"
ERR_CANCEL_LOC_NEXIST = "0 Cancelamento de Registo: o local não existe.\n"
ERR_CANCEL_LOC_NOINFO = "0 Cancelamento de Registo: sem paramêtros.\n"
ERR_CANCEL_LOC_INFO = "0 Cancelamento de Registo: falta de paramêtros.\n"
ERR_CR_ACTIV_NOINFO = "0 Criação de atividade:sem paramêtros.\n"
ERR_CR_ACTIV_INFO = "0 Criação de atividade:falta de paramêtros.\n"
ERR_CR_ACTIV_MAXINFO = "0 Criação de atividade:paramêtros a mais.\n"
ERR_CR_ACTIV_NEXIST = "0 Criação de atividade: local nao existe.\n"
ERR_CR_ACTIV_TYPE = "0 Criação de atividade: atividade do mesmo tipo já existe.\n"
ERR_CR_ACTIV_LIMIT = "0 Criação de atividade: limite maximo de atividades atingido.\n"
ERR_MOD_ACTIV_NEXIST = "0 Modificação de atividade: atividade não existe.\n"
ERR_MOD_ACTIV_INFO = "0 Modificação de atividade:falta de paramêtros.\n"
ERR_MOD_ACTIV_ONGOING = "0 Modificação de atividade: atividade a decorrer.\n"
ERR_MOD_ACTIV_NOINFO = "0 Modificação de atividade: sem paramêtros.\n"
ERR_MOD_ACTIV_MAXINFO = "0 Modificação de atividade:paramêtros a mais.\n"
ERR_REM_ACTIV_NEXIST = "0 Remoção de atividade: atividade não existente.\n"
ERR_REM_ACTIV_ONGOING = "0 Remoção de atividade: Atividade a decorrer.\n"
ERR_REM_ACTIV_NOINFO = "0 Remoção de atividade: sem paramêtros.\n"
ERR_REM_ACTIV_INFO = "0 Remoção de atividade: paramêtros em falta.\n"
ERR_REM_ACTIV_MAXINFO = "0 Remoção de atividade: paramêtros a mais.\n"
#funcao que recebe um signal e mata o servidor e todos os seus clientes
def exit_server(sig=0, frame=0):
print("\nExiting server recieved signal {}...".format(sig))
server.close()
for c in connections:
c.send("SERVER_OFF\n".encode())
c.close()
exit(0)
#funcao que regista um local
def registar(k):
loc_id = 0
output = ' '
if len(k)== 0:
return ERR_DEF + ERR_REGIST_LOC_NOINFO
if len(k)<4:
return ERR_DEF + ERR_REGIST_LOC_INFO
if len(k)>4:
return ERR_DEF + ERR_REGIST_LOC_MAXINFO
f = open("locals.txt", "r")
for e in f:
checker = e.strip('\n').split(" ")
if loc_id < int(checker[0]):
loc_id = int(checker[0])
if checker[1] == k[0]:
return ERR_DEF + ERR_REGIST_LOC_EXIST
f.close()
f = open("locals.txt", "a")
for e in k:
output += e + ' '
loc_id += 1
res = str(loc_id) + output+ '\n'
f.write(res)
f.close()
return OK_DEF + OK_LOC_REGIST.format(str(loc_id))
def consultar_saldo(k):
if len(k) == 0:
return ERR_DEF + ERR_SALDO_NOINFO
if len(k) > 1:
return ERR_DEF + ERR_SALDO_TOMUCHINFO
f = open("locals.txt", "r")
for e in f:
checker = e.strip('\n').split(" ")
if checker[1] == k[0]:
saldo = checker[4]
f.close()
return OK_DEF + OK_BALANCE.format(saldo)
f.close()
return ERR_DEF + ERR_SALDO_NEXIST
def cancelar_registo(k):
temp_loc= ''
temp_act = ''
temp_client = ''
counter = 0
aviso = ''
if len(k) == 0:
return ERR_DEF + ERR_CANCEL_LOC_NOINFO
if k[0] == '':
return ERR_DEF + ERR_CANCEL_LOC_INFO
f = open("locals.txt", "r")
for e in f:
checker = e.split(" ")
if checker[1] == k[0]:
counter += 1
else:
temp_loc += e
f.close()
if counter == 0:
return ERR_DEF + ERR_CANCEL_LOC_NEXIST
a = open("avisos.txt", 'a')
c = open("clients.txt", "r")
for u in c:
client_check = u.split(" ")
if client_check[1] == k[0]:
aviso = client_check[0] + ' ' + client_check[2] + "\n"
a.write(aviso)
aviso = ''
else:
temp_client += u
c.close()
r = open("activities.txt","r")
for i in r:
checker_act = i.split(" ")
if checker_act[1] != k[0]:
temp_act += i
r.close()
f = open("locals.txt", "w")
f.write(temp_loc)
f.close()
c = open("clients.txt", "w")
c.write(temp_client)
c.close()
r = open("activities.txt","w")
r.write(temp_act)
r.close()
return OK_DEF +OK_CANCEL_LOC
def criarAtividade(k):
global MAX_ACTIV
counter = 0
a_id = 0
output= ''
exist_counter = 0
if(len(k)==0):
return ERR_DEF + ERR_CR_ACTIV_NOINFO
if(len(k)<7):
return ERR_CR_ACTIV_INFO
if (len(k)>7):
return ERR_DEF + ERR_CR_ACTIV_MAXINFO
f = open("activities.txt", "r")
for e in f:
act_checker = e.split(" ")
if act_checker[1] == k[0] and act_checker[2] == k[1]:
return ERR_CR_ACTIV_TYPE
if (a_id < int(act_checker[0])):
a_id = int(act_checker[0])
t = open("locals.txt", "r")
for i in t:
loc_check = i.split(" ")
if loc_check[1] == k[0]:
exist_counter += 1
t.close()
f.close()
if exist_counter == 0:
return ERR_DEF + ERR_CR_ACTIV_NEXIST
if a_id == MAX_ACTIV:
return ERR_DEF + ERR_CR_ACTIV_LIMIT
f = open("activities.txt", "a")
for e in k:
output += e +' '
a_id += 1
res = str(a_id)+ ' ' + output+ '\n'
f.write(res)
f.close()
return OK_DEF +OK_CR_ACTIV.format(str(a_id))
def modificarAtividade(k):
counter = 0
temp = ''
old_line = ''
if len(k) == 0:
return ERR_DEF + ERR_MOD_ACTIV_NOINFO
if len(k) < 4 :
return ERR_DEF + ERR_MOD_ACTIV_INFO
if len(k) > 4 :
return ERR_DEF + ERR_MOD_ACTIV_MAXINFO
f = open("activities.txt", "r")
for e in f:
checker = e.split(" ")
if checker[0] == k[0]:
counter +=1
old_line = e
else:
temp += e
f.close()
if counter == 0:
return ERR_DEF + ERR_MOD_ACTIV_NEXIST
new = old_line.split(" ")
old_line =''
new[4] = k[1]
new[6] = k[2]
new[7] = k[3]
old_line = new[0]+" "+new[1]+" "+new[2]+" "+new[3]+" "+new[4]+" "+new[5]+" "+new[6]+" "+new[7]
temp += old_line
f = open("activities.txt", "w")
f.write(temp)
f.close()
return OK_DEF +OK_MOD_ACTIV
def removerAtividade(k):
counter = 0
temp = ''
if (len(k)== 0):
return ERR_DEF + ERR_REM_ACTIV_NOINFO
if k[0] == '':
return ERR_DEF + ERR_REM_ACTIV_INFO
if (len(k)> 1):
return ERR_DEF + ERR_REM_ACTIV_MAXINFO
f = open("activities.txt", "r")
for e in f:
checker = e.split(" ")
if k[0] == checker[0]:
counter += 1
else:
temp += e
f.close()
if counter == 0:
return ERR_DEF + ERR_REM_ACTIV_NEXIST
f = open("activities.txt", "w")
f.write(temp)
f.close()
return OK_DEF + OK_REM_ACTIV
def process_input(k, client_sock):
k = k.strip('\n').split(" ")
print("Recieved >{}<".format(k))
if(k[0] == "REGISTAR_LOCAL"):
k.pop(0)
return registar(k)
if(k[0] == "CONSULTAR_SALDO"):
k.pop(0)
return consultar_saldo(k)
if(k[0] == "CANCELAR_REGISTO"):
k.pop(0)
return cancelar_registo(k)
if(k[0] == "CRIAR_ATIVIDADE"):
k.pop(0)
return criarAtividade(k)
if(k[0] == "MODIFICAR_ATIVIDADE"):
k.pop(0)
return modificarAtividade(k)
if(k[0] == "REMOVER_ATIVIDADE"):
k.pop(0)
return removerAtividade(k)
return ERR_DEF + "COMANDO INVALIDO\n"
def handle_client_connection(client_sock):
signal.pthread_sigmask(signal.SIG_SETMASK, [signal.SIGINT, signal.SIGKILL])
try:
with lock:
connections.append(client_sock)
while True:
request=''
#soma strings ate ter mensagem completa
while(request=='' or request[-1]!='\n'):
msg_from_client = client_sock.recv(MAX_MSG)
if(not msg_from_client):
raise socket.timeout()
request += str(msg_from_client.decode())
with lock:
client_sock.send(process_input(request, client_sock).encode())
except socket.timeout:
with lock:
for i in range(len(connections)):
if(connections[i]==client_sock):
del(connections[i])
break
client_sock.close()
print("Client disconected".format(client_sock))
exit(0)
def main():
global server
server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
server.bind((bind_ip, bind_port))
server.listen(5) # max backlog of connections
print("Listening on {}:{}".format(bind_ip, bind_port))
signal.signal(signal.SIGINT, exit_server)
while True:
client_sock, address = server.accept()
print("Acepted connection from {}:{}".format(address[0],address[1]))
client_handler=threading.Thread(target=handle_client_connection, args=(client_sock, ))
client_handler.start()
#----
if(__name__ == '__main__'):
main()