Organic Maps sources as of 02.04.2025 (fad26bbf22ac3da75e01e62aa01e5c8e11861005)

To expand with full Organic Maps and Maps.ME commits history run:
  git remote add om-historic [om-historic.git repo url]
  git fetch --tags om-historic
  git replace squashed-history historic-commits
This commit is contained in:
Konstantin Pastbin
2025-04-13 16:37:30 +07:00
commit e3e4a1985a
12931 changed files with 13195100 additions and 0 deletions

76
coding/elias_coder.hpp Normal file
View File

@@ -0,0 +1,76 @@
#pragma once
#include "coding/bit_streams.hpp"
#include "base/assert.hpp"
#include "base/bits.hpp"
#include <cstdint>
namespace coding
{
class GammaCoder
{
public:
template <typename TWriter>
static bool Encode(BitWriter<TWriter> & writer, uint64_t value)
{
if (value == 0)
return false;
uint8_t const n = bits::FloorLog(value);
ASSERT_LESS_OR_EQUAL(n, 63, ());
uint64_t const msb = static_cast<uint64_t>(1) << n;
writer.WriteAtMost64Bits(msb, n + 1);
writer.WriteAtMost64Bits(value, n);
return true;
}
template <typename TReader>
static uint64_t Decode(BitReader<TReader> & reader)
{
uint8_t n = 0;
while (reader.Read(1) == 0)
++n;
ASSERT_LESS_OR_EQUAL(n, 63, ());
uint64_t const msb = static_cast<uint64_t>(1) << n;
return msb | reader.ReadAtMost64Bits(n);
}
};
class DeltaCoder
{
public:
template <typename TWriter>
static bool Encode(BitWriter<TWriter> & writer, uint64_t value)
{
if (value == 0)
return false;
uint8_t const n = bits::FloorLog(value);
ASSERT_LESS_OR_EQUAL(n, 63, ());
if (!GammaCoder::Encode(writer, n + 1))
return false;
writer.WriteAtMost64Bits(value, n);
return true;
}
template <typename TReader>
static uint64_t Decode(BitReader<TReader> & reader)
{
uint8_t n = GammaCoder::Decode(reader);
ASSERT_GREATER(n, 0, ());
--n;
ASSERT_LESS_OR_EQUAL(n, 63, ());
uint64_t const msb = static_cast<uint64_t>(1) << n;
return msb | reader.ReadAtMost64Bits(n);
}
};
} // namespace coding