/* * gfdgd xi */ #include "qemu.h" #include #include #include #include "command.h" #include #include #include qemu::qemu(QString name, QString managerPath) { if(!QFile::exists(name)){ this->name = QDir::homePath() + "/Qemu/" + name; } else{ this->name = name; } this->managerPath = managerPath; //Command command = Command(); this->vboxVersion = Command().GetCommand("'" + managerPath + "qemu-system-i386' --version"); } int qemu::Create(QString type){ if(!QFile::exists(this->name)){ QDir dir(this->name); dir.mkpath(this->name); } return 0; } int qemu::CreateDisk(QString path, int size){ if(QFile::exists(path)){ return 0; } return system(("qemu-img create -f qcow2 '" + path + "' " + QString::number(size) + "M").toLatin1()); } int qemu::CreateDiskControl(QString controlName){ return 0; } int qemu::MountDisk(QString diskPath, QString controlName, int port, int device){ commandOption += "-drive 'file=" + diskPath + ",if=ide,index=" + QString::number(device) + "' "; return 0; } int qemu::MountISO(QString isoPath, QString controlName, int port, int device){ commandOption += "-drive 'media=cdrom,file=" + isoPath + ",if=ide,index=" + QString::number(device) + "' "; return 0; } int qemu::BootFirst(QString bootDrive){ commandOption += "-boot '" + bootDrive + "' "; return 0; } int qemu::SetNetBridge(QString netDriver){ return 0; } int qemu::SetCPU(int number, int cpuNum, int coreNum){ // commandOption += "-smp " + QString::number(number) + " "; // 调整调用方法 //qDebug() << number << " " << cpuNum << " " << coreNum; qDebug() << "Socket: " << cpuNum; qDebug() << "Core: " << coreNum; qDebug() << "Threads: " << number; commandOption += "-smp " + QString::number(number) + ",sockets=" + QString::number(cpuNum) + ",cores=" + QString::number(coreNum / cpuNum) + ",threads=" + QString::number(number / cpuNum / coreNum) + " "; return 0; } int qemu::SetMemory(int memory){ commandOption += "-m " + QString::number(memory) + "M "; return 0; } int qemu::SetRemote(bool setting){ return 0; } int qemu::SetRemoteConnectSetting(int port){ return 0; } int qemu::Start(bool unShown){ qDebug() << commandOption; if(Command().GetCommand("arch").replace("\n", "").replace(" ", "") == "x86_64"){ return system(("kvm -cpu host " + commandOption + " &").toLatin1()); } return system(("qemu-system-x86_64 -nic model=rtl8139 " + commandOption + " &").toLatin1()); } int qemu::Stop(){ system("killall qemu-system-x86_64 -9"); system("killall kvm -9"); return 0; } int qemu::Delete(){ return system(("rm -rfv '" + name + "'").toLatin1()); } int qemu::SetDisplayMemory(int memory){ return 0; } int qemu::InstallGuessAdditions(QString controlName, int port, int device){ return 0; } int qemu::EnabledAudio(){ commandOption += "-soundhw all "; return 0; } int qemu::EnabledClipboardMode(){ return 0; } int qemu::EnabledDraganddrop(){ return 0; } int qemu::ShareFile(QString name, QString path){ return 0; } int qemu::SetVBoxSVGA(){ return 0; } int qemu::SetMousePS2(){ return 0; } int qemu::SetKeyboardPS2(){ return 0; } int qemu::OpenUSB(){ return 0; } int qemu::EnabledUEFI(bool status){ if(!status){ return 0; } if(QFile::exists("/usr/share/qemu/OVMF.fd")){ commandOption += "--bios /usr/share/qemu/OVMF.fd "; return 0; } if(QFile::exists(QCoreApplication::applicationDirPath() + "/OVMF.fd")){ commandOption += "--bios '" + QCoreApplication::applicationDirPath() + "/OVMF.fd' "; return 0; } return 1; }