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
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : plugindata.cpp
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// 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; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#include "plugindata.h"
PluginInfo::PluginInfo()
: m_flags(kNone)
{
}
PluginInfo::~PluginInfo() {}
void PluginInfo::FromJSON(const JSONElement& json)
{
m_name = json.namedObject("name").toString();
m_author = json.namedObject("author").toString();
m_description = json.namedObject("description").toString();
m_version = json.namedObject("version").toString();
m_flags = json.namedObject("flags").toSize_t();
}
JSONElement PluginInfo::ToJSON() const
{
JSONElement e = JSONElement::createObject();
e.addProperty("name", m_name);
e.addProperty("author", m_author);
e.addProperty("description", m_description);
e.addProperty("version", m_version);
e.addProperty("flags", m_flags);
return e;
}
//-------------------------------------------
// PluginConfig
//-------------------------------------------
PluginInfoArray::PluginInfoArray()
: clConfigItem("codelite-plugins")
{
}
PluginInfoArray::~PluginInfoArray() {}
void PluginInfoArray::DisablePugins(const wxArrayString& plugins) { m_disabledPlugins = plugins; }
bool PluginInfoArray::CanLoad(const PluginInfo& plugin) const
{
if(m_disabledPlugins.Index(plugin.GetName()) != wxNOT_FOUND) {
// If the plugin is in the "disabled plugins" list - return false
return false;
}
return true;
}
void PluginInfoArray::FromJSON(const JSONElement& json)
{
m_disabledPlugins = json.namedObject("disabledPlugins").toArrayString();
m_plugins.clear();
JSONElement arr = json.namedObject("installed-plugins");
for(int i = 0; i < arr.arraySize(); ++i) {
PluginInfo pi;
pi.FromJSON(arr.arrayItem(i));
m_plugins.insert(std::make_pair(pi.GetName(), pi));
}
}
JSONElement PluginInfoArray::ToJSON() const
{
JSONElement el = JSONElement::createObject(GetName());
el.addProperty("disabledPlugins", m_disabledPlugins);
JSONElement arr = JSONElement::createArray("installed-plugins");
PluginInfo::PluginMap_t::const_iterator iter = m_plugins.begin();
for(; iter != m_plugins.end(); ++iter) {
arr.arrayAppend(iter->second.ToJSON());
}
el.append(arr);
return el;
}
void PluginInfoArray::AddPlugin(const PluginInfo& plugin)
{
if(m_plugins.count(plugin.GetName())) m_plugins.erase(plugin.GetName());
m_plugins.insert(std::make_pair(plugin.GetName(), plugin));
}
void PluginInfoArray::DisablePlugin(const wxString& plugin)
{
if(m_disabledPlugins.Index(plugin) == wxNOT_FOUND) m_disabledPlugins.Add(plugin);
}
|