Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / compressor / zstd / CompressionPluginZstd.h
1 /*
2  * Ceph - scalable distributed file system
3  *
4  * Copyright (C) 2015 Mirantis, Inc.
5  *
6  * Author: Alyona Kiseleva <akiselyova@mirantis.com>
7  *
8  *  This library is free software; you can redistribute it and/or
9  *  modify it under the terms of the GNU Lesser General Public
10  *  License as published by the Free Software Foundation; either
11  *  version 2.1 of the License, or (at your option) any later version.
12  *
13  */
14
15 #ifndef CEPH_COMPRESSION_PLUGIN_ZSTD_H
16 #define CEPH_COMPRESSION_PLUGIN_ZSTD_H
17
18 // -----------------------------------------------------------------------------
19 #include "ceph_ver.h"
20 #include "compressor/CompressionPlugin.h"
21 #include "ZstdCompressor.h"
22 // -----------------------------------------------------------------------------
23
24 class CompressionPluginZstd : public CompressionPlugin {
25
26 public:
27
28   explicit CompressionPluginZstd(CephContext* cct) : CompressionPlugin(cct)
29   {}
30
31   int factory(CompressorRef *cs,
32                       std::ostream *ss) override
33   {
34     if (compressor == 0) {
35       ZstdCompressor *interface = new ZstdCompressor();
36       compressor = CompressorRef(interface);
37     }
38     *cs = compressor;
39     return 0;
40   }
41 };
42
43 #endif