mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
100 lines
3.7 KiB
C++
100 lines
3.7 KiB
C++
#pragma once
|
|
|
|
#include <Access/Quota.h>
|
|
#include <Core/UUID.h>
|
|
#include <Poco/Net/IPAddress.h>
|
|
#include <boost/noncopyable.hpp>
|
|
#include <boost/smart_ptr/atomic_shared_ptr.hpp>
|
|
#include <atomic>
|
|
#include <chrono>
|
|
#include <memory>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
struct QuotaUsageInfo;
|
|
|
|
|
|
/// Instances of `EnabledQuota` are used to track resource consumption.
|
|
class EnabledQuota : public boost::noncopyable
|
|
{
|
|
public:
|
|
struct Params
|
|
{
|
|
UUID user_id;
|
|
String user_name;
|
|
std::vector<UUID> enabled_roles;
|
|
Poco::Net::IPAddress client_address;
|
|
String client_key;
|
|
|
|
auto toTuple() const { return std::tie(user_id, enabled_roles, user_name, client_address, client_key); }
|
|
friend bool operator ==(const Params & lhs, const Params & rhs) { return lhs.toTuple() == rhs.toTuple(); }
|
|
friend bool operator !=(const Params & lhs, const Params & rhs) { return !(lhs == rhs); }
|
|
friend bool operator <(const Params & lhs, const Params & rhs) { return lhs.toTuple() < rhs.toTuple(); }
|
|
friend bool operator >(const Params & lhs, const Params & rhs) { return rhs < lhs; }
|
|
friend bool operator <=(const Params & lhs, const Params & rhs) { return !(rhs < lhs); }
|
|
friend bool operator >=(const Params & lhs, const Params & rhs) { return !(lhs < rhs); }
|
|
};
|
|
|
|
using ResourceType = Quota::ResourceType;
|
|
using ResourceAmount = Quota::ResourceAmount;
|
|
|
|
~EnabledQuota();
|
|
|
|
/// Tracks resource consumption. If the quota exceeded and `check_exceeded == true`, throws an exception.
|
|
void used(ResourceType resource_type, ResourceAmount amount, bool check_exceeded = true) const;
|
|
void used(const std::pair<ResourceType, ResourceAmount> & resource, bool check_exceeded = true) const;
|
|
void used(const std::pair<ResourceType, ResourceAmount> & resource1, const std::pair<ResourceType, ResourceAmount> & resource2, bool check_exceeded = true) const;
|
|
void used(const std::pair<ResourceType, ResourceAmount> & resource1, const std::pair<ResourceType, ResourceAmount> & resource2, const std::pair<ResourceType, ResourceAmount> & resource3, bool check_exceeded = true) const;
|
|
void used(const std::vector<std::pair<ResourceType, ResourceAmount>> & resources, bool check_exceeded = true) const;
|
|
|
|
/// Checks if the quota exceeded. If so, throws an exception.
|
|
void checkExceeded() const;
|
|
void checkExceeded(ResourceType resource_type) const;
|
|
|
|
/// Returns the information about quota consumption.
|
|
QuotaUsageInfo getUsageInfo() const;
|
|
|
|
/// Returns an instance of EnabledQuota which is never exceeded.
|
|
static std::shared_ptr<const EnabledQuota> getUnlimitedQuota();
|
|
|
|
private:
|
|
friend class QuotaCache;
|
|
EnabledQuota(const Params & params_);
|
|
EnabledQuota() {}
|
|
|
|
const String & getUserName() const { return params.user_name; }
|
|
|
|
static constexpr size_t MAX_RESOURCE_TYPE = Quota::MAX_RESOURCE_TYPE;
|
|
|
|
struct Interval
|
|
{
|
|
mutable std::atomic<ResourceAmount> used[MAX_RESOURCE_TYPE];
|
|
ResourceAmount max[MAX_RESOURCE_TYPE];
|
|
std::chrono::seconds duration;
|
|
bool randomize_interval;
|
|
mutable std::atomic<std::chrono::system_clock::duration> end_of_interval;
|
|
|
|
Interval() {}
|
|
Interval(const Interval & src) { *this = src; }
|
|
Interval & operator =(const Interval & src);
|
|
};
|
|
|
|
struct Intervals
|
|
{
|
|
std::vector<Interval> intervals;
|
|
UUID quota_id;
|
|
String quota_name;
|
|
String quota_key;
|
|
|
|
QuotaUsageInfo getUsageInfo(std::chrono::system_clock::time_point current_time) const;
|
|
};
|
|
|
|
struct Impl;
|
|
|
|
const Params params;
|
|
boost::atomic_shared_ptr<const Intervals> intervals; /// atomically changed by QuotaUsageManager
|
|
};
|
|
|
|
}
|