Sha256: 1e7613cbeb73d6e9903fd5c3529a6fe9c4ca0783b6d480b7dce26a8fce3c4d3c

Contents?: true

Size: 1.88 KB

Versions: 31

Compression:

Stored size: 1.88 KB

Contents

// Copyright 2021 gRPC authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef GRPC_SRC_CORE_LIB_RESOURCE_QUOTA_THREAD_QUOTA_H
#define GRPC_SRC_CORE_LIB_RESOURCE_QUOTA_THREAD_QUOTA_H

#include <grpc/support/port_platform.h>

#include <cstddef>
#include <limits>

#include "absl/base/thread_annotations.h"

#include "src/core/lib/gprpp/ref_counted.h"
#include "src/core/lib/gprpp/ref_counted_ptr.h"
#include "src/core/lib/gprpp/sync.h"

namespace grpc_core {

// Tracks the amount of threads in a resource quota.
class ThreadQuota : public RefCounted<ThreadQuota> {
 public:
  ThreadQuota();
  ~ThreadQuota() override;

  ThreadQuota(const ThreadQuota&) = delete;
  ThreadQuota& operator=(const ThreadQuota&) = delete;

  // Set the maximum number of threads that can be used by this quota.
  // If there are more, new reservations will fail until the quota is available.
  void SetMax(size_t new_max);

  // Try to allocate some number of threads.
  // Returns true if the allocation succeeded, false otherwise.
  bool Reserve(size_t num_threads);

  // Release some number of threads.
  void Release(size_t num_threads);

 private:
  Mutex mu_;
  size_t allocated_ ABSL_GUARDED_BY(mu_) = 0;
  size_t max_ ABSL_GUARDED_BY(mu_) = std::numeric_limits<size_t>::max();
};

using ThreadQuotaPtr = RefCountedPtr<ThreadQuota>;

}  // namespace grpc_core

#endif  // GRPC_SRC_CORE_LIB_RESOURCE_QUOTA_THREAD_QUOTA_H

Version data entries

31 entries across 31 versions & 1 rubygems

Version Path
grpc-1.58.3 src/core/lib/resource_quota/thread_quota.h
grpc-1.59.5 src/core/lib/resource_quota/thread_quota.h
grpc-1.60.2 src/core/lib/resource_quota/thread_quota.h
grpc-1.61.3 src/core/lib/resource_quota/thread_quota.h
grpc-1.62.3 src/core/lib/resource_quota/thread_quota.h
grpc-1.63.2 src/core/lib/resource_quota/thread_quota.h
grpc-1.63.0 src/core/lib/resource_quota/thread_quota.h
grpc-1.62.0 src/core/lib/resource_quota/thread_quota.h
grpc-1.62.0.pre1 src/core/lib/resource_quota/thread_quota.h
grpc-1.61.0 src/core/lib/resource_quota/thread_quota.h
grpc-1.61.0.pre2 src/core/lib/resource_quota/thread_quota.h
grpc-1.60.0 src/core/lib/resource_quota/thread_quota.h
grpc-1.60.0.pre1 src/core/lib/resource_quota/thread_quota.h
grpc-1.59.2 src/core/lib/resource_quota/thread_quota.h
grpc-1.59.0 src/core/lib/resource_quota/thread_quota.h
grpc-1.58.0 src/core/lib/resource_quota/thread_quota.h
grpc-1.58.0.pre1 src/core/lib/resource_quota/thread_quota.h
grpc-1.57.0 src/core/lib/resource_quota/thread_quota.h
grpc-1.54.3 src/core/lib/resource_quota/thread_quota.h
grpc-1.53.2 src/core/lib/resource_quota/thread_quota.h