/* 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 #include "Resource.hh" #include "util/FileSystem.hh" #include #include #include #include namespace gr { namespace v1 { namespace details { using namespace boost::multi_index ; struct ByID {} ; struct ByHref {} ; struct ByIdentity {} ; typedef multi_index_container< Resource*, indexed_by< hashed_non_unique, const_mem_fun >, hashed_non_unique, const_mem_fun >, hashed_unique, identity > > > Folders ; typedef Folders::index::type IDMap ; typedef Folders::index::type HrefMap ; typedef Folders::index::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 { public : typedef details::Set::iterator iterator ; public : ResourceTree( const fs::path& rootFolder ) ; ResourceTree( const ResourceTree& fs ) ; ~ResourceTree( ) ; Resource* FindByHref( const std::string& href ) ; const Resource* FindByHref( const std::string& href ) const ; Resource* FindByID( const std::string& id ) ; bool ReInsert( Resource *coll ) ; void Insert( Resource *coll ) ; void Erase( Resource *coll ) ; void Update( Resource *coll, const Entry& e, const DateTime& last_sync ) ; Resource* Root() ; const Resource* Root() const ; iterator begin() ; iterator end() ; private : void Clear() ; private : details::Folders m_set ; Resource* m_root ; } ; } } // end of namespace gr::v1