| /* |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you 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 ENCODING_DECODER_FACTORY_H |
| #define ENCODING_DECODER_FACTORY_H |
| |
| #include "decoder.h" |
| #include "dictionary_decoder.h" |
| #include "double_sprintz_decoder.h" |
| #include "encoding/int32_rle_decoder.h" |
| #include "encoding/int64_rle_decoder.h" |
| #include "float_sprintz_decoder.h" |
| #include "gorilla_decoder.h" |
| #include "int32_sprintz_decoder.h" |
| #include "int64_sprintz_decoder.h" |
| #include "plain_decoder.h" |
| #include "ts2diff_decoder.h" |
| #include "zigzag_decoder.h" |
| |
| namespace storage { |
| #define ALLOC_AND_RETURN_DECODER(DecoderType) \ |
| do { \ |
| void* buf = \ |
| common::mem_alloc(sizeof(DecoderType), common::MOD_DECODER_OBJ); \ |
| DecoderType* decoder = nullptr; \ |
| if (buf != nullptr) { \ |
| decoder = new (buf) DecoderType; \ |
| } \ |
| return decoder; \ |
| } while (false); |
| |
| class DecoderFactory { |
| public: |
| static Decoder* alloc_time_decoder() { |
| if (common::g_config_value_.time_encoding_type_ == common::PLAIN) { |
| ALLOC_AND_RETURN_DECODER(PlainDecoder); |
| } else if (common::g_config_value_.time_encoding_type_ == |
| common::TS_2DIFF) { |
| ALLOC_AND_RETURN_DECODER(LongTS2DIFFDecoder); |
| } else { |
| // not support now |
| return nullptr; |
| } |
| } |
| |
| static Decoder* alloc_value_decoder(common::TSEncoding encoding, |
| common::TSDataType data_type) { |
| using namespace common; |
| |
| switch (encoding) { |
| case PLAIN: |
| ALLOC_AND_RETURN_DECODER(PlainDecoder); |
| |
| case DICTIONARY: |
| switch (data_type) { |
| case STRING: |
| case TEXT: |
| ALLOC_AND_RETURN_DECODER(DictionaryDecoder); |
| default: |
| return nullptr; |
| } |
| |
| case RLE: |
| switch (data_type) { |
| case INT32: |
| case DATE: |
| ALLOC_AND_RETURN_DECODER(Int32RleDecoder); |
| case INT64: |
| case TIMESTAMP: |
| ALLOC_AND_RETURN_DECODER(Int64RleDecoder); |
| default: |
| return nullptr; |
| } |
| |
| case GORILLA: |
| switch (data_type) { |
| case INT32: |
| case DATE: |
| ALLOC_AND_RETURN_DECODER(IntGorillaDecoder); |
| case INT64: |
| case TIMESTAMP: |
| ALLOC_AND_RETURN_DECODER(LongGorillaDecoder); |
| case FLOAT: |
| ALLOC_AND_RETURN_DECODER(FloatGorillaDecoder); |
| case DOUBLE: |
| ALLOC_AND_RETURN_DECODER(DoubleGorillaDecoder); |
| default: |
| return nullptr; |
| } |
| |
| case TS_2DIFF: |
| switch (data_type) { |
| case INT32: |
| case DATE: |
| ALLOC_AND_RETURN_DECODER(IntTS2DIFFDecoder); |
| case INT64: |
| case TIMESTAMP: |
| ALLOC_AND_RETURN_DECODER(LongTS2DIFFDecoder); |
| case FLOAT: |
| ALLOC_AND_RETURN_DECODER(FloatTS2DIFFDecoder); |
| case DOUBLE: |
| ALLOC_AND_RETURN_DECODER(DoubleTS2DIFFDecoder); |
| default: |
| return nullptr; |
| } |
| |
| case ZIGZAG: |
| switch (data_type) { |
| case INT32: |
| ALLOC_AND_RETURN_DECODER(IntZigzagDecoder); |
| case INT64: |
| ALLOC_AND_RETURN_DECODER(LongZigzagDecoder); |
| default: |
| return nullptr; |
| } |
| |
| case SPRINTZ: |
| switch (data_type) { |
| case INT32: |
| ALLOC_AND_RETURN_DECODER(Int32SprintzDecoder); |
| case INT64: |
| ALLOC_AND_RETURN_DECODER(Int64SprintzDecoder); |
| case FLOAT: |
| ALLOC_AND_RETURN_DECODER(FloatSprintzDecoder); |
| case DOUBLE: |
| ALLOC_AND_RETURN_DECODER(DoubleSprintzDecoder); |
| default: |
| return nullptr; |
| } |
| |
| default: |
| // Not supported encoding |
| return nullptr; |
| } |
| return nullptr; |
| } |
| |
| static void free(Decoder* decoder) { common::mem_free(decoder); } |
| }; |
| } // end namespace storage |
| #endif // ENCODING_DECODER_FACTORY_H |