Table of Contents
PyQt5系列教程(五)制作fastboot烧写器
软硬件环境
前言
需求分析
界面设计
代码编写
在QThread中更新UI
struct处理二进制数据
logging模块的使用
跨平台
源码地址
Home php教程 php手册 PyQt5系列教程(五)制作fastboot烧写器

PyQt5系列教程(五)制作fastboot烧写器

Jun 13, 2016 am 08:49 AM
android

PyQt5系列教程(五)制作fastboot烧写器

软硬件环境

  • Windows 7
  • Python 3.4.2
  • PyQt 5.5.1
  • PyCharm 5.0.2

前言

fastboot是针对Android设备的一种刷机方式,它比recovery更底层,刷机速度更快。本文要完成的这个项目就是用PyQt5来给fastboot加个GUI层,使操作更加简单方便。

需求分析

首先要清楚fastboot能做些什么,通过在cmd里输入fastboot就可以查看它的帮助信息

本工程主要实现的是fastboot的烧录功能,其它的像获取、设置相关信息就没有涉及,有需要的话就自己去添加。

还有一个比较特殊的需求就是烧录的镜像需要修改的情况,我这里称它位BBCB,它的一部分数据由用户输入的。

界面设计

使用QtDesigner来设计,这里只用了label、pushButton、lineedit,还有就是水平布局、垂直布局和菜单栏,还是比较简单。

代码编写

在QThread中更新UI

利用信号和槽机制。首先创建一个class,继承自QThread,在需要更新UI的时候发送一个信号

class detectDeviceThread(QThread):    detectSignal = pyqtSignal(object)    def __int__(self):        QThread.__init__(self)    def run(self):        while True:            deviceNum = lj_list_device_id(self)            self.detectSignal.emit(deviceNum)            time.sleep(3) 
Copy after login

在UI层面,绑定信号和槽,然后实现该槽,UI的更新就在槽里执行。

 def onDeviceDetected(self,data):        '''        检测到Android设备上线后的操作        :return:        '''        font = QtGui.QFont()        font.setFamily("微软雅黑 Light")        font.setPointSize(12)        font.setBold(True)        self.textBrowser_device_id.setFont(font)        if(common.PREVIOUS_DATA != data):            common.PREVIOUS_DATA = data            self.textBrowser_device_id.setText(data)            if not data.strip():                common.FLAG_DEVICE_ONLINE = False            else:                common.FLAG_DEVICE_ONLINE = Truedef startDetectDevice(self):        '''        开启线程,检测Android设备上线        :return:        '''        self.detectThread = detectDeviceThread()        self.detectThread.detectSignal.connect(self.onDeviceDetected)        self.detectThread.start() 
Copy after login

struct处理二进制数据

我这里需要变更BBCB镜像的某几个字节(类似于C语言中的结构体数据类型)的数据,需要使用到struct这个模块。来看段代码

fp = open("toc\\nvram.toc","rb+")fp.seek(common.BBCB_OFFSET + 2,os.SEEK_SET)        manufacturer_id = fp.read(1)        manufacturer_id_new = int(self.lineEdit_manu_id.text())        if(manufacturer_id != manufacturer_id_new):            logging.debug("newmanufacturer_id: " + str(manufacturer_id_new))            fp.seek(-1,os.SEEK_CUR)            fp.write(struct.pack("B",manufacturer_id_new))            fp.flush() 
Copy after login

首先是打开文件,进行文件定位,然后将要写入的数据按照特定的格式写入文件。struct中支持的格式如下表所示

在上例中,是将manufacturer_id_new的值以格式”B”,也就是C语言里的unsigned char写入到文件中。依照上表,如果是一个长度为5的字符串,格式应该是”5s”

logging模块的使用

这里使用python自带的logging作为日志系统。因为需要在多个模块内(多个文件)使用,我们在工程入口处进行全局的初始化

def initLogConfiguration():    '''    初始化日志配置    '''    logging.basicConfig(level = logging.DEBUG,                        filename = common.LOGFILE,                        filemode = 'a+',                        format = '%(asctime)s - %(filename)s - line %(lineno)-4d - %(levelname)s - %(message)s',                        datefmt = '%m-%d %H:%M') 
Copy after login

这里是输出到文件,同样你也可以输出到控制台,通过stream参数指定,如果同时指定了filename和stream,logging会忽略stream。初始化完毕后,在其它需要输出log的模块就直接使用就可以了

logging.debug("some message") 
Copy after login

跨平台

