grive2/libgrive/src/drive2/Resource.cc

101 lines
2.0 KiB
C++

/*
grive: an GPL program to sync a local directory with Google Drive
Copyright (C) 2013 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.
*/
#include "Resource.hh"
#include "CommonUri.hh"
#include <algorithm>
namespace gr { namespace v2 {
/** Default constructor construct the resource of the root folder
*/
Resource::Resource() :
m_id( "root" ),
m_mime( mime_types::folder ),
m_title( "Root folder" )
{
}
Resource::Resource(
const std::string& id,
const std::string& mime,
const std::string& title,
const std::string& parent ) :
m_id ( id ),
m_mime ( mime ),
m_title ( title ),
m_parent( parent )
{
}
std::string Resource::ID() const
{
return m_id ;
}
std::string Resource::Mime() const
{
return m_mime ;
}
std::string Resource::Title() const
{
return m_title ;
}
bool Resource::IsFolder() const
{
return m_mime == "application/vnd.google-apps.folder" ;
}
void Resource::AddChild( const std::string& child )
{
m_children.push_back( child ) ;
}
void Resource::SetParent( const std::string& parent )
{
m_parent = parent ;
}
std::size_t Resource::ChildCount() const
{
return m_children.size() ;
}
std::string Resource::At( std::size_t idx ) const
{
return m_children.at(idx) ;
}
std::string Resource::Parent() const
{
return m_parent ;
}
std::size_t Resource::Index( const std::string& child ) const
{
return std::find( m_children.begin(), m_children.end(), child ) - m_children.begin() ;
}
} } // end of namespace gr::v2