-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.py
88 lines (73 loc) · 2.52 KB
/
client.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
from socket import *
from threading import *
import os
import datetime
import time
#--------------클라이언트 세팅 -----------------------
Host='127.0.0.1' # 서버의 IP주소를 입력하세요.
Port = 9190 # 사용할 포트 번호.
#---------------------------------------
def now_time():
now = datetime.datetime.now()
time_str=now.strftime('[%H:%M] ')
return time_str
def send_func():
while True:
send_data=input('당신 : ')
client_sock.send(send_data.encode('utf-8'))
if send_data=='!quit':
print('연결을 종료하였습니다.')
break
client_sock.close()
os._exit(1)
def recv_func():
while True:
try:
recv_data=(client_sock.recv(1024)).decode('utf-8')
if len(recv_data)==0:
print('[SYSTEM] 서버와의 연결이 끊어졌습니다.')
client_sock.close()
os._exit(1)
except Exception as e:
print('예외가 발생했습니다.', e) # 예외처리중
print('[SYSTEM] 메시지를 수신하지 못하였습니다.')
else:
print(recv_data)
pass
client_sock=socket(AF_INET, SOCK_STREAM)
try:
client_sock.connect((Host,Port))
except ConnectionRefusedError:
print('서버에 연결할 수 없습니다.')
print('1. 서버의 ip주소와 포트번호가 올바른지 확인하십시오.')
print('2. 서버 실행 여부를 확인하십시오.')
os._exit(1)
except:
print('프로그램을 정상적으로 실행할 수 없습니다. 프로그램 개발자에게 문의하세요.')
else:
print('[SYSTEM] 서버와 연결되었습니다.')
while True:
name = input('사용하실 닉네임을 입력하세요 :')
if ' ' in name:
print('공백은 입력이 불가능합니다.')
continue
client_sock.send(name.encode())
is_possible_name=client_sock.recv(1024).decode()
if is_possible_name=='yes':
print(now_time()+ '채팅방에 입장하였습니다.')
client_sock.send('!enter'.encode())
break
elif is_possible_name=='overlapped':
print('[SYSTEM] 이미 사용중인 닉네임입니다.')
elif len(client_sock.recv(1024).decode())==0:
print('[SYSTEM] 서버와의 연결이 끊어졌습니다.')
client_sock.close()
os._exit(1)
sender=Thread(target=send_func, args=())
receiver=Thread(target=recv_func, args=())
sender.start()
receiver.start()
while True:
time.sleep(1)
pass
client_sock.close()