summaryrefslogtreecommitdiffstats
path: root/rbutil/rbutilqt/base/serverinfo.cpp
blob: 5a0719f37551d5fdd7bec7e89d68311b36ee5bc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 *
 *   Copyright (C) 2010 by Dominik Wenger
 *
 * All files in this archive are subject to the GNU General Public License.
 * See the file COPYING in the source tree root for full license agreement.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/

#include "serverinfo.h"
#include "rbsettings.h"
#include "systeminfo.h"
#include "Logger.h"

// server infos
const static struct {
    ServerInfo::ServerInfos info;
    const char* name;
    const char* def;
} ServerInfoList[] = {
    { ServerInfo::CurReleaseVersion,    ":platform:/releaseversion", "" },
    { ServerInfo::CurReleaseUrl,        ":platform:/releaseurl",     "" },
    { ServerInfo::RelCandidateVersion,  ":platform:/rcversion",      "" },
    { ServerInfo::RelCandidateUrl,      ":platform:/rcurl",          "" },
    { ServerInfo::CurStatus,            ":platform:/status",         "Unknown" },
    { ServerInfo::ManualPdfUrl,         ":platform:/manual_pdf",     "" },
    { ServerInfo::ManualHtmlUrl,        ":platform:/manual_html",    "" },
    { ServerInfo::ManualZipUrl,         ":platform:/manual_zip",     "" },
    { ServerInfo::BleedingRevision,     "bleedingrev",               "" },
    { ServerInfo::BleedingDate,         "bleedingdate",              "" },
    { ServerInfo::CurDevelUrl,          ":platform:/develurl",       "" },
};

QMap<QString, QVariant> ServerInfo::serverInfos;

