/*************************************************************************** * Copyright (C) 2006-2007 by Rajko Albrecht * * ral@alwins-world.de * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * 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 General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #ifndef SVNREPOSITORYDATA_H #define SVNREPOSITORYDATA_H #include "svnqt/pool.h" #include "svnqt/revision.h" #include "svnqt/apr.h" #include "svnqt/svnqt_defines.h" #include #include #include namespace svn { namespace repository { class Repository; class RepositoryListener; /** @author Rajko Albrecht */ class SVNTQT_NOEXPORT RepositoryData{ friend class Repository; public: RepositoryData(RepositoryListener*); virtual ~RepositoryData(); void Close(); svn_error_t * Open(const TQString&); svn_error_t * CreateOpen(const TQString&path, const TQString&fstype, bool _bdbnosync = false, bool _bdbautologremove = true, bool _pre_1_4_compat=false, bool _pre_1_5_compat=false); void reposFsWarning(const TQString&msg); svn_error_t* dump(const TQString&output,const svn::Revision&start,const svn::Revision&end, bool incremental, bool use_deltas); svn_error_t* loaddump(const TQString&dump,svn_repos_load_uuid uuida, const TQString&parentFolder, bool usePre, bool usePost); static svn_error_t* hotcopy(const TQString&src,const TQString&dest,bool cleanlogs); protected: Pool m_Pool; svn_repos_t*m_Repository; RepositoryListener*m_Listener; private: static void warning_func(void *baton, svn_error_t *err); static svn_error_t*cancel_func(void*baton); }; } } #endif