welcome: please sign in
location: Diff for "HATP/hatpconsole"
Differences between revisions 2 and 12 (spanning 10 versions)
Revision 2 as of 2014-04-09 15:05:53
Size: 7115
Editor: rlalleme
Comment: Add link to git.openrobots.org
Revision 12 as of 2015-02-20 13:28:41
Size: 8310
Editor: rlalleme
Comment: Add comment on issue related to QMake
Deletions are marked like this. Additions are marked like this.
Line 10: Line 10:
THis page presents hatpconsole, a module of HATP to display the plan found to a request. This page presents hatpconsole, a module of HATP to display the plan found to a request.

/!\ There are several methods to install hatpconsole, we advise you to use the robotpkg method.
Line 14: Line 16:
{i} '''A quick setup guide (working with robotpkg) can be found [[HATP/run#quick_setup|here]].'''
Line 21: Line 23:
<<Anchor(libhatp)>>
Line 24: Line 25:
 * qt4
 * boost: thread and regex
 * libgvc (provided by the package libgraphviz-dev on most of common linux distributions)
 * msgconnector (available in robotpkg, otherwise go to [[HATP/install]] page to see how to install it)
 * libhatp (install procedure described below)
 * '''qt4'''
 * '''boost''' (thread, system and regex)
 * '''libgvc''' (provided by the package libgraphviz-dev on most of common linux distributions)
 * '''msgconnector''' (available in robotpkg, otherwise go to [[HATP/msgconnector]] page to see how to install it)
 * '''libhatp''' (available in robotpkg, otherwise go to [[HATP/libhatp]] page to see how to install it)
Line 32: Line 33:
=== Prepare using robotpkg ===

{i} If you want to use robotpkg, you can jump to [[#hatpconsole_robotpkg|section regarding robotpkg]] because libhatp is automatically installed if missing.
If you use robotpkg (see below and recommended solution) all dependencies are correctly tackled.


== Install hatpconsole ==

=== Using robotpkg (recommended) ===
<<Anchor(robotpkg_install)>>
Line 40: Line 45:
As of now (March 2014) libhatp isa work in progress in robotpkg/wip: see [[http://robotpkg.openrobots.org/robotpkg-wip.html]].

{{{
> cd <robotpkg>/wip/libhatp
> make update
}}}

=== Prepare with archive packages ===

This method uses the tar.gz archive of the modules.

The archive is available at : http://www.openrobots.org/distfiles/libhatp/libhatp-LAST.tar.gz

{{{
> tar -xzf libhatp-LAST.tar.gz
> cd libhatp-<version>
> mkdir build
> cd build
> cmake .. [-DCMAKE_INSTALL_PREFIX=<some/install/path>]
> make
> make install
}}}
''N.B. You may need root privileges to do make install if you did not use the -DCMAKE_INSTALL_PREFIX''


=== Prepare from the Git repository ===

As last solution you can prefer to install libhatp from the Git repository to be up to date.

{{{
> git clone git://git.openrobots.org/robots/libhatp
> cd libhatp
> mkdir build
> cd build
> cmake .. [-DCMAKE_INSTALL_PREFIX=<some/install/path>]
> make
> make install
}}}
''N.B. You may need root privileges to do make install if you did not use the -DCMAKE_INSTALL_PREFIX''




== Install hatpconsole ==

=== Using robotpkg ===
As of now (March 2014) HATP's main modules are in robotpkg/wip: see [[http://robotpkg.openrobots.org/robotpkg-wip.html]].
Line 90: Line 50:
> cd <robotpkg>/wip/hatpconsole
> make update
cd <robotpkg>/wip/hatpconsole
make update
Line 105: Line 65:
> tar -xzf hatpconsole-LAST.tar.gz
> cd hatpconsole-<version>
> mkdir build
> cd build
> cmake .. [-DCMAKE_INSTALL_PREFIX=<some/install/path>] [-DCMAKE_MODULE_PATH=<install/prefix>] [-DmsgconnectorROOT=<msgconnector/root/directory>] [-DlibhatpROOT=<libhatp/directory>]
> make
>
make install
}}}

''N.B. You may need root privileges to do make install if you did not use the -DCMAKE_INSTALL_PREFIX''
tar -xzf hatpconsole-LAST.tar.gz
cd hatpconsole-<version>
mkdir build
cd build
cmake .. [-DCMAKE_INSTALL_PREFIX=<some/install/path>] [-DCMAKE_MODULE_PATH=<install/prefix>] [-DmsgconnectorROOT=<msgconnector/root/directory>] [-DlibhatpROOT=<libhatp/directory>]
make
make install
}}}

