AutoGenSystem

简介: #coding=utf-8 # # AutoGenSystem # 声明: # 该软件主要是为了解决Android系统更新时,由于版本很多,管理起来复杂,容易出错,于是采用软件 # 自动对系统软件进行组合,目前该软件还没有对生成的文件夹加入命名规范。
#coding=utf-8

#
#                                   AutoGenSystem
# 声明:
#     该软件主要是为了解决Android系统更新时,由于版本很多,管理起来复杂,容易出错,于是采用软件
# 自动对系统软件进行组合,目前该软件还没有对生成的文件夹加入命名规范。
#
#                                                      2016-1-2 深圳 南山平山村 曾剑锋
# 参考文档:
#     1. PySide : How to get the clicked QPushButton object in the QPushButton clicked slot?
#          http://stackoverflow.com/questions/20320298/pyside-how-to-get-the-clicked-qpushbutton-object-in-the-qpushbutton-clicked-sl
#     2. python 字符串split的用法分享
#          http://www.jb51.net/article/34998.htm
#     3. Python中使用定时器Sleep定时秒及毫秒。
#          http://jingyan.baidu.com/article/4b07be3c65263a48b380f3b4.html
#     4. 去空格及特殊符号
#          http://www.cnblogs.com/huangcong/archive/2011/08/29/2158268.html
#     5. Python中函数的参数定义和可变参数
#          http://www.cnblogs.com/tqsummer/archive/2011/01/25/1944416.html
#     6. python 多线程就这么简单
#          http://www.cnblogs.com/fnng/p/3670789.html
#     7. python threads can only be started once
#          http://zhidao.baidu.com/link?url=8x7GpDdNmcL3TQZ0iDibdkx5Y2MdgcxnlATPkvMX4EwXsR2ZxJ37lDapbeehaHNvGmQxjupjnx4ynsxfAuGipC1wbOUoTaHqmzyLcmcffza
#
#

import sys
import os
import shutil
import time
import threading
from PyQt4.QtCore import *
from PyQt4.QtGui import *

from ui_AutoGenSystem import Ui_GenSystemUI

