コード例 #1
0
    def send_and_recv_heartbeat(self, src_port):
        # print ('Sending heartbeat msg to viewleader...')
        try:
            sock = common_functions.create_connection(self.view_leader_ip,
                                                      39000, 39010, 1, False)
        except Exception as e:
            print("Couldn't establish a connection with viewleader: ", e)
        common_functions.send_msg(sock, {
            'cmd': 'heartbeat',
            'args': [str(self.unique_id), src_port]
        }, False)
        recvd_msg = common_functions.recv_msg(sock, False)
        sock.close()

        if (recvd_msg is not None):
            status = recvd_msg[0]

        try:
            sock = common_functions.create_connection(self.view_leader_ip,
                                                      39000, 39010, 1, False)
        except Exception as e:
            print("Couldn't establish a connection with viewleader: ", e)
        common_functions.send_msg(sock, {'cmd': 'update_view'}, False)
        curr_epoch = common_functions.recv_msg(sock, False)['Current Epoch']

        # print ("Updating our epoch to {}...".format(curr_epoch))
        self.epoch = curr_epoch
        sock.close()
コード例 #2
0
    def accept_and_handle_messages(self, bound_socket, src_port,
                                   view_leader_ip):
        # Accept connections forever
        while True:
            try:
                sock, (addr, accepted_port) = bound_socket.accept(
                )  # Returns the socket, address and port of the connection
                if (accepted_port
                        is not None):  # checks if there is an accepted_port
                    print("Accepting connection from host " + addr)
                    # receives decoded message length and message from client; if can't throw's an error
                    try:
                        recvd_msg = common_functions.recv_msg(sock)
                    except ConnectionResetError:
                        print("Connection dropped.")
                    except AttributeError:
                        print("Cannot decode message.")

                    response_dict = self.process_msg_from_client(recvd_msg)
                    # sends encoded message length and message to client; if can't throw's an error
                    try:
                        common_functions.send_msg(sock, response_dict)
                    except:
                        print("Can't send over whole message.")
                        sock.close()
            except socket.timeout:
                try:
                    print('Sending heartbeat msg to viewleader...')
                    sock = common_functions.create_connection(
                        'localhost', 39000, 39010, 1, False)

                    try:
                        common_functions.send_msg(
                            sock, {
                                'cmd':
                                'heartbeat',
                                'args': [
                                    str(self.unique_id), src_port,
                                    self.view_leader_ip
                                ]
                            })
                    except:
                        print("Can't send over whole message.")
                        sock.close()

                    try:
                        recvd_msg = common_functions.recv_msg(sock)
                    except ConnectionResetError:
                        print("Connection dropped.")
                    except AttributeError:
                        print("Cannot decode message.")

                    print('Receiving response...')
                    if (recvd_msg is not None):
                        print(str(recvd_msg))
                    sock.close()
                except Exception as e:
                    print(
                        'Heartbeat rejected, will try again in 10 seconds...')
                continue
コード例 #3
0
def get_viewleader_info(viewleader_sock):
    args_dict = {'cmd': 'query_servers'}
    common_functions.send_msg(viewleader_sock, args_dict, True)
    viewleader_response = common_functions.recv_msg(viewleader_sock, True)
    epoch = viewleader_response['Current epoch']
    active_servers = viewleader_response['Active servers']
    return (active_servers, epoch)
コード例 #4
0
def broadcast(replicas, object_to_send, epoch, timeout):
    response_key = None
    rpc_command = object_to_send['cmd']
    abort = False
    votes = []

    for ((addr, port), server_id) in replicas:
        if (rpc_command == 'request_vote'):
            object_to_send['epoch'] = epoch
            object_to_send['server_id'] = str(server_id)
        try:
            server_sock = common_functions.create_connection(
                addr, port, port, timeout, False)
            common_functions.send_msg(server_sock, object_to_send, False)

            if (rpc_command == 'request_vote'):
                vote = common_functions.recv_msg(server_sock, False)
                print("Accepting vote from " + addr)
                if (vote == 'abort'):
                    abort = True
                    return {'cmd': 'abort'}
            if (rpc_command == 'getr'):
                response_key = common_functions.recv_msg(
                    server_sock, False
                )  # desired value associated with the given key from DHT
            if (response_key is not None):
                return response_key
            elif (rpc_command == 'setr'):
                response_key = common_functions.recv_msg(server_sock, False)
            server_sock.close()
        except socket.timeout:
            if (rpc_command == 'request_vote'):
                abort = True
                return {'cmd': 'abort'}
        if (sock is None):
            print(
                "Couldn't connect to current replica server...will continue on remaining replicas: "
            )
    if (rpc_command == 'request_vote'):
        return {'cmd': 'commit'}
    if (response_key is not None):
        result = "No key found in any of the replica servers."
        response_key = {'status': 'fail', 'result': result}
        return response_key
