编写图形界面远程控制程序

课程概要:

  1. 远程控制程序的需求分析
  2. Socket通信
  3. 受控端功能强化
  4. 远程控制程序的实现与测试

1、远程控制程序的需求分析

一、需求

图形化的桌面控制端程序
  控制端下达各种命令
  即时的通信与内网穿透
  受控端隐形
  控制端查看受控端桌面(下一课)

二、架构

受控端<---->服务器<---->控制端
  ^                  ^
  |_____________________|

2、Socket通信

  • Socket介绍
  • Socket实现

一、Socket介绍
网络套接字(socket):在不同计算机之间通信的一个抽象,工作于TCP/IP协议中应用层和传输层

二、Socket实现

  • 导入socket库
  • 创建socket
  • 绑定地址端口
  • 监听链接
  • 发送接收数据

【Master.py】

#-*-coding:utf8-*-

import wx
from MasterSocket import MasterSocket
import threading

# SERVER = '128.199.151.202'
SERVER = '192.168.2.100'
PORT = 5000

'''基于Sizer的控件相对布局'''
class Slave(wx.Frame):
    def __init__(self):
        wx.Frame.__init__(self, parent=None, id=-1, title=u'极客学院', size=(600, 600))
        self.panel = wx.Panel(self, -1)
        self.lock = threading.Lock()
        self.Centre()

        #定义我们需要的各个控件

        commandStatic = wx.StaticText(self.panel, -1, u'输命令:')
        writePyStatic = wx.StaticText(self.panel, -1, u'写代码:')

        self.commandText = wx.TextCtrl(self.panel, -1, u'')
        self.writePyText = wx.TextCtrl(self.panel, -1, u'''#-*-coding:utf-8-*-\n#python code here''',
                                  style=wx.TE_MULTILINE, size=(300, 200))

        self.send = wx.Button(self.panel, label=u'发送命令')
        self.clear = wx.Button(self.panel, label=u'清空命令')
        self.screen = wx.Button(self.panel, label=u'查看屏幕')
        self.refresh = wx.Button(self.panel, label=u'刷新')

        # self.serverList = ['192.168.0.4', '10.19.2.1', '192.168.0.111', '172.26.123.5', '192.168.6.11', '192.99.8.8']
        self.serverList = []
        self.server = wx.ListBox(self.panel, -1, size=(120, 100), choices=self.serverList, style=wx.LB_SINGLE)

        img = wx.Image(r'logo.jpg', wx.BITMAP_TYPE_ANY).Scale(200, 200)
        self.screenBox = wx.StaticBitmap(self.panel, -1, wx.BitmapFromImage(img))

        self.Bind(wx.EVT_BUTTON, self.onSend, self.send)
        self.Bind(wx.EVT_BUTTON, self.onClear, self.clear)
        self.Bind(wx.EVT_BUTTON, self.onScreen, self.screen)
        self.Bind(wx.EVT_BUTTON, self.onRefresh, self.refresh)

        #基于GirdBagSizer布局
        self.gridBagSizerAll = wx.GridBagSizer(hgap=5, vgap=5)
        self.gridBagSizerAll.Add(self.server, pos=(0, 0),
                            flag=wx.ALL | wx.EXPAND,
                            span=(6, 2), border=5)
        self.gridBagSizerAll.Add(self.refresh, pos=(6, 0),
                            flag=wx.ALL | wx.EXPAND,
                            span=(1, 2), border=5)

        self.gridBagSizerAll.Add(commandStatic, pos=(0, 2),
                            flag=wx.ALL | wx.ALIGN_CENTER_VERTICAL,
                            border=5)
        self.gridBagSizerAll.Add(self.commandText, pos=(0, 3),
                            flag=wx.ALL | wx.ALIGN_CENTER_VERTICAL,
                            span=(1, 2), border=5)

        self.gridBagSizerAll.Add(writePyStatic, pos=(1, 2),
                            flag=wx.ALL | wx.ALIGN_CENTER_VERTICAL,
                            span=(1, 3), border=5)
        self.gridBagSizerAll.Add(self.writePyText, pos=(2, 2),
                            flag=wx.ALL | wx.ALIGN_CENTER_VERTICAL,
                            span=(4, 3), border=5)
        self.gridBagSizerAll.Add(self.send, pos=(6, 2),
                            flag=wx.ALL | wx.ALIGN_CENTER_VERTICAL,
                            span=(1, 1), border=5)
        self.gridBagSizerAll.Add(self.clear, pos=(6, 3),
                            flag=wx.ALL | wx.ALIGN_CENTER_VERTICAL,
                            span=(1, 1), border=5)
        self.gridBagSizerAll.Add(self.screen, pos=(6, 4),
                            flag=wx.ALL | wx.ALIGN_CENTER_VERTICAL,
                            span=(1, 1), border=5)

        self.gridBagSizerAll.Add(self.screenBox, pos=(0, 5),
                            flag=wx.ALL | wx.ALIGN_CENTER_VERTICAL,
                            span=(7, 2), border=5)

        self.panel.SetSizer(self.gridBagSizerAll)

        # self.SetSizeHints(250, 200, 700, 400) #设定窗口的最大最小值
        self.gridBagSizerAll.AddGrowableCol(0, 1)
        self.gridBagSizerAll.AddGrowableCol(1, 1)
        self.gridBagSizerAll.AddGrowableCol(2, 1)
        self.gridBagSizerAll.AddGrowableCol(3, 1)
        self.gridBagSizerAll.AddGrowableCol(4, 1)
        self.gridBagSizerAll.AddGrowableCol(5, 1)
        self.gridBagSizerAll.AddGrowableCol(6, 1)

        self.gridBagSizerAll.AddGrowableRow(0, 1)
        self.gridBagSizerAll.AddGrowableRow(1, 1)
        self.gridBagSizerAll.AddGrowableRow(2, 1)
        self.gridBagSizerAll.AddGrowableRow(3, 1)
        self.gridBagSizerAll.AddGrowableRow(4, 1)
        self.gridBagSizerAll.AddGrowableRow(5, 1)
        self.gridBagSizerAll.AddGrowableRow(6, 1)
        self.gridBagSizerAll.Fit(self)

    def onSend(self, event):
        server = self.server.GetSelection()
        if server != -1:
            slave = self.serverList[server]
            command = self.commandText.GetValue()
            writePy = self.writePyText.GetValue()
            if command:
                print u'输入的命令是: %s' % command
                self.masterSocket = MasterSocket(SERVER, PORT, command, commandType='commandInConfig', to=slave)
            elif writePy:
                self.masterSocket = MasterSocket(SERVER, PORT, writePy, commandType='commandInWrite', to=slave)
            else:
                print u'请输入命令'
                return None
            self.masterSocket.setDaemon(True)
            self.masterSocket.start()
        else:
            print u'请先选择被控端。'
            return None

    def onClear(self, event):
        self.commandText.Clear()
        self.writePyText.Clear()
        self.writePyText.AppendText(u'''#-*-coding:utf-8-*-\n#Python code here''')

    def onScreen(self, event):
        img = wx.Image(r'python.jpg', wx.BITMAP_TYPE_ANY).Scale(300, 200)
        self.screenBox.SetBitmap(wx.BitmapFromImage(img))
        self.gridBagSizerAll.Fit(self)

    def onRefresh(self, event):
        self.serverList = []

        socketForServerList = MasterSocket(SERVER, PORT, 'listSlave', self.serverList)
        socketForServerList.setDaemon(True)
        socketForServerList.start()
        socketForServerList.join()

        self.lock.acquire()
        print u'被控端列表111:%s' % str(self.serverList)
        self.server.Clear()
        for each in self.serverList:
            self.server.Append(each)
        self.lock.release()

