-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUdpAsynchronous.py
36 lines (26 loc) · 1.07 KB
/
UdpAsynchronous.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
import socket
import asyncoro
import pickle
class UdpAsynchronousServer():
def __init__(self, local_ip, local_port, buffer_size) -> None:
self.local_ip = local_ip
self.local_port = local_port
self.buffer_size = buffer_size
self.server_socket = None
self.recieved_data = None
self.from_where = None
self.initializeSocket()
def initializeSocket(self) -> None:
self.server_socket = asyncoro.AsynCoroSocket(
socket.socket(socket.AF_INET, socket.SOCK_DGRAM))
try:
self.server_socket.bind((self.local_ip, self.local_port))
except:
print(
"Udp server already up to date on this address: [{}/{}]".format(self.local_ip, self.local_port))
print("Udp asynchronous server socket is up and ready to process.")
def read(self) -> None:
asyncoro.Coro(self.get_data)
def get_data(self) -> None:
temp_data, self.from_where = yield self.server_socket.recvfrom(self.buffer_size)
self.recieved_data = pickle.loads(temp_data)