-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpysockets.py
95 lines (76 loc) · 2.6 KB
/
pysockets.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
## =================================================================================================
## Python 3.6+
## =================================================================================================
import socket
## =================================================================================================
PORT = 10002
STARTBYTE = '\n'
ENCODING = 'utf-8'
## =================================================================================================
def send_msg(socket, message):
'''
Sends message over TCP
:param socket: Either connection or socket obj
:param message: string
:return: None
'''
## Message is: STARTBYTE + 8 digit message length + message
msg = f'{STARTBYTE}{len(message):08d}{message}'
socket.sendall(msg.encode(ENCODING))
## -------------------------------------------------------------------------------------------------
def receive_msg(socket):
'''
Receives message over TCP
:param socket: Either connection or socket obj
:return: string
'''
startbyte = socket.recv(1).decode(ENCODING)
while startbyte != STARTBYTE:
startbyte = socket.recv(1).decode(ENCODING)
return socket.recv(int(socket.recv(8).decode(ENCODING))).decode(ENCODING)
## -------------------------------------------------------------------------------------------------
def is_valid_address(addr):
'''
Check if a IP:PORT address is valid
:param addr: string IP:PORT
:return: True/False
'''
try:
ip, port = addr.split(':')
ip_split = ip.split('.')
except ValueError:
return False
## Check if port is integer within [0, 65535]
try:
if int(port) > 65535 or int(port) < 0:
return False
except ValueError:
return False
## Check if IP contains 4 numbers
if len(ip_split) != 4:
return False
## Check if IP numbers are integers within [0, 255]
for n in ip_split:
try:
if int(n) < 0 or int(n) > 255:
return False
except ValueError:
return False
## This is a valid address
return True
## -------------------------------------------------------------------------------------------------
def get_ip():
'''
Gets the internal IP address of the current device. OS independent.
:return: IP
'''
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
try:
s.connect(('10.255.255.255', 1))
ip = s.getsockname()[0]
except Exception as e:
print(f'{e}!r')
ip = '127.0.0.1'
finally:
s.close()
return ip