-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathcompressor_factory.h
63 lines (51 loc) · 2.01 KB
/
compressor_factory.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//
//
// Tencent is pleased to support the open source community by making tRPC available.
//
// Copyright (C) 2023 THL A29 Limited, a Tencent company.
// All rights reserved.
//
// If you have downloaded a copy of the tRPC source code from Tencent,
// please note that tRPC source code is licensed under the Apache 2.0 License,
// A copy of the Apache 2.0 License is included in this file.
//
//
#pragma once
#include <memory>
#include <string>
#include <vector>
#include "trpc/compressor/compressor.h"
#include "trpc/compressor/compressor_type.h"
namespace trpc::compressor {
/// @brief A factory for compression plugins.
/// It is ok for a compression plugin is registered to or got from the factory.
/// @note Registry operation is not thread-safe. Always keep in mind: compression plugins must be registered when the
/// program is initialized.
class CompressorFactory {
public:
~CompressorFactory();
/// @brief Gets the instance of factory.
/// @return Returns the pointer of "CompressorFactory".
static CompressorFactory* GetInstance() {
static CompressorFactory instance;
return &instance;
}
/// @brief Registers a compression plugin instance who implements the interface "Compressor" to the factory.
/// @param compressor is a pointer of compression plugin instance "Compressor".
/// @return Returns true on success, false otherwise.
bool Register(const CompressorPtr& compressor);
/// @brief Gets the compression plugin instance according to the type of compression type.
/// @param compress_type is compression type.
/// @return Returns a pointer of compression plugin instance on success, nullptr otherwise.
Compressor* Get(CompressType compress_type);
/// @brief Does some cleanup job.
void Clear();
private:
CompressorFactory();
CompressorFactory(const CompressorFactory&) = delete;
CompressorFactory& operator=(const CompressorFactory&) = delete;
private:
// Default: nullptr is at compressor::kNone.
std::vector<CompressorPtr> compressors_;
};
} // namespace trpc::compressor