''N.B. You may need root privileges to do make install if you did not use the `-DCMAKE_INSTALL_PREFIX`''

''N.B. If you encounter problems with Qt4 not being found, it is most likely due to QMake. You can specify its location using `-DQT_QMAKE_EXECUTABLE=<path/to/qmake>`''
Line 118: Line 80:
If the modules are in different folders then use separate variable. The `-DmsgconnectorROOT` (resp. `-DlibhatpROOT`) specifies the folder where CMake can find the files (header files and libraries) for msgconnector (resp. libhatp). It can be the Openrobots install directory (environment variable : ROBOTPKG_BASE). If the modules are in different folders then use separate variable. The `-DmsgconnectorROOT` (resp. `-DlibhatpROOT`) specifies the folder where CMake can find the files (header files and libraries) for msgconnector (resp. libhatp). It can be the Openrobots install directory (environment variable : ${ROBOTPKG_BASE}).
Line 126: Line 88:
> git clone git://git.openrobots.org/robots/hatpconsole
> cd hatpconsole
> mkdir build
> cd build
>
cmake .. [-DCMAKE_INSTALL_PREFIX=<some/install/path>] [-DCMAKE_MODULE_PATH=<install/prefix>] [-DmsgconnectorROOT=<msgconnector/root/directory>] [-DlibhatpROOT=<libhatp/directory>]
> make
>
make install
}}}

''N.B. You may need root privileges to do make install if you did not use the -DCMAKE_INSTALL_PREFIX''
git clone git://git.openrobots.org/robots/hatp/hatpconsole.git
cd hatpconsole
mkdir build
cd build
cmake .. [-DCMAKE_INSTALL_PREFIX=<some/install/path>] [-DCMAKE_MODULE_PATH=<install/prefix>] [-DmsgconnectorROOT=<msgconnector/root/directory>] [-DlibhatpROOT=<libhatp/directory>]
make
make install
}}}

''N.B. You may need root privileges to do make install if you did not use the `-DCMAKE_INSTALL_PREFIX`''