主要就是判断当前平台,然后进行不同方式的处理。这里使用platform库

import platformPLATFORM_SYSTEM = platform.system()OS_MAC = (PLATFORM_SYSTEM == "Darwin")OS_WIN = (PLATFORM_SYSTEM == "Windows")OS_LINUX = (PLATFORM_SYSTEM == "Linux") 
Copy after login

源码地址

https://github.com/djstava/PyQt5Fastboot

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

New report delivers damning assessment of rumoured Samsung Galaxy S25, Galaxy S25 Plus and Galaxy S25 Ultra camera upgrades New report delivers damning assessment of rumoured Samsung Galaxy S25, Galaxy S25 Plus and Galaxy S25 Ultra camera upgrades Sep 12, 2024 pm 12:23 PM

In recent days, Ice Universe has been steadily revealing details about the Galaxy S25 Ultra, which is widely believed to be Samsung's next flagship smartphone. Among other things, the leaker claimed that Samsung only plans to bring one camera upgrade

Samsung Galaxy S25 Ultra leaks in first render images with rumoured design changes revealed Samsung Galaxy S25 Ultra leaks in first render images with rumoured design changes revealed Sep 11, 2024 am 06:37 AM

OnLeaks has now partnered with Android Headlines to provide a first look at the Galaxy S25 Ultra, a few days after a failed attempt to generate upwards of $4,000 from his X (formerly Twitter) followers. For context, the render images embedded below h

IFA 2024 | TCL\'s NXTPAPER 14 won\'t match the Galaxy Tab S10 Ultra in performance, but it nearly matches it in size IFA 2024 | TCL\'s NXTPAPER 14 won\'t match the Galaxy Tab S10 Ultra in performance, but it nearly matches it in size Sep 07, 2024 am 06:35 AM

Alongside announcing two new smartphones, TCL has also announced a new Android tablet called the NXTPAPER 14, and its massive screen size is one of its selling points. The NXTPAPER 14 features version 3.0 of TCL's signature brand of matte LCD panels

Vivo Y300 Pro packs 6,500 mAh battery in a slim 7.69 mm body Vivo Y300 Pro packs 6,500 mAh battery in a slim 7.69 mm body Sep 07, 2024 am 06:39 AM

The Vivo Y300 Pro just got fully revealed, and it's one of the slimmest mid-range Android phones with a large battery. To be exact, the smartphone is only 7.69 mm thick but features a 6,500 mAh battery. This is the same capacity as the recently launc

New report delivers damning assessment of rumoured Samsung Galaxy S25, Galaxy S25 Plus and Galaxy S25 Ultra camera upgrades New report delivers damning assessment of rumoured Samsung Galaxy S25, Galaxy S25 Plus and Galaxy S25 Ultra camera upgrades Sep 12, 2024 pm 12:22 PM

In recent days, Ice Universe has been steadily revealing details about the Galaxy S25 Ultra, which is widely believed to be Samsung's next flagship smartphone. Among other things, the leaker claimed that Samsung only plans to bring one camera upgrade

Samsung Galaxy S24 FE billed to launch for less than expected in four colours and two memory options Samsung Galaxy S24 FE billed to launch for less than expected in four colours and two memory options Sep 12, 2024 pm 09:21 PM

Samsung has not offered any hints yet about when it will update its Fan Edition (FE) smartphone series. As it stands, the Galaxy S23 FE remains the company's most recent edition, having been presented at the start of October 2023. However, plenty of

Motorola Razr 50s shows itself as possible new budget foldable in early leak Motorola Razr 50s shows itself as possible new budget foldable in early leak Sep 07, 2024 am 09:35 AM

Motorola has released countless devices this year, although only two of them are foldables. For context, while most of the world has received the pair as the Razr 50 and Razr 50 Ultra, Motorola offers them in North America as the Razr 2024 and Razr 2

Xiaomi Redmi Note 14 Pro Plus arrives as first Qualcomm Snapdragon 7s Gen 3 smartphone with Light Hunter 800 camera Xiaomi Redmi Note 14 Pro Plus arrives as first Qualcomm Snapdragon 7s Gen 3 smartphone with Light Hunter 800 camera Sep 27, 2024 am 06:23 AM

The Redmi Note 14 Pro Plus is now official as a direct successor to last year'sRedmi Note 13 Pro Plus(curr. $375 on Amazon). As expected, the Redmi Note 14 Pro Plus heads up the Redmi Note 14 series alongside theRedmi Note 14and Redmi Note 14 Pro. Li

See all articles