mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 05:05:20 -05:00
rbutil: split RbSettings. use Stable/unstable status from server.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24331 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
7fe60537d4
commit
6128bd14e9
18 changed files with 620 additions and 409 deletions
|
|
@ -36,6 +36,8 @@
|
|||
#include "system.h"
|
||||
#include "systrace.h"
|
||||
#include "rbsettings.h"
|
||||
#include "serverinfo.h"
|
||||
#include "systeminfo.h"
|
||||
|
||||
#include "progressloggerinterface.h"
|
||||
|
||||
|
|
@ -179,7 +181,7 @@ void RbUtilQt::downloadInfo()
|
|||
ui.statusbar->showMessage(tr("Downloading build information, please wait ..."));
|
||||
qDebug() << "[RbUtil] downloading build info";
|
||||
daily->setFile(&buildInfo);
|
||||
daily->getFile(QUrl(RbSettings::value(RbSettings::ServerConfUrl).toString()));
|
||||
daily->getFile(QUrl(SystemInfo::value(SystemInfo::ServerConfUrl).toString()));
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -194,30 +196,10 @@ void RbUtilQt::downloadDone(bool error)
|
|||
}
|
||||
qDebug() << "[RbUtil] network status:" << daily->error();
|
||||
|
||||
// read info into settings object
|
||||
// read info into ServerInfo object
|
||||
buildInfo.open();
|
||||
QSettings info(buildInfo.fileName(), QSettings::IniFormat, this);
|
||||
ServerInfo::readBuildInfo(buildInfo.fileName());
|
||||
buildInfo.close();
|
||||
RbSettings::setValue(RbSettings::DailyRevision,info.value("dailies/rev"));
|
||||
QDate date = QDate::fromString(info.value("dailies/date").toString(), "yyyyMMdd");
|
||||
RbSettings::setValue(RbSettings::DailyDate,date.toString());
|
||||
|
||||
info.beginGroup("release");
|
||||
QStringList keys = info.allKeys();
|
||||
for(int i=0; i < keys.size(); i++)
|
||||
{
|
||||
RbSettings::setPlatformValue(keys[i],RbSettings::CurReleaseVersion,info.value(keys[i]));
|
||||
}
|
||||
info.endGroup();
|
||||
|
||||
info.beginGroup("status");
|
||||
keys = info.allKeys();
|
||||
for(int i=0; i < keys.size(); i++)
|
||||
{
|
||||
RbSettings::setPlatformValue(keys[i],RbSettings::CurStatus,info.value(keys[i]));
|
||||
}
|
||||
info.endGroup();
|
||||
|
||||
|
||||
//start bleeding info download
|
||||
bleeding = new HttpGet(this);
|
||||
|
|
@ -227,7 +209,7 @@ void RbUtilQt::downloadDone(bool error)
|
|||
if(RbSettings::value(RbSettings::CacheOffline).toBool())
|
||||
bleeding->setCache(true);
|
||||
bleeding->setFile(&bleedingInfo);
|
||||
bleeding->getFile(QUrl(RbSettings::value(RbSettings::BleedingInfo).toString()));
|
||||
bleeding->getFile(QUrl(SystemInfo::value(SystemInfo::BleedingInfo).toString()));
|
||||
ui.statusbar->showMessage(tr("Downloading build information, please wait ..."));
|
||||
|
||||
}
|
||||
|
|
@ -240,12 +222,9 @@ void RbUtilQt::downloadBleedingDone(bool error)
|
|||
}
|
||||
else {
|
||||
bleedingInfo.open();
|
||||
QSettings info(bleedingInfo.fileName(), QSettings::IniFormat, this);
|
||||
ServerInfo::readBleedingInfo(bleedingInfo.fileName());
|
||||
bleedingInfo.close();
|
||||
RbSettings::setValue(RbSettings::BleedingRevision,info.value("bleeding/rev"));
|
||||
QDateTime date = QDateTime::fromString(info.value("bleeding/timestamp").toString(), "yyyyMMddThhmmssZ");
|
||||
RbSettings::setValue(RbSettings::BleedingDate,date.toString());
|
||||
|
||||
|
||||
ui.statusbar->showMessage(tr("Download build information finished."), 5000);
|
||||
updateSettings();
|
||||
m_gotInfo = true;
|
||||
|
|
@ -361,14 +340,14 @@ void RbUtilQt::updateDevice()
|
|||
|
||||
/* Enable bootloader installation, if possible */
|
||||
bool bootloaderInstallable =
|
||||
RbSettings::value(RbSettings::CurBootloaderMethod) != "none";
|
||||
SystemInfo::value(SystemInfo::CurBootloaderMethod) != "none";
|
||||
ui.buttonBootloader->setEnabled(bootloaderInstallable);
|
||||
ui.labelBootloader->setEnabled(bootloaderInstallable);
|
||||
ui.actionInstall_Bootloader->setEnabled(bootloaderInstallable);
|
||||
|
||||
/* Enable bootloader uninstallation, if possible */
|
||||
bool bootloaderUninstallable = bootloaderInstallable &&
|
||||
RbSettings::value(RbSettings::CurBootloaderMethod) != "fwpatcher";
|
||||
SystemInfo::value(SystemInfo::CurBootloaderMethod) != "fwpatcher";
|
||||
ui.labelRemoveBootloader->setEnabled(bootloaderUninstallable);
|
||||
ui.buttonRemoveBootloader->setEnabled(bootloaderUninstallable);
|
||||
ui.actionRemove_bootloader->setEnabled(bootloaderUninstallable);
|
||||
|
|
@ -380,15 +359,16 @@ void RbUtilQt::updateDevice()
|
|||
|
||||
// displayed device info
|
||||
QString mountpoint = RbSettings::value(RbSettings::Mountpoint).toString();
|
||||
QString brand = RbSettings::value(RbSettings::CurBrand).toString();
|
||||
QString name = RbSettings::value(RbSettings::CurName).toString();
|
||||
QString brand = SystemInfo::value(SystemInfo::CurBrand).toString();
|
||||
QString name = SystemInfo::value(SystemInfo::CurName).toString() +
|
||||
" (" + ServerInfo::value(ServerInfo::CurStatus).toString() + ")";
|
||||
if(name.isEmpty()) name = "<none>";
|
||||
if(mountpoint.isEmpty()) mountpoint = "<invalid>";
|
||||
ui.labelDevice->setText(tr("<b>%1 %2</b> at <b>%3</b>")
|
||||
.arg(brand, name, QDir::toNativeSeparators(mountpoint)));
|
||||
|
||||
// hide quickstart buttons if no release available
|
||||
bool installable = !RbSettings::value(RbSettings::CurReleaseVersion).toString().isEmpty();
|
||||
bool installable = !ServerInfo::value(ServerInfo::CurReleaseVersion).toString().isEmpty();
|
||||
ui.buttonSmall->setEnabled(installable);
|
||||
ui.buttonComplete->setEnabled(installable);
|
||||
ui.actionSmall_Installation->setEnabled(installable);
|
||||
|
|
@ -400,15 +380,15 @@ void RbUtilQt::updateManual()
|
|||
{
|
||||
if(RbSettings::value(RbSettings::Platform) != "")
|
||||
{
|
||||
QString manual= RbSettings::value(RbSettings::CurManual).toString();
|
||||
QString manual= SystemInfo::value(SystemInfo::CurManual).toString();
|
||||
|
||||
if(manual == "")
|
||||
manual = "rockbox-" + RbSettings::value(RbSettings::Platform).toString();
|
||||
QString pdfmanual;
|
||||
pdfmanual = RbSettings::value(RbSettings::ManualUrl).toString()
|
||||
pdfmanual = SystemInfo::value(SystemInfo::ManualUrl).toString()
|
||||
+ "/" + manual + ".pdf";
|
||||
QString htmlmanual;
|
||||
htmlmanual = RbSettings::value(RbSettings::ManualUrl).toString()
|
||||
htmlmanual = SystemInfo::value(SystemInfo::ManualUrl).toString()
|
||||
+ "/" + manual + "/rockbox-build.html";
|
||||
ui.labelPdfManual->setText(tr("<a href='%1'>PDF Manual</a>")
|
||||
.arg(pdfmanual));
|
||||
|
|
@ -431,7 +411,7 @@ void RbUtilQt::completeInstall()
|
|||
"This will install Rockbox %1. To install the most recent "
|
||||
"development build available press \"Cancel\" and "
|
||||
"use the \"Installation\" tab.")
|
||||
.arg(RbSettings::value(RbSettings::CurReleaseVersion).toString()),
|
||||
.arg(ServerInfo::value(ServerInfo::CurReleaseVersion).toString()),
|
||||
QMessageBox::Ok | QMessageBox::Cancel) != QMessageBox::Ok)
|
||||
return;
|
||||
// create logger
|
||||
|
|
@ -489,7 +469,7 @@ void RbUtilQt::smallInstall()
|
|||
"This will install Rockbox %1. To install the most recent "
|
||||
"development build available press \"Cancel\" and "
|
||||
"use the \"Installation\" tab.")
|
||||
.arg(RbSettings::value(RbSettings::CurReleaseVersion).toString()),
|
||||
.arg(ServerInfo::value(ServerInfo::CurReleaseVersion).toString()),
|
||||
QMessageBox::Ok | QMessageBox::Cancel) != QMessageBox::Ok)
|
||||
return;
|
||||
|
||||
|
|
@ -510,7 +490,7 @@ bool RbUtilQt::smallInstallInner()
|
|||
return true;
|
||||
}
|
||||
// Bootloader
|
||||
if(RbSettings::value(RbSettings::CurBootloaderMethod) != "none")
|
||||
if(SystemInfo::value(SystemInfo::CurBootloaderMethod) != "none")
|
||||
{
|
||||
m_error = false;
|
||||
m_installed = false;
|
||||
|
|
@ -561,9 +541,9 @@ void RbUtilQt::installBtn()
|
|||
|
||||
bool RbUtilQt::installAuto()
|
||||
{
|
||||
QString file = RbSettings::value(RbSettings::ReleaseUrl).toString();
|
||||
file.replace("%MODEL%", RbSettings::value(RbSettings::CurBuildserverModel).toString());
|
||||
file.replace("%RELVERSION%", RbSettings::value(RbSettings::CurReleaseVersion).toString());
|
||||
QString file = SystemInfo::value(SystemInfo::ReleaseUrl).toString();
|
||||
file.replace("%MODEL%", SystemInfo::value(SystemInfo::CurBuildserverModel).toString());
|
||||
file.replace("%RELVERSION%", ServerInfo::value(ServerInfo::CurReleaseVersion).toString());
|
||||
|
||||
// check installed Version and Target
|
||||
QString warning = check(false);
|
||||
|
|
@ -620,7 +600,7 @@ bool RbUtilQt::installAuto()
|
|||
ZipInstaller* installer = new ZipInstaller(this);
|
||||
installer->setUrl(file);
|
||||
installer->setLogSection("Rockbox (Base)");
|
||||
installer->setLogVersion(RbSettings::value(RbSettings::CurReleaseVersion).toString());
|
||||
installer->setLogVersion(ServerInfo::value(ServerInfo::CurReleaseVersion).toString());
|
||||
if(!RbSettings::value(RbSettings::CacheDisabled).toBool())
|
||||
installer->setCache(true);
|
||||
installer->setMountPoint(RbSettings::value(RbSettings::Mountpoint).toString());
|
||||
|
|
@ -668,7 +648,7 @@ void RbUtilQt::installBootloader()
|
|||
|
||||
// create installer
|
||||
BootloaderInstallBase *bl;
|
||||
QString type = RbSettings::value(RbSettings::CurBootloaderMethod).toString();
|
||||
QString type = SystemInfo::value(SystemInfo::CurBootloaderMethod).toString();
|
||||
if(type == "mi4") {
|
||||
bl = new BootloaderInstallMi4(this);
|
||||
}
|
||||
|
|
@ -700,15 +680,15 @@ void RbUtilQt::installBootloader()
|
|||
}
|
||||
|
||||
// set bootloader filename. Do this now as installed() needs it.
|
||||
QStringList blfile = RbSettings::value(RbSettings::CurBootloaderFile).toStringList();
|
||||
QStringList blfile = SystemInfo::value(SystemInfo::CurBootloaderFile).toStringList();
|
||||
QStringList blfilepath;
|
||||
for(int a = 0; a < blfile.size(); a++) {
|
||||
blfilepath.append(RbSettings::value(RbSettings::Mountpoint).toString()
|
||||
+ blfile.at(a));
|
||||
}
|
||||
bl->setBlFile(blfilepath);
|
||||
QUrl url(RbSettings::value(RbSettings::BootloaderUrl).toString()
|
||||
+ RbSettings::value(RbSettings::CurBootloaderName).toString());
|
||||
QUrl url(SystemInfo::value(SystemInfo::BootloaderUrl).toString()
|
||||
+ SystemInfo::value(SystemInfo::CurBootloaderName).toString());
|
||||
bl->setBlUrl(url);
|
||||
bl->setLogfile(RbSettings::value(RbSettings::Mountpoint).toString()
|
||||
+ "/.rockbox/rbutil.log");
|
||||
|
|
@ -734,7 +714,7 @@ void RbUtilQt::installBootloader()
|
|||
else if(bl->installed() == BootloaderInstallBase::BootloaderOther
|
||||
&& bl->capabilities() & BootloaderInstallBase::Backup)
|
||||
{
|
||||
QString targetFolder = RbSettings::value(RbSettings::CurPlatformName).toString()
|
||||
QString targetFolder = SystemInfo::value(SystemInfo::CurPlatformName).toString()
|
||||
+ " Firmware Backup";
|
||||
// remove invalid character(s)
|
||||
targetFolder.remove(QRegExp("[:/]"));
|
||||
|
|
@ -852,9 +832,9 @@ void RbUtilQt::installFonts()
|
|||
// create zip installer
|
||||
installer = new ZipInstaller(this);
|
||||
|
||||
installer->setUrl(RbSettings::value(RbSettings::FontUrl).toString());
|
||||
installer->setUrl(SystemInfo::value(SystemInfo::FontUrl).toString());
|
||||
installer->setLogSection("Fonts");
|
||||
installer->setLogVersion(RbSettings::value(RbSettings::DailyDate).toString());
|
||||
installer->setLogVersion(ServerInfo::value(ServerInfo::DailyDate).toString());
|
||||
installer->setMountPoint(RbSettings::value(RbSettings::Mountpoint).toString());
|
||||
if(!RbSettings::value(RbSettings::CacheDisabled).toBool())
|
||||
installer->setCache(true);
|
||||
|
|
@ -890,15 +870,15 @@ void RbUtilQt::installVoice()
|
|||
// create zip installer
|
||||
installer = new ZipInstaller(this);
|
||||
|
||||
QString voiceurl = RbSettings::value(RbSettings::VoiceUrl).toString();
|
||||
QString voiceurl = SystemInfo::value(SystemInfo::VoiceUrl).toString();
|
||||
|
||||
voiceurl += RbSettings::value(RbSettings::CurBuildserverModel).toString() + "-" +
|
||||
RbSettings::value(RbSettings::DailyDate).toString() + "-english.zip";
|
||||
voiceurl += SystemInfo::value(SystemInfo::CurBuildserverModel).toString() + "-" +
|
||||
ServerInfo::value(ServerInfo::DailyDate).toString() + "-english.zip";
|
||||
qDebug() << "[RbUtil] voicefile URL:" << voiceurl;
|
||||
|
||||
installer->setUrl(voiceurl);
|
||||
installer->setLogSection("Voice");
|
||||
installer->setLogVersion(RbSettings::value(RbSettings::DailyDate).toString());
|
||||
installer->setLogVersion(ServerInfo::value(ServerInfo::DailyDate).toString());
|
||||
installer->setMountPoint(RbSettings::value(RbSettings::Mountpoint).toString());
|
||||
if(!RbSettings::value(RbSettings::CacheDisabled).toBool())
|
||||
installer->setCache(true);
|
||||
|
|
@ -946,9 +926,9 @@ void RbUtilQt::installDoom()
|
|||
// create zip installer
|
||||
installer = new ZipInstaller(this);
|
||||
|
||||
installer->setUrl(RbSettings::value(RbSettings::DoomUrl).toString());
|
||||
installer->setUrl(SystemInfo::value(SystemInfo::DoomUrl).toString());
|
||||
installer->setLogSection("Game Addons");
|
||||
installer->setLogVersion(RbSettings::value(RbSettings::DailyDate).toString());
|
||||
installer->setLogVersion(ServerInfo::value(ServerInfo::DailyDate).toString());
|
||||
installer->setMountPoint(RbSettings::value(RbSettings::Mountpoint).toString());
|
||||
if(!RbSettings::value(RbSettings::CacheDisabled).toBool())
|
||||
installer->setCache(true);
|
||||
|
|
@ -973,8 +953,6 @@ void RbUtilQt::createTalkFiles(void)
|
|||
{
|
||||
if(chkConfig(true)) return;
|
||||
InstallTalkWindow *installWindow = new InstallTalkWindow(this);
|
||||
|
||||
connect(installWindow, SIGNAL(settingsUpdated()), this, SLOT(downloadInfo()));
|
||||
connect(installWindow, SIGNAL(settingsUpdated()), this, SLOT(updateSettings()));
|
||||
installWindow->show();
|
||||
|
||||
|
|
@ -985,7 +963,6 @@ void RbUtilQt::createVoiceFile(void)
|
|||
if(chkConfig(true)) return;
|
||||
CreateVoiceWindow *installWindow = new CreateVoiceWindow(this);
|
||||
|
||||
connect(installWindow, SIGNAL(settingsUpdated()), this, SLOT(downloadInfo()));
|
||||
connect(installWindow, SIGNAL(settingsUpdated()), this, SLOT(updateSettings()));
|
||||
installWindow->show();
|
||||
}
|
||||
|
|
@ -1013,7 +990,7 @@ void RbUtilQt::uninstallBootloader(void)
|
|||
|
||||
// create installer
|
||||
BootloaderInstallBase *bl;
|
||||
QString type = RbSettings::value(RbSettings::CurBootloaderMethod).toString();
|
||||
QString type = SystemInfo::value(SystemInfo::CurBootloaderMethod).toString();
|
||||
if(type == "mi4") {
|
||||
bl = new BootloaderInstallMi4(this);
|
||||
}
|
||||
|
|
@ -1035,7 +1012,7 @@ void RbUtilQt::uninstallBootloader(void)
|
|||
return;
|
||||
}
|
||||
|
||||
QStringList blfile = RbSettings::value(RbSettings::CurBootloaderFile).toStringList();
|
||||
QStringList blfile = SystemInfo::value(SystemInfo::CurBootloaderFile).toStringList();
|
||||
QStringList blfilepath;
|
||||
for(int a = 0; a < blfile.size(); a++) {
|
||||
blfilepath.append(RbSettings::value(RbSettings::Mountpoint).toString()
|
||||
|
|
@ -1063,11 +1040,11 @@ void RbUtilQt::downloadManual(void)
|
|||
QMessageBox::Yes | QMessageBox::No) != QMessageBox::Yes)
|
||||
return;
|
||||
|
||||
QString manual = RbSettings::value(RbSettings::CurManual).toString();
|
||||
QString manual = SystemInfo::value(SystemInfo::CurManual).toString();
|
||||
if(manual.isEmpty())
|
||||
manual = "rockbox-" + RbSettings::value(RbSettings::Platform).toString();
|
||||
|
||||
QString date = RbSettings::value(RbSettings::DailyDate).toString();
|
||||
QString date = ServerInfo::value(ServerInfo::DailyDate).toString();
|
||||
|
||||
QString manualurl;
|
||||
QString target;
|
||||
|
|
@ -1080,7 +1057,7 @@ void RbUtilQt::downloadManual(void)
|
|||
target = "/" + manual + "-" + date + "-html.zip";
|
||||
section = "Manual (HTML)";
|
||||
}
|
||||
manualurl = RbSettings::value(RbSettings::ManualUrl).toString() + "/" + target;
|
||||
manualurl = SystemInfo::value(SystemInfo::ManualUrl).toString() + "/" + target;
|
||||
qDebug() << "[RbUtil] Manual URL:" << manualurl;
|
||||
|
||||
ProgressLoggerGui* logger = new ProgressLoggerGui(this);
|
||||
|
|
@ -1243,7 +1220,7 @@ bool RbUtilQt::chkConfig(bool warn)
|
|||
|
||||
void RbUtilQt::checkUpdate(void)
|
||||
{
|
||||
QString url = RbSettings::value(RbSettings::RbutilUrl).toString();
|
||||
QString url = SystemInfo::value(SystemInfo::RbutilUrl).toString();
|
||||
#if defined(Q_OS_WIN32)
|
||||
url += "win32/";
|
||||
#elif defined(Q_OS_LINUX)
|
||||
|
|
@ -1308,7 +1285,7 @@ void RbUtilQt::downloadUpdateDone(bool error)
|
|||
// if we found something newer, display info
|
||||
if(newVersion != "")
|
||||
{
|
||||
QString url = RbSettings::value(RbSettings::RbutilUrl).toString();
|
||||
QString url = SystemInfo::value(SystemInfo::RbutilUrl).toString();
|
||||
#if defined(Q_OS_WIN32)
|
||||
url += "win32/";
|
||||
#elif defined(Q_OS_LINUX)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue