mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02:00
Apparently there was a reason for making the members of generated classes atomic. However, this was only done for some types, others were still accessed using non-atomic operations. For members of type T::Ptr (i.e. intrusive_ptr<T>), this can result in a double free when multiple threads access the same variable and at least one of them writes to the variable. This commit makes use of std::atomic<T> for more T (it removes the additional constraint sizeof(T) <= sizeof(void*)) and uses a type including a mutex for load and store operations as a fallback.
72 lines
1.5 KiB
Plaintext
72 lines
1.5 KiB
Plaintext
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
|
|
|
#include "icinga/checkable.hpp"
|
|
#include "icinga/host.hpp"
|
|
#include "icinga/icingaapplication.hpp"
|
|
#include "icinga/customvarobject.hpp"
|
|
#impl_include "icinga/servicegroup.hpp"
|
|
|
|
library icinga;
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
code {{{
|
|
class ServiceNameComposer : public NameComposer
|
|
{
|
|
public:
|
|
virtual String MakeName(const String& shortName, const Object::Ptr& context) const;
|
|
virtual Dictionary::Ptr ParseName(const String& name) const;
|
|
};
|
|
}}}
|
|
|
|
class Service : Checkable < ServiceNameComposer
|
|
{
|
|
load_after ApiListener;
|
|
load_after Endpoint;
|
|
load_after Host;
|
|
load_after Zone;
|
|
|
|
[config, no_user_modify, required, signal_with_old_value] array(name(ServiceGroup)) groups {
|
|
default {{{ return new Array(); }}}
|
|
};
|
|
|
|
[config] String display_name {
|
|
get {{{
|
|
String displayName = m_DisplayName.load();
|
|
if (displayName.IsEmpty())
|
|
return GetShortName();
|
|
else
|
|
return displayName;
|
|
}}}
|
|
};
|
|
[config, required] name(Host) host_name;
|
|
[no_storage, navigation] Host::Ptr host {
|
|
get;
|
|
navigate {{{
|
|
return GetHost();
|
|
}}}
|
|
};
|
|
[enum, no_storage] ServiceState "state" {
|
|
get {{{
|
|
return GetStateRaw();
|
|
}}}
|
|
};
|
|
[enum, no_storage] ServiceState last_state {
|
|
get {{{
|
|
return GetLastStateRaw();
|
|
}}}
|
|
};
|
|
[enum, no_storage] ServiceState last_hard_state {
|
|
get {{{
|
|
return GetLastHardStateRaw();
|
|
}}}
|
|
};
|
|
[state] Timestamp last_state_ok (LastStateOK);
|
|
[state] Timestamp last_state_warning;
|
|
[state] Timestamp last_state_critical;
|
|
[state] Timestamp last_state_unknown;
|
|
};
|
|
|
|
}
|