コード例 #5
0
    def start(self):
        args = self.parse_cmd_arguments()

        # if the optional argument "--server" is used, 
        # then set localhost as this computer's IP. else, return error and exit.
        if (args.server is not None):
            if (args.cmd is None):
                print ("RPC command not provided.")
                sys.exit()

        viewleader_args = ['query_servers', 'lock_get', 'lock_release']

        self.timeout = 1
        # sets destination port ranges and destination hosts based on the RPC functions called
        if (args.cmd in viewleader_args):
            self.dest_host = str(args.viewleader)
            self.dest_port_low = 39000
            self.dest_port_high = 39010
            self.dest_name = 'viewleader'
        elif (args.cmd == 'getr' or args.cmd == 'setr'):
            self.dest_host = str(args.viewleader)
            self.dest_port_low = 39000
            self.dest_port_high = 39010
            self.dest_name = 'viewleader_and_server'
        else:
            self.dest_host = str(args.server)
            self.dest_port_low = 38000
            self.dest_port_high = 38010
            self.dest_name = 'server'

        args_dict = self.create_dict(args)

        stop = False
        sock = None

        if (self.dest_name == 'viewleader_and_server'):
            stop = True
            if (args.cmd == 'getr'):
                print (client_rpc.getr(args.key, self.dest_host, self.dest_port_low, self.dest_port_high, self.timeout))
            else: 
                print (client_rpc.setr(args.key, args.val, self.dest_host, self.dest_port_low, self.dest_port_high, self.timeout))
        while (stop == False):
            sock = common_functions.create_connection(self.dest_host, self.dest_port_low, self.dest_port_high, self.timeout, True)
            # sends encoded message length and message to server/viewleader; if can't throw's an error
            common_functions.send_msg(sock, args_dict, True)
            recvd_msg = common_functions.recv_msg(sock, True)
            if (recvd_msg == "{'status': 'retry'}"):
                print (str(recvd_msg))
                time.sleep(5) # delays for 5 seconds and then tries again
            else: 
                print (str(recvd_msg))
                stop = True  
            
        if (sock is not None):
            sock.close()
        sys.exit()
コード例 #6
0
 def accept_msg(self, bound_socket):
     # Accept connections forever
     while True:
         try:
             self.update_view()
             sock, (addr, accepted_port) = bound_socket.accept() # Returns the socket, address and port of the connection
             if (accepted_port is not None): # checks if there is an accepted_port
                 self.leader = (self.hostname, self.port) # sets the leader equal to the viewleader that the client/server contacts
                 recvd_msg = common_functions.recv_msg(sock, False) # receives message from client/server
                 self.process_msg(recvd_msg, addr, sock)
         except socket.timeout:
             continue
コード例 #7
0
 def accept_msg(self, bound_socket):
     # Accept connections forever
     while True:
         try:
             self.update_view()  # updates view
             sock, (addr, accepted_port) = bound_socket.accept(
             )  # Returns the socket, address and port of the connection
             if (accepted_port
                     is not None):  # checks if there is an accepted_port
                 recvd_msg = common_functions.recv_msg(
                     sock, False)  # receives message from client/server
                 self.process_msg(recvd_msg, addr, sock)
             self.update_view()  # updates view
         except socket.timeout:
             self.update_view()  # updates view
             continue
コード例 #8
0
    def broadcast(self, msg, replicas):
        responses = []
        leader_hostname = self.leader[0]
        leader_port = str(self.leader[1])

        for replica in replicas:
            addr, port = replica
            # checks to see if the replica has the same addr/port as the leader; if so,
            # don't broadcast to it
            if ((addr, port) != (leader_hostname, leader_port)):
                sock = common_functions.create_connection(addr, port, port, 1, False)
                if (sock):
                    common_functions.send_msg(sock, msg, False)
                    recvd_msg = common_functions.recv_msg(sock, False)   
                    if (recvd_msg):
                        responses.append(recvd_msg)
                    sock.close()
        return responses
