Some checks failed
CodeQL Code Scanning / CodeQL (push) Has been cancelled
Build Application / Build Debug (push) Has been cancelled
Nix / Build (${{ matrix.system }}) (macos-13, x86_64-darwin) (push) Has been cancelled
Nix / Build (${{ matrix.system }}) (macos-14, aarch64-darwin) (push) Has been cancelled
Nix / Build (${{ matrix.system }}) (ubuntu-22.04, x86_64-linux) (push) Has been cancelled
Nix / Build (${{ matrix.system }}) (ubuntu-22.04-arm, aarch64-linux) (push) Has been cancelled
Update Flake Lockfile / update-flake (push) Has been cancelled
68 lines
2.6 KiB
C++
Executable File
68 lines
2.6 KiB
C++
Executable File
// SPDX-License-Identifier: GPL-3.0-only
|
|
/*
|
|
* Fjord Launcher - Minecraft Launcher
|
|
* Copyright (C) 2024 Evan Goode <mail@evangoo.de>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, version 3.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <map>
|
|
#include <optional>
|
|
#include <string>
|
|
|
|
constexpr const int MANIFEST_MAX_LINE_LENGTH = 512;
|
|
using lbuf_t = char[MANIFEST_MAX_LINE_LENGTH];
|
|
|
|
using manifest_section_t = std::map<std::string, std::string>;
|
|
using manifest_sections_t = std::map<std::string, manifest_section_t>;
|
|
|
|
class Manifest {
|
|
public:
|
|
Manifest(std::istream& is);
|
|
Manifest(std::istream& is, const std::string& jar_filename);
|
|
Manifest(const Manifest& other)
|
|
{
|
|
m_main_section = other.m_main_section;
|
|
m_individual_sections = other.m_individual_sections;
|
|
}
|
|
manifest_section_t& getMainAttributes() { return m_main_section; }
|
|
manifest_sections_t& getEntries() { return m_individual_sections; }
|
|
manifest_section_t& getAttributes(const std::string& name) { return m_individual_sections.at(name); }
|
|
Manifest& operator=(const Manifest& other)
|
|
{
|
|
if (this == &other) {
|
|
return *this;
|
|
}
|
|
m_main_section = other.m_main_section;
|
|
m_individual_sections = other.m_individual_sections;
|
|
return *this;
|
|
}
|
|
bool operator==(const Manifest& other) const
|
|
{
|
|
return m_main_section == other.m_main_section && m_individual_sections == other.m_individual_sections;
|
|
}
|
|
|
|
private:
|
|
static std::string getErrorPosition(const std::optional<std::string>& filename, int line_number);
|
|
static std::optional<std::string> parseName(lbuf_t lbuf, std::size_t len);
|
|
static bool isValidName(const std::string& name);
|
|
int readAttributes(manifest_section_t& section,
|
|
std::istream& is,
|
|
lbuf_t lbuf,
|
|
const std::optional<std::string>& jar_filename,
|
|
int line_number);
|
|
void read(std::istream& is, const std::optional<std::string>& jar_filename);
|
|
manifest_section_t m_main_section;
|
|
manifest_sections_t m_individual_sections;
|
|
};
|