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
|
/*
* This file is part of Poedit (https://poedit.net)
*
* Copyright (C) 2023-2026 Vaclav Slavik
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
*/
#ifndef Poedit_catalog_json_h
#define Poedit_catalog_json_h
#include "catalog.h"
#include "errors.h"
#include "json.h"
#include <vector>
class JSONFileException : public Exception
{
public:
JSONFileException(const wxString& what) : Exception(what) {}
};
class JSONCatalogItem : public CatalogItem
{
public:
typedef ordered_json json_t;
JSONCatalogItem(int id, json_t& node) : m_node(node)
{
m_id = id;
m_isFuzzy = false; // not supported
}
JSONCatalogItem(const CatalogItem&) = delete;
wxArrayString GetReferences() const override { return wxArrayString(); }
protected:
json_t& m_node;
};
class JSONCatalog : public Catalog
{
public:
typedef ordered_json json_t;
~JSONCatalog() {}
bool HasCapability(Cap cap) const override;
static bool CanLoadFile(const wxString& extension);
wxString GetPreferredExtension() const override { return "json"; }
static std::shared_ptr<JSONCatalog> Open(const wxString& filename);
bool Save(const wxString& filename, bool save_mo,
ValidationResults& validation_results,
CompilationStatus& mo_compilation_status) override;
std::string SaveToBuffer() override;
Language GetLanguage() const override { return m_language; }
void SetLanguage(Language lang) override { m_language = lang; }
protected:
JSONCatalog(json_t&& doc, Type type = Type::JSON) : Catalog(type), m_doc(std::move(doc)) {}
virtual void Parse() = 0;
private:
static std::shared_ptr<JSONCatalog> CreateForJSON(json_t&& doc, const std::string& extension);
protected:
json_t m_doc;
Language m_language;
struct FormattingRules
{
int indent;
char indent_char;
bool dos_line_endings;
};
FormattingRules m_formatting;
};
#endif // Poedit_catalog_json_h
|