class AutoGenSystem(QDialog):


    def __init__(self):

        QDialog.__init__(self)

        self.ui = Ui_GenSystemUI()
        self.ui.setupUi(self)

        self.setWindowTitle("AutoGenSystem")
        self.setFixedHeight(self.height())
        self.setFixedWidth(self.width())
        self.setWindowFlags(self.windowFlags() & ~Qt.WindowContextHelpButtonHint);

        # 连接信号与槽
        self.ui.chooseUbootPath.clicked.connect(lambda :self.dealWithPushButton(self.ui.chooseUbootPath))
        self.ui.chooseRecoveryPath.clicked.connect(lambda :self.dealWithPushButton(self.ui.chooseRecoveryPath))
        self.ui.chooseBootingPath.clicked.connect(lambda :self.dealWithPushButton(self.ui.chooseBootingPath))
        self.ui.chooseFileSystemPath.clicked.connect(lambda :self.dealWithPushButton(self.ui.chooseFileSystemPath))
        self.ui.clean.clicked.connect(self.cleanOnClicked)
        self.ui.current.clicked.connect(self.currentOnClicked)
        self.ui.autoAll.clicked.connect(self.autoAllOnClicked)

        #初始化一些全局变量,compound是指合成,也就合成的目录
        self.ubootImagePath      = "image/uboot/"
        self.fileSystemImagePath = "image/file_system/"
        self.recoveryImagePath   = "image/recovery/"
        self.bootingImagePath    = "image/booting/"
        self.readmeFilePath      = "image/readme.txt"
        self.compoundPath        = "compound/"
        self.ubootName           = "uboot.img"
        self.bootingNmae         = "boot.img"
        self.fileSystemName      = "system.img"
        self.recoveryName        = "recovery.img"

        # 检查这些文件路径是否存在
        self.checkImagePathExist(self.ubootImagePath, self.fileSystemImagePath, self.recoveryImagePath, self.bootingImagePath, self.readmeFilePath)

        # 读取readme文件
        if os.path.exists(self.readmeFilePath) :
            readme = open(self.readmeFilePath)
            self.ui.readme.setPlainText(QString.fromUtf8(readme.read()))
            readme.close()


    def currentOnClicked(self):

        # 检查文本框是否为空
        if ( (len(self.ui.ubootPath.text()) == 0)
             or (len(self.ui.recoveryPath.text()) == 0)
             or (len(self.ui.bootingPath.text()) == 0)
             or (len(self.ui.fileSystemPath.text()) == 0) ):
            QMessageBox.about(self, "mesg", "Please choose all The image files on the left side.")
            return

        # 删除之前合成的目录,并重新创建合成目录
        self.remakeCompoundDir()

        # 文件拷贝,并显示进度条、提示信息,5个文件,每次拷贝完一个文件,进度条往前跑20个点,跑完最后一个点就是100了
        # 这里的self.compound字符串最后添加了"/",所以生成distPath的时候可以直接字符串连接。
        i = 0;
        i += 1
        self.copyImageFile(self.ui.ubootPath.text(), self.compoundPath + self.ubootName, 20 * i, "Copying uboot.img")
        i += 1
        self.copyImageFile(self.ui.recoveryPath.text(), self.compoundPath + self.recoveryName, 20 * i, "Copying recovery.img")
        i += 1
        self.copyImageFile(self.ui.bootingPath.text(), self.compoundPath + self.bootingNmae, 20 * i, "Copying boot.img")
        i += 1
        self.copyImageFile(self.ui.fileSystemPath.text(), self.compoundPath + self.fileSystemName, 20 * i, "Copying system.img")
        i += 1
        self.saveReadMeFile(self.compoundPath + "readme.txt", 20 * i, "Copying readme.txt.")

        self.ui.info.setText("Current copying is over.")


    def autoAllOnClicked(self):

        # 获取文件列表
        ubootFiles = os.listdir(self.ubootImagePath)
        recoveryFiles = os.listdir(self.recoveryImagePath)
        bootingFiles = os.listdir(self.bootingImagePath)
        fileSystemFiles = ""
        if self.ui.systemType.currentIndex() == 0 :
            fileSystemFiles = os.listdir(self.fileSystemImagePath + "RES")
        else:
            fileSystemFiles = os.listdir(self.fileSystemImagePath + "PTC")

        # 删除之前合成的目录,并重新创建合成目录
        self.remakeCompoundDir()

        # 拷贝文件,并计算进度条每次跳跃的阶数值,总循环次数allFilesCount,每套系统里面需要生成5个文件
        # 设置进度条进度,Information tips信息
        allFilesCount = len(ubootFiles) * len(recoveryFiles) * len(bootingFiles) * len(fileSystemFiles)
        processBarStep = 100.0 / allFilesCount / 5  # 每个文件夹5个文件

        i = 0
        for ubootFile in ubootFiles:
            for recoveryFile in recoveryFiles:
                for bootingFile in bootingFiles:
                    for fileSystemFile in fileSystemFiles:

                        newPath = self.compoundPath + ubootFile+"_"+recoveryFile+"_"+bootingFile+"_"+fileSystemFile + "/"
                        os.mkdir(newPath)

                        i += 1
                        self.copyImageFile(self.ubootImagePath + ubootFile, newPath + self.ubootName, processBarStep * i, "Copying uboot.img")
                        i += 1
                        self.copyImageFile(self.recoveryImagePath + recoveryFile, newPath + self.recoveryName, processBarStep * i, "Copying recovery.img")
                        i += 1
                        self.copyImageFile(self.bootingImagePath + bootingFile, newPath + self.bootingNmae, processBarStep * i, "Copying boot.img")
                        i += 1
                        if self.ui.systemType.currentIndex() == 0 :
                            self.copyImageFile(self.fileSystemImagePath + "RES/" + fileSystemFile, newPath + self.fileSystemName, processBarStep * i, "Copying system.img")
                        else:
                            self.copyImageFile(self.fileSystemImagePath + "PTC/" + fileSystemFile, newPath + self.fileSystemName, processBarStep * i, "Copying system.img")
                        i += 1
                        self.saveReadMeFile("%s/readme.txt" % newPath, processBarStep * i, "Saving readme.txt.")

        self.ui.info.setText("AutoAll copying is over.")
        self.ui.progressBar.setValue(100)


    def cleanOnClicked(self):

        self.ui.systemType.setCurrentIndex(0)
        self.ui.ubootPath.setText("")
        self.ui.recoveryPath.setText("")
        self.ui.bootingPath.setText("")
        self.ui.fileSystemPath.setText("")
        self.ui.readme.setPlainText("")
        self.ui.progressBar.setValue(0)
        self.ui.info.setText("Information Tips.")


    def dealWithPushButton(self, button):

        filePath = ""
        if button.objectName() == "chooseUbootPath" :
            filePath = self.ubootImagePath
        elif button.objectName() == "chooseRecoveryPath" :
            filePath = self.recoveryImagePath
        elif button.objectName() == "chooseBootingPath" :
            filePath = self.bootingImagePath
        elif button.objectName() == "chooseFileSystemPath" :
            filePath = self.fileSystemImagePath
            if self.ui.systemType.currentIndex() == 0 :
                filePath += "/RES"
            else :
                filePath += "/PTC"

        # 检查文件路径是否存在
        self.checkImagePathExist(filePath)

        # 获取文件路径,并将文件路径保存在UI界面的控件里去
        choosePathString = QFileDialog.getOpenFileName(self, "Select file", filePath, "*")
        if len(choosePathString) == 0 :
            return
        self.setUIControlsPath(button, choosePathString)


    def checkImagePathExist(self, *paths):

        # 由于这里传入的参数可以是多个,可能有些路径有效,有些无效,在这里进行检查,将无效的路径提取出来,并给出提示
        unexistPath = ""
        for path in paths :
            if not os.path.exists(path) :
                unexistPath += "\n\t"
                unexistPath += path

        unexistPath = unexistPath.strip()   # 剔除字符串行头行尾的不显示字符,用于下面的比较和分割
        if len(unexistPath) != 0 :
            if len(unexistPath.split("\n\t")) == 1 :
                QMessageBox.about(self, "mesg", "Please create this path in current software path:\n\t" + unexistPath + ".")
            else :
                QMessageBox.about(self, "mesg", "Please create those path in current software path:\n\t" + unexistPath + ".")
            exit()


    def copyImageFile(self, srcPath, distPath, progressBarValue, informationTips):

        self.ui.info.setText(informationTips)
        QFile.copy(srcPath, distPath)                   # 拷贝文件
        self.ui.progressBar.setValue(progressBarValue)


    def copyASystemFile(self, ubootSrcPath, ubootDistPath, bootingSrcPath, bootingDistPath,
            recoverySrcPath, recoveryDistPath, fileSystemSrcPath, fileSystemDistPath, readmePath, processBarStep, index):
        # 文件拷贝,并显示进度条、提示信息,5个文件,每次拷贝完一个文件
        # 这里的self.compound字符串最后添加了"/",所以生成distPath的时候可以直接字符串连接。
        index
        self.copyImageFile(ubootSrcPath, ubootDistPath, processBarStep * index, "Copying uboot.img")
        index += 1
        self.copyImageFile(bootingSrcPath, bootingDistPath, processBarStep * index, "Copying recovery.img")
        index += 1
        self.copyImageFile(recoverySrcPath, recoveryDistPath, processBarStep * index, "Copying boot.img")
        index += 1
        self.copyImageFile(fileSystemSrcPath, fileSystemDistPath, processBarStep * index, "Copying system.img")
        index += 1
        self.saveReadMeFile(readmePath, processBarStep * index, "Copying readme.txt.")


    def saveReadMeFile(self, distPath, progressBarValue, informationTips):

        self.ui.info.setText(informationTips)
        readme = open( distPath, "w" )
        readme.write(self.ui.readme.toPlainText().toUtf8())     # 保存的时候用Utf8,读的时候也是Utf8
        readme.flush()
        readme.close()
        self.ui.progressBar.setValue(progressBarValue)


    def remakeCompoundDir(self):

        # 删除文件夹,创建文件夹,这个过程时间太短貌似有问题,所以加了延时,但目前没有摸清楚这个延时情况该如何解决
        if os.path.exists("compound") :
            shutil.rmtree("compound")
        time.sleep(1)
        os.mkdir("compound")


    def disableAllControls(self):

        self.ui.systemType.setDisabled(True)
        self.ui.ubootPath.setDisabled(True)
        self.ui.recoveryPath.setDisabled(True)
        self.ui.bootingPath.setDisabled(True)
        self.ui.fileSystemPath.setDisabled(True)
        self.ui.readme.setDisabled(True)
        self.ui.clean.setDisabled(True)
        self.ui.current.setDisabled(True)
        self.ui.autoAll.setDisabled(True)


    def enableAllControls(self):

        self.ui.systemType.setDisabled(False)
        self.ui.ubootPath.setDisabled(False)
        self.ui.recoveryPath.setDisabled(False)
        self.ui.bootingPath.setDisabled(False)
        self.ui.fileSystemPath.setDisabled(False)
        self.ui.readme.setDisabled(False)
        self.ui.clean.setDisabled(False)
        self.ui.current.setDisabled(False)
        self.ui.autoAll.setDisabled(False)


    def setUIControlsPath(self, button, choosePathString):

        # 设置UI界面
        if button.objectName() == "chooseUbootPath" :
            self.ui.ubootPath.setText(choosePathString)
        elif button.objectName() == "chooseRecoveryPath" :
            self.ui.recoveryPath.setText(choosePathString)
        elif button.objectName() == "chooseBootingPath" :
            self.ui.bootingPath.setText(choosePathString)
        elif button.objectName() == "chooseFileSystemPath" :
            self.ui.fileSystemPath.setText(choosePathString)

 

