-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrpc_client.py
152 lines (132 loc) · 3.49 KB
/
rpc_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
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
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# Aug 14, 2018 11:39
# author:jevade
'''
rpc_client.py
A Python 3 tutorial rpc_client.py
Usage:
python3 rpc_client.py
'''
import socket
import json
import struct
import time
import _thread
import os
class Client():
"""基本类定义client的基本功能"""
def run(self):
return
def connect(self):
return
def close(self):
return
def encode(self):
return
def decode(self):
return
def rpc(self):
return
class RPCClient(Client):
"""定义RPC客户端"""
host = "localhost"
port = 8080
sock = None
methods ={
"ping":"ping",
"febric":"febric",
"set":"set",
"get":'get',
"delete":"delete",
"pi":"pi",
}
def receive(self, n):
"""
封装了sock的recv方法,防止网络传输时数据读取不全
params:n
return:bytes
"""
rs = []
while n>0:
r = self.sock.recv(n)
if not r:
break
rs.append(r.decode())
n -= len(r)
return ''.join(rs).encode()
def __init__(self, host=host, port=port):
"""
初始化链接
params:host,port,default 127.0.0.1,8080
"""
self.port = port
self.host = host
def connect(self):
"""
建立连接
params:None
return:None
"""
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.connect((self.host, self.port))
self.sock = sock
def close(self):
"""关闭连接"""
self.sock.close()
def run(self):
"""客户端运转"""
for i in range(10):
time.sleep(1)
method ="pi" if i%2 else "febric" if i%3 else "set" if i%7 else "get"
params = "pid:"+str(os.getpid())+", thread ireader " + str(i)
request = {
"method":self.methods[method],
"params":params,
"n":i%7,
"key":i%7,
"pi_n":i,
# "value":i%7,
}
response = self.rpc(request)
print(response)
def encode(self,request):
"""编码request"""
request = json.dumps(request)
length_prefix = struct.pack("!I", len(request))
return request, length_prefix
def decode(self):
"""解码Response"""
length_prefix = self.receive(4)
length, = struct.unpack("!I", length_prefix)
body = self.receive(length)
response = json.loads(body.decode())
return response
def rpc(self, request):
"""RPC"""
request, length_prefix = self.encode(request)
try:
self.sock.sendall(length_prefix)
self.sock.sendall(request.encode())
response = self.decode()
return response
except Exception as ex:
return ex
turn = 1
number = 2
interest = [False] * number
def enter_region(process):
other = number - process
interest[process] = True
turn = process
# turn is process 本线程是不是最后进入,当 interest[other] 都为true时 表示都在等待,
# 这时让先申请接管cpu的线程得到cpu,后进入的等待:
while turn is process and interest[other] is True:
pass
def leave_region(process):
interest[process] = False
if __name__=="__main__":
client = RPCClient()
client.connect()
client.run()
client.close()