// ============================================================================ // Copyright (C) 2001-2011 by Jozef Starosczyk // ixen@copyhandler.com // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU Library General Public License // (version 2) as published by the Free Software Foundation; // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU Library General Public // License along with this program; if not, write to the // Free Software Foundation, Inc., // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // ============================================================================ /// @file TBasicProgressInfo.h /// @date 2011/03/28 /// @brief Contains class with progress tracking. // ============================================================================ #ifndef __TBASICPROGRESSINFO_H__ #define __TBASICPROGRESSINFO_H__ /////////////////////////////////////////////////////////////////////////// // TTaskBasicProgressInfo class TTaskBasicProgressInfo { public: TTaskBasicProgressInfo(); ~TTaskBasicProgressInfo(); void SetCurrentIndex(size_t stIndex); // might be unneeded when serialization is implemented void IncreaseCurrentIndex(); size_t GetCurrentIndex() const; void SetCurrentFileProcessedSize(unsigned long long ullSize); unsigned long long GetCurrentFileProcessedSize() const; void IncreaseCurrentFileProcessedSize(unsigned long long ullSizeToAdd); void SetSubOperationIndex(size_t stSubOperationIndex); size_t GetSubOperationIndex() const; void IncreaseSubOperationIndex(); void Serialize(chcore::TReadBinarySerializer& rSerializer); void Serialize(chcore::TWriteBinarySerializer& rSerializer) const; private: TTaskBasicProgressInfo(const TTaskBasicProgressInfo& rSrc); private: volatile size_t m_stSubOperationIndex; // index of sub-operation from TOperationDescription volatile size_t m_stCurrentIndex; // index to the m_files array stating currently processed item volatile unsigned long long m_ullCurrentFileProcessedSize; // count of bytes processed for current file mutable boost::shared_mutex m_lock; }; #endif