Improve validation for the command_endpoint attribute

fixes #12432
This commit is contained in:
Gunnar Beutner 2016-08-14 22:10:30 +02:00
parent 005e0f532f
commit 39ded04e1a
5 changed files with 29 additions and 1 deletions

View File

@ -51,6 +51,27 @@ Checkable::Checkable(void)
SetSchedulingOffset(Utility::Random());
}
void Checkable::OnAllConfigLoaded(void)
{
ObjectImpl<Checkable>::OnAllConfigLoaded();
Endpoint::Ptr endpoint = GetCommandEndpoint();
if (endpoint) {
Zone::Ptr checkableZone = static_pointer_cast<Zone>(GetZone());
if (!checkableZone)
checkableZone = Zone::GetLocalZone();
Zone::Ptr cmdZone = endpoint->GetZone();
if (cmdZone != checkableZone && cmdZone->GetParent() != checkableZone) {
BOOST_THROW_EXCEPTION(ValidationError(this, boost::assign::list_of("command_endpoint"),
"Command endpoint must be in zone '" + checkableZone->GetName() + "' or in a direct child zone thereof."));
}
}
}
void Checkable::Start(bool runtimeCreated)
{
double now = Utility::GetTime();

View File

@ -185,6 +185,7 @@ public:
protected:
virtual void Start(bool runtimeCreated) override;
virtual void OnAllConfigLoaded(void) override;
private:
mutable boost::mutex m_CheckableMutex;

View File

@ -44,6 +44,10 @@ enum AcknowledgementType
abstract class Checkable : CustomVarObject
{
load_after ApiListener;
load_after Endpoint;
load_after Zone;
[config, required, navigation] name(CheckCommand) check_command (CheckCommandRaw) {
navigate {{{
return CheckCommand::GetByName(GetCheckCommandRaw());

View File

@ -37,7 +37,7 @@ boost::signals2::signal<void(const Endpoint::Ptr&, const JsonRpcConnection::Ptr&
void Endpoint::OnAllConfigLoaded(void)
{
ConfigObject::OnConfigLoaded();
ObjectImpl<Endpoint>::OnAllConfigLoaded();
BOOST_FOREACH(const Zone::Ptr& zone, ConfigType::GetObjectsByType<Zone>()) {
const std::set<Endpoint::Ptr> members = zone->GetEndpoints();

View File

@ -30,6 +30,8 @@ REGISTER_TYPE(Zone);
void Zone::OnAllConfigLoaded(void)
{
ObjectImpl<Zone>::OnAllConfigLoaded();
m_Parent = Zone::GetByName(GetParentRaw());
Zone::Ptr zone = m_Parent;