AimRT/_deps/boost-src/libs/geometry/test/geometry_to_crc.hpp

38 lines
1.1 KiB
C++
Raw Normal View History

2025-01-12 20:40:08 +08:00
// Boost.Geometry (aka GGL, Generic Geometry Library)
// Copyright (c) 2021 Barend Gehrels, Amsterdam, the Netherlands.
// Use, modification and distribution is subject to the Boost Software License,
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#ifndef GEOMETRY_TEST_GEOMETRY_TO_CRC_HPP
#define GEOMETRY_TEST_GEOMETRY_TO_CRC_HPP
#include <boost/geometry/io/wkt/wkt.hpp>
#include <boost/crc.hpp>
#include <iomanip>
#include <string>
// Convenience function for tests, it generates a 4 character CRC of a geometry
// which can be used in filenames and/or testcases such as 'nores_37f6'
template <typename Geometry>
inline std::string geometry_to_crc(Geometry const& geometry)
{
std::ostringstream out1;
out1 << bg::wkt(geometry);
const std::string str = out1.str();
boost::crc_ccitt_type result;
result.process_bytes(str.data(), str.length());
std::ostringstream out2;
out2 << std::setw(4) << std::setfill('0') << std::hex << result.checksum();
return out2.str();
}
#endif // GEOMETRY_TEST_GEOMETRY_TO_CRC_HPP