blob: 641a6e1c92eae0741c12da7794c610a971b8896f (
plain)
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
|
/*
* Ceph - scalable distributed file system
*
* Copyright (C) 2017 BI SHUN KE <aionshun@livemail.tw>
*
* This is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software
* Foundation. See file COPYING.
*
*/
#ifndef CEPH_COMPRESSION_PLUGIN_BROTLI_H
#define CEPH_COMPRESSION_PLUGIN_BROTLI_H
#include "ceph_ver.h"
#include "compressor/CompressionPlugin.h"
#include "BrotliCompressor.h"
class CompressionPluginBrotli : public CompressionPlugin {
public:
explicit CompressionPluginBrotli(CephContext *cct) : CompressionPlugin(cct)
{}
virtual int factory(CompressorRef *cs, std::ostream *ss)
{
if (compressor == nullptr) {
BrotliCompressor *interface = new BrotliCompressor();
compressor = CompressorRef(interface);
}
*cs = compressor;
return 0;
}
};
#endif
|