Files
comaps/map/gps_track_storage.hpp
Konstantin Pastbin e3e4a1985a 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
2025-05-08 21:10:51 +07:00

50 lines
1.3 KiB
C++

#pragma once
#include "platform/location.hpp"
#include "base/exception.hpp"
#include "base/macros.hpp"
#include <fstream>
#include <functional>
#include <string>
#include <vector>
class GpsTrackStorage final
{
public:
DECLARE_EXCEPTION(OpenException, RootException);
DECLARE_EXCEPTION(WriteException, RootException);
DECLARE_EXCEPTION(ReadException, RootException);
using TItem = location::GpsInfo;
/// Opens storage with track data.
/// @param filePath - path to the file on disk
/// @exception OpenException if seek fails.
GpsTrackStorage(std::string const & filePath);
/// Appends new point to the storage
/// @param items - collection of gps track points.
/// @exceptions WriteException if write fails or ReadException if read fails.
void Append(std::vector<TItem> const & items);
/// Removes all data from the storage
/// @exceptions WriteException if write fails.
void Clear();
/// Reads the storage and calls functor for each item
/// @param fn - callable function, return true to stop ForEach
/// @exceptions ReadException if read fails.
void ForEach(std::function<bool(TItem const & item)> const & fn);
private:
DISALLOW_COPY_AND_MOVE(GpsTrackStorage);
size_t GetFirstItemIndex() const;
std::string const m_filePath;
std::fstream m_stream;
size_t m_itemCount;
};