mirror of https://github.com/BOINC/boinc.git
55 lines
2.1 KiB
C++
55 lines
2.1 KiB
C++
// This file is part of BOINC.
|
|
// https://boinc.berkeley.edu
|
|
// Copyright (C) 2024 University of California
|
|
//
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
// under the terms of the GNU Lesser General Public License
|
|
// as published by the Free Software Foundation,
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
//
|
|
// BOINC is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
// See the GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#include "DialogTable.h"
|
|
#include "ControlTable.h"
|
|
#include "Generator.h"
|
|
|
|
DialogTable::DialogTable(const nlohmann::json& json,
|
|
const InstallerStrings& installerStrings) {
|
|
std::cout << "Loading DialogTable..." << std::endl;
|
|
|
|
for (const auto& dialog : json) {
|
|
dialogs.emplace_back(dialog, installerStrings);
|
|
}
|
|
}
|
|
|
|
bool DialogTable::generate(MSIHANDLE hDatabase) {
|
|
if (!ControlTable(dialogs).generate(hDatabase)) {
|
|
std::cerr << "Failed to generate ControlTable" << std::endl;
|
|
return false;
|
|
}
|
|
|
|
std::cout << "Generating DialogsTable..." << std::endl;
|
|
|
|
const auto sql_create = "CREATE TABLE `Dialog` "
|
|
"(`Dialog` CHAR(72) NOT NULL, `HCentering` SHORT NOT NULL, "
|
|
"`VCentering` SHORT NOT NULL, `Width` SHORT NOT NULL, "
|
|
"`Height` SHORT NOT NULL, `Attributes` LONG, "
|
|
"`Title` LONGCHAR LOCALIZABLE, `Control_First` CHAR(50) NOT NULL, "
|
|
"`Control_Default` CHAR(50), `Control_Cancel` CHAR(50) "
|
|
"PRIMARY KEY `Dialog`)";
|
|
const auto sql_insert = "INSERT INTO `Dialog` (`Dialog`, `HCentering`, "
|
|
"`VCentering`, `Width`, `Height`, `Attributes`, `Title`, "
|
|
"`Control_First`, `Control_Default`, `Control_Cancel`) "
|
|
"VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)";
|
|
|
|
return Generator::generate(hDatabase, sql_create, sql_insert, dialogs);
|
|
}
|
|
|
|
|