aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/http/io/compression.h
blob: f16c4a18ebb1fbf16ac77ddc263d27e9b97477ec (plain) (blame)
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
64
65
66
67
68
69
70
71
72
#pragma once

#include "stream.h"

#include <util/generic/deque.h>
#include <util/generic/hash.h>

class TCompressionCodecFactory {
public:
    using TDecoderConstructor = std::function<THolder<IInputStream>(IInputStream*)>;
    using TEncoderConstructor = std::function<THolder<IOutputStream>(IOutputStream*)>;

    TCompressionCodecFactory();

    static inline TCompressionCodecFactory& Instance() noexcept {
        return *SingletonWithPriority<TCompressionCodecFactory, 0>();
    }

    inline const TDecoderConstructor* FindDecoder(TStringBuf name) const {
        if (auto codec = Codecs_.FindPtr(name)) {
            return &codec->Decoder;
        }

        return nullptr;
    }

    inline const TEncoderConstructor* FindEncoder(TStringBuf name) const {
        if (auto codec = Codecs_.FindPtr(name)) {
            return &codec->Encoder;
        }

        return nullptr;
    }

    inline TArrayRef<const TStringBuf> GetBestCodecs() const {
        return BestCodecs_;
    }

private:
    void Add(TStringBuf name, TDecoderConstructor d, TEncoderConstructor e);

    struct TCodec {
        TDecoderConstructor Decoder;
        TEncoderConstructor Encoder;
    };

    TDeque<TString> Strings_;
    THashMap<TStringBuf, TCodec> Codecs_;
    TVector<TStringBuf> BestCodecs_;
};

namespace NHttp {
    template <typename F>
    TString ChooseBestCompressionScheme(F accepted, TArrayRef<const TStringBuf> available) {
        if (available.empty()) {
            return "identity";
        }

        if (accepted("*")) {
            return TString(available[0]);
        }

        for (const auto& coding : available) {
            TString s(coding);
            if (accepted(s)) {
                return s;
            }
        }

        return "identity";
    }
}