GithubHelp home page GithubHelp logo

azeey / gz-fuel-tools Goto Github PK

View Code? Open in Web Editor NEW

This project forked from gazebosim/gz-fuel-tools

0.0 2.0 0.0 3.38 MB

License: Other

CMake 1.25% Batchfile 0.12% C++ 96.57% Ruby 0.83% C 0.64% Python 0.29% Shell 0.29%

gz-fuel-tools's Introduction

Ignition Fuel Tools

** Classes and tools for interacting with Ignition Fuel **

Ignition Fuel Tools is composed by a client library and command line tools for interacting with Ignition Fuel servers.

http://github.com/ignitionrobotics/ign-fuel-tools

Test coverage reports are available at Codecov:

codecov

Building and installing

cd ign-fuel-tools
mkdir build
cd build
cmake ..
make
make test
make install

Make sure IGN_CONFIG_PATH is set to the right install locationign fuel will work. Default is /usr/local/share/ignition.

Examples

** List all models **

$ ign fuel list -t model -r | head
https://fuel.ignitionrobotics.org/anonymous/test_model_595389531
https://fuel.ignitionrobotics.org/anonymous/test_model_122023392
https://fuel.ignitionrobotics.org/anonymous/test_model_429486665
https://fuel.ignitionrobotics.org/anonymous/test_model_887243621
https://fuel.ignitionrobotics.org/anonymous/test_model_084900530
https://fuel.ignitionrobotics.org/anonymous/test_model_240061059
https://fuel.ignitionrobotics.org/anonymous/test_model_464734097
https://fuel.ignitionrobotics.org/anonymous/test_model_658598990
https://fuel.ignitionrobotics.org/anonymous/test_model_834617935
https://fuel.ignitionrobotics.org/anonymous/test_model_380348669

** Download a model **

$ ign fuel download -u https://fuel.ignitionrobotics.org/1.0/openrobotics/models/Ambulance -v 4
Downloading model:
  Name: Ambulance
  Owner: openrobotics
  Server:
    URL: https://fuel.ignitionrobotics.org
    Version: 1.0

Download succeeded.

** C++ Get List models **

  // Create a client (uses https://fuel.ignitionrobotics.org by default)
  ignition::fuel_tools::ClientConfig conf;
  ignition::fuel_tools::FuelClient client(conf);
  ignition::fuel_tools::ModelIter iter = client.Models();
  while (iter)
  {
    std::cout << "Got model: " << iter->Identification().Name() << "\n";
  }

** Upload a model **

Create an account on https://app.ignitionrobotics.org/ and log in.

While logged in, obtain the JWT token of the account from the browser. In Chrome and Firefox, this can be done by opening Developer Tools ( Ctrl+Shift+I). Click on the Console tab, and type in

localStorage.id_token

This will print out the token.

The token can also be obtained through the Developer Tools GUI. Click on the Application tab in Chrome (or Storage tab in Firefox), and expand the Local Storage item. In Firefox versions < 71.0, this may be under Web Developer, then Storage Inspector. Click on the URL displayed, and select Key id_token. Its Value can be copied.

The JWT token can then used to upload the model:

ign fuel upload -m ~/path_to_model --header 'authorization: Bearer <JWT TOKEN>'

Note that the upload command only works for models currently, not worlds.

TODO

See issues beginning with [Fuel backend] in the title. Here are two examples.

** TODO: Find a model on disk **

$ ign fuel locate --name am1
/home/developer/.ignition/fuel/fuel.ignitionrobotics.org/alice/am1

Dependencies

On ubuntu run

sudo apt install ruby-ffi libzip-dev libcurl-dev libjsoncpp-dev

Roadmap

  • Create the notion of "asset repository" or similar. An asset repository abstracts an entity that can store assets. It can be local or remote. This is the interface for "asset repository":

    • List(category). E.g.: localRepository.List("models") remote1Repository.List("models")
    • Details(assetIdentifier). E.g.: Modeldentifier model; model.Owner("the_owner"); model.Name("the_name"); localRepository.Details(model) remote1Repository.Details(model)
    • Create(assetIdentifier, path_to_the_asset). E.g.: Modeldentifier model; model.Owner("the_owner"); model.Name("the_name"); localRepository.Create(model, path_to_the_asset) remote1Repository.Create(model, path_to_the_asset)
    • Delete(assetIdentifier). E.g.: Modeldentifier model; model.Owner("the_owner"); model.Name("the_name"); localRepository.Delete(model) remote1Repository.Delete(model)
    • CopyTo(assetIdentifier, dst_repository). E.g.: Modeldentifier model; model.Owner("the_owner"); model.Name("the_name"); localRepository.CopyTo(model, remote1Repository) remote1Repository.CopyTo(model, localRepository)
    • "LocalRepository" and "RemoteRepository" should implement this interface. (Most of the pieces are there, we just need to refactor the code a bit).
  • Think about how to detect when new versions of remote models have been uploaded.

    • Idea of a hash.
  • Add ignition fuel command line utilities for:

    • detail
    • create
    • delete
    • copyTo
  • How to test the client library:

    • Directly against the real backend (staging?)
    • Clone, and compile a local backend?
    • Mocking the backend has the problem of not being in sync with the real backend and missing potential issues.

Known issue of command line tools

In the event that the installation is a mix of Debian and from source, command line tools from ign-tools may not work correctly.

A workaround for a single package is to define the environment variable IGN_CONFIG_PATH to point to the location of the Ignition library installation, where the YAML file for the package is found, such as

export IGN_CONFIG_PATH=/usr/local/share/ignition

However, that environment variable only takes a single path, which means if the installations from source are in different locations, only one can be specified.

Another workaround for working with multiple Ignition libraries on the command line is using symbolic links to each library's YAML file.

mkdir ~/.ignition/tools/configs -p
cd ~/.ignition/tools/configs/
ln -s /usr/local/share/ignition/fuel4.yaml .
ln -s /usr/local/share/ignition/transport7.yaml .
ln -s /usr/local/share/ignition/transportlog7.yaml .
...
export IGN_CONFIG_PATH=$HOME/.ignition/tools/configs

This issue is tracked here.

gz-fuel-tools's People

Contributors

azeey avatar caguero avatar chapulina avatar iche033 avatar j-rivero avatar mabelzhang avatar nkoenig avatar scpeters avatar sloretz avatar traversaro avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.