KiCad PCB EDA Suite
|
#include "core/wx_stl_compat.h"
#include <map>
#include <json_common.h>
#include <core/json_serializers.h>
#include <optional>
#include <string>
#include <tuple>
#include <vector>
#include <wx/string.h>
Go to the source code of this file.
Classes | |
struct | PCM_CONTACT |
struct | PACKAGE_VERSION |
< Package version metadata Package metadata More... | |
struct | PCM_PACKAGE |
Repository reference to a resource. More... | |
struct | PCM_RESOURCE_REFERENCE |
Repository metadata. More... | |
struct | PCM_REPOSITORY |
Package installation entry. More... | |
struct | PCM_INSTALLATION_ENTRY |
Typedefs | |
using | STRING_MAP = std::map< std::string, wxString > |
Enumerations | |
enum | PCM_PACKAGE_TYPE { PT_INVALID , PT_PLUGIN , PT_LIBRARY , PT_COLORTHEME } |
< Supported package types More... | |
enum | PCM_PACKAGE_VERSION_STATUS { PVS_INVALID , PVS_STABLE , PVS_TESTING , PVS_DEVELOPMENT , PVS_DEPRECATED } |
Functions | |
NLOHMANN_JSON_SERIALIZE_ENUM (PCM_PACKAGE_TYPE, { { PT_INVALID, "invalid" }, { PT_PLUGIN, "plugin" }, { PT_LIBRARY, "library" }, { PT_COLORTHEME, "colortheme" }, }) NLOHMANN_JSON_SERIALIZE_ENUM(PCM_PACKAGE_VERSION_STATUS | |
void | from_json (const json &j, PACKAGE_VERSION &v) |
void | to_json (json &j, const PCM_PACKAGE &p) |
void | from_json (const json &j, PCM_PACKAGE &p) |
void | to_json (json &j, const PCM_RESOURCE_REFERENCE &r) |
void | from_json (const json &j, PCM_RESOURCE_REFERENCE &r) |
void | to_json (json &j, const PCM_REPOSITORY &r) |
void | from_json (const json &j, PCM_REPOSITORY &r) |
void | to_json (json &j, const PCM_INSTALLATION_ENTRY &e) |
void | from_json (const json &j, PCM_INSTALLATION_ENTRY &e) |
using STRING_MAP = std::map<std::string, wxString> |
Definition at line 36 of file pcm_data.h.
enum PCM_PACKAGE_TYPE |
< Supported package types
Enumerator | |
---|---|
PT_INVALID | |
PT_PLUGIN | |
PT_LIBRARY | |
PT_COLORTHEME |
Definition at line 41 of file pcm_data.h.
Enumerator | |
---|---|
PVS_INVALID | |
PVS_STABLE | |
PVS_TESTING | |
PVS_DEVELOPMENT | |
PVS_DEPRECATED |
Definition at line 51 of file pcm_data.h.
void from_json | ( | const json & | j, |
PACKAGE_VERSION & | v | ||
) |
Definition at line 68 of file pcm_data.cpp.
References PACKAGE_VERSION::download_sha256, PACKAGE_VERSION::download_size, PACKAGE_VERSION::download_url, PACKAGE_VERSION::install_size, PACKAGE_VERSION::keep_on_update, PACKAGE_VERSION::kicad_version, PACKAGE_VERSION::kicad_version_max, PACKAGE_VERSION::platforms, PACKAGE_VERSION::status, to_optional(), PACKAGE_VERSION::version, and PACKAGE_VERSION::version_epoch.
void from_json | ( | const json & | j, |
PCM_INSTALLATION_ENTRY & | e | ||
) |
void from_json | ( | const json & | j, |
PCM_PACKAGE & | p | ||
) |
Definition at line 112 of file pcm_data.cpp.
References PCM_PACKAGE::author, PCM_PACKAGE::description, PCM_PACKAGE::description_full, PCM_PACKAGE::identifier, PCM_PACKAGE::keep_on_update, PCM_PACKAGE::license, PCM_PACKAGE::maintainer, PCM_PACKAGE::name, PCM_PACKAGE::resources, PCM_PACKAGE::tags, to_optional(), PCM_PACKAGE::type, and PCM_PACKAGE::versions.
void from_json | ( | const json & | j, |
PCM_REPOSITORY & | r | ||
) |
Definition at line 167 of file pcm_data.cpp.
References PCM_REPOSITORY::maintainer, PCM_REPOSITORY::manifests, PCM_REPOSITORY::name, PCM_REPOSITORY::packages, PCM_REPOSITORY::resources, and to_optional().
void from_json | ( | const json & | j, |
PCM_RESOURCE_REFERENCE & | r | ||
) |
Definition at line 143 of file pcm_data.cpp.
References PCM_RESOURCE_REFERENCE::sha256, to_optional(), PCM_RESOURCE_REFERENCE::update_timestamp, and PCM_RESOURCE_REFERENCE::url.
NLOHMANN_JSON_SERIALIZE_ENUM | ( | PCM_PACKAGE_TYPE | , |
{ { PT_INVALID, "invalid" }, { PT_PLUGIN, "plugin" }, { PT_LIBRARY, "library" }, { PT_COLORTHEME, "colortheme" }, } | |||
) |
References PT_COLORTHEME, PT_INVALID, PT_LIBRARY, and PT_PLUGIN.
void to_json | ( | json & | j, |
const PCM_INSTALLATION_ENTRY & | e | ||
) |
void to_json | ( | json & | j, |
const PCM_PACKAGE & | p | ||
) |
Definition at line 89 of file pcm_data.cpp.
References PCM_PACKAGE::author, PCM_PACKAGE::description, PCM_PACKAGE::description_full, PCM_PACKAGE::identifier, PCM_PACKAGE::keep_on_update, PCM_PACKAGE::license, PCM_PACKAGE::maintainer, PCM_PACKAGE::name, PCM_PACKAGE::resources, PCM_PACKAGE::tags, PCM_PACKAGE::type, and PCM_PACKAGE::versions.
void to_json | ( | json & | j, |
const PCM_REPOSITORY & | r | ||
) |
Definition at line 152 of file pcm_data.cpp.
References PCM_REPOSITORY::maintainer, PCM_REPOSITORY::manifests, PCM_REPOSITORY::name, PCM_REPOSITORY::packages, and PCM_REPOSITORY::resources.
void to_json | ( | json & | j, |
const PCM_RESOURCE_REFERENCE & | r | ||
) |
Definition at line 134 of file pcm_data.cpp.
References PCM_RESOURCE_REFERENCE::sha256, PCM_RESOURCE_REFERENCE::update_timestamp, and PCM_RESOURCE_REFERENCE::url.