コード例 #9
0
    def accept_and_handle_messages(self, bound_socket, src_port):
        # Accept connections forever
        while True:
            # sends an heartbeat after 10 seconds, if socket doesn't timeout
            if (time.time() - self.last_heartbeat_time >= 10.0):
                try:
                    self.last_heartbeat_time = time.time()
                    self.send_and_recv_heartbeat(src_port)
                except Exception as e:
                    print(
                        'Heartbeat rejected, will try again in 10 seconds...')
            try:
                sock, (addr, accepted_port) = bound_socket.accept(
                )  # Returns the socket, address and port of the connection
                if (accepted_port
                        is not None):  # checks if there is an accepted_port
                    # print ("Accepting connection from host " + addr)
                    recvd_msg = common_functions.recv_msg(sock, False)
                    response = self.process_msg_from_client(recvd_msg)
                    common_functions.send_msg(sock, response, False)
                    # print ("Finished sending message ({}) from server to dest...".format(response))

                    if (time.time() - self.last_heartbeat_time >= 10.0):
                        # print ("Sending RPC Message and a RPC heartbeat...")
                        try:
                            self.last_heartbeat_time = time.time()
                            self.send_and_recv_heartbeat(src_port)
                        except Exception as e:
                            print('RPC Heartbeat rejected...')
            except socket.timeout:
                if (time.time() - self.last_heartbeat_time >= 10.0):
                    try:
                        self.last_heartbeat_time = time.time()
                        self.send_and_recv_heartbeat(src_port)
                    except Exception as e:
                        print(
                            'Heartbeat rejected, will try again in 10 seconds...'
                        )
                continue
コード例 #10
0
    def accept_and_handle_messages(self, bound_socket):
        # Accept connections forever
        while True:
            # sends an heartbeat after 10 seconds, if socket doesn't timeout
            if (time.time() - self.last_heartbeat_time >= 10.0):
                self.last_heartbeat_time = time.time()
                self.send_and_recv_heartbeat()
            try:
                sock, (addr, accepted_port) = bound_socket.accept(
                )  # Returns the socket, address and port of the connection
                if (accepted_port
                        is not None):  # checks if there is an accepted_port
                    recvd_msg = common_functions.recv_msg(sock, False)
                    response = self.process_msg_from_client(recvd_msg)
                    common_functions.send_msg(sock, response, False)

                    if (time.time() - self.last_heartbeat_time >= 10.0):
                        self.last_heartbeat_time = time.time()
                        self.send_and_recv_heartbeat()
            except socket.timeout:
                if (time.time() - self.last_heartbeat_time >= 10.0):
                    self.last_heartbeat_time = time.time()
                    self.send_and_recv_heartbeat()
                continue
コード例 #11
0
    def send_and_recv_heartbeat(self):
        try:
            sock = common_functions.contact_leader(self.view_leader_list)
            common_functions.send_msg(
                sock, {
                    'cmd':
                    'heartbeat',
                    'args':
                    [str(self.unique_id),
                     socket.gethostname(), self.src_port]
                }, False)
            recvd_msg = common_functions.recv_msg(sock, False)
            status = recvd_msg['status']
            curr_epoch = recvd_msg['Current Epoch']

            if (status == 'not ok'):
                raise Exception
            sock.close()
            self.epoch = curr_epoch  # updates epoch
        except Exception as e:
            print('Heartbeat rejected, will try again in 10 seconds...{}', e)
        finally:
            if (sock):
                sock.close()
