1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:17:35 +00:00

ConfigServer+LibConfig: Add way for clients to listen for config changes

This patch adds a Config::Listener abstract class that anyone can
inherit from and receive notifications when configuration values change.

We don't yet monitor file system changes, so these only work for changes
made by ConfigServer itself.

In order to receive these notifications, clients must monitor the domain
by calling monitor_domain(). Only pledged domains can be monitored.

Note that the client initiating the change does not get notified.
This commit is contained in:
Andreas Kling 2021-08-26 19:05:50 +02:00
parent 9509f2ff87
commit edf7843409
9 changed files with 188 additions and 15 deletions

View file

@ -22,6 +22,7 @@ class Client final
public:
void pledge_domains(Vector<String> const&);
void monitor_domain(String const&);
String read_string(StringView domain, StringView group, StringView key, StringView fallback);
i32 read_i32(StringView domain, StringView group, StringView key, i32 fallback);
@ -38,6 +39,10 @@ private:
: IPC::ServerConnection<ConfigClientEndpoint, ConfigServerEndpoint>(*this, "/tmp/portal/config")
{
}
void notify_changed_string_value(String const& domain, String const& group, String const& key, String const& value) override;
void notify_changed_i32_value(String const& domain, String const& group, String const& key, i32 value) override;
void notify_changed_bool_value(String const& domain, String const& group, String const& key, bool value) override;
};
inline String read_string(StringView domain, StringView group, StringView key, StringView fallback = {})
@ -80,4 +85,9 @@ inline void pledge_domains(String const& domains)
Client::the().pledge_domains({ domains });
}
inline void monitor_domain(String const& domain)
{
Client::the().monitor_domain(domain);
}
}