Client: make almost all attributes private

This commit is contained in:
Max Kellermann
2019-04-03 20:02:59 +02:00
parent 380f73c112
commit a9cb12b745
3 changed files with 28 additions and 13 deletions

View File

@@ -56,7 +56,6 @@ class Client final
Partition *partition;
public:
unsigned permission;
/** the uid of the client process, or -1 if unknown */
@@ -76,11 +75,14 @@ public:
/** idle flags that the client wants to receive */
unsigned idle_subscriptions;
public:
// TODO: make this attribute "private"
/**
* The tags this client is interested in.
*/
TagMask tag_mask = TagMask::All();
private:
/**
* A list of channel names this client is subscribed to.
*/
@@ -97,6 +99,7 @@ public:
*/
std::list<ClientMessage> messages;
public:
Client(EventLoop &loop, Partition &partition,
UniqueSocketDescriptor fd, int uid,
unsigned _permission,
@@ -175,11 +178,23 @@ public:
return subscriptions.find(channel_name) != subscriptions.end();
}
const auto &GetSubscriptions() const noexcept {
return subscriptions;
}
SubscribeResult Subscribe(const char *channel) noexcept;
bool Unsubscribe(const char *channel) noexcept;
void UnsubscribeAll() noexcept;
bool PushMessage(const ClientMessage &msg) noexcept;
template<typename F>
void ConsumeMessages(F &&f) {
while (!messages.empty()) {
f(messages.front());
messages.pop_front();
}
}
/**
* Is this client allowed to use the specified local file?
*