grive2/libgrive/src/drive/ResourceTree.hh

97 lines
2.5 KiB
C++
Raw Normal View History

2012-05-18 04:52:11 +04:00
/*
grive: an GPL program to sync a local directory with Google Drive
Copyright (C) 2012 Wan Wai Ho
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 version 2
of the License.
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.
*/
#pragma once
2012-05-19 11:41:21 +04:00
#include "Resource.hh"
2012-05-18 04:52:11 +04:00
#include "util/FileSystem.hh"
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/hashed_index.hpp>
#include <boost/multi_index/identity.hpp>
#include <boost/multi_index/mem_fun.hpp>
namespace gr {
namespace v1 {
2012-05-18 04:52:11 +04:00
namespace details
{
using namespace boost::multi_index ;
struct ByID {} ;
struct ByHref {} ;
struct ByIdentity {} ;
typedef multi_index_container<
2012-05-19 11:41:21 +04:00
Resource*,
2012-05-18 04:52:11 +04:00
indexed_by<
2012-05-19 11:41:21 +04:00
hashed_non_unique<tag<ByHref>, const_mem_fun<Resource, std::string, &Resource::SelfHref> >,
hashed_non_unique<tag<ByID>, const_mem_fun<Resource, std::string, &Resource::ResourceID> >,
hashed_unique<tag<ByIdentity>, identity<Resource*> >
2012-05-18 04:52:11 +04:00
>
> Folders ;
typedef Folders::index<ByID>::type IDMap ;
typedef Folders::index<ByHref>::type HrefMap ;
typedef Folders::index<ByIdentity>::type Set ;
}
/*! \brief A simple container for storing folders
This class stores a set of folders and provide fast search access from ID, HREF etc.
It is a wrapper around multi_index_container from Boost library.
*/
class ResourceTree
2012-05-18 04:52:11 +04:00
{
2012-05-19 13:14:04 +04:00
public :
typedef details::Set::iterator iterator ;
2012-05-18 04:52:11 +04:00
public :
ResourceTree( const fs::path& rootFolder ) ;
ResourceTree( const ResourceTree& fs ) ;
~ResourceTree( ) ;
2012-05-18 04:52:11 +04:00
2012-05-19 11:41:21 +04:00
Resource* FindByHref( const std::string& href ) ;
const Resource* FindByHref( const std::string& href ) const ;
2012-05-18 04:52:11 +04:00
Resource* FindByID( const std::string& id ) ;
2012-05-19 21:44:46 +04:00
2012-05-19 11:41:21 +04:00
bool ReInsert( Resource *coll ) ;
2012-05-18 04:52:11 +04:00
2012-05-19 11:41:21 +04:00
void Insert( Resource *coll ) ;
void Erase( Resource *coll ) ;
void Update( Resource *coll, const Entry& e, const DateTime& last_sync ) ;
2012-05-19 11:26:55 +04:00
2012-05-19 11:41:21 +04:00
Resource* Root() ;
const Resource* Root() const ;
2012-05-19 13:14:04 +04:00
iterator begin() ;
iterator end() ;
private :
void Clear() ;
2012-05-18 04:52:11 +04:00
private :
details::Folders m_set ;
2012-05-19 11:41:21 +04:00
Resource* m_root ;
2012-05-18 04:52:11 +04:00
} ;
} } // end of namespace gr::v1