void ServerInfo::readBuildInfo(QString file)
{
    QString releaseBaseUrl = SystemInfo::value(SystemInfo::ReleaseUrl).toString();
    QString develBaseUrl = SystemInfo::value(SystemInfo::BleedingUrl).toString();
    QString manualBaseUrl = SystemInfo::value(SystemInfo::ManualUrl).toString();

    QSettings info(file, QSettings::IniFormat);

    QString developmentRevision = info.value("bleeding/rev").toString();
    setPlatformValue(ServerInfo::BleedingRevision, "", developmentRevision);
    QDateTime date = QDateTime::fromString(info.value("bleeding/timestamp").toString(), "yyyyMMddThhmmssZ");
    setPlatformValue(ServerInfo::BleedingDate, "", date.toString(Qt::ISODate));

    info.beginGroup("release");
    QStringList releasekeys = info.allKeys();
    info.endGroup();
    info.beginGroup("release-candidate");
    QStringList rckeys = info.allKeys();
    info.endGroup();

    // get base platforms, handle variants with platforms in the loop
    QStringList platforms = SystemInfo::platforms(SystemInfo::PlatformBaseDisabled);
    for(int i = 0; i < platforms.size(); i++)
    {
        // check if there are rbutil-variants of the current platform and handle
        // them the same time.
        QStringList variants;
        variants = SystemInfo::platforms(SystemInfo::PlatformVariantDisabled, platforms.at(i));
        QString releaseVersion;
        QString releaseUrl;
        QString relCandidateVersion;
        QString relCandidateUrl;
        // support two formats for "release" sections:
        // - <target>=<version>. In this case the URL is constructed.
        // - <target>=<version>,<url>.
        info.beginGroup("release");
        if(releasekeys.contains(platforms.at(i))) {
            QStringList entry = info.value(platforms.at(i)).toStringList();
            releaseVersion = entry.at(0);
            if(entry.size() > 1) {
                releaseUrl = entry.at(1);
            }
            else if(!releaseVersion.isEmpty()) {
                // construct release download URL
                releaseUrl = releaseBaseUrl;
                releaseUrl.replace("%MODEL%", platforms.at(i));
                releaseUrl.replace("%RELVERSION%", releaseVersion);
            }
        }
        info.endGroup();
        // "release-candidate" section currently only support the 2nd format.
        info.beginGroup("release-candidate");
        if(rckeys.contains(platforms.at(i))) {
            QStringList entry = info.value(platforms.at(i)).toStringList();
            if(entry.size() > 1) {
                relCandidateVersion = entry.at(0);
                relCandidateUrl = entry.at(1);
            }
        }
        info.endGroup();

        // "bleeding" section (development) does not provide individual
        // information but only a global revision value.
        QString develUrl = develBaseUrl;
        develUrl.replace("%MODEL%", platforms.at(i));
        develUrl.replace("%RELVERSION%", developmentRevision);

        info.beginGroup("status");
        QString status = tr("Unknown");
        switch(info.value(platforms.at(i), -1).toInt())
        {
            case 0:
                status = tr("Stable (Retired)");
                break;
            case 1:
                status = tr("Unusable");
                break;
            case 2:
                status = tr("Unstable");
                break;
            case 3:
                status = tr("Stable");
                break;
            default:
                break;
        }
        info.endGroup();

        // manual URLs
        QString manualPdfUrl = manualBaseUrl;
        QString manualHtmlUrl = manualBaseUrl;
        QString manualZipUrl = manualBaseUrl;

        QString buildservermodel = SystemInfo::platformValue(
                SystemInfo::BuildserverModel, platforms.at(i)).toString();
        QString modelman = SystemInfo::platformValue(
                SystemInfo::Manual, platforms.at(i)).toString();
        QString manualBaseName = "rockbox-";

        if(modelman.isEmpty()) manualBaseName += buildservermodel;
        else manualBaseName += modelman;

        manualPdfUrl.replace("%EXTENSION%", "pdf");
        manualPdfUrl.replace("%MANUALBASENAME%", manualBaseName);
        manualHtmlUrl.replace("%EXTENSION%", "html");
        manualHtmlUrl.replace("%MANUALBASENAME%", manualBaseName + "/rockbox-build");
        manualZipUrl.replace("%EXTENSION%", "zip");
        manualZipUrl.replace("%MANUALBASENAME%", manualBaseName + "-html");

        // set variants (if any)
        for(int j = 0; j < variants.size(); ++j) {
            setPlatformValue(ServerInfo::CurStatus, variants.at(j), status);
            if(!releaseUrl.isEmpty()) {
                setPlatformValue(ServerInfo::CurReleaseVersion, variants.at(j), releaseVersion);
                setPlatformValue(ServerInfo::CurReleaseUrl, variants.at(j), releaseUrl);
            }
            if(!relCandidateUrl.isEmpty()) {
                setPlatformValue(ServerInfo::RelCandidateVersion, variants.at(j), relCandidateVersion);
                setPlatformValue(ServerInfo::RelCandidateUrl, variants.at(j), relCandidateUrl);
            }
            setPlatformValue(ServerInfo::CurDevelUrl, variants.at(j), develUrl);

            setPlatformValue(ServerInfo::ManualPdfUrl, variants.at(j), manualPdfUrl);
            setPlatformValue(ServerInfo::ManualHtmlUrl, variants.at(j), manualHtmlUrl);
            setPlatformValue(ServerInfo::ManualZipUrl, variants.at(j), manualZipUrl);
        }
    }
}


void ServerInfo::setPlatformValue(enum ServerInfos info, QString platform, QVariant value)
{
    // locate setting item
    int i = 0;
    while(ServerInfoList[i].info != info)
        i++;

    QString s = ServerInfoList[i].name;
    s.replace(":platform:", platform);
    serverInfos.insert(s, value);
    LOG_INFO() << "SET:" << s << serverInfos.value(s).toString();
}

QVariant ServerInfo::platformValue(enum ServerInfos info, QString platform)
{
    // locate setting item
    int i = 0;
    while(ServerInfoList[i].info != info)
        i++;

    if(platform.isEmpty())
        platform = RbSettings::value(RbSettings::CurrentPlatform).toString();

    QString s = ServerInfoList[i].name;
    s.replace(":platform:", platform);
    QString d = ServerInfoList[i].def;
    d.replace(":platform:", platform);
    LOG_INFO() << "GET:" << s << serverInfos.value(s, d).toString();
    return serverInfos.value(s, d);
}