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 112 113 114 115 116 117 118 119
|
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
*
* 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 2 of the
* License.
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#ifndef __VALIDATION_MANAGER_H__
#define __VALIDATION_MANAGER_H__
#include "wbpublic_public_interface.h"
#include "grtpp.h"
#include "grts/structs.app.h"
#include "tree_model.h"
#include "refresh_ui.h"
#include <deque>
// Common tag names
#define CHECK_NAME "name"
#define CHECK_SYNTAX "syntax"
#define CHECK_EFFICIENCY "efficiency"
#define CHECK_LOGIC "logic"
namespace bec
{
class GRTManager;
class WBPUBLICBACKEND_PUBLIC_FUNC ValidationMessagesBE : public ListModel, public RefreshUI
{
public:
enum ValidationMessageColumns
{
Description = 1
};
ValidationMessagesBE();
void clear();
virtual bool get_field(const NodeId &node, ColumnId column, std::string &value);
virtual IconId get_field_icon(const NodeId &node, ColumnId column, IconSize size);
virtual void refresh() {}
virtual size_t count();
virtual int get_node_popup_items(const NodeId& node, MenuItemList& menu);
virtual void activate_node_popup_item(const NodeId &node, const std::string &name);
private:
void validation_message(const grt::Validator::Tag& tag, const grt::ObjectRef&, const std::string&, const int level);
IconId _error_icon;
IconId _warning_icon;
IconId _info_icon;
struct Message
{
Message(){}
Message(const std::string& message, const grt::ObjectRef& object, const grt::Validator::Tag& _tag)
:msg(message)
,obj(object)
,tag(_tag)
{}
std::string msg;
grt::ObjectRef obj;
grt::Validator::Tag tag;
};
typedef std::deque<Message> MessageList;
MessageList _errors;
MessageList _warnings;
static bool match_message(const Message& m, const grt::ObjectRef& obj, const grt::Validator::Tag& tag);
void remove_messages(MessageList* ml, const grt::ObjectRef& obj, const grt::Validator::Tag& tag);
};
class WBPUBLICBACKEND_PUBLIC_FUNC ValidationManager
{
public:
// const int parameter in MessageSignal is a grt::MessageType
typedef boost::signals2::signal<void (const grt::Validator::Tag&, const grt::ObjectRef&, const std::string&, const int)> MessageSignal;
static void scan(GRTManager* grtm);
static void register_validator(grt::GRT* grt, const std::string& type, grt::Validator* v);
static bool validate_instance(const grt::ObjectRef& obj, const grt::Validator::Tag& tag);
static MessageSignal* signal_notify();
static void message(const grt::Validator::Tag&, const grt::ObjectRef&, const std::string&, const int level);//level is grt::MessageType
static void clear();
private:
static bool is_validation_plugin(const app_PluginRef& plugin);
static MessageSignal* _signal_notify;
};
//------------------------------------------------------------------------------
inline bec::ValidationManager::MessageSignal* bec::ValidationManager::signal_notify()
{
if (!_signal_notify)
_signal_notify = new ValidationManager::MessageSignal;
return _signal_notify;
}
}
#endif
|