1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /*
- * Copyright 2016 The Cartographer Authors
- *
- * Licensed 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 CARTOGRAPHER_COMMON_PORT_H_
- #define CARTOGRAPHER_COMMON_PORT_H_
- #include <boost/iostreams/device/back_inserter.hpp>
- #include <boost/iostreams/filter/gzip.hpp>
- #include <boost/iostreams/filtering_stream.hpp>
- #include <cinttypes>
- #include <cmath>
- #include <string>
- using int8 = int8_t;
- using int16 = int16_t;
- using int32 = int32_t;
- using int64 = int64_t;
- using uint8 = uint8_t;
- using uint16 = uint16_t;
- using uint32 = uint32_t;
- using uint64 = uint64_t;
- namespace common {
- inline int RoundToInt(const float x) { return std::lround(x); }
- inline int RoundToInt(const double x) { return std::lround(x); }
- inline int64 RoundToInt64(const float x) { return std::lround(x); }
- inline int64 RoundToInt64(const double x) { return std::lround(x); }
- inline void FastGzipString(const std::string& uncompressed,
- std::string* compressed) {
- boost::iostreams::filtering_ostream out;
- out.push(
- boost::iostreams::gzip_compressor(boost::iostreams::zlib::best_speed));
- out.push(boost::iostreams::back_inserter(*compressed));
- boost::iostreams::write(out,
- reinterpret_cast<const char*>(uncompressed.data()),
- uncompressed.size());
- }
- inline void FastGunzipString(const std::string& compressed,
- std::string* decompressed) {
- boost::iostreams::filtering_ostream out;
- out.push(boost::iostreams::gzip_decompressor());
- out.push(boost::iostreams::back_inserter(*decompressed));
- boost::iostreams::write(out, reinterpret_cast<const char*>(compressed.data()),
- compressed.size());
- }
- } // namespace common
- #endif // CARTOGRAPHER_COMMON_PORT_H_
|