飞鸽传书-代码优化-分模块

main.py(用来控制整体)

import socket
import time
import FeiQCoreData


def create_udp_socket():
    """创建udp套接字"""
    FeiQCoreData.udp_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)

    # 设置允许广播
    FeiQCoreData.udp_socket.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1)


def build_msg(command_num, option_data=""):
    """组装需要发送的消息"""
    msg = "%d:%d:%s:%s:%d:%s" % (FeiQCoreData.feiq_version, int(time.time()),
                                 FeiQCoreData.feiq_user_name, FeiQCoreData.feiq_host_name,
                                 command_num, option_data)
    return msg


def send_msg(send_data, dest_ip):
    FeiQCoreData.udp_socket.sendto(send_data.encode("gbk"), (dest_ip, FeiQCoreData.feiq_port))


def send_broadcast_online_msg():
    """发送上线提醒"""
    online_msg = build_msg(FeiQCoreData.IPMSG_BR_ENTRY, FeiQCoreData.feiq_user_name)
    send_msg(online_msg, FeiQCoreData.broadcast_ip)


def send_broadcast_offline_msg():
    """发送下线提醒"""
    offline_msg = build_msg(FeiQCoreData.IPMSG_BR_EXIT)
    send_msg(offline_msg, FeiQCoreData.broadcast_ip)


def send_msg_2_ip():
    """向指定的ip发送飞秋数据"""
    dest_ip = input("请输入对方的ip:")
    send_data = input("请输入要发送的数据内容:")
    if dest_ip and send_data:
        # chat_msg = "%d:%d:%s:%s:%d:%s" % (feiq_version, int(time.time()), feiq_user_name, feiq_host_name,
        #                                   IPMSG_SENDMSG, send_data)
        chat_msg = build_msg(FeiQCoreData.IPMSG_SENDMSG, send_data)
        send_msg(chat_msg, dest_ip)


def recv_msg_1_time():
    """接收1次消息"""
    recv_data, dest_addr = FeiQCoreData.udp_socket.recvfrom(1024)
    print("%s>>>%s" % (dest_addr, recv_data))


def print_menu():
    """显示飞鸽传书的功能"""
    print("     飞鸽传书v1.0")
    print("1:上线广播")
    print("2:下线广播")
    print("3:向指定ip发送消息")
    print("4:接收1次消息")
    print("0:退出")


def main():
    # 创建套接字
    create_udp_socket()

    while True:

        print_menu()
        command_num = input("请输入要进行的操作:")
        if command_num == "1":
            # 发送上线提醒
            send_broadcast_online_msg()
        elif command_num == "2":
            # 发送下线提醒
            send_broadcast_offline_msg()
        elif command_num == "3":
            # 向指定ip发送消息
            send_msg_2_ip()
        elif command_num == "4":
            # 接收1次消息
            recv_msg_1_time()
        elif command_num == "0":
            send_broadcast_offline_msg()
            # 关闭套接字
            FeiQCoreData.udp_socket.close()
            exit()


if __name__ == "__main__":
    main()

FeiQRecv.py(用来存放收数据相关功能)

暂时为空

FeiQCoreData.py(用来存放全局变量等)


udp_socket = None  # 保存udp套接字
feiq_version = 1  # 飞秋的版本
feiq_user_name = "dong-test"  # 用户名
feiq_host_name = "ubuntu-64-1604"  # 主机名字
broadcast_ip = "255.255.255.255"  # 广播ip
feiq_port = 2425  # 飞鸽传书的端口

# 飞秋command
IPMSG_BR_ENTRY = 0x00000001
IPMSG_BR_EXIT = 0x00000002
IPMSG_SENDMSG = 0x00000020  # 表示 发送消息