-
Notifications
You must be signed in to change notification settings - Fork 0
/
ServerSocketMultiClient.py
56 lines (49 loc) · 2.03 KB
/
ServerSocketMultiClient.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
import threading
import socket
HOST = "localhost" #aqui você pode subistituir pelo IP de rede que você deseja fazer o socket
PORT = 7777 #aqui você pode colocar qualquer outra porta, o recomendado é ser uma porta maior que 1023, para evitar conflitos de padronização
CLIENTS_SOCKET = []
def messagesTreatment(client):
onBroadcast = True #deixe ativado caso queira que o servidor faça um broadcast entre os clients
while True:
try:
msg = client.recv(5000)
ip = str(client.getsockname())
msgDecodificada = msg.decode('utf-8').strip()
print("RECEBIDO PACOTE DO IP - ("+str(ip)+") - MENSAGEM:"+str(msgDecodificada))
if(client not in CLIENTS_SOCKET):
""" Momento onde é adicionado o Client na lista de Clients que o servidor está em conexao"""
CLIENTS_SOCKET.append(client)
print("Novo Client adicionado! Total: "+str(len(CLIENTS_SOCKET)))
if(onBroadcast == True):
broadcast(msg, client)
except Exception as e:
print(e)
deleteClient(client)
break
def broadcast(msg, client):
#função para enviar mensagens recebidas para todos os clientes
clients = CLIENTS_SOCKET
for clientItem in clients:
""" Percorre todos os clients para enviar a mensagem recebida"""
if clientItem != client:
try:
clientItem.send(msg)
except:
deleteClient(clientItem)
def deleteClient(client):
if(client in CLIENTS_SOCKET):
CLIENTS_SOCKET.remove(client)
def main():
server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
server.bind((HOST, PORT))
server.listen()
print("Iniciou o servidor")
except:
return print('\nNão foi possível iniciar o servidor!\n')
while True:
client, addr = server.accept()
thread = threading.Thread(target=messagesTreatment, args=[client])
thread.start()
main()