diff options
author | Michele Calgaro <[email protected]> | 2021-03-19 10:06:06 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2021-03-19 10:10:59 +0900 |
commit | eb8fa2d68a46e05c52d67e98abb60e9bb70cfa6c (patch) | |
tree | ed685a6c70bc5742159b8a9bdd958d62406fdfe0 /src/svnqt/cache/ReposLog.h | |
parent | a7413f700bbf107677b27816e25df21384be55ce (diff) | |
download | tdesvn-eb8fa2d68a46e05c52d67e98abb60e9bb70cfa6c.tar.gz tdesvn-eb8fa2d68a46e05c52d67e98abb60e9bb70cfa6c.zip |
Renaming of files in preparation for code style tools.r14.0.10
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 283bc34244d24be02e90b767a82826a4ca8da186)
Diffstat (limited to 'src/svnqt/cache/ReposLog.h')
-rw-r--r-- | src/svnqt/cache/ReposLog.h | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/src/svnqt/cache/ReposLog.h b/src/svnqt/cache/ReposLog.h new file mode 100644 index 0000000..4d01fae --- /dev/null +++ b/src/svnqt/cache/ReposLog.h @@ -0,0 +1,70 @@ +#ifndef _REPOS_LOG_HPP +#define _REPOS_LOG_HPP + +#include "svnqt/svnqt_defines.h" +#include "svnqt/svnqttypes.h" +#include "svnqt/revision.h" + +#include <tqsqldatabase.h> +#include <tqstring.h> + +namespace svn +{ + +class Client; + +namespace cache +{ + +class SVNTQT_EXPORT ReposLog +{ +protected: + svn::Client*m_Client; + mutable TQDataBase m_Database; + TQString m_ReposRoot; + svn::Revision m_latestHead; + //! internal insert. + bool _insertLogEntry(const svn::LogEntry&); + bool checkFill(svn::Revision&_start,svn::Revision&_end,bool checkHead); + +public: + ReposLog(svn::Client*aClient,const TQString&aRepository=TQString()); + + TQString ReposRoot() const + { + return m_ReposRoot; + } + + TQDataBase Database() const + { + return m_Database; + } + //! search for latest head revision on network for assigned repository + svn::Revision latestHeadRev(); + //! return lates revision in cache + svn::Revision latestCachedRev(); + //! simple retrieves logentries + /*! + * This method acts on network, too for checking if there are new entries on server. + * + * @param target where to store the result + * @param start revision to start for search + * @param end revision to end for search + * @param noNetwork if yes, no check on network for newer revisions will made + * @return true if entries found and no error, if no entries found false + * @exception svn::DatabaseException in case of errors + */ + bool simpleLog(LogEntriesMap&target,const svn::Revision&start,const svn::Revision&end,bool noNetwork=false); + svn::Revision date2numberRev(const svn::Revision&,bool noNetwork=false); + bool fillCache(const svn::Revision&end); + bool insertLogEntry(const svn::LogEntry&); + bool log(const svn::Path&,const svn::Revision&start, const svn::Revision&end,const svn::Revision&peg,svn::LogEntriesMap&target, bool strictNodeHistory,int limit); + bool itemExists(const svn::Revision&,const svn::Path&); + + bool isValid()const; +}; + +} +} + +#endif |