| /* |
| * 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. |
| */ |
| |
| #include "time_page_writer.h" |
| |
| #include "common/config/config.h" |
| #include "common/logger/elog.h" |
| #include "compress/compressor_factory.h" |
| #include "encoding/encoder_factory.h" |
| |
| using namespace common; |
| |
| namespace storage { |
| |
| int TimePageData::init(ByteStream &time_bs, Compressor *compressor) { |
| int ret = E_OK; |
| time_buf_size_ = time_bs.total_size(); |
| uncompressed_size_ = time_buf_size_; |
| uncompressed_buf_ = |
| (char *)mem_alloc(uncompressed_size_, MOD_PAGE_WRITER_OUTPUT_STREAM); |
| compressor_ = compressor; |
| if (IS_NULL(uncompressed_buf_)) { |
| return E_OOM; |
| } |
| |
| if (time_buf_size_ == 0) { |
| return E_INVALID_ARG; |
| } |
| // TODO: Maybe use time_bs as compressed_buf. |
| if (RET_FAIL(common::copy_bs_to_buf(time_bs, uncompressed_buf_, |
| uncompressed_size_))) { |
| } else { |
| // TODO |
| // NOTE: different compressor may have different compress API |
| // Be carefull about the memory. |
| if (RET_FAIL(compressor->reset(true))) { |
| } else if (RET_FAIL(compressor->compress( |
| uncompressed_buf_, uncompressed_size_, compressed_buf_, |
| compressed_size_))) { |
| } |
| } |
| #if DEBUG_SE |
| std::cout << "TimePageData::init. time_buf_size=" << time_buf_size_ |
| << ", uncompressed_size=" << uncompressed_size_ |
| << ", compressed_size=" << compressed_size_ << std::endl; |
| DEBUG_hex_dump_buf("uncompressed_buf=", uncompressed_buf_, |
| uncompressed_size_); |
| DEBUG_hex_dump_buf("compressed_buf=", compressed_buf_, compressed_size_); |
| #endif |
| return ret; |
| } |
| |
| int TimePageWriter::init(TSEncoding encoding, CompressionType compression) { |
| int ret = E_OK; |
| if (nullptr == |
| (time_encoder_ = EncoderFactory::alloc_time_encoder(encoding))) { |
| ret = E_OOM; |
| } else if (nullptr == (statistic_ = StatisticFactory::alloc_statistic( |
| common::VECTOR))) { |
| ret = E_OOM; |
| } else if (nullptr == (compressor_ = CompressorFactory::alloc_compressor( |
| compression))) { |
| ret = E_OOM; |
| } |
| if (ret != E_OK) { |
| if (time_encoder_ != nullptr) { |
| EncoderFactory::free(time_encoder_); |
| } |
| if (statistic_ != nullptr) { |
| statistic_->destroy(); |
| StatisticFactory::free(statistic_); |
| } |
| } |
| if (ret == E_OK) { |
| is_inited_ = true; |
| } |
| return ret; |
| } |
| |
| void TimePageWriter::reset() { |
| if (time_encoder_ != nullptr) { |
| time_encoder_->reset(); |
| } |
| if (statistic_ != nullptr) { |
| statistic_->reset(); |
| } |
| time_out_stream_.reset(); |
| } |
| |
| void TimePageWriter::destroy() { |
| if (is_inited_) { |
| is_inited_ = false; |
| time_encoder_->destroy(); |
| statistic_->destroy(); |
| |
| EncoderFactory::free(time_encoder_); |
| StatisticFactory::free(statistic_); |
| CompressorFactory::free(compressor_); |
| |
| time_encoder_ = nullptr; |
| statistic_ = nullptr; |
| compressor_ = nullptr; |
| } |
| } |
| |
| int TimePageWriter::write_to_chunk(ByteStream &pages_data, bool write_header, |
| bool write_statistic, |
| bool write_data_to_chunk_data) { |
| #if DEBUG_SE |
| std::cout << "TimePageWriter::write_to_chunk at position " |
| << pages_data.total_size() << " of chunk_data." << std::endl; |
| #endif |
| int ret = E_OK; |
| if (RET_FAIL(prepare_end_page())) { |
| return ret; |
| } |
| if (RET_FAIL(cur_page_data_.init(time_out_stream_, compressor_))) { |
| } |
| |
| if (IS_SUCC(ret) && write_header) { |
| if (RET_FAIL(SerializationUtil::write_var_uint( |
| cur_page_data_.uncompressed_size_, pages_data))) { |
| } else if (RET_FAIL(SerializationUtil::write_var_uint( |
| cur_page_data_.compressed_size_, pages_data))) { |
| } |
| } |
| // std::cout << "TimePageWriter::write_to_chunk after write_header. pos=" << |
| // pages_data.total_size() << std::endl; |
| if (IS_SUCC(ret) && write_statistic) { |
| if (RET_FAIL(statistic_->serialize_to(pages_data))) { |
| } |
| } |
| // std::cout << "TimePageWriter::write_to_chunk after write_stat. pos=" << |
| // pages_data.total_size() << std::endl; DEBUG_print_byte_stream("In |
| // TimePageWriter::write_to_chunk, before writer page data: pages_data = ", |
| // pages_data); |
| if (IS_SUCC(ret) && write_data_to_chunk_data) { |
| // DEBUG_hex_dump_buf("cur_page_data_.compressed_buf_ = ", |
| // cur_page_data_.compressed_buf_, cur_page_data_.compressed_size_); |
| if (RET_FAIL(pages_data.write_buf(cur_page_data_.compressed_buf_, |
| cur_page_data_.compressed_size_))) { |
| } |
| } |
| // DEBUG_print_byte_stream("In TimePageWriter::write_to_chunk, after writer |
| // page data: pages_data = ", pages_data); std::cout << |
| // "TimePageWriter::write_to_chunk after write_data. pos=" << |
| // pages_data.total_size() << std::endl; |
| #if DEBUG_SE |
| std::cout << "TimePageWriter write_to_chunk: ret=" << ret |
| << ", flags(HSD)=" << write_header << write_statistic |
| << write_data_to_chunk_data |
| << ", uncompressed_size=" << cur_page_data_.uncompressed_size_ |
| << ", compressed_size=" << cur_page_data_.compressed_size_ |
| << ", write_header=" << write_header |
| << ", statistic_=" << statistic_->to_string() << std::endl; |
| #endif |
| return ret; |
| } |
| |
| } // end namespace storage |