if __name__ == "__main__":
    app = wx.App()
    frame = Slave()
    frame.Show()
    app.MainLoop()

【MasterSocket.py】

#-*-coding:utf8-*-
import socket
import threading
import time
import json

class MasterSocket(threading.Thread):
    BUFFER_SIZE = 2048*100

    def __init__(self, host='', port=5000, command='', serverList=None, commandType='', to='', timeout=5):
        threading.Thread.__init__(self)
        self.connected = False
        self.sock = None
        self.host = host
        self.port = port
        self.command = command
        self.timeout = timeout
        if serverList is not None:
            self.serverList = serverList

        if to:
            self.to = to
        else:
            self.to = ''
        if commandType:
            self.commandType = commandType
        else:
            self.commandType = ''

    def connect(self):
        startTime = time.time()
        timeDelta = 0
        while timeDelta <= self.timeout:
            try:
            # 创建客户端套接字
                self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
                # 连接到服务器
                self.sock.connect((self.host, self.port))
                self.connected = True
                return True
            except Exception, _:
                time.sleep(1)
                timeDelta = int(time.time() - startTime)
        if timeDelta > self.timeout:
            print u'连接超时'
            return False

    def run(self):
        print u'开始连接...'
        if self.connect():
            print u'连接成功'
            try:
                self.send(self.command)
            except Exception, e:
                print 'socket error, because: %s ' % str(e)

    def generateJson(self, fromWhere, command, to='', commandType=''):
        commandDict = {'from': fromWhere, 'to': to, 'command': command, 'type': commandType}
        return json.dumps(commandDict)

    def send(self, command):
        print u'往服务器发送数据: %s' % command
        receiveData = ''
        try:
            # 发起数据给服务器
            self.sock.sendall(self.generateJson('master', command, to=self.to, commandType=self.commandType))

            while '#finished#' not in receiveData:
                # 接收服务器返回的数据
                data = self.sock.recv(self.BUFFER_SIZE)
                receiveData += data
            print u'收到服务器返回: %s' % receiveData
            self.analysisResult(receiveData)

        except socket.errno, e:
            print 'Socket error: %s' % str(e)
        except Exception, e:
            print 'Other exception: %s' % e
        finally:
            print u'关闭socket'
            self.sock.close()

    def analysisResult(self, result):
        print u'开始分析返回信息: %s' % result
        if result:
            try:
                resultDict = json.loads(result[:-10])
            except Exception, e:
                print u'返回信息有误'
                return ''
            if 'slaveList' in resultDict:
                self.serverList += resultDict['slaveList']
                print u'被控端列表: %s' % str(self.serverList)
                # self.sock.close()

