-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add capability for downloading collections (#98)
Adds support for downloading collections via ign fuel download. By default it downloads all items in a collection, but a -t option can be given to only download models or worlds in the collection. A -j option can be used to specify the number of parallel downloads. Signed-off-by: Addisu Z. Taddese <[email protected]> Co-authored-by: Louise Poubel <[email protected]>
- Loading branch information
Showing
10 changed files
with
956 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
/* | ||
* Copyright (C) 2020 Open Source Robotics Foundation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
#ifndef IGNITION_FUEL_TOOLS_COLLECTIONIDENTIFIER_HH_ | ||
#define IGNITION_FUEL_TOOLS_COLLECTIONIDENTIFIER_HH_ | ||
|
||
#include <memory> | ||
#include <string> | ||
|
||
#include "ignition/fuel_tools/Helpers.hh" | ||
|
||
namespace ignition | ||
{ | ||
namespace fuel_tools | ||
{ | ||
/// \brief Forward Declaration | ||
class CollectionIdentifierPrivate; | ||
class ServerConfig; | ||
|
||
/// \brief Defines how to identify a collection | ||
class IGNITION_FUEL_TOOLS_VISIBLE CollectionIdentifier | ||
{ | ||
/// \brief Constructor. | ||
public: CollectionIdentifier(); | ||
|
||
/// \brief Copy Constructor. | ||
/// \param[in] _orig CollectionIdentifier to copy. | ||
public: CollectionIdentifier(const CollectionIdentifier &_orig); | ||
|
||
/// \brief Destructor. | ||
public: ~CollectionIdentifier(); | ||
|
||
/// \brief Assignment operator | ||
/// \param[in] _orig CollectionIdentifier to copy. | ||
/// \return Reference to this object. | ||
public: CollectionIdentifier | ||
&operator=(const CollectionIdentifier &_orig); | ||
|
||
/// \brief Equality operator. | ||
/// \param[in] _rhs CollectionIdentifier to compare. | ||
/// \return True if the CollectionIdentifier names are equal. | ||
public: bool operator==(const CollectionIdentifier &_rhs) const; | ||
|
||
/// \brief Returns the collection name | ||
/// \return Collection name. | ||
public: std::string Name() const; | ||
|
||
/// \brief Set the name of the collection. | ||
/// \param[in] _name The name to set. | ||
/// \return True if successful. | ||
public: bool SetName(const std::string &_name); | ||
|
||
/// \brief Returns owner to attribute collection to. | ||
/// \return Owner name. | ||
public: std::string Owner() const; | ||
|
||
/// \brief Set the owner of the collection | ||
/// \param[in] _name The name to set. Must be ascii and pass [-_a-z0-9]+ | ||
/// \return true if successful | ||
public: bool SetOwner(const std::string &_name); | ||
|
||
/// \brief Returns server information to retrieve collection from. | ||
/// \return Server information. | ||
public: ServerConfig &Server() const; | ||
|
||
/// \brief Set the server from which this collection comes. | ||
/// \param[in] _server The server to retrieve the collection from. | ||
/// \return True if successful. | ||
public: bool SetServer(const ServerConfig &_server); | ||
|
||
/// \brief Returns a unique name for the collection. | ||
/// \remarks this is Server/Owner/Name. | ||
/// \return Unique collection name. | ||
public: std::string UniqueName() const; | ||
|
||
/// \brief Returns all the collection information as a string. Convenient | ||
/// for debugging. | ||
/// \param[in] _prefix Optional prefix for every line of the string. | ||
/// \return Collection information string | ||
public: std::string AsString(const std::string &_prefix = "") const; | ||
|
||
/// \brief Returns all the available collection information as a string | ||
/// using colors for better human parsing. | ||
/// \param[in] _prefix Optional prefix for every line of the string. | ||
/// \return Collection information string | ||
public: std::string AsPrettyString(const std::string &_prefix = "") const; | ||
|
||
/// \brief PIMPL | ||
private: std::unique_ptr<CollectionIdentifierPrivate> dataPtr; | ||
}; | ||
} | ||
} | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,159 @@ | ||
/* | ||
* Copyright (C) 2020 Open Source Robotics Foundation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
#include <sstream> | ||
#include <string> | ||
#include <vector> | ||
|
||
#include <ignition/common/Filesystem.hh> | ||
|
||
#include "ignition/fuel_tools/ClientConfig.hh" | ||
#include "ignition/fuel_tools/CollectionIdentifier.hh" | ||
|
||
using namespace ignition; | ||
using namespace fuel_tools; | ||
|
||
class ignition::fuel_tools::CollectionIdentifierPrivate | ||
{ | ||
/// \brief a name given to this collection by a user | ||
public: std::string name; | ||
|
||
/// \brief owner who this collection is attributed to | ||
public: std::string owner; | ||
|
||
/// \brief Server of this collection | ||
public: ServerConfig server; | ||
}; | ||
|
||
////////////////////////////////////////////////// | ||
CollectionIdentifier::CollectionIdentifier() | ||
: dataPtr(std::make_unique<CollectionIdentifierPrivate>()) | ||
{ | ||
} | ||
|
||
////////////////////////////////////////////////// | ||
CollectionIdentifier::CollectionIdentifier(const CollectionIdentifier &_orig) | ||
: dataPtr(std::make_unique<CollectionIdentifierPrivate>(*_orig.dataPtr)) | ||
{ | ||
} | ||
|
||
////////////////////////////////////////////////// | ||
CollectionIdentifier &CollectionIdentifier::operator=( | ||
const CollectionIdentifier &_orig) | ||
{ | ||
this->dataPtr = std::make_unique<CollectionIdentifierPrivate>(*_orig.dataPtr); | ||
return *this; | ||
} | ||
|
||
////////////////////////////////////////////////// | ||
bool CollectionIdentifier::operator==(const CollectionIdentifier &_rhs) const | ||
{ | ||
return this->UniqueName() == _rhs.UniqueName(); | ||
} | ||
|
||
////////////////////////////////////////////////// | ||
CollectionIdentifier::~CollectionIdentifier() = default; | ||
|
||
////////////////////////////////////////////////// | ||
std::string CollectionIdentifier::UniqueName() const | ||
{ | ||
return common::joinPaths(this->dataPtr->server.Url().Str(), | ||
this->dataPtr->owner, "collections", | ||
this->dataPtr->name); | ||
} | ||
|
||
////////////////////////////////////////////////// | ||
std::string CollectionIdentifier::Name() const | ||
{ | ||
return this->dataPtr->name; | ||
} | ||
|
||
////////////////////////////////////////////////// | ||
bool CollectionIdentifier::SetName(const std::string &_name) | ||
{ | ||
this->dataPtr->name = _name; | ||
return true; | ||
} | ||
|
||
////////////////////////////////////////////////// | ||
std::string CollectionIdentifier::Owner() const | ||
{ | ||
return this->dataPtr->owner; | ||
} | ||
|
||
////////////////////////////////////////////////// | ||
bool CollectionIdentifier::SetOwner(const std::string &_name) | ||
{ | ||
this->dataPtr->owner = _name; | ||
return true; | ||
} | ||
|
||
////////////////////////////////////////////////// | ||
bool CollectionIdentifier::SetServer(const ServerConfig &_server) | ||
{ | ||
bool success = _server.Url().Valid(); | ||
if (success) | ||
this->dataPtr->server = _server; | ||
|
||
return success; | ||
} | ||
|
||
////////////////////////////////////////////////// | ||
ServerConfig &CollectionIdentifier::Server() const | ||
{ | ||
return this->dataPtr->server; | ||
} | ||
|
||
////////////////////////////////////////////////// | ||
std::string CollectionIdentifier::AsString(const std::string &_prefix) const | ||
{ | ||
std::stringstream out; | ||
out << _prefix << "Name: " << this->Name() << std::endl | ||
<< _prefix << "Owner: " << this->Owner() << std::endl | ||
<< _prefix << "Unique name: " << this->UniqueName() << std::endl | ||
<< _prefix << "Server:" << std::endl | ||
<< this->Server().AsString(_prefix + " "); | ||
return out.str(); | ||
} | ||
|
||
////////////////////////////////////////////////// | ||
std::string CollectionIdentifier::AsPrettyString( | ||
const std::string &_prefix) const | ||
{ | ||
std::string prop = "\033[96m\033[1m"; | ||
std::string value = "\033[37m"; | ||
std::string reset = "\033[0m"; | ||
|
||
std::stringstream out; | ||
|
||
if (!this->Name().empty()) | ||
{ | ||
out << _prefix << prop << "Name: " << reset | ||
<< value << this->Name() << reset << std::endl; | ||
} | ||
|
||
if (!this->Owner().empty()) | ||
{ | ||
out << _prefix << prop << "Owner: " << reset | ||
<< value << this->Owner() << reset << std::endl; | ||
} | ||
|
||
out << _prefix << prop << "Server:" << reset << std::endl | ||
<< this->Server().AsPrettyString(_prefix + " "); | ||
return out.str(); | ||
} | ||
|
Oops, something went wrong.