-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmulticasting.py
executable file
·149 lines (125 loc) · 4.84 KB
/
multicasting.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
import socket as sck
import logging
import uuid
from identity import *
from constants import *
import netifaces # A NEW CHANGE -- to get the ip
logging.root.setLevel(logging.INFO)
class ConnectingError(Exception):
def __init__(self,value,mesg):
self.val=value
self.mesg=mesg
def __str__(self):
return repr(self.mesg)
class multicast(sck.socket):
def __init__(self,timeout):
super(multicast,self).__init__(sck.AF_INET,sck.SOCK_DGRAM,sck.IPPROTO_UDP)
self.channel=raw_input("enter the channel:")
self.setsockopt(sck.IPPROTO_IP,sck.IP_MULTICAST_TTL,2)
self.setsockopt(sck.SOL_SOCKET,sck.SO_REUSEADDR,1)
self.setsockopt(sck.SOL_IP, sck.IP_MULTICAST_LOOP, 0)
self.bind(('',port))
self.ip=raw_input("whats ur ip:")
self.setsockopt(sck.SOL_IP,sck.IP_MULTICAST_IF,sck.inet_aton(self.ip))
self.setsockopt(sck.SOL_IP,sck.IP_ADD_MEMBERSHIP,sck.inet_aton(mcast_ip)+sck.inet_aton(self.ip))
self.settimeout(timeout)
self.players_uids={'dlkasjdlkajladsladlj23':'127.0.0.1'}# uuids and ip -- added a random ip
self.players_ids={} # uuids and player id -- ADDITIONAL CHANGES
self.uid_id_obj=Identification(self.ip) #calling the identification object
self.uid=str(self.uid_id_obj.uid) # coverting the uuid of the player into string format
self.auth_uids=[] #for authenticating players to join the game
logging.info("socket initialised and UUID of player generated:{0}".format(self.uid))
def send_mes(self,mesg):
self.sendto(mesg,(mcast_ip,port))
logging.info("BROADCASTING .{0}".format(mesg))
def add_players(self,mesg,conn):
self.players_uids[(mesg.split()[0])]=conn[0] #adding only the ip
logging.info("{0} . successfully added to the list".format(mesg.split()[0]))
def listen(self): #this listen is for adding players to the list with their uuid
d=ConnectingError(1,"no response")
try:
(data,conn)=self.recvfrom(buff_size)
print 'got connection from {0}'.format(conn)
logging.info("connection received")
except sck.timeout:
raise d
logging.info("SOCKET TIMED OUT ! therefore no response\n")
if data.split()[0]==self.uid or data.split()[0] in self.players_uids: #extracting the uuid from the message
logging.info("SAME UUID's TRYING TO COMMUNICATE \n")
raise d
else :
self.add_players(data,conn)
self.channel=data.split()[-1] # Determine which channel its subscribbed to
logging.info("Channel Subsribed:{0}".format(self.channel))
def listen_decoded_data(self): # listening to all the decoded pygame events...
l=ConnectingError(3,"Didnot recieve encoded data")
try:
data,conn=self.recvfrom(buff_size)
logging.info("\nGame initialisation! New data")
except sck.timeout:
raise l
return data
def transfer_data(self,data):
self.send_mes(data)
def listen_player_id(self): # listening to the player id broadcasted by each player
#accordingly the position of the players will be decided
j=ConnectingError(5,"not a valid player uuid! cannot connect")
try:
data,conn=self.recvfrom(buff_size)
if data.split()[0] in self.auth_uids: #if the uuid is present in the list
logging.info("Successfull connection \n")
mesg=data.split()[1] #extracting the id
self.players_ids[data.split()[0]]=mesg
self.auth_uids.remove(data.split()[0])
else:
raise j
except sck.timeout:
raise ConnectingError(1,"no response")
def discover_bcast_mesg(self):
a=ConnectingError(2,"exceeded no of tries")
n=0 #no of attempts
tries=3
while 1:
self.send_mes("{0} . Broadcasting message to channel {1}".format(self.uid,self.channel))
if(n>tries):
raise a
self.close()
break
else:
try:
self.listen()
# self.close() -- small change
# break -------------------Just a test-----------------------
except ConnectingError as c:
if c.val==1:
logging.warning("FAILED {0}".format(n+1))
n+=1
pass
else:
raise c
def communication(self,data):
n=5
self.auth_uids=self.players_uids.keys()
i=0
while 1:
self.send_mes(data)
logging.info("{0} is broadcasting player id:{1} \n".format(self.uid,data.split()[1]))
if(i>n):
raise ConnectingError(2,"exceeded no of tries")
logging.info("exceeded no of tries")
break
else:
try:
self.listen_player_id() #removing self.auth_uid as param
except ConnectingError as c:
if c.val==1:
logging.warning("Socket timed out..failed attempt {0}".format(i+1))
i+=1
elif c.val==5:
logging.warning("That ip doesnot belong to the ips list")
i+=1
else :
raise c
def __del__(self):
self.close()
logging.info("Closing sockets")