From 7b9971ad261e5d1554759a35f778a5605b850138 Mon Sep 17 00:00:00 2001 From: Anatoly Serdtcev Date: Mon, 28 Oct 2019 17:34:35 +0300 Subject: [PATCH] [generator] Fix intermediate processing statistics --- generator/intermediate_data.cpp | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/generator/intermediate_data.cpp b/generator/intermediate_data.cpp index 657a507..4f84b14 100644 --- a/generator/intermediate_data.cpp +++ b/generator/intermediate_data.cpp @@ -61,16 +61,6 @@ void AddToIndex(Index & index, Key relationId, Container const & values) index.Add(v.first, relationId); } -class PointStorageWriterBase : public PointStorageWriterInterface -{ -public: - // PointStorageWriterInterface overrides: - uint64_t GetNumProcessedPoints() const override { return m_numProcessedPoints; } - -private: - uint64_t m_numProcessedPoints; -}; - // RawFilePointStorageMmapReader ------------------------------------------------------------------- class RawFilePointStorageMmapReader : public PointStorageReaderInterface { @@ -96,7 +86,7 @@ private: }; // RawFilePointStorageWriter ----------------------------------------------------------------------- -class RawFilePointStorageWriter : public PointStorageWriterBase +class RawFilePointStorageWriter : public PointStorageWriterInterface { public: explicit RawFilePointStorageWriter(string const & name) : @@ -114,6 +104,7 @@ public: ++m_numProcessedPoints; } + uint64_t GetNumProcessedPoints() const override { return m_numProcessedPoints; } private: FileWriter m_fileWriter; @@ -148,7 +139,7 @@ private: }; // RawMemPointStorageWriter ------------------------------------------------------------------------ -class RawMemPointStorageWriter : public PointStorageWriterBase +class RawMemPointStorageWriter : public PointStorageWriterInterface { public: explicit RawMemPointStorageWriter(string const & name) : @@ -173,6 +164,7 @@ public: ++m_numProcessedPoints; } + uint64_t GetNumProcessedPoints() const override { return m_numProcessedPoints; } private: FileWriter m_fileWriter; @@ -228,7 +220,7 @@ private: }; // MapFilePointStorageWriter ----------------------------------------------------------------------- -class MapFilePointStorageWriter : public PointStorageWriterBase +class MapFilePointStorageWriter : public PointStorageWriterInterface { public: explicit MapFilePointStorageWriter(string const & name) : @@ -251,6 +243,7 @@ public: ++m_numProcessedPoints; } + uint64_t GetNumProcessedPoints() const override { return m_numProcessedPoints; } private: FileWriter m_fileWriter;