''N.B. If you encounter problems with Qt4 not being found, it is most likely due to QMake. You can specify its location using `-DQT_QMAKE_EXECUTABLE=<path/to/qmake>`''
Line 139: Line 103:
If the modules are in different folders then use separate variable. The `-DmsgconnectorROOT` (resp. `-DlibhatpROOT`) specifies the folder where CMake can find the files (header files and libraries) for msgconnector (resp. libhatp). It can be the Openrobots install directory (environment variable : ROBOTPKG_BASE). If the modules are in different folders then use separate variable. The `-DmsgconnectorROOT` (resp. `-DlibhatpROOT`) specifies the folder where CMake can find the files (header files and libraries) for msgconnector (resp. libhatp). It can be the Openrobots install directory (environment variable : ${ROBOTPKG_BASE}).
Line 152: Line 116:
To start hatpconsole you need MsgServer (from msgconnector package) running. See [[HATP#startMsgServer|how to start MsgServer]].

Then you can call :

{{{
> hatpconsole [<server_address>] [<server_port>]
=== Normal mode ===

To start hatpconsole you need !MsgServer (from msgconnector package) running. See [[HATP#startMsgServer|how to start MsgServer]].

Then you can call:

{{{
hatpconsole [<server_address>] [<server_port>]
Line 161: Line 127:
> hatpconsole hatpconsole
Line 181: Line 147:
The last two tabs use vectorial pictures but it is not (currently) possible to zoom in and out to get more details. To have a better view over the plan you can get its content from the folder where you are running the hatpconsole. There should be two files: planStreams.dat (or .svg) and planTree.dat (or .svg). The files are svg files (sometimes with .dat extension instead of .svg) so you can display them with viewer programs (for instance Inkscape).
The last two tabs use vectorial pictures where it is possible to zoom in and out to get more details.

To have a better view over the plan you can get its content from the folder where you are running the hatpconsole. There should be two files: planStreams.svg and planTree.svg. The files are svg files (.dat extension for old version of hatpconsole) so you can display them with viewer programs (for instance Inkscape).

=== Minimal mode ===

To start hatpconsole you need !MsgServer (from msgconnector package) running. See [[HATP#startMsgServer|how to start MsgServer]].

Then you can call:

{{{
hatpconsole [<server_address>] [<server_port>] --minimal
}}}
For instance the default call is:
{{{
hatpconsole --minimal
}}}
''N.B. The default value for the server address and port are respectively `localhost` and `5500`.''

The minimal mode outputs:

 . {{attachment:hatpconsole_minimal.png|position=middle|width="700"}}

The viewer shows the last computed plan and it is possible to zoom in and out.






== Changelog ==

=== Version 0.6 ===

 * Link hatpconsole to libhatp

=== Version 1.0.0 ===

 * Generate plan as SVG files
 * Improve plan output
 * Display nodes
 * Add targets: install, uninstall and package
 * Software now called: hatpconsole (instead of HATPConsole)

=== Version 1.0.1 ===

 * Improving packaging system
 * Change name used to register the console to the server

=== Version 1.1.0 ===

 * Change the plan output files: now plans are stored in planTree.svg and planStreams.svg
 * Fix compilation issue for Fedora

=== Version 1.1.1 ===

 * Fix a version problem for Graphviz (depends on the platform now)

=== Version 1.2.0 ===

 * Same colour is now used for the actions of an agent on both the tree and its stream
 * On EXIT command now the interface is updated (instead of quitting)

=== Version 2.0.0 ===

 * Allow to zoom in and out on the two plan views (stream and tree)
 * Offer "minimal" mode which starts an interface only showing the stream view

hatpconsole, the plan dispalyer

This page presents hatpconsole, a module of HATP to display the plan found to a request.

/!\ There are several methods to install hatpconsole, we advise you to use the robotpkg method.

{i} A quick setup guide (working with robotpkg) can be found here.

1. Prepare dependencies

hatpconsole depends on:

  • qt4

  • boost (thread, system and regex)

  • libgvc (provided by the package libgraphviz-dev on most of common linux distributions)

  • msgconnector (available in robotpkg, otherwise go to HATP/msgconnector page to see how to install it)

  • libhatp (available in robotpkg, otherwise go to HATP/libhatp page to see how to install it)

If you are not used to install via commands, see the short summary in this Appendix.

If you use robotpkg (see below and recommended solution) all dependencies are correctly tackled.

2. Install hatpconsole

2.1. Using robotpkg (recommended)

robotpkg is a set of build and packaging tools, inspired by pkgsrc, designed to build and install OpenRobots packages.

To get complete documentation on how-to use robotpkg please refer to: http://robotpkg.openrobots.org/install.html.

As of now (March 2014) HATP's main modules are in robotpkg/wip: see http://robotpkg.openrobots.org/robotpkg-wip.html.

To install hatpconsole just do:

cd <robotpkg>/wip/hatpconsole
make update

All missing dependencies will either :

  • be reported if there are system dependencies
  • or automatically installed if they exist in robotpkg.

2.2. From archive package

Install hatpconsole with archive package

The archive is available at : http://www.openrobots.org/distfiles/hatpconsole/hatpconsole-LAST.tar.gz

tar -xzf hatpconsole-LAST.tar.gz
cd hatpconsole-<version>
mkdir build
cd build
cmake .. [-DCMAKE_INSTALL_PREFIX=<some/install/path>] [-DCMAKE_MODULE_PATH=<install/prefix>] [-DmsgconnectorROOT=<msgconnector/root/directory>] [-DlibhatpROOT=<libhatp/directory>]
make
make install

N.B. You may need root privileges to do make install if you did not use the -DCMAKE_INSTALL_PREFIX

N.B. If you encounter problems with Qt4 not being found, it is most likely due to QMake. You can specify its location using -DQT_QMAKE_EXECUTABLE=<path/to/qmake>

If you used robotpkg to install all HATP modules (libhatp and msgconnector), you can directly use -DCMAKE_MODULE_PATH and set it to ${ROBOTPKG_BASE}/share/cmake/Modules.

If the modules are in different folders then use separate variable. The -DmsgconnectorROOT (resp. -DlibhatpROOT) specifies the folder where CMake can find the files (header files and libraries) for msgconnector (resp. libhatp). It can be the Openrobots install directory (environment variable : ${ROBOTPKG_BASE}).

2.3. From GIT

You might want to improve the hatpconsole then get it from GIT:

git clone git://git.openrobots.org/robots/hatp/hatpconsole.git
cd hatpconsole
mkdir build
cd build
cmake .. [-DCMAKE_INSTALL_PREFIX=<some/install/path>] [-DCMAKE_MODULE_PATH=<install/prefix>] [-DmsgconnectorROOT=<msgconnector/root/directory>] [-DlibhatpROOT=<libhatp/directory>]
make
make install

N.B. You may need root privileges to do make install if you did not use the -DCMAKE_INSTALL_PREFIX

N.B. If you encounter problems with Qt4 not being found, it is most likely due to QMake. You can specify its location using -DQT_QMAKE_EXECUTABLE=<path/to/qmake>

If you used robotpkg to install all HATP modules (libhatp and msgconnector), you can directly use -DCMAKE_MODULE_PATH and set it to ${ROBOTPKG_BASE}/share/cmake/Modules.

If the modules are in different folders then use separate variable. The -DmsgconnectorROOT (resp. -DlibhatpROOT) specifies the folder where CMake can find the files (header files and libraries) for msgconnector (resp. libhatp). It can be the Openrobots install directory (environment variable : ${ROBOTPKG_BASE}).

3. Use hatpconsole

3.1. Normal mode

To start hatpconsole you need MsgServer (from msgconnector package) running. See how to start MsgServer.

Then you can call:

hatpconsole [<server_address>] [<server_port>]

For instance the default call is:

hatpconsole

N.B. The default value for the server address and port are respectively localhost and 5500.

hatpconsole looks like:

  • position=middle

The left panel is dedicated to the ontology requests, it displays all the value from the ontology server.

The top-right panel, called "System messages" displays several informations from HATP. Like:

  • Invalid requests
  • The planning process to answer a plan request
  • ...

Finally the bottom-right panel, "Plan result", is composed of three tabs:

  • The "Plan" tab shows the text plan almost as it is sent to the program that did the request.
  • The "Streams" tab displays all streams of the plan, affected to every agent of the system. Each colour represent a different agent.
  • The "Tree" tab gives the tree decomposition of the plan.

The last two tabs use vectorial pictures where it is possible to zoom in and out to get more details.

To have a better view over the plan you can get its content from the folder where you are running the hatpconsole. There should be two files: planStreams.svg and planTree.svg. The files are svg files (.dat extension for old version of hatpconsole) so you can display them with viewer programs (for instance Inkscape).

3.2. Minimal mode

To start hatpconsole you need MsgServer (from msgconnector package) running. See how to start MsgServer.

Then you can call:

hatpconsole [<server_address>] [<server_port>] --minimal

For instance the default call is:

hatpconsole --minimal

N.B. The default value for the server address and port are respectively localhost and 5500.

The minimal mode outputs:

  • position=middle

The viewer shows the last computed plan and it is possible to zoom in and out.

4. Changelog

4.1. Version 0.6

  • Link hatpconsole to libhatp

4.2. Version 1.0.0

  • Generate plan as SVG files
  • Improve plan output
  • Display nodes
  • Add targets: install, uninstall and package
  • Software now called: hatpconsole (instead of HATPConsole)

4.3. Version 1.0.1

  • Improving packaging system
  • Change name used to register the console to the server

4.4. Version 1.1.0

  • Change the plan output files: now plans are stored in planTree.svg and planStreams.svg
  • Fix compilation issue for Fedora

4.5. Version 1.1.1

  • Fix a version problem for Graphviz (depends on the platform now)

4.6. Version 1.2.0

  • Same colour is now used for the actions of an agent on both the tree and its stream
  • On EXIT command now the interface is updated (instead of quitting)

4.7. Version 2.0.0

  • Allow to zoom in and out on the two plan views (stream and tree)
  • Offer "minimal" mode which starts an interface only showing the stream view

5. License, Troubleshooting and Maintainer

HATP is distributed under 2-clause BSD license. (See here for details.)

The page to report problems or for pull request: Openrobots/hatpconsole.

Current maintainer(s):

OpenrobotsWiki: HATP/hatpconsole (last edited 2016-08-08 13:46:14 by rlalleme)