【simpleServer.py】

#-*-coding:utf8-*-
import socket

class SimpleServer:
    BUFFER_SIZE = 2048*100

    def __init__(self, host='', port=5000):
        self.sock = None
        self.host = host
        self.port = port

    def connect(self):
        try:
            self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
            self.sock.bind((self.host, self.port))
            # 开启socket监听
            self.sock.listen(5)
        except Exception, e:
            print 'socket 错误: %s' % str(e)
            return None

    def receive(self):
        if self.sock:
            conn, addr = self.sock.accept()
            print '收到来自 %s的连接' % str(addr)
            while True:
                # 读取数据,数据还没到来阻塞
                data = conn.recv(self.BUFFER_SIZE)
                if len(data):
                    print u'收到来自: %s, 的信息: %s' % (addr[0], data)
                    conn.sendall(u'I have received the data: %s' % data)
                else:
                    print u'socket 连接中断。'
                    break

if __name__ == '__main__':
    HOST = ''      # 服务器主机地址
    PORT = 5000         # 服务器监听端口

    simple = SimpleServer(HOST, PORT)
    simple.connect()
    while True:
        print u'等待连接建立...'
        simple.receive() #进程运行到这里就会阻塞,直到第一次连接主动或者意外断开,才会进入第二次循环。认识到这一点非常重要。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,384评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,845评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,148评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,640评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,731评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,712评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,703评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,473评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,915评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,227评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,384评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,063评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,706评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,302评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,531评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,321评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,248评论 2 352

推荐阅读更多精彩内容