コード例 #12
0
    def start(self):
        args = self.parse_cmd_arguments()

        # if the optional argument "--server" is used,
        # then set localhost as this computer's IP. else, return error and exit.
        if (args.server is not None):
            if (args.cmd is None):
                print("RPC command not provided.")
                sys.exit()

        # sets destination port ranges and destination hosts based on the RPC functions called
        if (args.cmd == 'query_servers') or (args.cmd == 'lock_get') or (
                args.cmd == 'lock_release'):
            dest_host = str(args.viewleader)
            dest_port_low = 39000
            dest_port_high = 39010
            timeout = 1
        else:
            dest_host = str(args.server)
            dest_port_low = 38000
            dest_port_high = 38010
            timeout = 1

        args_dict = self.create_dict(args)

        stop = False
        sock = None

        while (stop == False):
            sock = common_functions.create_connection(dest_host, dest_port_low,
                                                      dest_port_high, timeout,
                                                      True)
            try:
                print("Sending RPC msg to viewleader...")
                # sends encoded message length and message to server/viewleader; if can't throw's an error
                common_functions.send_msg(sock, args_dict)

                # receives decoded message length and message from server/viewleader; if can't throw's an error
                try:
                    recvd_msg = common_functions.recv_msg(sock)
                    if (recvd_msg == "{'status': 'retry'}"):
                        print(str(recvd_msg))
                        time.sleep(
                            5)  # delays for 5 seconds and then tries again
                    else:
                        print(str(recvd_msg))
                        stop = True
                except ConnectionResetError:
                    print("Connection dropped.")
                    sys.exit()
                except AttributeError:
                    print("Cannot decode message.")
                    if (sock is not None):
                        sock.close()
                    sys.exit()

            except Exception as e:
                print("Failed send over whole message.", e)
                if (sock is not None):
                    sock.close()
                    sys.exit()

        if (sock is not None):
            sock.close()
        sys.exit()
コード例 #13
0
def get_replica_buckets(viewleader_sock, args_dict):
    common_functions.send_msg(viewleader_sock, args_dict, True)
    # list of (server_hash, (addr, port)) for all replica servers associated with the given key
    replica_buckets = common_functions.recv_msg(viewleader_sock, True)
    return replica_buckets
コード例 #14
0
    def rebalance(self, new_view, old_view, epoch_op):
        key_to_delete = ''

        global key_value_replica
        global data_in_view

        for [[addr, port], server_id] in new_view:
            try:
                sock = common_functions.create_connection(
                    addr, port, port, 5, False)
            except Exception as e:
                print("Couldn't establish a connection with replica: ", e)
            common_functions.send_msg(sock, {'cmd': 'get_data'}, False)
            recvd_msg = common_functions.recv_msg(sock, False)
            if (recvd_msg is not None):
                for key, value in recvd_msg.items():
                    if (key not in data_in_view):
                        with self.lock:
                            data_in_view[key] = value
            sock.close()

        for key, value in data_in_view.items():
            old_replicas = DHT.bucket_allocator(key, old_view)
            new_replicas = DHT.bucket_allocator(key, new_view)

            for [[addr, port], server_id] in new_replicas:
                try:
                    sock = common_functions.create_connection(
                        addr, port, port, 5, False)
                except Exception as e:
                    print("Couldn't establish a connection with replica: ", e)
                common_functions.send_msg(sock, {
                    'cmd': 'get_data',
                    'key': key
                }, False)
                recvd_msg = common_functions.recv_msg(sock, False)
                if (recvd_msg is not None) or (recvd_msg != ''):
                    key_value_replica = recvd_msg
                sock.close()

            with self.lock:
                # print (key_value_replica)
                try:
                    new_key, new_value = key_value_replica
                    if (new_key not in self.bucket):
                        try:
                            self.bucket[new_key] = new_value
                            print("Adding {}:{} to current replica...".format(
                                new_key, new_value))
                        except LookupError as e:
                            print(
                                "Couldn't set the key since there was no such key..."
                            )
                    else:
                        if (epoch_op == 'add'):
                            if (old_view is not None):
                                # print ("Old view: {}".format(old_view))
                                # print ("New view: {}".format(new_view))
                                # print ("unique_id: {}".format(self.unique_id))
                                for [[addr, port], server_id] in old_view:
                                    # print ("tuple: {}".format([[addr, port], server_id]))
                                    if (self.unique_id == server_id) and ([[
                                            addr, port
                                    ], server_id] not in new_view):
                                        print(
                                            "Deleting {}:{} on old replica...".
                                            format(new_key, new_value))
                                        key_to_delete = new_key
                    try:
                        del self.bucket[key_to_delete]
                    except LookupError:
                        print(
                            "Couldn't delete the key since there was no such key..."
                        )
                except Exception as e:
                    print("No key_value found: ", e)