-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver
62 lines (57 loc) · 3.5 KB
/
server
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
import socket,threading
import tkinter
win=tkinter.Tk()
win.title('服务器')
win.geometry('400x400+200+20')
users={}#socket的字典,key值为用户名
def run(ck, ca):
userName = ck.recv(1024)#接受客户端发送的信息以1k作为单位这里接受到的信息为byte类型
users[userName.decode("utf-8")] = ck#解码并储存用户的信息
#print(users)
printStr = "" + userName.decode("utf-8") + "连接\n"#在连接显示框中显示是否连接成功
text.insert(tkinter.INSERT, printStr)
while True:#上面部分只在建立连接的时候执行一次,之后就进入死循环进行消息交流
rData = ck.recv(1024)#接受客户端发送的信息以1k作为单位这里接受到的信息为byte类型
dataStr = rData.decode("utf-8")
infolist = dataStr.split(":")#分割字符串从而得到所要发送的用户名和客户端所发送的信息
if(infolist[0]=="" and (userName.decode("utf-8") in users.keys())):
for key in users:
users[key].send((userName.decode("utf-8") + "说: " + infolist[1] + " \n").encode("utf"))
elif(infolist[0]=="exit"):
printStr = "" + userName.decode("utf-8") + "退出\n"#在连接显示框中显示是否连接成功
text.insert(tkinter.INSERT, printStr)
users.pop(userName.decode("utf-8"))
elif(userName.decode("utf-8") in users.keys()):
users[infolist[0]].send((userName.decode("utf-8") + "对你私聊说: " + infolist[1] + " \n").encode("utf"))
users[userName.decode("utf-8")].send(("你对" + infolist[0] + "私聊说: " + infolist[1]+ " \n").encode("utf"))
#要发送信息的客户端向目标客户端发送信息
def start():
ipStr = eip.get()#从输入端中获取ip
portStr = eport.get()#从输入端中获取端口,注意端口取得时候不能被占用(可以取8080,9876,等)
server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)#socked所准守ipv4或ipv6,和相关协议的
server.bind((ipStr, int(portStr)))#绑定ip和端口号!!!1:注意输入的端口号是str型而这里的要传入int型
#2:bind()的参数是一个元组的形式
server.listen(10)#设置监听,和设置连接的最大的数量
printStr = "服务器启动成功\n"#,是否连接成功
text.insert(tkinter.INSERT, printStr)#显示在信息窗口中
while True:#这里用死循环是因为模拟的服务器要一直运行
ck, ca = server.accept()#接受所连接的客户端的信息
# 其中ca是ip和端口号组成的元组,ck有关客户端的信息
t = threading.Thread(target=run, args=(ck, ca))#每连接一个客户端就开启一个线程
#其中Thread函数中的传入函数的参数也是以元组的形式
t.start()#开启线程
def startSever():
s = threading.Thread(target=start)#启用一个线程开启服务器
s.start()#开启线程
#下面是关于界面的操作
labelIp = tkinter.Label(win, text='ip').grid(row=0, column=0)
labelPort = tkinter.Label(win, text='port').grid(row=1, column=0)
eip = tkinter.Variable()
eport = tkinter.Variable()
entryIp = tkinter.Entry(win, textvariable=eip).grid(row=0, column=1)
entryPort = tkinter.Entry(win, textvariable=eport).grid(row=1, column=1)
button = tkinter.Button(win, text="启动", command=startSever).grid(row=2, column=0)
text = tkinter.Text(win, height=5, width=30)
labeltext = tkinter.Label(win, text='连接消息').grid(row=3, column=0)
text.grid(row=3, column=1)
win.mainloop()