目录
相关文章
|
5天前
|
供应链 监控 安全
对话|企业如何构建更完善的容器供应链安全防护体系
随着云计算和DevOps的兴起,容器技术和自动化在软件开发中扮演着愈发重要的角色,但也带来了新的安全挑战。阿里云针对这些挑战,组织了一场关于云上安全的深度访谈,邀请了内部专家穆寰、匡大虎和黄竹刚,深入探讨了容器安全与软件供应链安全的关系,分析了当前的安全隐患及应对策略,并介绍了阿里云提供的安全解决方案,包括容器镜像服务ACR、容器服务ACK、网格服务ASM等,旨在帮助企业构建涵盖整个软件开发生命周期的安全防护体系。通过加强基础设施安全性、技术创新以及倡导协同安全理念,阿里云致力于与客户共同建设更加安全可靠的软件供应链环境。
106032 10
|
13天前
|
弹性计算 人工智能 安全
对话 | ECS如何构筑企业上云的第一道安全防线
随着中小企业加速上云,数据泄露、网络攻击等安全威胁日益严重。阿里云推出深度访谈栏目,汇聚产品技术专家,探讨云上安全问题及应对策略。首期节目聚焦ECS安全性,提出三道防线:数据安全、网络安全和身份认证与权限管理,确保用户在云端的数据主权和业务稳定。此外,阿里云还推出了“ECS 99套餐”,以高性价比提供全面的安全保障,帮助中小企业安全上云。
201917 14
对话 | ECS如何构筑企业上云的第一道安全防线
|
2天前
|
供应链 监控 安全
|
4天前
|
SQL 安全 前端开发
预编译为什么能防止SQL注入?
SQL注入是Web应用中常见的安全威胁,攻击者通过构造恶意输入执行未授权的SQL命令。预编译语句(Prepared Statements)是一种有效防御手段,它将SQL代码与数据分离,确保用户输入不会被解释为SQL代码的一部分。本文详细介绍了SQL注入的危害、预编译语句的工作机制,并结合实际案例和多语言代码示例,展示了如何使用预编译语句防止SQL注入,强调了其在提升安全性和性能方面的重要性。
|
8天前
|
搜索推荐 物联网 PyTorch
Qwen2.5-7B-Instruct Lora 微调
本教程介绍如何基于Transformers和PEFT框架对Qwen2.5-7B-Instruct模型进行LoRA微调。
402 34
Qwen2.5-7B-Instruct Lora 微调
|
30天前
|
人工智能 自然语言处理 前端开发
从0开始打造一款APP:前端+搭建本机服务,定制暖冬卫衣先到先得
通义灵码携手科技博主@玺哥超carry 打造全网第一个完整的、面向普通人的自然语言编程教程。完全使用 AI,再配合简单易懂的方法,只要你会打字,就能真正做出一个完整的应用。
9902 29
|
2天前
|
机器学习/深度学习 存储 人工智能
【科普向】我们所说的AI模型训练到底在训练什么?
人工智能(AI)模型训练类似于厨师通过反复实践来掌握烹饪技巧。它通过大量数据输入,自动优化内部参数(如神经网络中的权重和偏置),以最小化预测误差或损失函数,使模型在面对新数据时更加准确。训练过程包括前向传播、计算损失、反向传播和更新权重等步骤,最终生成权重文件保存模型参数,用于后续的应用和部署。理解生物神经网络的工作原理为人工神经网络的设计提供了灵感,后者广泛应用于图像识别、自然语言处理等领域。
|
14天前
|
机器学习/深度学习 人工智能 安全
通义视觉推理大模型QVQ-72B-preview重磅上线
Qwen团队推出了新成员QVQ-72B-preview,这是一个专注于提升视觉推理能力的实验性研究模型。提升了视觉表示的效率和准确性。它在多模态评测集如MMMU、MathVista和MathVision上表现出色,尤其在数学推理任务中取得了显著进步。尽管如此,该模型仍存在一些局限性,仍在学习和完善中。
|
15天前
|
Java Maven
Maven编译报错:Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.13.0:compile 解决方案
在执行Maven项目中的`install`命令时,遇到编译插件版本不匹配的错误。具体报错为:`maven-compiler-plugin:3.13.0`要求Maven版本至少为3.6.3。解决方案是将Maven版本升级到3.6.3或降低插件版本。本文详细介绍了如何下载、解压并配置Maven 3.6.3,包括环境变量设置和IDEA中的Maven配置,确保项目顺利编译。
Maven编译报错:Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.13.0:compile 解决方案