xacro package from xacro repo

xacro

Package Summary

Tags No category tags.
Version 2.0.13
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/xacro.git
VCS Type git
VCS Version ros2
Last Updated 2025-03-20
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Xacro (XML Macros) Xacro is an XML macro language. With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions.

Additional Links

Maintainers

  • Robert Haschke
  • Morgan Quigley

Authors

  • Stuart Glaser
  • William Woodall
  • Robert Haschke

Xacro (XML Macros)

Xacro is an XML macro language

With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions. Recent documentation can be found in the wiki. For older releases, have a look at the ROS wiki.

CHANGELOG

Changelog for package xacro

2.0.13 (2025-03-20)

  • Pass AMENT_PREFIX_PATH to xacro (#359)
  • Add Bazel build rules (#350)
  • Contributors: Michael Carroll, Robert Haschke, Sean Fish

2.0.12 (2025-01-08)

  • Handle new argument 'attr' in xml.dom.minidom._write_data() of Python 3.13 (#353)
  • pyproject.toml: Automatically determine version from git
  • Add function python.vars() (#348)
  • Contributors: Robert Haschke

2.0.11 (2024-04-02)

  • Allow substitution args without ROS (#340)
  • Add more unit tags for yaml files (#331)
  • Resolve $(find ...) as a result of a substitution argument (#339)
  • Mark regexes as raw strings (#336)
  • Add pyproject.toml for direct installation via pip (#329)
  • Contributors: Adam Heins, Bruno-Pier, Carlo Rizzardo, Lukas Huber, Robert Haschke

2.0.10 (2024-01-25)

  • Expose python.abs()
  • Fix hasattr support of YamlDictWrapper (#324)
  • Contributors: Robert Haschke

2.0.9 (2023-02-27)

  • Evaluate arg value as str/unicode (#322)
  • Contributors: Robert Haschke

2.0.8 (2022-10-22)

  • Install xacro using console_script entrypoint (#304)
  • Provide xacro.process() returning the processed file (#229)
  • Dotted YAML access from list iterator (#318)
  • Optionally allow comment evaluation (#310)

    Comment evaluation can be enabled with a special comment:

    • <!-- xacro:eval-comments --> or
    • <!-- xacro:eval-comments:on -->

    It remains active for the following comments until:

    • the current XML tag's scope is left (or a new tag entered)
    • another tag or non-whitespace text is processed
    • it becomes explicitly disabled via: <!-- xacro:eval-comments:off -->
  • Fix property resolution with namespace usage (#308)
    • Allow access to properties in parent scopes again (fixes #305)
    • Pick correct scope when defining a property into the parent (fixes #307)

      Setting a property within the parent scope may occur in two contexts:

      1. From within a macro. In that case, one wants to set the property in the caller's scope.
      2. From within the included file. In that case, one wants to set the property in the includer's scope.
  • Contributors: Chen Bainian, Gonzalo de Pedro, Gonzo, Jacob Perron, Melvin Wang, Robert Haschke, vandanamandlik

2.0.7 (2021-09-04)

  • Allow more builtin symbols: sorted, set
  • Don't import hidden symbols from math package
  • Fix eval security vulnerability
    • safe_eval()
    • unit tests validating the protection mechanism
  • Generalize yaml !degrees constructors: Enable expressions as well
  • Improve macro arg parsing (#278) to support:
    • $(substitution args)
    • ${python expressions}
    • single or double quoting of spaces
  • Contributors: Robert Haschke

2.0.6 (2021-05-30)

  • [feature] Expose YamlDictWrapper as dotify() to allow dotted access to any dict (#274)
  • [fix] Scoped macro evaluation (#272)
  • Contributors: Robert Haschke

2.0.5 (2021-03-02)

  • [fix] Report correct filename for XML errors (#268)
  • [fix] Python3-compatible property Table (#266)
  • [fix] Use outer-scope symbols to resolve include filename in xacro:include (#264)
  • [fix] Append test directory to existing AMENT_PREFIX_PATH (#260)
  • [fix] yaml loading: recursively wrap lists and dicts for dotted dict access (#258)
  • [feature] Provide support for yaml constructors !degrees and !radians (#252)
  • Contributors: Chen Bainian, Robert Haschke, G.A. vd. Hoorn

2.0.3 (2020-08-09)

  • Merge improvements of melodic and noetic branches into dashing-devel: see 1.14.2 and 1.14.3 for details
  • Contributors: Robert Haschke

2.0.2 (2020-03-29)

  • Merge improvements of melodic and noetic branches into dashing-devel: see 1.14.1, 1.13.5 for details
  • Contributors: Robert Haschke

2.0.1 (2019-10-06)

  • Revert requiring that all xacro commands are prefixed with 'xacro:' namespace Although this is deprecated since #79, the corresponding deprecation warning wasn't actually issued. Thus, we will accept non-prefixed xacro tags until F-turtle.
  • Install to both, bin/xacro and lib/xacro/xacro
  • Contributors: Robert Haschke

2.0.0 (2019-09-28)

  • PEP8 cleanup
    • code simplifications
    • avoid empty except
    • sort imports
    • format line breaks
  • Code cleanup
    • Removed deprecated options --legacy, --inorder, --check-order, --includes
    • Require all xacro commands to be prefixed with 'xacro:'
    • Added missing copyright notices
    • Removed python2 stuff
  • Adapt Travis config to use colcon
  • Provide ROS2-based replacement for substition args
  • Modified package structure as per ROS2 rules
    • Using ament_cmake
    • Moved source contents from "src/xacro" to "xacro"
    • Modified package.xml and setup.py according to ROS2 requirements
    • Configured completion hook
    • Removed catkin artifacts from cmake extension
  • Contributors: vandanamandlik, Jacob Perron, Robert Haschke

1.14.4 (2020-08-09)

  • [fix] Rework YamlDictWrapper to restore dict properties (#250)
  • [fix] Ignore underscores when parsing literal numeric values (#247)
  • Contributors: Robert Haschke

1.14.3 (2020-07-05)

  • [feature] Improve warnings
    • Unify meaning of verbosity > 0 (to print file location)
    • Provide file location on warning in check_attrs()
    • Issue warning on child elements of <xacro:include> tag
  • [feature] Allow dotted access to yaml-loaded dicts: d.key1.key2.key3 (#245)
  • [maint] Travis: Update distro to Bionic
  • Contributors: Robert Haschke, G.A. vd. Hoorn

1.14.2 (2020-05-21)

  • [maintanence] Remove deprecated xacro.py (#239)
  • Contributors: Shane Loretz

1.14.1 (2020-03-29)

  • [feature] allow optional xacro includes (#234)
  • Contributors: Robert Haschke

1.13.5 (2019-12-08)

  • [feature] Expose abs_filename() (#220)
  • [feature] Catch missing closing brace in $() and ${} expressions
  • [maintanence]
    • Replace deprecated yaml.load() -> yaml.safe_load()
    • Save macro names internally w/o 'xacro:' prefix
    • Correctly issue deprecation warning for non-prefixed xacro tags
  • Contributors: Robert Haschke

1.13.4 (2019-09-26)

  • [feature] remove xmlns:xacro from processed file (#207)
    • Remove all notions of xmlns:xacro from the resulting document.
    • If the root node defines a xacro:targetNamespace attribute, this will become the global xmlns namespace of the resulting document.
  • [feature] Add len() to allowed python functions (#208)
  • [maintanence]
    • --in-order warning: reduce severity level to message
    • fix and cleanup test of cmake extensions
    • adapt run_xacro() to run xacro from PATH
    • simplify import of substition_args
    • remove 'requires' field from setup.py
    • fix Travis config: use new repository key, use xenial/kinetic distro
    • basic README.md
    • fix catkin_lint issue
    • remove duplicate catkin_python_setup() (#206)
  • Contributors: Robert Haschke, James Xu, Martin Pecka

1.13.3 (2018-10-14)

  • use INORDER as default in cmake functions
  • remove weird 'None's in error messages
  • Contributors: Robert Haschke

1.13.2 (2018-05-14)

  • deprecate --includes option (which is tied to deprecated --legacy processing)
  • moved all option handling to cli.py, including deprecation warnings for options
  • Contributors: Robert Haschke

1.13.1 (2018-05-03)

  • fix parsing of quoted strings in default args for xacro params (#187)
  • Contributors: Robert Haschke

1.13.0 (2018-03-31)

  • make --inorder processing the default
  • Contributors: Robert Haschke

1.12.1 (2018-03-28)

  • #183: unicode support for python2 and python3
  • #178: extend list of allowed python builtins: min, max, round
  • #182: suppress xacro warnings when determining dependencies
  • #151: fixes for #149 and #148
  • #157: fix #156 access to undefined target_table
  • #150: allow True/False literals in python expressions
  • #159: load ROS-related packages on demand, thus becoming more independent from ROS
  • #173: allow default values for properties
  • #172: fix formatting of XacroException
  • #171: fix dependency handling (--deps option)
  • #163: full python 3 compatibility
  • Contributors: Robert Haschke, Kartik Mohta, Morgan Quigley, Steven Peters

1.12.0 (2017-03-25)

1.11.2 (2017-02-27)

  • Convert exception to string in a python2/3 compatible way.
  • Use python2/3 independent check for file type.
  • Contributors: Hans Gaiser, Maarten de Vries

1.11.1 (2016-06-22)

  • workaround for xml.dom.minidom issue
  • ensure non-empty error string
  • Contributors: Robert Haschke

1.11.0 (2016-03-25)

  • added short option -i as alternative to --inorder
  • refactored main to fix #122, #107
  • added xacro indicator to error message to fix #123
  • moved banner generation to process_file()
  • removed special (but obsolete) output handling for just_includes mode
  • moved core processing pipeline into function process_file()
  • improved documentation: more comments, input_file -> input_file_name
  • fix #120: handle non-space whitespace characters in params string
  • extended tests to handle non-space whitespace characters in params string
  • always store macros with xacro: prefix in front: #118
  • fix #115: enforce xacro namespace usage with --xacro-ns option
  • apply correct checking for include tags, and extend testcase
  • allow (one-level) nested expression/extension evaluation
  • Contributors: Robert Haschke, Morgan Quigley

1.10.6 (2015-09-01)

  • use correct catkin environment for cmake dependency checking
  • fixed dependency definition for cmake usage
  • Contributors: Robert Haschke

1.10.5 (2015-08-12)

  • fix #108: evaluate property blocks recursively too
  • improved macro parameter parsing
  • use a regular expression to parse a param spec with forwarding and default
  • allow for spaces in default string (within single quotes)
  • forwarding macro arguments from outer scope
  • switched to [\^|]{.title-ref} syntax
  • use more compact [$|]{.title-ref} syntax
  • moved parsing of argument defaults to grab_macro()
  • explicit forwarding of properties to macro scope
  • replace silent/implicit forwarding of properties from outer scope to macro scope by an explicit "call" to a [forward(<name>[,<default>])]{.title-ref} function.
  • implicit forwarding of outer-scope properties to macro args (#100)
  • property evaluation fixes
  • suppress double evaluation of properties
  • adapted unittest to cover the fixed issue
  • fixed evaluation order for properties exported to parent or global scope
  • Merge pull request #103 from ubi-agni/overwrite-check issue warning when attempting to overwrite existing global property
  • fixed unittest: avoid overwrite warning
  • warn when overwriting any globally defined variable
  • Merge pull request #102 from ubi-agni/completion bash completion
  • Merge pull request #99 from ubi-agni/jade-devel reworked macro resolution
  • moved test_macro_name_with_colon() to class TestXacro should be tested both, in oldorder and inorder mode
  • bash completion
  • improved error message for failed $(find)
  • reworked macro resolution python-eval-based macro resolution (introduced to enable namespaces) heavily restricted the set of possible macro names (only valid python identifiers were allowed) Particularly, xacro: prefixed macro names were forbidden.
  • initial attempt to fix #97
  • add failing test case with colon in the macro name
  • Contributors: Robert Haschke

1.10.4 (2015-06-18)

  • removed test_DEPRECATED_should_replace_before_macroexpand() duplicates test_should_replace_before_macroexpand()
  • fixed evaluation order of macro arguments and body Macro arguments need to be evaluated and assigned to properties before body is evaluated. Otherwise, the evaluated value will be converted to str, i.e. loosing original type.
  • Contributors: Robert Haschke

1.10.3 (2015-06-16)

  • deprecate --oldorder processing
  • added --check-order option to do a simple check for --inorder compatibility
    • Most probable incompatibility is redefining a property after its usage.
    • tested and reported with file location of (first) redefinition after usage.
  • moved command line processing to cli.py
  • explain verbosity levels in usage string
  • colorize errors during cli parsing
  • log definition and usage of properties
  • replaced debug option by verbosity options -q, -v
  • fixed evaluation time of default macro params
  • introduced Macro object to increase code readability
  • parse a macro's parameter list once at declaration time (instead of every instantiation)
  • extended test_multiple_blocks() to check for both normal and reversed order
  • added unittest to increase code coverage
  • do not issue deprecation warning for <include> tags that are non-xacro
  • added option --oldorder
  • allow to store properties to parent or global scope
  • added <xacro:attribute>
  • cleaned up error message about missing files
  • moved xml-specific functions to xmlutils.py new generic functions opt_attrs(), reqd_attrs(), and check_attrs() to fetch optional and required attributes and warn about unknown ones in a uniform fashion
  • unittest to allow empty <arg> defaults
  • Merge pull request #94 from ubi-agni/minor-fixes
  • minor fixes
  • remove duplicates in --deps output
  • fixed dependency checking for --inorder mode (which requires full processing)
  • fixed doc of xacro' cmake macros
  • renamed "xacro:rename" to "xacro:element"
  • allow namespacing for xacro:include's
  • allow renaming of element names using xacro:rename
  • unittest cleanup
  • check property and macro names to be valid python identifiers
  • allow namespacing of xacro:include's
  • properties and macros in an included file will go into their own, separate namespace, if the XML attribute [ns]{.title-ref} is provided. Access is by standard python syntax: namespace.name
  • allow renaming of element names <xacro:rename xacro:name="<new element name>"/>
  • moved unittests requiring --inorder processing to class TestXacroInorder
  • added unittest test_dynamic_macro_undefined()
  • improved error message when variable include filename is used without --inorder
  • stripped down unittest test_inorder_processing()
  • improved processing
  • adapted pr2 gold standard removing most comments again this partially reverts 59605fb1521583dc63efdea13f4c45128499bd20
  • remove all XML comments directly before xacro elements (These are considered xacro-related only and should be removed in the final doc.) Leaving an empty line between xacro-unrelated and xacro-related comments allows to include the former.
  • unittest: test_ignore_xacro_comments()
  • improved processing
    • recursive (instead of iterative) eval_all()
    • reusable process_include()
    • replace_node() function to replace xacro tag by some other content
    • avoid reprocessing of nodes
    • avoid deep copy where possible (speedup)
  • fix evaluation (#83)
  • yaml support
  • check for consistency of xml namespaces on xacro:include
  • replaced strip()=='' by more efficient isspace()
  • allow transitive definition of substition args
  • fixed evaluation of literals in property definitions
    • literals with preceding whitespace will be silently stripped (#83)
    • more complex evaluation test (perturbing spaces added)
  • fixed xacro namespaces in pr2 files to get rid of new inconsistency warning
  • warning message on inconsistent namespace redefinition for includes
  • yaml support ${load_yaml('file.yaml')} to load dict from yaml file
  • Merge pull request #85 from ubi-agni/error-reporting improved error reporting
  • nicer formatting of multiple "when evaluating expression" lines
  • improved formatting of error messages use XacroException to wrap and augment other exceptions to achieve a clearer error formatting
  • better error message for missing substitution args
  • use colorized warnings where possible
  • included macro stack in error-reporting
  • maintain filestack to facilitate error reporting at any time
  • Merge pull request #82 from ubi-agni/unittests improved unittesting
  • allow to capture (and check) stderr in unit tests
  • improved unittests to test both, classic and in-order processing
  • Merge pull request #81 from ubi-agni/jade-devel Thank you for your time and contributions. Improving cosmetics is important.
  • PEP8 cleanup
  • cmake: only copy files to devel space if new
  • Merge pull request #80 from ubi-agni/jade-devel
  • improved error-handling opening the output file - running multiple xacro process in parallel, all writing into a new dir could cause a race condition when creating the dir
    • improved error message on output creation failure
  • removed rospy dependency
    • Importing rospy caused build order issues with ros_comm in workspace
  • Filtering out REMAP command-line arguments is done manually now.
  • update authors/maintainers and copyright statements
  • deprecate non-namespaced xacro tags
  • added missing print_location_msg() for file that actually failed parsing
  • improved deprecation warnings
  • New cli option [--xacro-ns]{.title-ref} allows to enforce the new policy requiring the xacro namespace prefix (and suppressing deprecation warnings). However, non-prefixed tags will not be modified by xacro anymore (as requested by #41, #59, #60). Partially reverted cb73cfd8c678adfda2172accef398189ea2338a1, handling <arg> tags in the same fashion as other tags, i.e. issue a warning if used without prefix and ignoring it with cli argument [--xacro-ns]{.title-ref}.
  • fixed pr2 xacro files to use 'xacro:' prefixed tags only
  • fixed unittests in test_xacro.py to use 'xacro:' prefixed tags only
  • deprecation message for missing xacro namespace prefix in xml tags
  • moved colored warning messages into color.py (for reuseability)
  • added missing print_location_msg() for file that actually failed parsing
  • improved xacro's cmake macros
  • prepend ${PACKAGE_NAME} to all generated cmake targets Otherwise multiple packages employing xacro's cmake macros will use the same conflicting target name. This is only an issue with catkin_make, which defines a single global cmake namespace. The new catkin tools (or catkin_make_isolated) build each package separately.
  • basic unittest for xacro's cmake macros
  • improved xacro's cmake macros - xacro_add_xacro_file() automatically determines output file from input (removing .xacro suffix). If that fails, a fatal error is raised.
    • added xacro_install() to allow installation into both, devel and install space.
    • replaced conveniency function xacro_add_files()
  • Contributors: Robert Haschke

1.10.2 (2015-05-23)

  • added --debug option to explicitly enable stack traces By default, only show error message to the user. Stack traces are only interesting for xacro developers.
  • recursive include processing
    • more informed error messages (which file was included from where)

    - allows relative path names for include filename specs they are interpreted relative to the current file

  • new substitution command $(cwd) to extract current working directory
  • added unittest cases
    • creation of required subdirs for output
    • recursive xacro:include
    • extended test_include_glob() to check for all glob patterns
  • added run_xacro() function to simplify unittests running xacro script
  • moved xacro.py back to original location
  • nicely colored deprecation warning
  • create required dirs before opening output file
  • added convenience cmake-macro xacro_add_target() to auto-generate xacro-processed files
  • added cmake status message before launching xacro (xacro might run for quite a while)
  • fetch xacro --deps errors at report them as a warning
  • simplified deprecation message
  • added missing return statement
  • removed obsolete math import left over from deaaae2c69edd7d5e185eeb098c1521d8711608b
  • install xacro.py again (for backwards compatibility) usage of xacro.py issues a deprecation warning
  • simplified scripts/xacro - removed xacro.py
    • made run script "scripts/xacro" and install process follow standards
    • removed xacro.py

    - added dependencies to setup.py Having the binaries xacro and xacro.py installed side by side causes problems, because xacro.py is wrongly taken as the module. This was avoided by the rather complex filtering of the sys.path. Switched to ROS standard now, using a binary script called "xacro".

  • changed tests to use the whole xacro processing pipeline utilizing the modularization of main() from previous commit This simplifies several existing tests, especially these using files on disk.
  • split main() into process_cli_arg(), parse(), process_doc()
  • extended cmake macro xacro_add_xacro_file()
    • handle INORDER option
    • handle REMAP arguments

    - create absolute input file names automatically usage: xacro_add_xacro_file(input output INORDER REMAP ...)

  • stripped new unit tests to essential xml snippets
  • merged pull request #68: eval properties assigned from <arg> tags as literals In the following example: <xacro:arg name="val" default="0.5"/> <xacro:property name="val" value="$(arg val)"/> ${val} was not evaluated as a number, but as string only. Thus numerical expressions failed with an exception.
  • factored out get_boolean_value()
  • <xacro:arg> needs to be fully specified
  • (handling <arg> tags (without xacro ns-prefix) disabled native <arg> tags) add test for eating launch parameter arguments remove check for "arg" parameter. move new test function to bottom of source
  • added unit tests for evaluation of list, tuple, and dict literals
  • fixed some code style issues
  • fixed string-isinstance checks (for python 3 compatibility)
  • do not evaluate list, dict, tuple expressions as literals (without ${} syntax)
  • added dict to list of known global symbols
  • focused global_symbols definition in the beginning of the file added some basic python symbols: list, str, float, int and map allowing some basic computation
  • tuning performance: instantiate QuickLexer's regexps only once
  • Contributors: Robert Haschke, Martin Pecka, Mike O'Driscoll, Morgan Quigley

1.10.1 (2015-04-01)

  • improved error handling and more descriptive error messages
  • correctly raise a XacroException on invalid, i.e. non-boolean, <xacro:if> expressions. (removed left-over debugging code, added test case)
  • raise an exception on undefined, but used macros Using the syntax <xacro:macroname/> should raise an exception if macroname is not defined. Added appropriate code and a test case.
  • fixed bookkeeping in lazy evaluation switch Table.unevaluated from list to set to avoid multiple key entries
  • fix formatting of changelog
  • Contributors: Robert Haschke

1.10.0 (2015-03-13)

  • security measure: forbid access to __builtins__ in expressions
  • literal evaluation should only consider literals, but no expressions use ast.literal_eval()
  • removed eval() from xacro:if evaluation
  • back to string comparison to handle (lowercase) true and false
  • add test case for equality expressions in <xacro:if>
  • add test case for math function usage
  • python based evaluation of expressions
    • replaced handle_expr with python-internal eval() call
    • care has been taken to resolve variables recursively on demand (in Table.__getitem__)
    • allows for evaluation of standard math functions
    • other desired functions could be added in eval_self_contained
    • Values in Table symbols are not stored as strings but as typed values.
  • If text is required, a conversion with str() is performed, to ensure proper evaluation of expressions. Otherwise 3*"1" would evaluate to "111".
  • use __future__.division we can handle integer division evaluating to floating-point devision, as before
  • allow variable names for filename attribute in <xacro:include>
  • allow for ordered XML processing to avoid issues with multiply defined properties and macros in (typically 3rd party) include files
    • enable the new behaviour by passing --inorder cmdline option
    • to improve code readibility and reusability, introduced functions
  • process_include(node), grab_macro(elt, macros), grab_property(elt, symbols) containing 1:1 corresponding handling from process_includes, grab_macros, and grab_properties
    • added corresponding test case test_inorder_processing()
  • dynamic macro names using <xacro:call macro=""/>
  • fixup unittests and handling of non-element nodes in <include>, <if>, <macro>
  • updated pr2 gold standard to include all comments
  • allow to ignore comments in nodes_match()
  • New handling of non-element nodes invalidates pr2 gold standard (adding a lot more comments). To allow validation, allow to ignore all comments in comparison (as before).
  • fixed handling of non-element nodes in <include>, <if>, <macro>
  • fixed writexml: text nodes were not printed when other siblings exist
    • print all text, but skip whitespace-only text nodes
  • improved xml matching
    • so far only element nodes (with its attributes) were considered
    • now also consider TEXT, CDATA, and COMMENT nodes
    • added function text_matches (normalizing consecutive whitespace to a single space)
    • added some new unit tests

    - test_consider_non_elements: non-element nodes are not yet considered in <if> and <macro>

  • travis-ci: use catkin_make
  • travis-ci: fixup running of tests
  • fix pathnames used in test case
  • Include CATKIN_ENV params at build time.
  • use output filename flag instead of shell redirection
  • create output file after parsing is complete, not before
  • Contributors: Robert Haschke, Mike O'Driscoll, Morgan Quigley, William Woodall

1.9.3 (2015-01-14)

  • merge test cases
  • add a snapshot of the pr2 model to the test directory. add a test case which verifies that the pr2 model is parsed equal to a 'golden' parse of it.
  • add more tests
  • add default arg tests
  • Allow default values for substitution args
  • Fix up comments
  • Allow xacro macros to have default parameters
  • Contributors: Paul Bovbel, Morgan Quigley

1.9.2 (2014-07-11)

  • add a few more tests to exercise the symbol table a bit more
  • allow for recursive evaluation of properties in expressions
  • add useful debugging information when parameters are not set
  • stop test from failing the second time it is run
  • unified if/unless handling, correctly handle floating point expressions
  • floating point expressions not equal zero are now evaluated as True
  • changed quotes to omit cmake warning
  • Contributors: Robert Haschke, Mike Ferguson

1.9.1 (2014-06-21)

  • fixup tests so they run
  • export architecture_independent flag in package.xml
  • installed relocatable fix
  • Contributors: Michael Ferguson, Mike Purvis, Scott K Logan

1.9.0 (2014-03-28)

  • Remove the roslint_python glob, use the default one.
  • Add roslint target to xacro; two whitespace fixes so that it passes.
  • fix evaluation of integers in if statements also added a unit test, fixes #15
  • fix setting of _xacro_py CMake var, fixes #16
  • Add support for globbing multiple files in a single <xacro:include>
  • code cleanup and python3 support
  • check for CATKIN_ENABLE_TESTING

1.8.4 (2013-08-06)

  • Merge pull request #9 from davetcoleman/hydro-devel Xacro should not use plain 'include' tags but only namespaced ones.
  • Fix for the fact that minidom creates text nodes which count as child nodes
  • Removed <uri> checking and made it more general for any child element of an <include> tag
  • Removed Groovy reference, only being applied to Hydro
  • Created check for Gazebo's <uri> tabs only only shows deprecated warnings if not present.
  • Small spelling fix
  • Xacro should not use plain 'include' tags but only namespaced ones.
  • Merge pull request #8 from piyushk/hydro-devel-conditional xacro conditional blocks
  • using refined arguments instead of sys.argv for xml file location
  • adding conditional blocks to xacro

1.8.3 (2013-04-22)

  • bumped version to 1.8.3 for hydro release
  • backwards compatilibity with rosbuild
  • adding unit test for substitution args
  • Adding supoprt for substitution_args 'arg' fields
  • Remove bin copy of xacro.py
  • 1.7.3
  • Install xacro.py as a program so it can be run
  • 1.7.2
  • fixed build issues introduced in catkinization
  • 1.7.1
  • PEP8, cleanup, and remove roslib
  • Update copyright, self import guard, and catkinize
  • Catkinize.
  • Cleanup in preparation of catkinization.
  • Added tag unstable for changeset 169c4bf30367
  • Added tag xacro-1.6.1 for changeset fc45af7fdada
  • 1.6.1 marker
  • xacro: fuerte compat with sub args import
  • Added tag unstable for changeset 2d3c8dbfa3c9
  • Added tag xacro-1.6.0 for changeset e4a4455189bf
  • 1.6.0
  • converted to unary stack from common stack
  • xacro: fixed inserting property blocks (ros-pkg #4561)
  • xacro now uses XacroExceptions. String exceptions are not allowed in Python anymore. #4209
  • Added Ubuntu platform tags to manifest
  • Xacro now places comments below <?xml> tag (#3859)
  • Xacro prints out cleaner xml. Elements are now often separated by a newline.
  • xacro dependency on roslaunch removed #3451
  • Xacro now adds a message mentioning that the file was autogenerated (#2775)
  • Remove use of deprecated rosbuild macros
  • Integers stay integers in xacro, fixing #3287
  • Tests for r25868
  • Added a flag for only evaluating include tags in xacro
  • Allowing multiple blocks and multiple insert_blocks, fixing #3322 and #3323
  • doc review completed for xacro
  • adding mainpage for xacro doc review
  • Added xacro.cmake file that exports new xacro_add_xacro_file() macro, #3020
  • Namespaced "include" tag in xacro
  • Marked xacro as api reviewed
  • Xacro now correctly declares the namespaces of the included documents in the final
  • Made xacro accept xml namespaces
  • Xacro now errors hard when a property is used without being declared
  • Xacro no longer allows you to create properties with "${}" in the name
  • Added the ability to escape "${" in xacro
  • Made the tests in xacro run again.
  • Created xacro/src
  • migration part 1

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

Name Deps
create_description
depthai_bridge
depthai_descriptions
depthai_examples
human_description
leo_description
leo_bringup
leo_gz_bringup
microstrain_inertial_description
mir_description
moveit_resources_prbt_moveit_config
moveit_resources_prbt_pg70_support
moveit_resources_prbt_support
moveit_ros_trajectory_cache
dual_arm_panda_moveit_config
moveit_resources_fanuc_moveit_config
moveit_resources_panda_moveit_config
open_manipulator_x_bringup
open_manipulator_x_moveit_config
qb_device_bringup
raspimouse_description
realsense2_description
talos_description
talos_description_calibration
talos_description_inertial
ur_bringup
ur_moveit_config
ur_robot_driver
urdf_sim_tutorial
urdf_test
velodyne_description
flir_camera_description
pmb2_description
panda_arm_1_moveit_config
panda_arm_2_moveit_config
open_manipulator_x_description
pantilt_bot_description
gazebo_ros2_control_demos
gz_ros2_control_demos
launch_param_builder
kortex_bringup
kinova_gen3_6dof_robotiq_2f_85_moveit_config
kinova_gen3_7dof_robotiq_2f_85_moveit_config
kinova_gen3_lite_moveit_config
robotiq_description
ros_gz_sim_demos
sick_safetyscanners2
sick_scan_xd
simple_launch
ur_description
ur_simulation_gz
urdf_launch
webots_ros2_importer
webots_ros2_universal_robot
crane_plus_control
crane_plus_description
crane_plus_moveit_config
raspimouse_slam
turtlebot3_manipulation_bringup
turtlebot3_manipulation_moveit_config
irobot_create_common_bringup
irobot_create_description
bcr_bot
gazebo_set_joint_positions_plugin
qb_softhand_industry_ros2_control
reach_ros
canopen_tests
synapticon_ros2_control
clearpath_manipulators
clearpath_manipulators_description
clearpath_platform_description
clearpath_config_live
nicla_vision_ros2
scenario_execution_ros
gazebo_static_camera
andino_description
andino_gz_classic
andino_gz
franka_description
franka_bringup
franka_fr3_moveit_config
hey5_description
kuka_agilus_support
kuka_cybertech_support
kuka_fortec_support
kuka_iontec_support
kuka_kr_moveit_config
kuka_lbr_iisy_moveit_config
kuka_lbr_iisy_support
kuka_lbr_iiwa_moveit_config
kuka_lbr_iiwa_support
kuka_quantec_support
kuka_resources
omni_base_description
pal_gripper_description
pal_gripper_simulation
pal_hey5_description
pal_robotiq_description
pal_robotiq_epick_description
pal_urdf_utils
play_motion2
tiago_description

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged xacro at Robotics Stack Exchange

xacro package from xacro repo

xacro

Package Summary

Tags No category tags.
Version 2.0.13
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/xacro.git
VCS Type git
VCS Version ros2
Last Updated 2025-03-20
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Xacro (XML Macros) Xacro is an XML macro language. With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions.

Additional Links

Maintainers

  • Robert Haschke
  • Morgan Quigley

Authors

  • Stuart Glaser
  • William Woodall
  • Robert Haschke

Xacro (XML Macros)

Xacro is an XML macro language

With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions. Recent documentation can be found in the wiki. For older releases, have a look at the ROS wiki.

CHANGELOG

Changelog for package xacro

2.0.13 (2025-03-20)

  • Pass AMENT_PREFIX_PATH to xacro (#359)
  • Add Bazel build rules (#350)
  • Contributors: Michael Carroll, Robert Haschke, Sean Fish

2.0.12 (2025-01-08)

  • Handle new argument 'attr' in xml.dom.minidom._write_data() of Python 3.13 (#353)
  • pyproject.toml: Automatically determine version from git
  • Add function python.vars() (#348)
  • Contributors: Robert Haschke

2.0.11 (2024-04-02)

  • Allow substitution args without ROS (#340)
  • Add more unit tags for yaml files (#331)
  • Resolve $(find ...) as a result of a substitution argument (#339)
  • Mark regexes as raw strings (#336)
  • Add pyproject.toml for direct installation via pip (#329)
  • Contributors: Adam Heins, Bruno-Pier, Carlo Rizzardo, Lukas Huber, Robert Haschke

2.0.10 (2024-01-25)

  • Expose python.abs()
  • Fix hasattr support of YamlDictWrapper (#324)
  • Contributors: Robert Haschke

2.0.9 (2023-02-27)

  • Evaluate arg value as str/unicode (#322)
  • Contributors: Robert Haschke

2.0.8 (2022-10-22)

  • Install xacro using console_script entrypoint (#304)
  • Provide xacro.process() returning the processed file (#229)
  • Dotted YAML access from list iterator (#318)
  • Optionally allow comment evaluation (#310)

    Comment evaluation can be enabled with a special comment:

    • <!-- xacro:eval-comments --> or
    • <!-- xacro:eval-comments:on -->

    It remains active for the following comments until:

    • the current XML tag's scope is left (or a new tag entered)
    • another tag or non-whitespace text is processed
    • it becomes explicitly disabled via: <!-- xacro:eval-comments:off -->
  • Fix property resolution with namespace usage (#308)
    • Allow access to properties in parent scopes again (fixes #305)
    • Pick correct scope when defining a property into the parent (fixes #307)

      Setting a property within the parent scope may occur in two contexts:

      1. From within a macro. In that case, one wants to set the property in the caller's scope.
      2. From within the included file. In that case, one wants to set the property in the includer's scope.
  • Contributors: Chen Bainian, Gonzalo de Pedro, Gonzo, Jacob Perron, Melvin Wang, Robert Haschke, vandanamandlik

2.0.7 (2021-09-04)

  • Allow more builtin symbols: sorted, set
  • Don't import hidden symbols from math package
  • Fix eval security vulnerability
    • safe_eval()
    • unit tests validating the protection mechanism
  • Generalize yaml !degrees constructors: Enable expressions as well
  • Improve macro arg parsing (#278) to support:
    • $(substitution args)
    • ${python expressions}
    • single or double quoting of spaces
  • Contributors: Robert Haschke

2.0.6 (2021-05-30)

  • [feature] Expose YamlDictWrapper as dotify() to allow dotted access to any dict (#274)
  • [fix] Scoped macro evaluation (#272)
  • Contributors: Robert Haschke

2.0.5 (2021-03-02)

  • [fix] Report correct filename for XML errors (#268)
  • [fix] Python3-compatible property Table (#266)
  • [fix] Use outer-scope symbols to resolve include filename in xacro:include (#264)
  • [fix] Append test directory to existing AMENT_PREFIX_PATH (#260)
  • [fix] yaml loading: recursively wrap lists and dicts for dotted dict access (#258)
  • [feature] Provide support for yaml constructors !degrees and !radians (#252)
  • Contributors: Chen Bainian, Robert Haschke, G.A. vd. Hoorn

2.0.3 (2020-08-09)

  • Merge improvements of melodic and noetic branches into dashing-devel: see 1.14.2 and 1.14.3 for details
  • Contributors: Robert Haschke

2.0.2 (2020-03-29)

  • Merge improvements of melodic and noetic branches into dashing-devel: see 1.14.1, 1.13.5 for details
  • Contributors: Robert Haschke

2.0.1 (2019-10-06)

  • Revert requiring that all xacro commands are prefixed with 'xacro:' namespace Although this is deprecated since #79, the corresponding deprecation warning wasn't actually issued. Thus, we will accept non-prefixed xacro tags until F-turtle.
  • Install to both, bin/xacro and lib/xacro/xacro
  • Contributors: Robert Haschke

2.0.0 (2019-09-28)

  • PEP8 cleanup
    • code simplifications
    • avoid empty except
    • sort imports
    • format line breaks
  • Code cleanup
    • Removed deprecated options --legacy, --inorder, --check-order, --includes
    • Require all xacro commands to be prefixed with 'xacro:'
    • Added missing copyright notices
    • Removed python2 stuff
  • Adapt Travis config to use colcon
  • Provide ROS2-based replacement for substition args
  • Modified package structure as per ROS2 rules
    • Using ament_cmake
    • Moved source contents from "src/xacro" to "xacro"
    • Modified package.xml and setup.py according to ROS2 requirements
    • Configured completion hook
    • Removed catkin artifacts from cmake extension
  • Contributors: vandanamandlik, Jacob Perron, Robert Haschke

1.14.4 (2020-08-09)

  • [fix] Rework YamlDictWrapper to restore dict properties (#250)
  • [fix] Ignore underscores when parsing literal numeric values (#247)
  • Contributors: Robert Haschke

1.14.3 (2020-07-05)

  • [feature] Improve warnings
    • Unify meaning of verbosity > 0 (to print file location)
    • Provide file location on warning in check_attrs()
    • Issue warning on child elements of <xacro:include> tag
  • [feature] Allow dotted access to yaml-loaded dicts: d.key1.key2.key3 (#245)
  • [maint] Travis: Update distro to Bionic
  • Contributors: Robert Haschke, G.A. vd. Hoorn

1.14.2 (2020-05-21)

  • [maintanence] Remove deprecated xacro.py (#239)
  • Contributors: Shane Loretz

1.14.1 (2020-03-29)

  • [feature] allow optional xacro includes (#234)
  • Contributors: Robert Haschke

1.13.5 (2019-12-08)

  • [feature] Expose abs_filename() (#220)
  • [feature] Catch missing closing brace in $() and ${} expressions
  • [maintanence]
    • Replace deprecated yaml.load() -> yaml.safe_load()
    • Save macro names internally w/o 'xacro:' prefix
    • Correctly issue deprecation warning for non-prefixed xacro tags
  • Contributors: Robert Haschke

1.13.4 (2019-09-26)

  • [feature] remove xmlns:xacro from processed file (#207)
    • Remove all notions of xmlns:xacro from the resulting document.
    • If the root node defines a xacro:targetNamespace attribute, this will become the global xmlns namespace of the resulting document.
  • [feature] Add len() to allowed python functions (#208)
  • [maintanence]
    • --in-order warning: reduce severity level to message
    • fix and cleanup test of cmake extensions
    • adapt run_xacro() to run xacro from PATH
    • simplify import of substition_args
    • remove 'requires' field from setup.py
    • fix Travis config: use new repository key, use xenial/kinetic distro
    • basic README.md
    • fix catkin_lint issue
    • remove duplicate catkin_python_setup() (#206)
  • Contributors: Robert Haschke, James Xu, Martin Pecka

1.13.3 (2018-10-14)

  • use INORDER as default in cmake functions
  • remove weird 'None's in error messages
  • Contributors: Robert Haschke

1.13.2 (2018-05-14)

  • deprecate --includes option (which is tied to deprecated --legacy processing)
  • moved all option handling to cli.py, including deprecation warnings for options
  • Contributors: Robert Haschke

1.13.1 (2018-05-03)

  • fix parsing of quoted strings in default args for xacro params (#187)
  • Contributors: Robert Haschke

1.13.0 (2018-03-31)

  • make --inorder processing the default
  • Contributors: Robert Haschke

1.12.1 (2018-03-28)

  • #183: unicode support for python2 and python3
  • #178: extend list of allowed python builtins: min, max, round
  • #182: suppress xacro warnings when determining dependencies
  • #151: fixes for #149 and #148
  • #157: fix #156 access to undefined target_table
  • #150: allow True/False literals in python expressions
  • #159: load ROS-related packages on demand, thus becoming more independent from ROS
  • #173: allow default values for properties
  • #172: fix formatting of XacroException
  • #171: fix dependency handling (--deps option)
  • #163: full python 3 compatibility
  • Contributors: Robert Haschke, Kartik Mohta, Morgan Quigley, Steven Peters

1.12.0 (2017-03-25)

1.11.2 (2017-02-27)

  • Convert exception to string in a python2/3 compatible way.
  • Use python2/3 independent check for file type.
  • Contributors: Hans Gaiser, Maarten de Vries

1.11.1 (2016-06-22)

  • workaround for xml.dom.minidom issue
  • ensure non-empty error string
  • Contributors: Robert Haschke

1.11.0 (2016-03-25)

  • added short option -i as alternative to --inorder
  • refactored main to fix #122, #107
  • added xacro indicator to error message to fix #123
  • moved banner generation to process_file()
  • removed special (but obsolete) output handling for just_includes mode
  • moved core processing pipeline into function process_file()
  • improved documentation: more comments, input_file -> input_file_name
  • fix #120: handle non-space whitespace characters in params string
  • extended tests to handle non-space whitespace characters in params string
  • always store macros with xacro: prefix in front: #118
  • fix #115: enforce xacro namespace usage with --xacro-ns option
  • apply correct checking for include tags, and extend testcase
  • allow (one-level) nested expression/extension evaluation
  • Contributors: Robert Haschke, Morgan Quigley

1.10.6 (2015-09-01)

  • use correct catkin environment for cmake dependency checking
  • fixed dependency definition for cmake usage
  • Contributors: Robert Haschke

1.10.5 (2015-08-12)

  • fix #108: evaluate property blocks recursively too
  • improved macro parameter parsing
  • use a regular expression to parse a param spec with forwarding and default
  • allow for spaces in default string (within single quotes)
  • forwarding macro arguments from outer scope
  • switched to [\^|]{.title-ref} syntax
  • use more compact [$|]{.title-ref} syntax
  • moved parsing of argument defaults to grab_macro()
  • explicit forwarding of properties to macro scope
  • replace silent/implicit forwarding of properties from outer scope to macro scope by an explicit "call" to a [forward(<name>[,<default>])]{.title-ref} function.
  • implicit forwarding of outer-scope properties to macro args (#100)
  • property evaluation fixes
  • suppress double evaluation of properties
  • adapted unittest to cover the fixed issue
  • fixed evaluation order for properties exported to parent or global scope
  • Merge pull request #103 from ubi-agni/overwrite-check issue warning when attempting to overwrite existing global property
  • fixed unittest: avoid overwrite warning
  • warn when overwriting any globally defined variable
  • Merge pull request #102 from ubi-agni/completion bash completion
  • Merge pull request #99 from ubi-agni/jade-devel reworked macro resolution
  • moved test_macro_name_with_colon() to class TestXacro should be tested both, in oldorder and inorder mode
  • bash completion
  • improved error message for failed $(find)
  • reworked macro resolution python-eval-based macro resolution (introduced to enable namespaces) heavily restricted the set of possible macro names (only valid python identifiers were allowed) Particularly, xacro: prefixed macro names were forbidden.
  • initial attempt to fix #97
  • add failing test case with colon in the macro name
  • Contributors: Robert Haschke

1.10.4 (2015-06-18)

  • removed test_DEPRECATED_should_replace_before_macroexpand() duplicates test_should_replace_before_macroexpand()
  • fixed evaluation order of macro arguments and body Macro arguments need to be evaluated and assigned to properties before body is evaluated. Otherwise, the evaluated value will be converted to str, i.e. loosing original type.
  • Contributors: Robert Haschke

1.10.3 (2015-06-16)

  • deprecate --oldorder processing
  • added --check-order option to do a simple check for --inorder compatibility
    • Most probable incompatibility is redefining a property after its usage.
    • tested and reported with file location of (first) redefinition after usage.
  • moved command line processing to cli.py
  • explain verbosity levels in usage string
  • colorize errors during cli parsing
  • log definition and usage of properties
  • replaced debug option by verbosity options -q, -v
  • fixed evaluation time of default macro params
  • introduced Macro object to increase code readability
  • parse a macro's parameter list once at declaration time (instead of every instantiation)
  • extended test_multiple_blocks() to check for both normal and reversed order
  • added unittest to increase code coverage
  • do not issue deprecation warning for <include> tags that are non-xacro
  • added option --oldorder
  • allow to store properties to parent or global scope
  • added <xacro:attribute>
  • cleaned up error message about missing files
  • moved xml-specific functions to xmlutils.py new generic functions opt_attrs(), reqd_attrs(), and check_attrs() to fetch optional and required attributes and warn about unknown ones in a uniform fashion
  • unittest to allow empty <arg> defaults
  • Merge pull request #94 from ubi-agni/minor-fixes
  • minor fixes
  • remove duplicates in --deps output
  • fixed dependency checking for --inorder mode (which requires full processing)
  • fixed doc of xacro' cmake macros
  • renamed "xacro:rename" to "xacro:element"
  • allow namespacing for xacro:include's
  • allow renaming of element names using xacro:rename
  • unittest cleanup
  • check property and macro names to be valid python identifiers
  • allow namespacing of xacro:include's
  • properties and macros in an included file will go into their own, separate namespace, if the XML attribute [ns]{.title-ref} is provided. Access is by standard python syntax: namespace.name
  • allow renaming of element names <xacro:rename xacro:name="<new element name>"/>
  • moved unittests requiring --inorder processing to class TestXacroInorder
  • added unittest test_dynamic_macro_undefined()
  • improved error message when variable include filename is used without --inorder
  • stripped down unittest test_inorder_processing()
  • improved processing
  • adapted pr2 gold standard removing most comments again this partially reverts 59605fb1521583dc63efdea13f4c45128499bd20
  • remove all XML comments directly before xacro elements (These are considered xacro-related only and should be removed in the final doc.) Leaving an empty line between xacro-unrelated and xacro-related comments allows to include the former.
  • unittest: test_ignore_xacro_comments()
  • improved processing
    • recursive (instead of iterative) eval_all()
    • reusable process_include()
    • replace_node() function to replace xacro tag by some other content
    • avoid reprocessing of nodes
    • avoid deep copy where possible (speedup)
  • fix evaluation (#83)
  • yaml support
  • check for consistency of xml namespaces on xacro:include
  • replaced strip()=='' by more efficient isspace()
  • allow transitive definition of substition args
  • fixed evaluation of literals in property definitions
    • literals with preceding whitespace will be silently stripped (#83)
    • more complex evaluation test (perturbing spaces added)
  • fixed xacro namespaces in pr2 files to get rid of new inconsistency warning
  • warning message on inconsistent namespace redefinition for includes
  • yaml support ${load_yaml('file.yaml')} to load dict from yaml file
  • Merge pull request #85 from ubi-agni/error-reporting improved error reporting
  • nicer formatting of multiple "when evaluating expression" lines
  • improved formatting of error messages use XacroException to wrap and augment other exceptions to achieve a clearer error formatting
  • better error message for missing substitution args
  • use colorized warnings where possible
  • included macro stack in error-reporting
  • maintain filestack to facilitate error reporting at any time
  • Merge pull request #82 from ubi-agni/unittests improved unittesting
  • allow to capture (and check) stderr in unit tests
  • improved unittests to test both, classic and in-order processing
  • Merge pull request #81 from ubi-agni/jade-devel Thank you for your time and contributions. Improving cosmetics is important.
  • PEP8 cleanup
  • cmake: only copy files to devel space if new
  • Merge pull request #80 from ubi-agni/jade-devel
  • improved error-handling opening the output file - running multiple xacro process in parallel, all writing into a new dir could cause a race condition when creating the dir
    • improved error message on output creation failure
  • removed rospy dependency
    • Importing rospy caused build order issues with ros_comm in workspace
  • Filtering out REMAP command-line arguments is done manually now.
  • update authors/maintainers and copyright statements
  • deprecate non-namespaced xacro tags
  • added missing print_location_msg() for file that actually failed parsing
  • improved deprecation warnings
  • New cli option [--xacro-ns]{.title-ref} allows to enforce the new policy requiring the xacro namespace prefix (and suppressing deprecation warnings). However, non-prefixed tags will not be modified by xacro anymore (as requested by #41, #59, #60). Partially reverted cb73cfd8c678adfda2172accef398189ea2338a1, handling <arg> tags in the same fashion as other tags, i.e. issue a warning if used without prefix and ignoring it with cli argument [--xacro-ns]{.title-ref}.
  • fixed pr2 xacro files to use 'xacro:' prefixed tags only
  • fixed unittests in test_xacro.py to use 'xacro:' prefixed tags only
  • deprecation message for missing xacro namespace prefix in xml tags
  • moved colored warning messages into color.py (for reuseability)
  • added missing print_location_msg() for file that actually failed parsing
  • improved xacro's cmake macros
  • prepend ${PACKAGE_NAME} to all generated cmake targets Otherwise multiple packages employing xacro's cmake macros will use the same conflicting target name. This is only an issue with catkin_make, which defines a single global cmake namespace. The new catkin tools (or catkin_make_isolated) build each package separately.
  • basic unittest for xacro's cmake macros
  • improved xacro's cmake macros - xacro_add_xacro_file() automatically determines output file from input (removing .xacro suffix). If that fails, a fatal error is raised.
    • added xacro_install() to allow installation into both, devel and install space.
    • replaced conveniency function xacro_add_files()
  • Contributors: Robert Haschke

1.10.2 (2015-05-23)

  • added --debug option to explicitly enable stack traces By default, only show error message to the user. Stack traces are only interesting for xacro developers.
  • recursive include processing
    • more informed error messages (which file was included from where)

    - allows relative path names for include filename specs they are interpreted relative to the current file

  • new substitution command $(cwd) to extract current working directory
  • added unittest cases
    • creation of required subdirs for output
    • recursive xacro:include
    • extended test_include_glob() to check for all glob patterns
  • added run_xacro() function to simplify unittests running xacro script
  • moved xacro.py back to original location
  • nicely colored deprecation warning
  • create required dirs before opening output file
  • added convenience cmake-macro xacro_add_target() to auto-generate xacro-processed files
  • added cmake status message before launching xacro (xacro might run for quite a while)
  • fetch xacro --deps errors at report them as a warning
  • simplified deprecation message
  • added missing return statement
  • removed obsolete math import left over from deaaae2c69edd7d5e185eeb098c1521d8711608b
  • install xacro.py again (for backwards compatibility) usage of xacro.py issues a deprecation warning
  • simplified scripts/xacro - removed xacro.py
    • made run script "scripts/xacro" and install process follow standards
    • removed xacro.py

    - added dependencies to setup.py Having the binaries xacro and xacro.py installed side by side causes problems, because xacro.py is wrongly taken as the module. This was avoided by the rather complex filtering of the sys.path. Switched to ROS standard now, using a binary script called "xacro".

  • changed tests to use the whole xacro processing pipeline utilizing the modularization of main() from previous commit This simplifies several existing tests, especially these using files on disk.
  • split main() into process_cli_arg(), parse(), process_doc()
  • extended cmake macro xacro_add_xacro_file()
    • handle INORDER option
    • handle REMAP arguments

    - create absolute input file names automatically usage: xacro_add_xacro_file(input output INORDER REMAP ...)

  • stripped new unit tests to essential xml snippets
  • merged pull request #68: eval properties assigned from <arg> tags as literals In the following example: <xacro:arg name="val" default="0.5"/> <xacro:property name="val" value="$(arg val)"/> ${val} was not evaluated as a number, but as string only. Thus numerical expressions failed with an exception.
  • factored out get_boolean_value()
  • <xacro:arg> needs to be fully specified
  • (handling <arg> tags (without xacro ns-prefix) disabled native <arg> tags) add test for eating launch parameter arguments remove check for "arg" parameter. move new test function to bottom of source
  • added unit tests for evaluation of list, tuple, and dict literals
  • fixed some code style issues
  • fixed string-isinstance checks (for python 3 compatibility)
  • do not evaluate list, dict, tuple expressions as literals (without ${} syntax)
  • added dict to list of known global symbols
  • focused global_symbols definition in the beginning of the file added some basic python symbols: list, str, float, int and map allowing some basic computation
  • tuning performance: instantiate QuickLexer's regexps only once
  • Contributors: Robert Haschke, Martin Pecka, Mike O'Driscoll, Morgan Quigley

1.10.1 (2015-04-01)

  • improved error handling and more descriptive error messages
  • correctly raise a XacroException on invalid, i.e. non-boolean, <xacro:if> expressions. (removed left-over debugging code, added test case)
  • raise an exception on undefined, but used macros Using the syntax <xacro:macroname/> should raise an exception if macroname is not defined. Added appropriate code and a test case.
  • fixed bookkeeping in lazy evaluation switch Table.unevaluated from list to set to avoid multiple key entries
  • fix formatting of changelog
  • Contributors: Robert Haschke

1.10.0 (2015-03-13)

  • security measure: forbid access to __builtins__ in expressions
  • literal evaluation should only consider literals, but no expressions use ast.literal_eval()
  • removed eval() from xacro:if evaluation
  • back to string comparison to handle (lowercase) true and false
  • add test case for equality expressions in <xacro:if>
  • add test case for math function usage
  • python based evaluation of expressions
    • replaced handle_expr with python-internal eval() call
    • care has been taken to resolve variables recursively on demand (in Table.__getitem__)
    • allows for evaluation of standard math functions
    • other desired functions could be added in eval_self_contained
    • Values in Table symbols are not stored as strings but as typed values.
  • If text is required, a conversion with str() is performed, to ensure proper evaluation of expressions. Otherwise 3*"1" would evaluate to "111".
  • use __future__.division we can handle integer division evaluating to floating-point devision, as before
  • allow variable names for filename attribute in <xacro:include>
  • allow for ordered XML processing to avoid issues with multiply defined properties and macros in (typically 3rd party) include files
    • enable the new behaviour by passing --inorder cmdline option
    • to improve code readibility and reusability, introduced functions
  • process_include(node), grab_macro(elt, macros), grab_property(elt, symbols) containing 1:1 corresponding handling from process_includes, grab_macros, and grab_properties
    • added corresponding test case test_inorder_processing()
  • dynamic macro names using <xacro:call macro=""/>
  • fixup unittests and handling of non-element nodes in <include>, <if>, <macro>
  • updated pr2 gold standard to include all comments
  • allow to ignore comments in nodes_match()
  • New handling of non-element nodes invalidates pr2 gold standard (adding a lot more comments). To allow validation, allow to ignore all comments in comparison (as before).
  • fixed handling of non-element nodes in <include>, <if>, <macro>
  • fixed writexml: text nodes were not printed when other siblings exist
    • print all text, but skip whitespace-only text nodes
  • improved xml matching
    • so far only element nodes (with its attributes) were considered
    • now also consider TEXT, CDATA, and COMMENT nodes
    • added function text_matches (normalizing consecutive whitespace to a single space)
    • added some new unit tests

    - test_consider_non_elements: non-element nodes are not yet considered in <if> and <macro>

  • travis-ci: use catkin_make
  • travis-ci: fixup running of tests
  • fix pathnames used in test case
  • Include CATKIN_ENV params at build time.
  • use output filename flag instead of shell redirection
  • create output file after parsing is complete, not before
  • Contributors: Robert Haschke, Mike O'Driscoll, Morgan Quigley, William Woodall

1.9.3 (2015-01-14)

  • merge test cases
  • add a snapshot of the pr2 model to the test directory. add a test case which verifies that the pr2 model is parsed equal to a 'golden' parse of it.
  • add more tests
  • add default arg tests
  • Allow default values for substitution args
  • Fix up comments
  • Allow xacro macros to have default parameters
  • Contributors: Paul Bovbel, Morgan Quigley

1.9.2 (2014-07-11)

  • add a few more tests to exercise the symbol table a bit more
  • allow for recursive evaluation of properties in expressions
  • add useful debugging information when parameters are not set
  • stop test from failing the second time it is run
  • unified if/unless handling, correctly handle floating point expressions
  • floating point expressions not equal zero are now evaluated as True
  • changed quotes to omit cmake warning
  • Contributors: Robert Haschke, Mike Ferguson

1.9.1 (2014-06-21)

  • fixup tests so they run
  • export architecture_independent flag in package.xml
  • installed relocatable fix
  • Contributors: Michael Ferguson, Mike Purvis, Scott K Logan

1.9.0 (2014-03-28)

  • Remove the roslint_python glob, use the default one.
  • Add roslint target to xacro; two whitespace fixes so that it passes.
  • fix evaluation of integers in if statements also added a unit test, fixes #15
  • fix setting of _xacro_py CMake var, fixes #16
  • Add support for globbing multiple files in a single <xacro:include>
  • code cleanup and python3 support
  • check for CATKIN_ENABLE_TESTING

1.8.4 (2013-08-06)

  • Merge pull request #9 from davetcoleman/hydro-devel Xacro should not use plain 'include' tags but only namespaced ones.
  • Fix for the fact that minidom creates text nodes which count as child nodes
  • Removed <uri> checking and made it more general for any child element of an <include> tag
  • Removed Groovy reference, only being applied to Hydro
  • Created check for Gazebo's <uri> tabs only only shows deprecated warnings if not present.
  • Small spelling fix
  • Xacro should not use plain 'include' tags but only namespaced ones.
  • Merge pull request #8 from piyushk/hydro-devel-conditional xacro conditional blocks
  • using refined arguments instead of sys.argv for xml file location
  • adding conditional blocks to xacro

1.8.3 (2013-04-22)

  • bumped version to 1.8.3 for hydro release
  • backwards compatilibity with rosbuild
  • adding unit test for substitution args
  • Adding supoprt for substitution_args 'arg' fields
  • Remove bin copy of xacro.py
  • 1.7.3
  • Install xacro.py as a program so it can be run
  • 1.7.2
  • fixed build issues introduced in catkinization
  • 1.7.1
  • PEP8, cleanup, and remove roslib
  • Update copyright, self import guard, and catkinize
  • Catkinize.
  • Cleanup in preparation of catkinization.
  • Added tag unstable for changeset 169c4bf30367
  • Added tag xacro-1.6.1 for changeset fc45af7fdada
  • 1.6.1 marker
  • xacro: fuerte compat with sub args import
  • Added tag unstable for changeset 2d3c8dbfa3c9
  • Added tag xacro-1.6.0 for changeset e4a4455189bf
  • 1.6.0
  • converted to unary stack from common stack
  • xacro: fixed inserting property blocks (ros-pkg #4561)
  • xacro now uses XacroExceptions. String exceptions are not allowed in Python anymore. #4209
  • Added Ubuntu platform tags to manifest
  • Xacro now places comments below <?xml> tag (#3859)
  • Xacro prints out cleaner xml. Elements are now often separated by a newline.
  • xacro dependency on roslaunch removed #3451
  • Xacro now adds a message mentioning that the file was autogenerated (#2775)
  • Remove use of deprecated rosbuild macros
  • Integers stay integers in xacro, fixing #3287
  • Tests for r25868
  • Added a flag for only evaluating include tags in xacro
  • Allowing multiple blocks and multiple insert_blocks, fixing #3322 and #3323
  • doc review completed for xacro
  • adding mainpage for xacro doc review
  • Added xacro.cmake file that exports new xacro_add_xacro_file() macro, #3020
  • Namespaced "include" tag in xacro
  • Marked xacro as api reviewed
  • Xacro now correctly declares the namespaces of the included documents in the final
  • Made xacro accept xml namespaces
  • Xacro now errors hard when a property is used without being declared
  • Xacro no longer allows you to create properties with "${}" in the name
  • Added the ability to escape "${" in xacro
  • Made the tests in xacro run again.
  • Created xacro/src
  • migration part 1

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

Name Deps
depthai_bridge
depthai_descriptions
depthai_examples
leo_description
leo_bringup
leo_gz_bringup
microstrain_inertial_description
mir_description
moveit_resources_prbt_moveit_config
moveit_resources_prbt_pg70_support
moveit_resources_prbt_support
moveit_ros_trajectory_cache
dual_arm_panda_moveit_config
moveit_resources_fanuc_moveit_config
moveit_resources_panda_moveit_config
open_manipulator_bringup
open_manipulator_moveit_config
raspimouse_description
realsense2_description
trac_ik_examples
ur_moveit_config
ur_robot_driver
velodyne_description
flir_camera_description
gz_ros2_control_demos
launch_param_builder
nav2_bringup
kortex_bringup
kinova_gen3_6dof_robotiq_2f_85_moveit_config
kinova_gen3_7dof_robotiq_2f_85_moveit_config
kinova_gen3_lite_moveit_config
robotiq_description
ros_gz_sim_demos
sick_safetyscanners2
sick_scan_xd
simple_launch
ur_description
ur_simulation_gz
urdf_launch
webots_ros2_importer
webots_ros2_universal_robot
crane_plus_control
crane_plus_description
crane_plus_moveit_config
raspimouse_slam
turtlebot3_manipulation_bringup
turtlebot3_manipulation_moveit_config
irobot_create_common_bringup
irobot_create_description
reach_ros
nav2_minimal_tb3_sim
nav2_minimal_tb4_description
nav2_minimal_tb4_sim
canopen_tests
synapticon_ros2_control
annin_ar4_description
annin_ar4_driver
annin_ar4_moveit_config
clearpath_manipulators
clearpath_manipulators_description
clearpath_platform_description
clearpath_config_live
nicla_vision_ros2
scenario_execution_ros
gazebo_static_camera

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged xacro at Robotics Stack Exchange

xacro package from xacro repo

xacro

Package Summary

Tags No category tags.
Version 2.0.13
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/xacro.git
VCS Type git
VCS Version ros2
Last Updated 2025-03-20
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Xacro (XML Macros) Xacro is an XML macro language. With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions.

Additional Links

Maintainers

  • Robert Haschke
  • Morgan Quigley

Authors

  • Stuart Glaser
  • William Woodall
  • Robert Haschke

Xacro (XML Macros)

Xacro is an XML macro language

With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions. Recent documentation can be found in the wiki. For older releases, have a look at the ROS wiki.

CHANGELOG

Changelog for package xacro

2.0.13 (2025-03-20)

  • Pass AMENT_PREFIX_PATH to xacro (#359)
  • Add Bazel build rules (#350)
  • Contributors: Michael Carroll, Robert Haschke, Sean Fish

2.0.12 (2025-01-08)

  • Handle new argument 'attr' in xml.dom.minidom._write_data() of Python 3.13 (#353)
  • pyproject.toml: Automatically determine version from git
  • Add function python.vars() (#348)
  • Contributors: Robert Haschke

2.0.11 (2024-04-02)

  • Allow substitution args without ROS (#340)
  • Add more unit tags for yaml files (#331)
  • Resolve $(find ...) as a result of a substitution argument (#339)
  • Mark regexes as raw strings (#336)
  • Add pyproject.toml for direct installation via pip (#329)
  • Contributors: Adam Heins, Bruno-Pier, Carlo Rizzardo, Lukas Huber, Robert Haschke

2.0.10 (2024-01-25)

  • Expose python.abs()
  • Fix hasattr support of YamlDictWrapper (#324)
  • Contributors: Robert Haschke

2.0.9 (2023-02-27)

  • Evaluate arg value as str/unicode (#322)
  • Contributors: Robert Haschke

2.0.8 (2022-10-22)

  • Install xacro using console_script entrypoint (#304)
  • Provide xacro.process() returning the processed file (#229)
  • Dotted YAML access from list iterator (#318)
  • Optionally allow comment evaluation (#310)

    Comment evaluation can be enabled with a special comment:

    • <!-- xacro:eval-comments --> or
    • <!-- xacro:eval-comments:on -->

    It remains active for the following comments until:

    • the current XML tag's scope is left (or a new tag entered)
    • another tag or non-whitespace text is processed
    • it becomes explicitly disabled via: <!-- xacro:eval-comments:off -->
  • Fix property resolution with namespace usage (#308)
    • Allow access to properties in parent scopes again (fixes #305)
    • Pick correct scope when defining a property into the parent (fixes #307)

      Setting a property within the parent scope may occur in two contexts:

      1. From within a macro. In that case, one wants to set the property in the caller's scope.
      2. From within the included file. In that case, one wants to set the property in the includer's scope.
  • Contributors: Chen Bainian, Gonzalo de Pedro, Gonzo, Jacob Perron, Melvin Wang, Robert Haschke, vandanamandlik

2.0.7 (2021-09-04)

  • Allow more builtin symbols: sorted, set
  • Don't import hidden symbols from math package
  • Fix eval security vulnerability
    • safe_eval()
    • unit tests validating the protection mechanism
  • Generalize yaml !degrees constructors: Enable expressions as well
  • Improve macro arg parsing (#278) to support:
    • $(substitution args)
    • ${python expressions}
    • single or double quoting of spaces
  • Contributors: Robert Haschke

2.0.6 (2021-05-30)

  • [feature] Expose YamlDictWrapper as dotify() to allow dotted access to any dict (#274)
  • [fix] Scoped macro evaluation (#272)
  • Contributors: Robert Haschke

2.0.5 (2021-03-02)

  • [fix] Report correct filename for XML errors (#268)
  • [fix] Python3-compatible property Table (#266)
  • [fix] Use outer-scope symbols to resolve include filename in xacro:include (#264)
  • [fix] Append test directory to existing AMENT_PREFIX_PATH (#260)
  • [fix] yaml loading: recursively wrap lists and dicts for dotted dict access (#258)
  • [feature] Provide support for yaml constructors !degrees and !radians (#252)
  • Contributors: Chen Bainian, Robert Haschke, G.A. vd. Hoorn

2.0.3 (2020-08-09)

  • Merge improvements of melodic and noetic branches into dashing-devel: see 1.14.2 and 1.14.3 for details
  • Contributors: Robert Haschke

2.0.2 (2020-03-29)

  • Merge improvements of melodic and noetic branches into dashing-devel: see 1.14.1, 1.13.5 for details
  • Contributors: Robert Haschke

2.0.1 (2019-10-06)

  • Revert requiring that all xacro commands are prefixed with 'xacro:' namespace Although this is deprecated since #79, the corresponding deprecation warning wasn't actually issued. Thus, we will accept non-prefixed xacro tags until F-turtle.
  • Install to both, bin/xacro and lib/xacro/xacro
  • Contributors: Robert Haschke

2.0.0 (2019-09-28)

  • PEP8 cleanup
    • code simplifications
    • avoid empty except
    • sort imports
    • format line breaks
  • Code cleanup
    • Removed deprecated options --legacy, --inorder, --check-order, --includes
    • Require all xacro commands to be prefixed with 'xacro:'
    • Added missing copyright notices
    • Removed python2 stuff
  • Adapt Travis config to use colcon
  • Provide ROS2-based replacement for substition args
  • Modified package structure as per ROS2 rules
    • Using ament_cmake
    • Moved source contents from "src/xacro" to "xacro"
    • Modified package.xml and setup.py according to ROS2 requirements
    • Configured completion hook
    • Removed catkin artifacts from cmake extension
  • Contributors: vandanamandlik, Jacob Perron, Robert Haschke

1.14.4 (2020-08-09)

  • [fix] Rework YamlDictWrapper to restore dict properties (#250)
  • [fix] Ignore underscores when parsing literal numeric values (#247)
  • Contributors: Robert Haschke

1.14.3 (2020-07-05)

  • [feature] Improve warnings
    • Unify meaning of verbosity > 0 (to print file location)
    • Provide file location on warning in check_attrs()
    • Issue warning on child elements of <xacro:include> tag
  • [feature] Allow dotted access to yaml-loaded dicts: d.key1.key2.key3 (#245)
  • [maint] Travis: Update distro to Bionic
  • Contributors: Robert Haschke, G.A. vd. Hoorn

1.14.2 (2020-05-21)

  • [maintanence] Remove deprecated xacro.py (#239)
  • Contributors: Shane Loretz

1.14.1 (2020-03-29)

  • [feature] allow optional xacro includes (#234)
  • Contributors: Robert Haschke

1.13.5 (2019-12-08)

  • [feature] Expose abs_filename() (#220)
  • [feature] Catch missing closing brace in $() and ${} expressions
  • [maintanence]
    • Replace deprecated yaml.load() -> yaml.safe_load()
    • Save macro names internally w/o 'xacro:' prefix
    • Correctly issue deprecation warning for non-prefixed xacro tags
  • Contributors: Robert Haschke

1.13.4 (2019-09-26)

  • [feature] remove xmlns:xacro from processed file (#207)
    • Remove all notions of xmlns:xacro from the resulting document.
    • If the root node defines a xacro:targetNamespace attribute, this will become the global xmlns namespace of the resulting document.
  • [feature] Add len() to allowed python functions (#208)
  • [maintanence]
    • --in-order warning: reduce severity level to message
    • fix and cleanup test of cmake extensions
    • adapt run_xacro() to run xacro from PATH
    • simplify import of substition_args
    • remove 'requires' field from setup.py
    • fix Travis config: use new repository key, use xenial/kinetic distro
    • basic README.md
    • fix catkin_lint issue
    • remove duplicate catkin_python_setup() (#206)
  • Contributors: Robert Haschke, James Xu, Martin Pecka

1.13.3 (2018-10-14)

  • use INORDER as default in cmake functions
  • remove weird 'None's in error messages
  • Contributors: Robert Haschke

1.13.2 (2018-05-14)

  • deprecate --includes option (which is tied to deprecated --legacy processing)
  • moved all option handling to cli.py, including deprecation warnings for options
  • Contributors: Robert Haschke

1.13.1 (2018-05-03)

  • fix parsing of quoted strings in default args for xacro params (#187)
  • Contributors: Robert Haschke

1.13.0 (2018-03-31)

  • make --inorder processing the default
  • Contributors: Robert Haschke

1.12.1 (2018-03-28)

  • #183: unicode support for python2 and python3
  • #178: extend list of allowed python builtins: min, max, round
  • #182: suppress xacro warnings when determining dependencies
  • #151: fixes for #149 and #148
  • #157: fix #156 access to undefined target_table
  • #150: allow True/False literals in python expressions
  • #159: load ROS-related packages on demand, thus becoming more independent from ROS
  • #173: allow default values for properties
  • #172: fix formatting of XacroException
  • #171: fix dependency handling (--deps option)
  • #163: full python 3 compatibility
  • Contributors: Robert Haschke, Kartik Mohta, Morgan Quigley, Steven Peters

1.12.0 (2017-03-25)

1.11.2 (2017-02-27)

  • Convert exception to string in a python2/3 compatible way.
  • Use python2/3 independent check for file type.
  • Contributors: Hans Gaiser, Maarten de Vries

1.11.1 (2016-06-22)

  • workaround for xml.dom.minidom issue
  • ensure non-empty error string
  • Contributors: Robert Haschke

1.11.0 (2016-03-25)

  • added short option -i as alternative to --inorder
  • refactored main to fix #122, #107
  • added xacro indicator to error message to fix #123
  • moved banner generation to process_file()
  • removed special (but obsolete) output handling for just_includes mode
  • moved core processing pipeline into function process_file()
  • improved documentation: more comments, input_file -> input_file_name
  • fix #120: handle non-space whitespace characters in params string
  • extended tests to handle non-space whitespace characters in params string
  • always store macros with xacro: prefix in front: #118
  • fix #115: enforce xacro namespace usage with --xacro-ns option
  • apply correct checking for include tags, and extend testcase
  • allow (one-level) nested expression/extension evaluation
  • Contributors: Robert Haschke, Morgan Quigley

1.10.6 (2015-09-01)

  • use correct catkin environment for cmake dependency checking
  • fixed dependency definition for cmake usage
  • Contributors: Robert Haschke

1.10.5 (2015-08-12)

  • fix #108: evaluate property blocks recursively too
  • improved macro parameter parsing
  • use a regular expression to parse a param spec with forwarding and default
  • allow for spaces in default string (within single quotes)
  • forwarding macro arguments from outer scope
  • switched to [\^|]{.title-ref} syntax
  • use more compact [$|]{.title-ref} syntax
  • moved parsing of argument defaults to grab_macro()
  • explicit forwarding of properties to macro scope
  • replace silent/implicit forwarding of properties from outer scope to macro scope by an explicit "call" to a [forward(<name>[,<default>])]{.title-ref} function.
  • implicit forwarding of outer-scope properties to macro args (#100)
  • property evaluation fixes
  • suppress double evaluation of properties
  • adapted unittest to cover the fixed issue
  • fixed evaluation order for properties exported to parent or global scope
  • Merge pull request #103 from ubi-agni/overwrite-check issue warning when attempting to overwrite existing global property
  • fixed unittest: avoid overwrite warning
  • warn when overwriting any globally defined variable
  • Merge pull request #102 from ubi-agni/completion bash completion
  • Merge pull request #99 from ubi-agni/jade-devel reworked macro resolution
  • moved test_macro_name_with_colon() to class TestXacro should be tested both, in oldorder and inorder mode
  • bash completion
  • improved error message for failed $(find)
  • reworked macro resolution python-eval-based macro resolution (introduced to enable namespaces) heavily restricted the set of possible macro names (only valid python identifiers were allowed) Particularly, xacro: prefixed macro names were forbidden.
  • initial attempt to fix #97
  • add failing test case with colon in the macro name
  • Contributors: Robert Haschke

1.10.4 (2015-06-18)

  • removed test_DEPRECATED_should_replace_before_macroexpand() duplicates test_should_replace_before_macroexpand()
  • fixed evaluation order of macro arguments and body Macro arguments need to be evaluated and assigned to properties before body is evaluated. Otherwise, the evaluated value will be converted to str, i.e. loosing original type.
  • Contributors: Robert Haschke

1.10.3 (2015-06-16)

  • deprecate --oldorder processing
  • added --check-order option to do a simple check for --inorder compatibility
    • Most probable incompatibility is redefining a property after its usage.
    • tested and reported with file location of (first) redefinition after usage.
  • moved command line processing to cli.py
  • explain verbosity levels in usage string
  • colorize errors during cli parsing
  • log definition and usage of properties
  • replaced debug option by verbosity options -q, -v
  • fixed evaluation time of default macro params
  • introduced Macro object to increase code readability
  • parse a macro's parameter list once at declaration time (instead of every instantiation)
  • extended test_multiple_blocks() to check for both normal and reversed order
  • added unittest to increase code coverage
  • do not issue deprecation warning for <include> tags that are non-xacro
  • added option --oldorder
  • allow to store properties to parent or global scope
  • added <xacro:attribute>
  • cleaned up error message about missing files
  • moved xml-specific functions to xmlutils.py new generic functions opt_attrs(), reqd_attrs(), and check_attrs() to fetch optional and required attributes and warn about unknown ones in a uniform fashion
  • unittest to allow empty <arg> defaults
  • Merge pull request #94 from ubi-agni/minor-fixes
  • minor fixes
  • remove duplicates in --deps output
  • fixed dependency checking for --inorder mode (which requires full processing)
  • fixed doc of xacro' cmake macros
  • renamed "xacro:rename" to "xacro:element"
  • allow namespacing for xacro:include's
  • allow renaming of element names using xacro:rename
  • unittest cleanup
  • check property and macro names to be valid python identifiers
  • allow namespacing of xacro:include's
  • properties and macros in an included file will go into their own, separate namespace, if the XML attribute [ns]{.title-ref} is provided. Access is by standard python syntax: namespace.name
  • allow renaming of element names <xacro:rename xacro:name="<new element name>"/>
  • moved unittests requiring --inorder processing to class TestXacroInorder
  • added unittest test_dynamic_macro_undefined()
  • improved error message when variable include filename is used without --inorder
  • stripped down unittest test_inorder_processing()
  • improved processing
  • adapted pr2 gold standard removing most comments again this partially reverts 59605fb1521583dc63efdea13f4c45128499bd20
  • remove all XML comments directly before xacro elements (These are considered xacro-related only and should be removed in the final doc.) Leaving an empty line between xacro-unrelated and xacro-related comments allows to include the former.
  • unittest: test_ignore_xacro_comments()
  • improved processing
    • recursive (instead of iterative) eval_all()
    • reusable process_include()
    • replace_node() function to replace xacro tag by some other content
    • avoid reprocessing of nodes
    • avoid deep copy where possible (speedup)
  • fix evaluation (#83)
  • yaml support
  • check for consistency of xml namespaces on xacro:include
  • replaced strip()=='' by more efficient isspace()
  • allow transitive definition of substition args
  • fixed evaluation of literals in property definitions
    • literals with preceding whitespace will be silently stripped (#83)
    • more complex evaluation test (perturbing spaces added)
  • fixed xacro namespaces in pr2 files to get rid of new inconsistency warning
  • warning message on inconsistent namespace redefinition for includes
  • yaml support ${load_yaml('file.yaml')} to load dict from yaml file
  • Merge pull request #85 from ubi-agni/error-reporting improved error reporting
  • nicer formatting of multiple "when evaluating expression" lines
  • improved formatting of error messages use XacroException to wrap and augment other exceptions to achieve a clearer error formatting
  • better error message for missing substitution args
  • use colorized warnings where possible
  • included macro stack in error-reporting
  • maintain filestack to facilitate error reporting at any time
  • Merge pull request #82 from ubi-agni/unittests improved unittesting
  • allow to capture (and check) stderr in unit tests
  • improved unittests to test both, classic and in-order processing
  • Merge pull request #81 from ubi-agni/jade-devel Thank you for your time and contributions. Improving cosmetics is important.
  • PEP8 cleanup
  • cmake: only copy files to devel space if new
  • Merge pull request #80 from ubi-agni/jade-devel
  • improved error-handling opening the output file - running multiple xacro process in parallel, all writing into a new dir could cause a race condition when creating the dir
    • improved error message on output creation failure
  • removed rospy dependency
    • Importing rospy caused build order issues with ros_comm in workspace
  • Filtering out REMAP command-line arguments is done manually now.
  • update authors/maintainers and copyright statements
  • deprecate non-namespaced xacro tags
  • added missing print_location_msg() for file that actually failed parsing
  • improved deprecation warnings
  • New cli option [--xacro-ns]{.title-ref} allows to enforce the new policy requiring the xacro namespace prefix (and suppressing deprecation warnings). However, non-prefixed tags will not be modified by xacro anymore (as requested by #41, #59, #60). Partially reverted cb73cfd8c678adfda2172accef398189ea2338a1, handling <arg> tags in the same fashion as other tags, i.e. issue a warning if used without prefix and ignoring it with cli argument [--xacro-ns]{.title-ref}.
  • fixed pr2 xacro files to use 'xacro:' prefixed tags only
  • fixed unittests in test_xacro.py to use 'xacro:' prefixed tags only
  • deprecation message for missing xacro namespace prefix in xml tags
  • moved colored warning messages into color.py (for reuseability)
  • added missing print_location_msg() for file that actually failed parsing
  • improved xacro's cmake macros
  • prepend ${PACKAGE_NAME} to all generated cmake targets Otherwise multiple packages employing xacro's cmake macros will use the same conflicting target name. This is only an issue with catkin_make, which defines a single global cmake namespace. The new catkin tools (or catkin_make_isolated) build each package separately.
  • basic unittest for xacro's cmake macros
  • improved xacro's cmake macros - xacro_add_xacro_file() automatically determines output file from input (removing .xacro suffix). If that fails, a fatal error is raised.
    • added xacro_install() to allow installation into both, devel and install space.
    • replaced conveniency function xacro_add_files()
  • Contributors: Robert Haschke

1.10.2 (2015-05-23)

  • added --debug option to explicitly enable stack traces By default, only show error message to the user. Stack traces are only interesting for xacro developers.
  • recursive include processing
    • more informed error messages (which file was included from where)

    - allows relative path names for include filename specs they are interpreted relative to the current file

  • new substitution command $(cwd) to extract current working directory
  • added unittest cases
    • creation of required subdirs for output
    • recursive xacro:include
    • extended test_include_glob() to check for all glob patterns
  • added run_xacro() function to simplify unittests running xacro script
  • moved xacro.py back to original location
  • nicely colored deprecation warning
  • create required dirs before opening output file
  • added convenience cmake-macro xacro_add_target() to auto-generate xacro-processed files
  • added cmake status message before launching xacro (xacro might run for quite a while)
  • fetch xacro --deps errors at report them as a warning
  • simplified deprecation message
  • added missing return statement
  • removed obsolete math import left over from deaaae2c69edd7d5e185eeb098c1521d8711608b
  • install xacro.py again (for backwards compatibility) usage of xacro.py issues a deprecation warning
  • simplified scripts/xacro - removed xacro.py
    • made run script "scripts/xacro" and install process follow standards
    • removed xacro.py

    - added dependencies to setup.py Having the binaries xacro and xacro.py installed side by side causes problems, because xacro.py is wrongly taken as the module. This was avoided by the rather complex filtering of the sys.path. Switched to ROS standard now, using a binary script called "xacro".

  • changed tests to use the whole xacro processing pipeline utilizing the modularization of main() from previous commit This simplifies several existing tests, especially these using files on disk.
  • split main() into process_cli_arg(), parse(), process_doc()
  • extended cmake macro xacro_add_xacro_file()
    • handle INORDER option
    • handle REMAP arguments

    - create absolute input file names automatically usage: xacro_add_xacro_file(input output INORDER REMAP ...)

  • stripped new unit tests to essential xml snippets
  • merged pull request #68: eval properties assigned from <arg> tags as literals In the following example: <xacro:arg name="val" default="0.5"/> <xacro:property name="val" value="$(arg val)"/> ${val} was not evaluated as a number, but as string only. Thus numerical expressions failed with an exception.
  • factored out get_boolean_value()
  • <xacro:arg> needs to be fully specified
  • (handling <arg> tags (without xacro ns-prefix) disabled native <arg> tags) add test for eating launch parameter arguments remove check for "arg" parameter. move new test function to bottom of source
  • added unit tests for evaluation of list, tuple, and dict literals
  • fixed some code style issues
  • fixed string-isinstance checks (for python 3 compatibility)
  • do not evaluate list, dict, tuple expressions as literals (without ${} syntax)
  • added dict to list of known global symbols
  • focused global_symbols definition in the beginning of the file added some basic python symbols: list, str, float, int and map allowing some basic computation
  • tuning performance: instantiate QuickLexer's regexps only once
  • Contributors: Robert Haschke, Martin Pecka, Mike O'Driscoll, Morgan Quigley

1.10.1 (2015-04-01)

  • improved error handling and more descriptive error messages
  • correctly raise a XacroException on invalid, i.e. non-boolean, <xacro:if> expressions. (removed left-over debugging code, added test case)
  • raise an exception on undefined, but used macros Using the syntax <xacro:macroname/> should raise an exception if macroname is not defined. Added appropriate code and a test case.
  • fixed bookkeeping in lazy evaluation switch Table.unevaluated from list to set to avoid multiple key entries
  • fix formatting of changelog
  • Contributors: Robert Haschke

1.10.0 (2015-03-13)

  • security measure: forbid access to __builtins__ in expressions
  • literal evaluation should only consider literals, but no expressions use ast.literal_eval()
  • removed eval() from xacro:if evaluation
  • back to string comparison to handle (lowercase) true and false
  • add test case for equality expressions in <xacro:if>
  • add test case for math function usage
  • python based evaluation of expressions
    • replaced handle_expr with python-internal eval() call
    • care has been taken to resolve variables recursively on demand (in Table.__getitem__)
    • allows for evaluation of standard math functions
    • other desired functions could be added in eval_self_contained
    • Values in Table symbols are not stored as strings but as typed values.
  • If text is required, a conversion with str() is performed, to ensure proper evaluation of expressions. Otherwise 3*"1" would evaluate to "111".
  • use __future__.division we can handle integer division evaluating to floating-point devision, as before
  • allow variable names for filename attribute in <xacro:include>
  • allow for ordered XML processing to avoid issues with multiply defined properties and macros in (typically 3rd party) include files
    • enable the new behaviour by passing --inorder cmdline option
    • to improve code readibility and reusability, introduced functions
  • process_include(node), grab_macro(elt, macros), grab_property(elt, symbols) containing 1:1 corresponding handling from process_includes, grab_macros, and grab_properties
    • added corresponding test case test_inorder_processing()
  • dynamic macro names using <xacro:call macro=""/>
  • fixup unittests and handling of non-element nodes in <include>, <if>, <macro>
  • updated pr2 gold standard to include all comments
  • allow to ignore comments in nodes_match()
  • New handling of non-element nodes invalidates pr2 gold standard (adding a lot more comments). To allow validation, allow to ignore all comments in comparison (as before).
  • fixed handling of non-element nodes in <include>, <if>, <macro>
  • fixed writexml: text nodes were not printed when other siblings exist
    • print all text, but skip whitespace-only text nodes
  • improved xml matching
    • so far only element nodes (with its attributes) were considered
    • now also consider TEXT, CDATA, and COMMENT nodes
    • added function text_matches (normalizing consecutive whitespace to a single space)
    • added some new unit tests

    - test_consider_non_elements: non-element nodes are not yet considered in <if> and <macro>

  • travis-ci: use catkin_make
  • travis-ci: fixup running of tests
  • fix pathnames used in test case
  • Include CATKIN_ENV params at build time.
  • use output filename flag instead of shell redirection
  • create output file after parsing is complete, not before
  • Contributors: Robert Haschke, Mike O'Driscoll, Morgan Quigley, William Woodall

1.9.3 (2015-01-14)

  • merge test cases
  • add a snapshot of the pr2 model to the test directory. add a test case which verifies that the pr2 model is parsed equal to a 'golden' parse of it.
  • add more tests
  • add default arg tests
  • Allow default values for substitution args
  • Fix up comments
  • Allow xacro macros to have default parameters
  • Contributors: Paul Bovbel, Morgan Quigley

1.9.2 (2014-07-11)

  • add a few more tests to exercise the symbol table a bit more
  • allow for recursive evaluation of properties in expressions
  • add useful debugging information when parameters are not set
  • stop test from failing the second time it is run
  • unified if/unless handling, correctly handle floating point expressions
  • floating point expressions not equal zero are now evaluated as True
  • changed quotes to omit cmake warning
  • Contributors: Robert Haschke, Mike Ferguson

1.9.1 (2014-06-21)

  • fixup tests so they run
  • export architecture_independent flag in package.xml
  • installed relocatable fix
  • Contributors: Michael Ferguson, Mike Purvis, Scott K Logan

1.9.0 (2014-03-28)

  • Remove the roslint_python glob, use the default one.
  • Add roslint target to xacro; two whitespace fixes so that it passes.
  • fix evaluation of integers in if statements also added a unit test, fixes #15
  • fix setting of _xacro_py CMake var, fixes #16
  • Add support for globbing multiple files in a single <xacro:include>
  • code cleanup and python3 support
  • check for CATKIN_ENABLE_TESTING

1.8.4 (2013-08-06)

  • Merge pull request #9 from davetcoleman/hydro-devel Xacro should not use plain 'include' tags but only namespaced ones.
  • Fix for the fact that minidom creates text nodes which count as child nodes
  • Removed <uri> checking and made it more general for any child element of an <include> tag
  • Removed Groovy reference, only being applied to Hydro
  • Created check for Gazebo's <uri> tabs only only shows deprecated warnings if not present.
  • Small spelling fix
  • Xacro should not use plain 'include' tags but only namespaced ones.
  • Merge pull request #8 from piyushk/hydro-devel-conditional xacro conditional blocks
  • using refined arguments instead of sys.argv for xml file location
  • adding conditional blocks to xacro

1.8.3 (2013-04-22)

  • bumped version to 1.8.3 for hydro release
  • backwards compatilibity with rosbuild
  • adding unit test for substitution args
  • Adding supoprt for substitution_args 'arg' fields
  • Remove bin copy of xacro.py
  • 1.7.3
  • Install xacro.py as a program so it can be run
  • 1.7.2
  • fixed build issues introduced in catkinization
  • 1.7.1
  • PEP8, cleanup, and remove roslib
  • Update copyright, self import guard, and catkinize
  • Catkinize.
  • Cleanup in preparation of catkinization.
  • Added tag unstable for changeset 169c4bf30367
  • Added tag xacro-1.6.1 for changeset fc45af7fdada
  • 1.6.1 marker
  • xacro: fuerte compat with sub args import
  • Added tag unstable for changeset 2d3c8dbfa3c9
  • Added tag xacro-1.6.0 for changeset e4a4455189bf
  • 1.6.0
  • converted to unary stack from common stack
  • xacro: fixed inserting property blocks (ros-pkg #4561)
  • xacro now uses XacroExceptions. String exceptions are not allowed in Python anymore. #4209
  • Added Ubuntu platform tags to manifest
  • Xacro now places comments below <?xml> tag (#3859)
  • Xacro prints out cleaner xml. Elements are now often separated by a newline.
  • xacro dependency on roslaunch removed #3451
  • Xacro now adds a message mentioning that the file was autogenerated (#2775)
  • Remove use of deprecated rosbuild macros
  • Integers stay integers in xacro, fixing #3287
  • Tests for r25868
  • Added a flag for only evaluating include tags in xacro
  • Allowing multiple blocks and multiple insert_blocks, fixing #3322 and #3323
  • doc review completed for xacro
  • adding mainpage for xacro doc review
  • Added xacro.cmake file that exports new xacro_add_xacro_file() macro, #3020
  • Namespaced "include" tag in xacro
  • Marked xacro as api reviewed
  • Xacro now correctly declares the namespaces of the included documents in the final
  • Made xacro accept xml namespaces
  • Xacro now errors hard when a property is used without being declared
  • Xacro no longer allows you to create properties with "${}" in the name
  • Added the ability to escape "${" in xacro
  • Made the tests in xacro run again.
  • Created xacro/src
  • migration part 1

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged xacro at Robotics Stack Exchange

xacro package from autodrrt repo

autonomous_emergency_braking control_performance_analysis control_validator external_cmd_selector joy_controller lane_departure_checker mpc_lateral_controller obstacle_collision_checker operation_mode_transition_manager pid_longitudinal_controller predicted_path_checker pure_pursuit shift_decider trajectory_follower_base trajectory_follower_node vehicle_cmd_gate diagnostic_converter kinematic_evaluator localization_evaluator planning_evaluator ekf_localizer geo_pose_projector gyro_odometer ar_tag_based_localizer landmark_manager localization_error_monitor localization_util ndt_scan_matcher pose2twist pose_initializer pose_instability_detector stop_filter tree_structured_parzen_estimator twist2accel yabloc_common yabloc_image_processing yabloc_monitor yabloc_particle_filter yabloc_pose_initializer map_height_fitter map_loader map_projection_loader map_tf_generator lanelet2_map_preprocessor ros2_bevdet ros2_bevformer bevfusion bytetrack cluster_merger compare_map_segmentation crosswalk_traffic_light_estimator detected_object_feature_remover detected_object_validation detection_by_tracker elevation_map_loader euclidean_cluster front_vehicle_velocity_estimator ground_segmentation heatmap_visualizer image_projection_based_fusion lidar_apollo_instance_segmentation lidar_apollo_segmentation_tvm lidar_apollo_segmentation_tvm_nodes lidar_centerpoint lidar_centerpoint_tvm map_based_prediction multi_object_tracker object_merger object_range_splitter object_velocity_splitter occupancy_grid_map_outlier_filter probabilistic_occupancy_grid_map radar_crossing_objects_noise_filter radar_fusion_to_detected_object radar_object_clustering radar_object_tracker radar_tracks_msgs_converter shape_estimation simple_object_merger tensorrt_classifier tensorrt_yolo tensorrt_yolox tracking_object_merger traffic_light_arbiter traffic_light_classifier traffic_light_fine_detector traffic_light_map_based_detector traffic_light_multi_camera_fusion traffic_light_occlusion_predictor traffic_light_ssd_fine_detector traffic_light_visualization behavior_path_avoidance_by_lane_change_module behavior_path_avoidance_module behavior_path_external_request_lane_change_module behavior_path_goal_planner_module behavior_path_lane_change_module behavior_path_planner behavior_path_planner_common behavior_path_side_shift_module behavior_path_start_planner_module behavior_velocity_blind_spot_module behavior_velocity_crosswalk_module behavior_velocity_detection_area_module behavior_velocity_intersection_module behavior_velocity_no_drivable_lane_module behavior_velocity_no_stopping_area_module behavior_velocity_occlusion_spot_module behavior_velocity_out_of_lane_module behavior_velocity_planner behavior_velocity_planner_common behavior_velocity_run_out_module behavior_velocity_speed_bump_module behavior_velocity_stop_line_module behavior_velocity_template_module behavior_velocity_traffic_light_module behavior_velocity_virtual_traffic_light_module behavior_velocity_walkway_module costmap_generator external_velocity_limit_selector freespace_planner freespace_planning_algorithms mission_planner motion_velocity_smoother objects_of_interest_marker_interface obstacle_avoidance_planner obstacle_cruise_planner obstacle_stop_planner obstacle_velocity_limiter path_smoother planning_debug_tools planning_test_utils planning_topic_converter planning_validator route_handler rtc_interface rtc_replayer bezier_sampler frenet_planner path_sampler sampler_common scenario_selector static_centerline_optimizer surround_obstacle_checker gnss_poser image_diagnostics image_transport_decompressor imu_corrector livox_tag_filter pointcloud_preprocessor radar_scan_to_pointcloud2 radar_static_pointcloud_filter radar_threshold_filter radar_tracks_noise_filter tier4_pcl_extensions vehicle_velocity_converter autoware_auto_msgs_adapter bluetooth_monitor component_state_monitor default_ad_api ad_api_adaptors ad_api_visualizers automatic_pose_initializer diagnostic_graph_aggregator dummy_diag_publisher dummy_infrastructure duplicated_node_checker emergency_handler mrm_comfortable_stop_operator mrm_emergency_stop_operator system_error_monitor system_monitor topic_state_monitor velodyne_monitor accel_brake_map_calibrator external_cmd_converter raw_vehicle_cmd_converter steer_offset_estimator vehicle_info_util launch launch_ros autoware_ad_api_specs autoware_adapi_v1_msgs autoware_adapi_version_msgs autoware_auto_common autoware_auto_geometry autoware_auto_control_msgs autoware_auto_geometry_msgs autoware_auto_mapping_msgs autoware_auto_msgs autoware_auto_perception_msgs autoware_auto_planning_msgs autoware_auto_system_msgs autoware_auto_vehicle_msgs autoware_auto_perception_rviz_plugin autoware_auto_tf2 autoware_cmake autoware_lint_common autoware_utils lanelet2_extension autoware_common_msgs autoware_control_msgs autoware_localization_msgs autoware_map_msgs autoware_perception_msgs autoware_planning_msgs autoware_sensing_msgs autoware_system_msgs autoware_vehicle_msgs autoware_point_types autoware_testing bag_time_manager_rviz_plugin component_interface_specs component_interface_tools component_interface_utils cuda_utils fake_test_node geography_utils global_parameter_loader glog_component goal_distance_calculator grid_map_utils interpolation kalman_filter motion_utils object_recognition_utils osqp_interface path_distance_calculator perception_utils polar_grid qp_interface rtc_manager_rviz_plugin signal_processing tensorrt_common tier4_adapi_rviz_plugin tier4_api_utils tier4_automatic_goal_rviz_plugin tier4_autoware_utils tier4_calibration_rviz_plugin tier4_camera_view_rviz_plugin tier4_control_rviz_plugin tier4_datetime_rviz_plugin tier4_debug_rviz_plugin tier4_debug_tools tier4_localization_rviz_plugin tier4_perception_rviz_plugin tier4_planning_rviz_plugin tier4_screen_capture_rviz_plugin tier4_simulated_clock_rviz_plugin tier4_state_rviz_plugin tier4_system_rviz_plugin tier4_target_object_type_rviz_plugin tier4_traffic_light_rviz_plugin tier4_vehicle_rviz_plugin time_utils simulator_compatibility_test traffic_light_recognition_marker_publisher traffic_light_utils tvm_utility dma_customer_msg dma_transfer eagleye_coordinate eagleye_navigation eagleye_msgs eagleye_rt eagleye_can_velocity_converter eagleye_fix2kml eagleye_geo_pose_converter eagleye_geo_pose_fusion eagleye_gnss_converter eagleye_tf llh_converter morai_msgs mussp ndt_omp orocos_kdl python_orocos_kdl pointcloud_to_laserscan rtklib_bridge rtklib_msgs autoware_external_api_msgs autoware_iv_external_api_adaptor autoware_iv_internal_api_adaptor awapi_awiv_adapter tier4_api_msgs tier4_auto_msgs_converter tier4_control_msgs tier4_debug_msgs tier4_external_api_msgs tier4_hmi_msgs tier4_localization_msgs tier4_map_msgs tier4_perception_msgs tier4_planning_msgs tier4_rtc_msgs tier4_simulation_msgs tier4_system_msgs tier4_v2x_msgs tier4_vehicle_msgs io_opt tier4_autoware_api_launch tier4_control_launch tier4_localization_launch tier4_map_launch tier4_perception_launch tier4_planning_launch tier4_sensing_launch tier4_simulator_launch tier4_system_launch tier4_vehicle_launch fastrtps cyclonedds lanelet2 lanelet2_core lanelet2_examples lanelet2_io lanelet2_maps lanelet2_matching lanelet2_projection lanelet2_python lanelet2_routing lanelet2_traffic_rules lanelet2_validation sophus angles behaviortree_cpp_v3 bond bond_core bondcpp bondpy smclib test_bond cudnn_cmake_module diagnostic_aggregator diagnostic_common_diagnostics diagnostic_updater diagnostics self_test filters geodesy geographic_info geographic_msgs grid_map grid_map_cmake_helpers grid_map_core grid_map_costmap_2d grid_map_cv grid_map_demos grid_map_filters grid_map_loader grid_map_msgs grid_map_octomap grid_map_pcl grid_map_ros grid_map_rviz_plugin grid_map_sdf grid_map_visualization mrt_cmake_modules nav2_amcl nav2_behavior_tree nav2_behaviors nav2_bringup nav2_bt_navigator nav2_collision_monitor nav2_common nav2_controller nav2_core nav2_costmap_2d costmap_queue dwb_core dwb_critics dwb_msgs dwb_plugins nav2_dwb_controller nav_2d_msgs nav_2d_utils nav2_lifecycle_manager nav2_map_server nav2_msgs nav2_navfn_planner nav2_planner nav2_regulated_pure_pursuit_controller nav2_rotation_shim_controller nav2_rviz_plugins nav2_simple_commander nav2_smac_planner nav2_smoother nav2_system_tests nav2_theta_star_planner nav2_util nav2_velocity_smoother nav2_voxel_grid nav2_waypoint_follower navigation2 dynamic_edt_3d octomap octovis octomap_msgs osqp_vendor pacmod3_msgs pcl_msgs pcl_conversions pcl_ros perception_pcl point_cloud_msg_wrapper radar_msgs can_msgs rqt_tf_tree tensorrt_cmake_module topic_tools topic_tools_interfaces tvm_vendor cv_bridge image_geometry opencv_tests vision_opencv xacro rviz2 rviz_assimp_vendor rviz_common rviz_default_plugins rviz_ogre_vendor rviz_rendering rviz_rendering_tests rviz_visual_testing_framework dummy_perception_publisher fault_injection simple_planning_simulator classformsg node_v2x image_view v4l2_camera can_interface_custom cgi430_can_driver cgi610_driver ARS408_driver data_format_dump data_preprocess_launch lidar_centerpoint_collect lidar_saver message_sync time_cal camera_calibration direct_visual_lidar_calibration multi_lidar_calibration

Package Summary

Tags No category tags.
Version 2.0.8
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ieiauto/autodrrt.git
VCS Type git
VCS Version main
Last Updated 2024-09-19
Dev Status UNMAINTAINED
CI status No Continuous Integration
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Xacro (XML Macros) Xacro is an XML macro language. With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions.

Additional Links

Maintainers

  • Robert Haschke
  • Morgan Quigley

Authors

  • Stuart Glaser
  • William Woodall
  • Robert Haschke

Xacro (XML Macros)

Xacro is an XML macro language

With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions. Recent documentation can be found in the wiki. For older releases, have a look at the ROS wiki.

CHANGELOG

Changelog for package xacro

2.0.8 (2022-10-22)

  • Install xacro using console_script entrypoint (#304)
  • Provide xacro.process() returning the processed file (#229)
  • Dotted YAML access from list iterator (#318)
  • Optionally allow comment evaluation (#310)

    Comment evaluation can be enabled with a special comment:

    • <!-- xacro:eval-comments --> or
    • <!-- xacro:eval-comments:on -->

    It remains active for the following comments until:

    • the current XML tag's scope is left (or a new tag entered)
    • another tag or non-whitespace text is processed
    • it becomes explicitly disabled via: <!-- xacro:eval-comments:off -->
  • Fix property resolution with namespace usage (#308)
    • Allow access to properties in parent scopes again (fixes #305)
    • Pick correct scope when defining a property into the parent (fixes #307)

      Setting a property within the parent scope may occur in two contexts:

      1. From within a macro. In that case, one wants to set the property in the caller's scope.
      2. From within the included file. In that case, one wants to set the property in the includer's scope.
  • Contributors: Chen Bainian, Gonzalo de Pedro, Gonzo, Jacob Perron, Melvin Wang, Robert Haschke, vandanamandlik

2.0.7 (2021-09-04)

  • Allow more builtin symbols: sorted, set
  • Don't import hidden symbols from math package
  • Fix eval security vulnerability
    • safe_eval()
    • unit tests validating the protection mechanism
  • Generalize yaml !degrees constructors: Enable expressions as well
  • Improve macro arg parsing (#278) to support:
    • $(substitution args)
    • ${python expressions}
    • single or double quoting of spaces
  • Contributors: Robert Haschke

2.0.6 (2021-05-30)

  • [feature] Expose YamlDictWrapper as dotify() to allow dotted access to any dict (#274)
  • [fix] Scoped macro evaluation (#272)
  • Contributors: Robert Haschke

2.0.5 (2021-03-02)

  • [fix] Report correct filename for XML errors (#268)
  • [fix] Python3-compatible property Table (#266)
  • [fix] Use outer-scope symbols to resolve include filename in xacro:include (#264)
  • [fix] Append test directory to existing AMENT_PREFIX_PATH (#260)
  • [fix] yaml loading: recursively wrap lists and dicts for dotted dict access (#258)
  • [feature] Provide support for yaml constructors !degrees and !radians (#252)
  • Contributors: Chen Bainian, Robert Haschke, G.A. vd. Hoorn

2.0.3 (2020-08-09)

  • Merge improvements of melodic and noetic branches into dashing-devel: see 1.14.2 and 1.14.3 for details
  • Contributors: Robert Haschke

2.0.2 (2020-03-29)

  • Merge improvements of melodic and noetic branches into dashing-devel: see 1.14.1, 1.13.5 for details
  • Contributors: Robert Haschke

2.0.1 (2019-10-06)

  • Revert requiring that all xacro commands are prefixed with 'xacro:' namespace Although this is deprecated since #79, the corresponding deprecation warning wasn't actually issued. Thus, we will accept non-prefixed xacro tags until F-turtle.
  • Install to both, bin/xacro and lib/xacro/xacro
  • Contributors: Robert Haschke

2.0.0 (2019-09-28)

  • PEP8 cleanup
    • code simplifications
    • avoid empty except
    • sort imports
    • format line breaks
  • Code cleanup
    • Removed deprecated options --legacy, --inorder, --check-order, --includes
    • Require all xacro commands to be prefixed with 'xacro:'
    • Added missing copyright notices
    • Removed python2 stuff
  • Adapt Travis config to use colcon
  • Provide ROS2-based replacement for substition args
  • Modified package structure as per ROS2 rules
    • Using ament_cmake
    • Moved source contents from "src/xacro" to "xacro"
    • Modified package.xml and setup.py according to ROS2 requirements
    • Configured completion hook
    • Removed catkin artifacts from cmake extension
  • Contributors: vandanamandlik, Jacob Perron, Robert Haschke

1.14.4 (2020-08-09)

  • [fix] Rework YamlDictWrapper to restore dict properties (#250)
  • [fix] Ignore underscores when parsing literal numeric values (#247)
  • Contributors: Robert Haschke

1.14.3 (2020-07-05)

  • [feature] Improve warnings
    • Unify meaning of verbosity > 0 (to print file location)
    • Provide file location on warning in check_attrs()
    • Issue warning on child elements of <xacro:include> tag
  • [feature] Allow dotted access to yaml-loaded dicts: d.key1.key2.key3 (#245)
  • [maint] Travis: Update distro to Bionic
  • Contributors: Robert Haschke, G.A. vd. Hoorn

1.14.2 (2020-05-21)

  • [maintanence] Remove deprecated xacro.py (#239)
  • Contributors: Shane Loretz

1.14.1 (2020-03-29)

  • [feature] allow optional xacro includes (#234)
  • Contributors: Robert Haschke

1.13.5 (2019-12-08)

  • [feature] Expose abs_filename() (#220)
  • [feature] Catch missing closing brace in $() and ${} expressions
  • [maintanence]
    • Replace deprecated yaml.load() -> yaml.safe_load()
    • Save macro names internally w/o 'xacro:' prefix
    • Correctly issue deprecation warning for non-prefixed xacro tags
  • Contributors: Robert Haschke

1.13.4 (2019-09-26)

  • [feature] remove xmlns:xacro from processed file (#207)
    • Remove all notions of xmlns:xacro from the resulting document.
    • If the root node defines a xacro:targetNamespace attribute, this will become the global xmlns namespace of the resulting document.
  • [feature] Add len() to allowed python functions (#208)
  • [maintanence]
    • --in-order warning: reduce severity level to message
    • fix and cleanup test of cmake extensions
    • adapt run_xacro() to run xacro from PATH
    • simplify import of substition_args
    • remove 'requires' field from setup.py
    • fix Travis config: use new repository key, use xenial/kinetic distro
    • basic README.md
    • fix catkin_lint issue
    • remove duplicate catkin_python_setup() (#206)
  • Contributors: Robert Haschke, James Xu, Martin Pecka

1.13.3 (2018-10-14)

  • use INORDER as default in cmake functions
  • remove weird 'None's in error messages
  • Contributors: Robert Haschke

1.13.2 (2018-05-14)

  • deprecate --includes option (which is tied to deprecated --legacy processing)
  • moved all option handling to cli.py, including deprecation warnings for options
  • Contributors: Robert Haschke

1.13.1 (2018-05-03)

  • fix parsing of quoted strings in default args for xacro params (#187)
  • Contributors: Robert Haschke

1.13.0 (2018-03-31)

  • make --inorder processing the default
  • Contributors: Robert Haschke

1.12.1 (2018-03-28)

  • #183: unicode support for python2 and python3
  • #178: extend list of allowed python builtins: min, max, round
  • #182: suppress xacro warnings when determining dependencies
  • #151: fixes for #149 and #148
  • #157: fix #156 access to undefined target_table
  • #150: allow True/False literals in python expressions
  • #159: load ROS-related packages on demand, thus becoming more independent from ROS
  • #173: allow default values for properties
  • #172: fix formatting of XacroException
  • #171: fix dependency handling (--deps option)
  • #163: full python 3 compatibility
  • Contributors: Robert Haschke, Kartik Mohta, Morgan Quigley, Steven Peters

1.12.0 (2017-03-25)

1.11.2 (2017-02-27)

  • Convert exception to string in a python2/3 compatible way.
  • Use python2/3 independent check for file type.
  • Contributors: Hans Gaiser, Maarten de Vries

1.11.1 (2016-06-22)

  • workaround for xml.dom.minidom issue
  • ensure non-empty error string
  • Contributors: Robert Haschke

1.11.0 (2016-03-25)

  • added short option -i as alternative to --inorder
  • refactored main to fix #122, #107
  • added xacro indicator to error message to fix #123
  • moved banner generation to process_file()
  • removed special (but obsolete) output handling for just_includes mode
  • moved core processing pipeline into function process_file()
  • improved documentation: more comments, input_file -> input_file_name
  • fix #120: handle non-space whitespace characters in params string
  • extended tests to handle non-space whitespace characters in params string
  • always store macros with xacro: prefix in front: #118
  • fix #115: enforce xacro namespace usage with --xacro-ns option
  • apply correct checking for include tags, and extend testcase
  • allow (one-level) nested expression/extension evaluation
  • Contributors: Robert Haschke, Morgan Quigley

1.10.6 (2015-09-01)

  • use correct catkin environment for cmake dependency checking
  • fixed dependency definition for cmake usage
  • Contributors: Robert Haschke

1.10.5 (2015-08-12)

  • fix #108: evaluate property blocks recursively too
  • improved macro parameter parsing
  • use a regular expression to parse a param spec with forwarding and default
  • allow for spaces in default string (within single quotes)
  • forwarding macro arguments from outer scope
  • switched to [\^|]{.title-ref} syntax
  • use more compact [$|]{.title-ref} syntax
  • moved parsing of argument defaults to grab_macro()
  • explicit forwarding of properties to macro scope
  • replace silent/implicit forwarding of properties from outer scope to macro scope by an explicit "call" to a [forward(<name>[,<default>])]{.title-ref} function.
  • implicit forwarding of outer-scope properties to macro args (#100)
  • property evaluation fixes
  • suppress double evaluation of properties
  • adapted unittest to cover the fixed issue
  • fixed evaluation order for properties exported to parent or global scope
  • Merge pull request #103 from ubi-agni/overwrite-check issue warning when attempting to overwrite existing global property
  • fixed unittest: avoid overwrite warning
  • warn when overwriting any globally defined variable
  • Merge pull request #102 from ubi-agni/completion bash completion
  • Merge pull request #99 from ubi-agni/jade-devel reworked macro resolution
  • moved test_macro_name_with_colon() to class TestXacro should be tested both, in oldorder and inorder mode
  • bash completion
  • improved error message for failed $(find)
  • reworked macro resolution python-eval-based macro resolution (introduced to enable namespaces) heavily restricted the set of possible macro names (only valid python identifiers were allowed) Particularly, xacro: prefixed macro names were forbidden.
  • initial attempt to fix #97
  • add failing test case with colon in the macro name
  • Contributors: Robert Haschke

1.10.4 (2015-06-18)

  • removed test_DEPRECATED_should_replace_before_macroexpand() duplicates test_should_replace_before_macroexpand()
  • fixed evaluation order of macro arguments and body Macro arguments need to be evaluated and assigned to properties before body is evaluated. Otherwise, the evaluated value will be converted to str, i.e. loosing original type.
  • Contributors: Robert Haschke

1.10.3 (2015-06-16)

  • deprecate --oldorder processing
  • added --check-order option to do a simple check for --inorder compatibility
    • Most probable incompatibility is redefining a property after its usage.
    • tested and reported with file location of (first) redefinition after usage.
  • moved command line processing to cli.py
  • explain verbosity levels in usage string
  • colorize errors during cli parsing
  • log definition and usage of properties
  • replaced debug option by verbosity options -q, -v
  • fixed evaluation time of default macro params
  • introduced Macro object to increase code readability
  • parse a macro's parameter list once at declaration time (instead of every instantiation)
  • extended test_multiple_blocks() to check for both normal and reversed order
  • added unittest to increase code coverage
  • do not issue deprecation warning for <include> tags that are non-xacro
  • added option --oldorder
  • allow to store properties to parent or global scope
  • added <xacro:attribute>
  • cleaned up error message about missing files
  • moved xml-specific functions to xmlutils.py new generic functions opt_attrs(), reqd_attrs(), and check_attrs() to fetch optional and required attributes and warn about unknown ones in a uniform fashion
  • unittest to allow empty <arg> defaults
  • Merge pull request #94 from ubi-agni/minor-fixes
  • minor fixes
  • remove duplicates in --deps output
  • fixed dependency checking for --inorder mode (which requires full processing)
  • fixed doc of xacro' cmake macros
  • renamed "xacro:rename" to "xacro:element"
  • allow namespacing for xacro:include's
  • allow renaming of element names using xacro:rename
  • unittest cleanup
  • check property and macro names to be valid python identifiers
  • allow namespacing of xacro:include's
  • properties and macros in an included file will go into their own, separate namespace, if the XML attribute [ns]{.title-ref} is provided. Access is by standard python syntax: namespace.name
  • allow renaming of element names <xacro:rename xacro:name="<new element name>"/>
  • moved unittests requiring --inorder processing to class TestXacroInorder
  • added unittest test_dynamic_macro_undefined()
  • improved error message when variable include filename is used without --inorder
  • stripped down unittest test_inorder_processing()
  • improved processing
  • adapted pr2 gold standard removing most comments again this partially reverts 59605fb1521583dc63efdea13f4c45128499bd20
  • remove all XML comments directly before xacro elements (These are considered xacro-related only and should be removed in the final doc.) Leaving an empty line between xacro-unrelated and xacro-related comments allows to include the former.
  • unittest: test_ignore_xacro_comments()
  • improved processing
    • recursive (instead of iterative) eval_all()
    • reusable process_include()
    • replace_node() function to replace xacro tag by some other content
    • avoid reprocessing of nodes
    • avoid deep copy where possible (speedup)
  • fix evaluation (#83)
  • yaml support
  • check for consistency of xml namespaces on xacro:include
  • replaced strip()=='' by more efficient isspace()
  • allow transitive definition of substition args
  • fixed evaluation of literals in property definitions
    • literals with preceding whitespace will be silently stripped (#83)
    • more complex evaluation test (perturbing spaces added)
  • fixed xacro namespaces in pr2 files to get rid of new inconsistency warning
  • warning message on inconsistent namespace redefinition for includes
  • yaml support ${load_yaml('file.yaml')} to load dict from yaml file
  • Merge pull request #85 from ubi-agni/error-reporting improved error reporting
  • nicer formatting of multiple "when evaluating expression" lines
  • improved formatting of error messages use XacroException to wrap and augment other exceptions to achieve a clearer error formatting
  • better error message for missing substitution args
  • use colorized warnings where possible
  • included macro stack in error-reporting
  • maintain filestack to facilitate error reporting at any time
  • Merge pull request #82 from ubi-agni/unittests improved unittesting
  • allow to capture (and check) stderr in unit tests
  • improved unittests to test both, classic and in-order processing
  • Merge pull request #81 from ubi-agni/jade-devel Thank you for your time and contributions. Improving cosmetics is important.
  • PEP8 cleanup
  • cmake: only copy files to devel space if new
  • Merge pull request #80 from ubi-agni/jade-devel
  • improved error-handling opening the output file - running multiple xacro process in parallel, all writing into a new dir could cause a race condition when creating the dir
    • improved error message on output creation failure
  • removed rospy dependency
    • Importing rospy caused build order issues with ros_comm in workspace
  • Filtering out REMAP command-line arguments is done manually now.
  • update authors/maintainers and copyright statements
  • deprecate non-namespaced xacro tags
  • added missing print_location_msg() for file that actually failed parsing
  • improved deprecation warnings
  • New cli option [--xacro-ns]{.title-ref} allows to enforce the new policy requiring the xacro namespace prefix (and suppressing deprecation warnings). However, non-prefixed tags will not be modified by xacro anymore (as requested by #41, #59, #60). Partially reverted cb73cfd8c678adfda2172accef398189ea2338a1, handling <arg> tags in the same fashion as other tags, i.e. issue a warning if used without prefix and ignoring it with cli argument [--xacro-ns]{.title-ref}.
  • fixed pr2 xacro files to use 'xacro:' prefixed tags only
  • fixed unittests in test_xacro.py to use 'xacro:' prefixed tags only
  • deprecation message for missing xacro namespace prefix in xml tags
  • moved colored warning messages into color.py (for reuseability)
  • added missing print_location_msg() for file that actually failed parsing
  • improved xacro's cmake macros
  • prepend ${PACKAGE_NAME} to all generated cmake targets Otherwise multiple packages employing xacro's cmake macros will use the same conflicting target name. This is only an issue with catkin_make, which defines a single global cmake namespace. The new catkin tools (or catkin_make_isolated) build each package separately.
  • basic unittest for xacro's cmake macros
  • improved xacro's cmake macros - xacro_add_xacro_file() automatically determines output file from input (removing .xacro suffix). If that fails, a fatal error is raised.
    • added xacro_install() to allow installation into both, devel and install space.
    • replaced conveniency function xacro_add_files()
  • Contributors: Robert Haschke

1.10.2 (2015-05-23)

  • added --debug option to explicitly enable stack traces By default, only show error message to the user. Stack traces are only interesting for xacro developers.
  • recursive include processing
    • more informed error messages (which file was included from where)

    - allows relative path names for include filename specs they are interpreted relative to the current file

  • new substitution command $(cwd) to extract current working directory
  • added unittest cases
    • creation of required subdirs for output
    • recursive xacro:include
    • extended test_include_glob() to check for all glob patterns
  • added run_xacro() function to simplify unittests running xacro script
  • moved xacro.py back to original location
  • nicely colored deprecation warning
  • create required dirs before opening output file
  • added convenience cmake-macro xacro_add_target() to auto-generate xacro-processed files
  • added cmake status message before launching xacro (xacro might run for quite a while)
  • fetch xacro --deps errors at report them as a warning
  • simplified deprecation message
  • added missing return statement
  • removed obsolete math import left over from deaaae2c69edd7d5e185eeb098c1521d8711608b
  • install xacro.py again (for backwards compatibility) usage of xacro.py issues a deprecation warning
  • simplified scripts/xacro - removed xacro.py
    • made run script "scripts/xacro" and install process follow standards
    • removed xacro.py

    - added dependencies to setup.py Having the binaries xacro and xacro.py installed side by side causes problems, because xacro.py is wrongly taken as the module. This was avoided by the rather complex filtering of the sys.path. Switched to ROS standard now, using a binary script called "xacro".

  • changed tests to use the whole xacro processing pipeline utilizing the modularization of main() from previous commit This simplifies several existing tests, especially these using files on disk.
  • split main() into process_cli_arg(), parse(), process_doc()
  • extended cmake macro xacro_add_xacro_file()
    • handle INORDER option
    • handle REMAP arguments

    - create absolute input file names automatically usage: xacro_add_xacro_file(input output INORDER REMAP ...)

  • stripped new unit tests to essential xml snippets
  • merged pull request #68: eval properties assigned from <arg> tags as literals In the following example: <xacro:arg name="val" default="0.5"/> <xacro:property name="val" value="$(arg val)"/> ${val} was not evaluated as a number, but as string only. Thus numerical expressions failed with an exception.
  • factored out get_boolean_value()
  • <xacro:arg> needs to be fully specified
  • (handling <arg> tags (without xacro ns-prefix) disabled native <arg> tags) add test for eating launch parameter arguments remove check for "arg" parameter. move new test function to bottom of source
  • added unit tests for evaluation of list, tuple, and dict literals
  • fixed some code style issues
  • fixed string-isinstance checks (for python 3 compatibility)
  • do not evaluate list, dict, tuple expressions as literals (without ${} syntax)
  • added dict to list of known global symbols
  • focused global_symbols definition in the beginning of the file added some basic python symbols: list, str, float, int and map allowing some basic computation
  • tuning performance: instantiate QuickLexer's regexps only once
  • Contributors: Robert Haschke, Martin Pecka, Mike O'Driscoll, Morgan Quigley

1.10.1 (2015-04-01)

  • improved error handling and more descriptive error messages
  • correctly raise a XacroException on invalid, i.e. non-boolean, <xacro:if> expressions. (removed left-over debugging code, added test case)
  • raise an exception on undefined, but used macros Using the syntax <xacro:macroname/> should raise an exception if macroname is not defined. Added appropriate code and a test case.
  • fixed bookkeeping in lazy evaluation switch Table.unevaluated from list to set to avoid multiple key entries
  • fix formatting of changelog
  • Contributors: Robert Haschke

1.10.0 (2015-03-13)

  • security measure: forbid access to __builtins__ in expressions
  • literal evaluation should only consider literals, but no expressions use ast.literal_eval()
  • removed eval() from xacro:if evaluation
  • back to string comparison to handle (lowercase) true and false
  • add test case for equality expressions in <xacro:if>
  • add test case for math function usage
  • python based evaluation of expressions
    • replaced handle_expr with python-internal eval() call
    • care has been taken to resolve variables recursively on demand (in Table.__getitem__)
    • allows for evaluation of standard math functions
    • other desired functions could be added in eval_self_contained
    • Values in Table symbols are not stored as strings but as typed values.
  • If text is required, a conversion with str() is performed, to ensure proper evaluation of expressions. Otherwise 3*"1" would evaluate to "111".
  • use __future__.division we can handle integer division evaluating to floating-point devision, as before
  • allow variable names for filename attribute in <xacro:include>
  • allow for ordered XML processing to avoid issues with multiply defined properties and macros in (typically 3rd party) include files
    • enable the new behaviour by passing --inorder cmdline option
    • to improve code readibility and reusability, introduced functions
  • process_include(node), grab_macro(elt, macros), grab_property(elt, symbols) containing 1:1 corresponding handling from process_includes, grab_macros, and grab_properties
    • added corresponding test case test_inorder_processing()
  • dynamic macro names using <xacro:call macro=""/>
  • fixup unittests and handling of non-element nodes in <include>, <if>, <macro>
  • updated pr2 gold standard to include all comments
  • allow to ignore comments in nodes_match()
  • New handling of non-element nodes invalidates pr2 gold standard (adding a lot more comments). To allow validation, allow to ignore all comments in comparison (as before).
  • fixed handling of non-element nodes in <include>, <if>, <macro>
  • fixed writexml: text nodes were not printed when other siblings exist
    • print all text, but skip whitespace-only text nodes
  • improved xml matching
    • so far only element nodes (with its attributes) were considered
    • now also consider TEXT, CDATA, and COMMENT nodes
    • added function text_matches (normalizing consecutive whitespace to a single space)
    • added some new unit tests

    - test_consider_non_elements: non-element nodes are not yet considered in <if> and <macro>

  • travis-ci: use catkin_make
  • travis-ci: fixup running of tests
  • fix pathnames used in test case
  • Include CATKIN_ENV params at build time.
  • use output filename flag instead of shell redirection
  • create output file after parsing is complete, not before
  • Contributors: Robert Haschke, Mike O'Driscoll, Morgan Quigley, William Woodall

1.9.3 (2015-01-14)

  • merge test cases
  • add a snapshot of the pr2 model to the test directory. add a test case which verifies that the pr2 model is parsed equal to a 'golden' parse of it.
  • add more tests
  • add default arg tests
  • Allow default values for substitution args
  • Fix up comments
  • Allow xacro macros to have default parameters
  • Contributors: Paul Bovbel, Morgan Quigley

1.9.2 (2014-07-11)

  • add a few more tests to exercise the symbol table a bit more
  • allow for recursive evaluation of properties in expressions
  • add useful debugging information when parameters are not set
  • stop test from failing the second time it is run
  • unified if/unless handling, correctly handle floating point expressions
  • floating point expressions not equal zero are now evaluated as True
  • changed quotes to omit cmake warning
  • Contributors: Robert Haschke, Mike Ferguson

1.9.1 (2014-06-21)

  • fixup tests so they run
  • export architecture_independent flag in package.xml
  • installed relocatable fix
  • Contributors: Michael Ferguson, Mike Purvis, Scott K Logan

1.9.0 (2014-03-28)

  • Remove the roslint_python glob, use the default one.
  • Add roslint target to xacro; two whitespace fixes so that it passes.
  • fix evaluation of integers in if statements also added a unit test, fixes #15
  • fix setting of _xacro_py CMake var, fixes #16
  • Add support for globbing multiple files in a single <xacro:include>
  • code cleanup and python3 support
  • check for CATKIN_ENABLE_TESTING

1.8.4 (2013-08-06)

  • Merge pull request #9 from davetcoleman/hydro-devel Xacro should not use plain 'include' tags but only namespaced ones.
  • Fix for the fact that minidom creates text nodes which count as child nodes
  • Removed <uri> checking and made it more general for any child element of an <include> tag
  • Removed Groovy reference, only being applied to Hydro
  • Created check for Gazebo's <uri> tabs only only shows deprecated warnings if not present.
  • Small spelling fix
  • Xacro should not use plain 'include' tags but only namespaced ones.
  • Merge pull request #8 from piyushk/hydro-devel-conditional xacro conditional blocks
  • using refined arguments instead of sys.argv for xml file location
  • adding conditional blocks to xacro

1.8.3 (2013-04-22)

  • bumped version to 1.8.3 for hydro release
  • backwards compatilibity with rosbuild
  • adding unit test for substitution args
  • Adding supoprt for substitution_args 'arg' fields
  • Remove bin copy of xacro.py
  • 1.7.3
  • Install xacro.py as a program so it can be run
  • 1.7.2
  • fixed build issues introduced in catkinization
  • 1.7.1
  • PEP8, cleanup, and remove roslib
  • Update copyright, self import guard, and catkinize
  • Catkinize.
  • Cleanup in preparation of catkinization.
  • Added tag unstable for changeset 169c4bf30367
  • Added tag xacro-1.6.1 for changeset fc45af7fdada
  • 1.6.1 marker
  • xacro: fuerte compat with sub args import
  • Added tag unstable for changeset 2d3c8dbfa3c9
  • Added tag xacro-1.6.0 for changeset e4a4455189bf
  • 1.6.0
  • converted to unary stack from common stack
  • xacro: fixed inserting property blocks (ros-pkg #4561)
  • xacro now uses XacroExceptions. String exceptions are not allowed in Python anymore. #4209
  • Added Ubuntu platform tags to manifest
  • Xacro now places comments below <?xml> tag (#3859)
  • Xacro prints out cleaner xml. Elements are now often separated by a newline.
  • xacro dependency on roslaunch removed #3451
  • Xacro now adds a message mentioning that the file was autogenerated (#2775)
  • Remove use of deprecated rosbuild macros
  • Integers stay integers in xacro, fixing #3287
  • Tests for r25868
  • Added a flag for only evaluating include tags in xacro
  • Allowing multiple blocks and multiple insert_blocks, fixing #3322 and #3323
  • doc review completed for xacro
  • adding mainpage for xacro doc review
  • Added xacro.cmake file that exports new xacro_add_xacro_file() macro, #3020
  • Namespaced "include" tag in xacro
  • Marked xacro as api reviewed
  • Xacro now correctly declares the namespaces of the included documents in the final
  • Made xacro accept xml namespaces
  • Xacro now errors hard when a property is used without being declared
  • Xacro no longer allows you to create properties with "${}" in the name
  • Added the ability to escape "${" in xacro
  • Made the tests in xacro run again.
  • Created xacro/src
  • migration part 1

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

Name Deps
fetch_description
fetch_description
fetch_description
fetch_moveit_config
fetch_moveit_config
schunk_svh_driver
schunk_svh_simulation
canadarm_gazebo
canadarm_moveit_config
nav2_bringup
abb_bringup
abb_irb1200_5_90_moveit_config
mbot_description
mbot_description
mbot_description
limo_description
limo_description
limo_gazebo_sim
piper_description
piper_description
piper_moveit_config_v4
piper_moveit_config_v5
racing_kart_description
tier4_vehicle_launch
tier4_vehicle_launch
tier4_vehicle_launch
tier4_vehicle_launch
tier4_vehicle_launch
tier4_vehicle_launch
dallara_description
akabot_description
akabot_moveit_config
alpha_bringup
alpha_description
alpha_hardware
realsense2_description
realsense2_description
realsense2_description
realsense2_description
realsense2_description
realsense2_description
scoutbot
angler_bringup
ar3_bringup
arctos_description
arctos_moveit
arctos_moveit_config
arduinobot_controller
arduinobot_controller
arduinobot_description
arduinobot_description
ariac_description
ariac_gazebo
ariac_moveit_config
atreus
aubo_ros2_jazzy_moveit_config
aubo_gazebo
aubo_moveit_config
aubo_ros2_driver
autocar_description
autocar_gazebo
autonav_controller
hagen_gazebo
velodyne_description
velodyne_description
velodyne_description
velodyne_description
velodyne_description
velodyne_description
velodyne_description
autoware_sample_vehicle_description
fetch_gazebo
auv_control_demos
deepracer_description
axebot_description
axebot_gazebo
beetle_description
beetle_gazebo
bitbots_robot_description
wolfgang_description
wolfgang_moveit_config
blue_description
bumperbot_controller
bumperbot_controller
bumperbot_controller
bumperbot_description
bumperbot_description
bumperbot_description
car_sim_description
cartesian_controller_simulation
cartesian_controllers_universal_robots
ceres_bringup
ceres_description
ceres_gazebo
xarm_api
xarm_api
xarm_controller
xarm_controller
xarm_description
xarm_description
xarm_moveit_config
xarm_moveit_config
charmie_bot
charmie_sim
clearpath_hardware_interfaces
robolaunch_cloudy_bringup
robolaunch_cloudy_simulator
crs_support
chassis_simulation
robot_simulation
zu7
mini_cheetah_description
robot_gazebo
conveyor_belt
crazyflie_ros2_description
rm_robot_description
rm_robot_description
droid1
denso_robot_bringup
denso_robot_descriptions
desplate_xacro
diablo_simulation
diff_bot_description
cr10_moveit
cr10_moveit
cr12_moveit
cr12_moveit
cr16_moveit
cr16_moveit
cr3_moveit
cr3_moveit
cr5_moveit
cr5_moveit
cr7_moveit
cr7_moveit
dobot_gazebo
dobot_gazebo
dobot_rviz
dobot_rviz
nova2_moveit
nova5_moveit
me6_moveit
rm_gimbal_description
sjtu_drone_bringup
sjtu_drone_bringup
sjtu_drone_bringup
dual_ur_moveit_config
ur_description
ur_description
ur_description
ur_description
ur_description
ur_description
ur_description
ur_description
ur_bringup
ur_bringup
ur_moveit_config
ur_moveit_config
ur_moveit_config
ur_moveit_config
ur_moveit_config
ur_moveit_config
ur_robot_driver
ur_robot_driver
ur_robot_driver
dual_ur5_moveit_config
dual_ur_description
gravity_compensation
onrobot_airpick4_moveit_config
robotiq_3f_moveit_config
robotiq_85_moveit_config
fanuc_moveit_config
panda_moveit_config
panda_moveit_config
panda_moveit_config
ur10_moveit_config
ur3_moveit_config
ur5_moveit_config
eddiebot_description
eddiebot_gazebo
eddiebot_rviz
eeuv_sim
elfin_description
erob_arm_control
erob_position_control
erobo3
erobo3_control
erp42_vehicle_description
erp42_vehicle_gazebo
ur_simulation_gazebo
flexiv_bringup
flexiv_description
flexiv_moveit_config
fd_bringup
fd_description
fd_hardware
former_description
numsr_franka_moveit_config
fairino10_v6_moveit2_config
fairino16_v6_moveit2_config
fairino20_v6_moveit2_config
fairino30_v6_moveit2_config
fairino3_v6_moveit2_config
fairino3mt_v6_moveit2_config
fairino5_v6_moveit2_config
fairino_description
furuta_pendulum_description
furuta_pendulum_hardware
package_name
package_name
rosbot_description
gazebo_ackermann_steering_vehicle
gazebo_differential_drive_robot
gazebo_ros_four_wheel_steering
gcamp_gazebo
giraffe_description
giraffe_moveit_config
go2_description
go2_description
go2_description
double_arm_moveit_config
marm_description
marm_description
marm_description
marm_moveit_config
marm_moveit_config
marm_moveit_config
marm_standardfirmata_driver
probot_anno_moveit_config
probot_description
c800_moveit_config
racecar_description
yobotics_description
robot_description
robot_description
robot_description
hoverboard_demo_bringup
hri_fullbody
husarion_ugv_controller
husarion_ugv_description
iiwa_bringup
iiwa_description
iiwa_hardware
myworkcell_moveit_config
snp_automate_2022
cal_demo_moveit_config
ur5_demo_moveit_config
robot_config
ur5_collision_avoidance_moveit_config
robot_workcell_support
ur5_workcell_moveit2_config
int-ball2_control
interbotix_xslocobot_descriptions
interbotix_xslocobot_moveit
irc_ros_description
irc_ros_moveit_config
diffbot_description
diffbot_description
diffbot_description
franka_moveit_config
franka_moveit_config
franka_moveit_config
isaac_diffbot_sim
isaac_diffbot_sim
ur5_robotiq_85_description
carter_description
kachaka_description
kalman_arm_moveit_config
kalman_description
layered_hardware
lbr_bringup
lbr_description
iiwa14_moveit_config
iiwa7_moveit_config
med14_moveit_config
med7_moveit_config
learm_ros2_description
learm_ros2_moveit_config
mybot
lidarbot_description
gazebo_simulation
limo_car
linorobot2_description
dobot_description
manta_v2_description
manta_v2_gazebo_ros2_control
manta_v2_moveit_config
manta_v2_run_move_group
simulation_rviz
simulation_gazebo
marscar_gazebo_ros2
megarover_samples_ros2
melfa_bringup
melfa_description
melfa_driver
melfa_rh6crh6020_moveit_config
melfa_rh6frh5520_moveit_config
melfa_rv13frl_moveit_config
melfa_rv2fr_moveit_config
melfa_rv4fr_moveit_config
melfa_rv4frl_moveit_config
melfa_rv5as_moveit_config
melfa_rv7frl_moveit_config
melfa_rv80fr_moveit_config
melfa_rv8crl_moveit_config
mesh_navigation_tutorials_sim
mg400_bringup
mg400_description
mini_pupper_description
drl_agent_description
mobRobURDF_description
diffdrive_bringup
moveit_resources_prbt_moveit_config
moveit_resources_prbt_pg70_support
moveit_resources_prbt_support
moveit_ros_trajectory_cache
moveit2_tutorials
moveit_resources_panda_moveit_config
my_robot
turtlebot3_description
turtlebot3_description
turtlebot3_gazebo
multi_robot_arm
multi_turtlebot_sim
franka_bringup
franka_description
franka_description
franka_description
garmi_description
multiverse_control
myactuator_rmd_bringup
myactuator_rmd_description
mycobot_280_description
mybuddy
mecharm
mecharm_pi
myarm_300
myarm_c650
myarm_m750
mycobot_280
mycobot_280_arduino
mycobot_280_moveit2
mycobot_280_moveit2_control
mycobot_280_rdkx5
mycobot_280_riscv
mycobot_280_x3pi
mycobot_280arduino_moveit2
mycobot_280jn
mycobot_280pi
mycobot_280rdkx5_moveit2
mycobot_320
mycobot_320_riscv
mycobot_320pi
mycobot_600
mycobot_630
mypalletizer_260
mypalletizer_260_pi
ultraarm
nanosaur_description
nanosaur_isaac-sim
sam_bot_nav2_gz
sam_bot_description
sam_bot_description
sam_bot_description
niryo_robot_bringup
niryo_robot_description
joints_interface
niryo_robot_hardware_interface
niryo_moveit_config_standalone
niryo_moveit_config_w_gripper1
nexus_motion_planner
nexus_robot_controller
odrive_demo_bringup
open_mower_next
honeybee_description
honeybee_gazebo
quad_gazebo
turtlebot3_beam_description
openvmp_robot
openvmp_robot_don1
orange_description
osr_gazebo
nick_bot_moveit_config
pca9685_ros2_control_example
minibot_description
piper_camera_moveit_config
uuv_thruster_manager
uuv_descriptions
uuv_gazebo_ros_plugins
uuv_sensor_ros_plugins
prl_ur5_description
prl_ur5_moveit_config
prm_apf_planner
left_leg_demo_new
march_control
march_description
clover_description
psd_vehicle_bringup
psd_vehicle_description
my_package
anymal_c_description
lite3_description
x30_description
a1_description
a1_description
aliengo_description
b2_description
go1_description
go1_description
gz_quadruped_playground
vehicle_urdf
rae_description
turtlebot_arm_description
rdsim_description
zuuu_description
cart_pole_bringup
rm_pioneer_description
rmcs_bringup
rmcs_description
roarm_description
roarm_moveit
roarm_moveit_cmd
robomaster_description
robot_properties_bolt
robot_properties_solo
beep_autonomy
custom_robots
saye_description
interbotix_xsarm_descriptions
interbotix_xsarm_moveit
interbotix_xs_modules
interbotix_xs_ros_control
husky_base
husky_gazebo
kobuki_description
igus_rebel_commander
igus_rebel_description_ros2
igus_rebel_gripper_controller
igus_rebel_moveit_config
mecanumbot_description
unity_diffbot_sim
learning_urdf
motor_controller
ros2_control_demo_example_1
ros2_control_demo_example_1
ros2_control_demo_example_10
ros2_control_demo_example_11
ros2_control_demo_example_12
ros2_control_demo_example_13
ros2_control_demo_example_14
ros2_control_demo_example_15
ros2_control_demo_example_16
ros2_control_demo_example_2
ros2_control_demo_example_3
ros2_control_demo_example_4
ros2_control_demo_example_5
ros2_control_demo_example_6
ros2_control_demo_example_7
ros2_control_demo_example_8
ros2_control_demo_example_9
dc_demos
dc_description
crx10ia_l_moveit_config
crx10ia_moveit_config
crx20ia_l_moveit_config
crx25ia_moveit_config
crx30ia_moveit_config
crx5ia_moveit_config
fanuc_control
metafly_control
robotiq_description
robotiq_description
robotiq_description
ur5_gripper_description
ur5_gripper_moveit_config
rm_gazebo
rm_63_config
rm_65_config
rm_75_config
rm_eco63_config
rm_eco65_config
rm_gen72_config
panda_llm_inference_demos
panda_motion_planning_demos
panda_policy_deployment_demos
panda_control_demos
rover_description
so_arm100_description
so_arm100_moveit_config
robot_visualizer
moveit_setup_assistant
mrobot_description
ros_gz_rover
odrive_botwheel_explorer
odrive_bringup
rosbot_bringup
rosbot_controller
rosbot_xl_controller
controlko_bringup
controlko_description
donatello
raphael
agilex_scout
sim_car
simulation
smart_rviz_plugin
so_100_arm
webots_ros2_importer
robots
spot_driver
spot_hardware_interface
spot_ros2_control
swerve_robot_description
amr_description
pointgrey_camera_description
pointgrey_camera_description
tide_ctrl_bringup
tide_gazebo
tide_hw_interface
tide_robot_description
tm12_moveit_config
tm12x_moveit_config
tm14_moveit_config
tm14x_moveit_config
tm5-700_moveit_config
tm5-900_moveit_config
tm5x-700_moveit_config
tm5x-900_moveit_config
fg_gazebo_example
two_wheeled_robot
zed_wrapper
zed_wrapper
uav_gazebo
ubr1_gazebo
ubr1_moveit
cartpole_description
pendulum_robot_description
pendulum_control_description
diff_drive_description
champ_description
champ_description
unitree_controller
niryo_moveit
my_robot_cell_control
my_robot_cell_description
my_robot_cell_moveit_config
mir_description
mir_gazebo
rvl_robot_description
ipa_bringup
ipa_demo_cell_description
dual_ur5e_gripper_moveit_config
ur5e_gripper_description
ur5e_gripper_moveit_config
ur5e_gripper_control
moveit_config
simple_ur10e_description
simple_ur10e_moveit_config
sim_package
leo_description
urc_arm_moveit_config
urc_gazebo
urc_hw_description
walli_arm_moveit_config
ros2_control_blue_reach_5
uwrt_mars_rover_drivetrain_description
usv_description
ghost_ros
ghost_localization
mbot_with_arm_moveit_config
learn_gazebo
my_bot
webots_spot
welder_description
welder_moveit_config
mbot_demo
yahboom_rosmaster_gazebo
hyq_description
kinova_description
sensors_description
spot_description
youfork_description
z1_bringup
zed_robot_integration
quad_urdf

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged xacro at Robotics Stack Exchange

xacro package from xacro repo

xacro

Package Summary

Tags No category tags.
Version 1.14.20
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/xacro.git
VCS Type git
VCS Version noetic-devel
Last Updated 2025-03-20
Dev Status MAINTAINED
CI status
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Xacro (XML Macros) Xacro is an XML macro language. With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions.

Additional Links

Maintainers

  • Robert Haschke
  • Morgan Quigley

Authors

  • Stuart Glaser
  • William Woodall
  • Robert Haschke

Xacro (XML Macros)

Xacro is an XML macro language

With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions. Recent documentation can be found in the wiki. For older releases, have a look at the ROS wiki.

CHANGELOG

Changelog for package xacro

1.14.20 (2025-03-20)

  • Handle new argument 'attr' in xml.dom.minidom._write_data() of Python 3.13 (#353)
  • Contributors: Robert Haschke

1.14.19 (2024-12-20)

  • Add function python.vars() (#348)
  • Contributors: Robert Haschke

1.14.18 (2024-04-02)

  • Add more unit tags for yaml files (#331)
  • Mark regexes as raw strings (#336)
  • Contributors: Adam Heins, Bruno-Pier

1.14.17 (2024-01-25)

  • Expose python.abs()
  • Contributors: Robert Haschke

1.14.16 (2023-05-24)

  • Fix hasattr support of YamlDictWrapper (#324)
  • Contributors: Alec Tiefenthal, Robert Haschke

1.14.15 (2023-02-27)

  • Evaluate arg value as str/unicode (#322)
  • Remove obsolete options from completion
  • Contributors: Robert Haschke

1.14.14 (2022-10-21)

  • Dotted YAML access from list iterator (#318)
  • Link to extended wiki
  • Contributors: Robert Haschke

1.14.13 (2022-02-12)

  • Only optionally activate comment evaluation (#310)

    Comment evaluation can be enabled with a special comment:

    • <!-- xacro:eval-comments --> or
    • <!-- xacro:eval-comments:on -->

    It remains active for the following comments until:

    • the current XML tag's scope is left (or a new tag entered)
    • another tag or non-whitespace text is processed
    • it becomes explicitly disabled via: <!-- xacro:eval-comments:off -->
  • Fix property resolution with namespace usage (#308)
    • Allow access to properties in parent scopes again (fixes #305)
    • Pick correct scope when defining a property into the parent (fixes #307)

      Setting a property within the parent scope may occur in two contexts:

      1. From within a macro. In that case, one wants to set the property in the caller's scope.
      2. From within the included file. In that case, one wants to set the property in the includer's scope.
  • Contributors: Robert Haschke

1.14.12 (2022-01-30)

  • Issue a warning only for evaluation errors in comments
  • Add LICENSE file
  • Contributors: Robert Haschke

1.14.11 (2022-01-20)

  • Fix resolving of macros and properties declared and used in/from a namespace (#297, #306)

    Macros and properties that are declared within a namespaced include shouldn't require the namespace prefix when used within the namespace.

  • Perform expression evaluation in comments (#300)
  • Expose xacro.arg() to facilitate access to substitution args
  • Fix scoped macro evaluation
    • Replace [Macro|Property]NameSpace with common NameSpace class derived from Table
    • Use the scoped macro Table
  • Contributors: Robert Haschke

1.14.10 (2021-10-02)

  • Allow property names to be evaluated from an expression This allows to turn macros into a function that can compute an arbitrary property:

    <xacro:macro name="square" params="name args">
      <!-- Perform some complex computation and set the property within the parent's scope -->
      <xacro:property name="${name}" value="${[float(x)**2 for x in args]}" scope="parent" />
    </xacro:macro>
    <xacro:square name="result" args="${python.range(5)}" />
    
  • Fix error reporting for invalid symbols in NameSpaces
  • Allow removal of a property definition (#288)

    <xacro:property name="prop" remove="true"/>

  • Allow greedy property evaluation (#284) This can be used, to redefine a property from its previous value, e.g. for normalization:

    <xacro:property name="prop" value="${prop.lower()}" lazy_eval="false"/>
    
  • Correctly expose XML namespaces imported via xacro:include within a macro (#287)
  • Throw when attempting to declare a property starting with double underscore (#286)
  • Improve global symbols (#283)
    • Expose most builtin symbols of python
    • Expose xacro functions into xacro namespace
      • xacro.print_location() to print the current filestack
      • tokenize(string, sep=',; ', skip_empty=True) to facilitate string tokenization
      • message(), warning(), error(), and fatal() to output messages on stderr. All but message() print the error location (macro call and file hierarchy) by default:

        ${xacro.message('message', 'text', 2, 3.14, color=32, print_location=True)}
        ${xacro.warning('warning')}
        ${xacro.error('error', print_location=False)}
        ${xacro.fatal('fatal')}
        
    • Rework handling of file and macro stack, such that print_location() works from anywhere
    • Unit tests: Reduce reported stdout/stderr output
    • Rework definition of global_symbols to expose functions into namespaces python, math, xacro
  • Contributors: Robert Haschke

1.14.9 (2021-09-03)

  • Allow more builtin symbols: sorted, set
  • Don't import hidden symbols from math package
  • Fix eval() security vulnerability
    • safe_eval(): Forbid symbol names starting with double underscore
    • unit tests validating the protection mechanism
  • Generalize yaml !degrees constructor: Enable expressions as well
  • Contributors: Robert Haschke

1.14.8 (2021-07-19)

  • Improve macro arg parsing (#278) to support:
    • $(substitution args)
    • ${python expressions}
    • single or double quoting of spaces
  • Contributors: Robert Haschke

1.14.7 (2021-05-30)

  • [feature] Expose YamlDictWrapper as dotify() to allow dotted access to any dict (#274)
  • [fix] Scoped macro evaluation (#272)
  • Contributors: Robert Haschke

1.14.6 (2021-03-02)

  • [fix] Report correct filename for XML errors (#268)
  • [fix] Python3-compatible property Table (#266)
  • [fix] Use outer-scope symbols to resolve include filename in xacro:include (#264)
  • Contributors: Robert Haschke

1.14.5 (2020-10-13)

  • [fix] yaml loading: recursively wrap lists and dicts for dotted dict access (#258)
  • [feature] Provide support for yaml constructors !degrees and !radians (#252)
  • Contributors: Robert Haschke, G.A. vd. Hoorn

1.14.4 (2020-08-09)

  • [fix] Rework YamlDictWrapper to restore dict properties (#250)
  • [fix] Ignore underscores when parsing literal numeric values (#247)
  • Contributors: Robert Haschke

1.14.3 (2020-07-05)

  • [feature] Improve warnings
    • Unify meaning of verbosity > 0 (to print file location)
    • Provide file location on warning in check_attrs()
    • Issue warning on child elements of <xacro:include> tag
  • [feature] Allow dotted access to yaml-loaded dicts: d.key1.key2.key3 (#245)
  • [maint] Travis: Update distro to Bionic
  • Contributors: Robert Haschke, G.A. vd. Hoorn

1.14.2 (2020-05-21)

  • [maintanence] Remove deprecated xacro.py (#239)
  • Contributors: Shane Loretz

1.14.1 (2020-03-29)

  • [feature] allow optional xacro includes (#234)
  • [maintanence] Use setuptools instead of distutils (#233)
  • [maintanence] fix Travis: export correct ROS_PYTHON_VERSION
  • Contributors: Alejandro Hernández Cordero, Robert Haschke

1.14.0 (2019-12-08)

  • [maintanence] Remove deprecations
    • Require all xacro commands to be prefixed with 'xacro:'
    • Remove options --legacy, --inorder, --check-order, --includes
  • Contributors: Robert Haschke

1.13.5 (2019-12-08)

  • [feature] Expose abs_filename() (#220)
  • [feature] Catch missing closing brace in $() and ${} expressions
  • [maintanence]
    • Replace deprecated yaml.load() -> yaml.safe_load()
    • Save macro names internally w/o 'xacro:' prefix
    • Correctly issue deprecation warning for non-prefixed xacro tags
  • Contributors: Robert Haschke

1.13.4 (2019-09-26)

  • [feature] remove xmlns:xacro from processed file (#207)
    • Remove all notions of xmlns:xacro from the resulting document.
    • If the root node defines a xacro:targetNamespace attribute, this will become the global xmlns namespace of the resulting document.
  • [feature] Add len() to allowed python functions (#208)
  • [maintanence]
    • --in-order warning: reduce severity level to message
    • fix and cleanup test of cmake extensions
    • adapt run_xacro() to run xacro from PATH
    • simplify import of substition_args
    • remove 'requires' field from setup.py
    • fix Travis config: use new repository key, use xenial/kinetic distro
    • basic README.md
    • fix catkin_lint issue
    • remove duplicate catkin_python_setup() (#206)
  • Contributors: Robert Haschke, James Xu, Martin Pecka

1.13.3 (2018-10-14)

  • use INORDER as default in cmake functions
  • remove weird 'None's in error messages
  • Contributors: Robert Haschke

1.13.2 (2018-05-14)

  • deprecate --includes option (which is tied to deprecated --legacy processing)
  • moved all option handling to cli.py, including deprecation warnings for options
  • Contributors: Robert Haschke

1.13.1 (2018-05-03)

  • fix parsing of quoted strings in default args for xacro params (#187)
  • Contributors: Robert Haschke

1.13.0 (2018-03-31)

  • make --inorder processing the default
  • Contributors: Robert Haschke

1.12.1 (2018-03-28)

  • #183: unicode support for python2 and python3
  • #178: extend list of allowed python builtins: min, max, round
  • #182: suppress xacro warnings when determining dependencies
  • #151: fixes for #149 and #148
  • #157: fix #156 access to undefined target_table
  • #150: allow True/False literals in python expressions
  • #159: load ROS-related packages on demand, thus becoming more independent from ROS
  • #173: allow default values for properties
  • #172: fix formatting of XacroException
  • #171: fix dependency handling (--deps option)
  • #163: full python 3 compatibility
  • Contributors: Robert Haschke, Kartik Mohta, Morgan Quigley, Steven Peters

1.12.0 (2017-03-25)

1.11.2 (2017-02-27)

  • Convert exception to string in a python2/3 compatible way.
  • Use python2/3 independent check for file type.
  • Contributors: Hans Gaiser, Maarten de Vries

1.11.1 (2016-06-22)

  • workaround for xml.dom.minidom issue
  • ensure non-empty error string
  • Contributors: Robert Haschke

1.11.0 (2016-03-25)

  • added short option -i as alternative to --inorder
  • refactored main to fix #122, #107
  • added xacro indicator to error message to fix #123
  • moved banner generation to process_file()
  • removed special (but obsolete) output handling for just_includes mode
  • moved core processing pipeline into function process_file()
  • improved documentation: more comments, input_file -> input_file_name
  • fix #120: handle non-space whitespace characters in params string
  • extended tests to handle non-space whitespace characters in params string
  • always store macros with xacro: prefix in front: #118
  • fix #115: enforce xacro namespace usage with --xacro-ns option
  • apply correct checking for include tags, and extend testcase
  • allow (one-level) nested expression/extension evaluation
  • Contributors: Robert Haschke, Morgan Quigley

1.10.6 (2015-09-01)

  • use correct catkin environment for cmake dependency checking
  • fixed dependency definition for cmake usage
  • Contributors: Robert Haschke

1.10.5 (2015-08-12)

  • fix #108: evaluate property blocks recursively too
  • improved macro parameter parsing
  • use a regular expression to parse a param spec with forwarding and default
  • allow for spaces in default string (within single quotes)
  • forwarding macro arguments from outer scope
  • switched to [\^|]{.title-ref} syntax
  • use more compact [$|]{.title-ref} syntax
  • moved parsing of argument defaults to grab_macro()
  • explicit forwarding of properties to macro scope
  • replace silent/implicit forwarding of properties from outer scope to macro scope by an explicit "call" to a [forward(<name>[,<default>])]{.title-ref} function.
  • implicit forwarding of outer-scope properties to macro args (#100)
  • property evaluation fixes
  • suppress double evaluation of properties
  • adapted unittest to cover the fixed issue
  • fixed evaluation order for properties exported to parent or global scope
  • Merge pull request #103 from ubi-agni/overwrite-check issue warning when attempting to overwrite existing global property
  • fixed unittest: avoid overwrite warning
  • warn when overwriting any globally defined variable
  • Merge pull request #102 from ubi-agni/completion bash completion
  • Merge pull request #99 from ubi-agni/jade-devel reworked macro resolution
  • moved test_macro_name_with_colon() to class TestXacro should be tested both, in oldorder and inorder mode
  • bash completion
  • improved error message for failed $(find)
  • reworked macro resolution python-eval-based macro resolution (introduced to enable namespaces) heavily restricted the set of possible macro names (only valid python identifiers were allowed) Particularly, xacro: prefixed macro names were forbidden.
  • initial attempt to fix #97
  • add failing test case with colon in the macro name
  • Contributors: Robert Haschke

1.10.4 (2015-06-18)

  • removed test_DEPRECATED_should_replace_before_macroexpand() duplicates test_should_replace_before_macroexpand()
  • fixed evaluation order of macro arguments and body Macro arguments need to be evaluated and assigned to properties before body is evaluated. Otherwise, the evaluated value will be converted to str, i.e. loosing original type.
  • Contributors: Robert Haschke

1.10.3 (2015-06-16)

  • deprecate --oldorder processing
  • added --check-order option to do a simple check for --inorder compatibility
    • Most probable incompatibility is redefining a property after its usage.
    • tested and reported with file location of (first) redefinition after usage.
  • moved command line processing to cli.py
  • explain verbosity levels in usage string
  • colorize errors during cli parsing
  • log definition and usage of properties
  • replaced debug option by verbosity options -q, -v
  • fixed evaluation time of default macro params
  • introduced Macro object to increase code readability
  • parse a macro's parameter list once at declaration time (instead of every instantiation)
  • extended test_multiple_blocks() to check for both normal and reversed order
  • added unittest to increase code coverage
  • do not issue deprecation warning for <include> tags that are non-xacro
  • added option --oldorder
  • allow to store properties to parent or global scope
  • added <xacro:attribute>
  • cleaned up error message about missing files
  • moved xml-specific functions to xmlutils.py new generic functions opt_attrs(), reqd_attrs(), and check_attrs() to fetch optional and required attributes and warn about unknown ones in a uniform fashion
  • unittest to allow empty <arg> defaults
  • Merge pull request #94 from ubi-agni/minor-fixes
  • minor fixes
  • remove duplicates in --deps output
  • fixed dependency checking for --inorder mode (which requires full processing)
  • fixed doc of xacro' cmake macros
  • renamed "xacro:rename" to "xacro:element"
  • allow namespacing for xacro:include's
  • allow renaming of element names using xacro:rename
  • unittest cleanup
  • check property and macro names to be valid python identifiers
  • allow namespacing of xacro:include's
  • properties and macros in an included file will go into their own, separate namespace, if the XML attribute [ns]{.title-ref} is provided. Access is by standard python syntax: namespace.name
  • allow renaming of element names <xacro:rename xacro:name="<new element name>"/>
  • moved unittests requiring --inorder processing to class TestXacroInorder
  • added unittest test_dynamic_macro_undefined()
  • improved error message when variable include filename is used without --inorder
  • stripped down unittest test_inorder_processing()
  • improved processing
  • adapted pr2 gold standard removing most comments again this partially reverts 59605fb1521583dc63efdea13f4c45128499bd20
  • remove all XML comments directly before xacro elements (These are considered xacro-related only and should be removed in the final doc.) Leaving an empty line between xacro-unrelated and xacro-related comments allows to include the former.
  • unittest: test_ignore_xacro_comments()
  • improved processing
    • recursive (instead of iterative) eval_all()
    • reusable process_include()
    • replace_node() function to replace xacro tag by some other content
    • avoid reprocessing of nodes
    • avoid deep copy where possible (speedup)
  • fix evaluation (#83)
  • yaml support
  • check for consistency of xml namespaces on xacro:include
  • replaced strip()=='' by more efficient isspace()
  • allow transitive definition of substition args
  • fixed evaluation of literals in property definitions
    • literals with preceding whitespace will be silently stripped (#83)
    • more complex evaluation test (perturbing spaces added)
  • fixed xacro namespaces in pr2 files to get rid of new inconsistency warning
  • warning message on inconsistent namespace redefinition for includes
  • yaml support ${load_yaml('file.yaml')} to load dict from yaml file
  • Merge pull request #85 from ubi-agni/error-reporting improved error reporting
  • nicer formatting of multiple "when evaluating expression" lines
  • improved formatting of error messages use XacroException to wrap and augment other exceptions to achieve a clearer error formatting
  • better error message for missing substitution args
  • use colorized warnings where possible
  • included macro stack in error-reporting
  • maintain filestack to facilitate error reporting at any time
  • Merge pull request #82 from ubi-agni/unittests improved unittesting
  • allow to capture (and check) stderr in unit tests
  • improved unittests to test both, classic and in-order processing
  • Merge pull request #81 from ubi-agni/jade-devel Thank you for your time and contributions. Improving cosmetics is important.
  • PEP8 cleanup
  • cmake: only copy files to devel space if new
  • Merge pull request #80 from ubi-agni/jade-devel
  • improved error-handling opening the output file - running multiple xacro process in parallel, all writing into a new dir could cause a race condition when creating the dir
    • improved error message on output creation failure
  • removed rospy dependency
    • Importing rospy caused build order issues with ros_comm in workspace
  • Filtering out REMAP command-line arguments is done manually now.
  • update authors/maintainers and copyright statements
  • deprecate non-namespaced xacro tags
  • added missing print_location_msg() for file that actually failed parsing
  • improved deprecation warnings
  • New cli option [--xacro-ns]{.title-ref} allows to enforce the new policy requiring the xacro namespace prefix (and suppressing deprecation warnings). However, non-prefixed tags will not be modified by xacro anymore (as requested by #41, #59, #60). Partially reverted cb73cfd8c678adfda2172accef398189ea2338a1, handling <arg> tags in the same fashion as other tags, i.e. issue a warning if used without prefix and ignoring it with cli argument [--xacro-ns]{.title-ref}.
  • fixed pr2 xacro files to use 'xacro:' prefixed tags only
  • fixed unittests in test_xacro.py to use 'xacro:' prefixed tags only
  • deprecation message for missing xacro namespace prefix in xml tags
  • moved colored warning messages into color.py (for reuseability)
  • added missing print_location_msg() for file that actually failed parsing
  • improved xacro's cmake macros
  • prepend ${PACKAGE_NAME} to all generated cmake targets Otherwise multiple packages employing xacro's cmake macros will use the same conflicting target name. This is only an issue with catkin_make, which defines a single global cmake namespace. The new catkin tools (or catkin_make_isolated) build each package separately.
  • basic unittest for xacro's cmake macros
  • improved xacro's cmake macros - xacro_add_xacro_file() automatically determines output file from input (removing .xacro suffix). If that fails, a fatal error is raised.
    • added xacro_install() to allow installation into both, devel and install space.
    • replaced conveniency function xacro_add_files()
  • Contributors: Robert Haschke

1.10.2 (2015-05-23)

  • added --debug option to explicitly enable stack traces By default, only show error message to the user. Stack traces are only interesting for xacro developers.
  • recursive include processing
    • more informed error messages (which file was included from where)

    - allows relative path names for include filename specs they are interpreted relative to the current file

  • new substitution command $(cwd) to extract current working directory
  • added unittest cases
    • creation of required subdirs for output
    • recursive xacro:include
    • extended test_include_glob() to check for all glob patterns
  • added run_xacro() function to simplify unittests running xacro script
  • moved xacro.py back to original location
  • nicely colored deprecation warning
  • create required dirs before opening output file
  • added convenience cmake-macro xacro_add_target() to auto-generate xacro-processed files
  • added cmake status message before launching xacro (xacro might run for quite a while)
  • fetch xacro --deps errors at report them as a warning
  • simplified deprecation message
  • added missing return statement
  • removed obsolete math import left over from deaaae2c69edd7d5e185eeb098c1521d8711608b
  • install xacro.py again (for backwards compatibility) usage of xacro.py issues a deprecation warning
  • simplified scripts/xacro - removed xacro.py
    • made run script "scripts/xacro" and install process follow standards
    • removed xacro.py

    - added dependencies to setup.py Having the binaries xacro and xacro.py installed side by side causes problems, because xacro.py is wrongly taken as the module. This was avoided by the rather complex filtering of the sys.path. Switched to ROS standard now, using a binary script called "xacro".

  • changed tests to use the whole xacro processing pipeline utilizing the modularization of main() from previous commit This simplifies several existing tests, especially these using files on disk.
  • split main() into process_cli_arg(), parse(), process_doc()
  • extended cmake macro xacro_add_xacro_file()
    • handle INORDER option
    • handle REMAP arguments

    - create absolute input file names automatically usage: xacro_add_xacro_file(input output INORDER REMAP ...)

  • stripped new unit tests to essential xml snippets
  • merged pull request #68: eval properties assigned from <arg> tags as literals In the following example: <xacro:arg name="val" default="0.5"/> <xacro:property name="val" value="$(arg val)"/> ${val} was not evaluated as a number, but as string only. Thus numerical expressions failed with an exception.
  • factored out get_boolean_value()
  • <xacro:arg> needs to be fully specified
  • (handling <arg> tags (without xacro ns-prefix) disabled native <arg> tags) add test for eating launch parameter arguments remove check for "arg" parameter. move new test function to bottom of source
  • added unit tests for evaluation of list, tuple, and dict literals
  • fixed some code style issues
  • fixed string-isinstance checks (for python 3 compatibility)
  • do not evaluate list, dict, tuple expressions as literals (without ${} syntax)
  • added dict to list of known global symbols
  • focused global_symbols definition in the beginning of the file added some basic python symbols: list, str, float, int and map allowing some basic computation
  • tuning performance: instantiate QuickLexer's regexps only once
  • Contributors: Robert Haschke, Martin Pecka, Mike O'Driscoll, Morgan Quigley

1.10.1 (2015-04-01)

  • improved error handling and more descriptive error messages
  • correctly raise a XacroException on invalid, i.e. non-boolean, <xacro:if> expressions. (removed left-over debugging code, added test case)
  • raise an exception on undefined, but used macros Using the syntax <xacro:macroname/> should raise an exception if macroname is not defined. Added appropriate code and a test case.
  • fixed bookkeeping in lazy evaluation switch Table.unevaluated from list to set to avoid multiple key entries
  • fix formatting of changelog
  • Contributors: Robert Haschke

1.10.0 (2015-03-13)

  • security measure: forbid access to __builtins__ in expressions
  • literal evaluation should only consider literals, but no expressions use ast.literal_eval()
  • removed eval() from xacro:if evaluation
  • back to string comparison to handle (lowercase) true and false
  • add test case for equality expressions in <xacro:if>
  • add test case for math function usage
  • python based evaluation of expressions
    • replaced handle_expr with python-internal eval() call
    • care has been taken to resolve variables recursively on demand (in Table.__getitem__)
    • allows for evaluation of standard math functions
    • other desired functions could be added in eval_self_contained
    • Values in Table symbols are not stored as strings but as typed values.
  • If text is required, a conversion with str() is performed, to ensure proper evaluation of expressions. Otherwise 3*"1" would evaluate to "111".
  • use __future__.division we can handle integer division evaluating to floating-point devision, as before
  • allow variable names for filename attribute in <xacro:include>
  • allow for ordered XML processing to avoid issues with multiply defined properties and macros in (typically 3rd party) include files
    • enable the new behaviour by passing --inorder cmdline option
    • to improve code readibility and reusability, introduced functions
  • process_include(node), grab_macro(elt, macros), grab_property(elt, symbols) containing 1:1 corresponding handling from process_includes, grab_macros, and grab_properties
    • added corresponding test case test_inorder_processing()
  • dynamic macro names using <xacro:call macro=""/>
  • fixup unittests and handling of non-element nodes in <include>, <if>, <macro>
  • updated pr2 gold standard to include all comments
  • allow to ignore comments in nodes_match()
  • New handling of non-element nodes invalidates pr2 gold standard (adding a lot more comments). To allow validation, allow to ignore all comments in comparison (as before).
  • fixed handling of non-element nodes in <include>, <if>, <macro>
  • fixed writexml: text nodes were not printed when other siblings exist
    • print all text, but skip whitespace-only text nodes
  • improved xml matching
    • so far only element nodes (with its attributes) were considered
    • now also consider TEXT, CDATA, and COMMENT nodes
    • added function text_matches (normalizing consecutive whitespace to a single space)
    • added some new unit tests

    - test_consider_non_elements: non-element nodes are not yet considered in <if> and <macro>

  • travis-ci: use catkin_make
  • travis-ci: fixup running of tests
  • fix pathnames used in test case
  • Include CATKIN_ENV params at build time.
  • use output filename flag instead of shell redirection
  • create output file after parsing is complete, not before
  • Contributors: Robert Haschke, Mike O'Driscoll, Morgan Quigley, William Woodall

1.9.3 (2015-01-14)

  • merge test cases
  • add a snapshot of the pr2 model to the test directory. add a test case which verifies that the pr2 model is parsed equal to a 'golden' parse of it.
  • add more tests
  • add default arg tests
  • Allow default values for substitution args
  • Fix up comments
  • Allow xacro macros to have default parameters
  • Contributors: Paul Bovbel, Morgan Quigley

1.9.2 (2014-07-11)

  • add a few more tests to exercise the symbol table a bit more
  • allow for recursive evaluation of properties in expressions
  • add useful debugging information when parameters are not set
  • stop test from failing the second time it is run
  • unified if/unless handling, correctly handle floating point expressions
  • floating point expressions not equal zero are now evaluated as True
  • changed quotes to omit cmake warning
  • Contributors: Robert Haschke, Mike Ferguson

1.9.1 (2014-06-21)

  • fixup tests so they run
  • export architecture_independent flag in package.xml
  • installed relocatable fix
  • Contributors: Michael Ferguson, Mike Purvis, Scott K Logan

1.9.0 (2014-03-28)

  • Remove the roslint_python glob, use the default one.
  • Add roslint target to xacro; two whitespace fixes so that it passes.
  • fix evaluation of integers in if statements also added a unit test, fixes #15
  • fix setting of _xacro_py CMake var, fixes #16
  • Add support for globbing multiple files in a single <xacro:include>
  • code cleanup and python3 support
  • check for CATKIN_ENABLE_TESTING

1.8.4 (2013-08-06)

  • Merge pull request #9 from davetcoleman/hydro-devel Xacro should not use plain 'include' tags but only namespaced ones.
  • Fix for the fact that minidom creates text nodes which count as child nodes
  • Removed <uri> checking and made it more general for any child element of an <include> tag
  • Removed Groovy reference, only being applied to Hydro
  • Created check for Gazebo's <uri> tabs only only shows deprecated warnings if not present.
  • Small spelling fix
  • Xacro should not use plain 'include' tags but only namespaced ones.
  • Merge pull request #8 from piyushk/hydro-devel-conditional xacro conditional blocks
  • using refined arguments instead of sys.argv for xml file location
  • adding conditional blocks to xacro

1.8.3 (2013-04-22)

  • bumped version to 1.8.3 for hydro release
  • backwards compatilibity with rosbuild
  • adding unit test for substitution args
  • Adding supoprt for substitution_args 'arg' fields
  • Remove bin copy of xacro.py
  • 1.7.3
  • Install xacro.py as a program so it can be run
  • 1.7.2
  • fixed build issues introduced in catkinization
  • 1.7.1
  • PEP8, cleanup, and remove roslib
  • Update copyright, self import guard, and catkinize
  • Catkinize.
  • Cleanup in preparation of catkinization.
  • Added tag unstable for changeset 169c4bf30367
  • Added tag xacro-1.6.1 for changeset fc45af7fdada
  • 1.6.1 marker
  • xacro: fuerte compat with sub args import
  • Added tag unstable for changeset 2d3c8dbfa3c9
  • Added tag xacro-1.6.0 for changeset e4a4455189bf
  • 1.6.0
  • converted to unary stack from common stack
  • xacro: fixed inserting property blocks (ros-pkg #4561)
  • xacro now uses XacroExceptions. String exceptions are not allowed in Python anymore. #4209
  • Added Ubuntu platform tags to manifest
  • Xacro now places comments below <?xml> tag (#3859)
  • Xacro prints out cleaner xml. Elements are now often separated by a newline.
  • xacro dependency on roslaunch removed #3451
  • Xacro now adds a message mentioning that the file was autogenerated (#2775)
  • Remove use of deprecated rosbuild macros
  • Integers stay integers in xacro, fixing #3287
  • Tests for r25868
  • Added a flag for only evaluating include tags in xacro
  • Allowing multiple blocks and multiple insert_blocks, fixing #3322 and #3323
  • doc review completed for xacro
  • adding mainpage for xacro doc review
  • Added xacro.cmake file that exports new xacro_add_xacro_file() macro, #3020
  • Namespaced "include" tag in xacro
  • Marked xacro as api reviewed
  • Xacro now correctly declares the namespaces of the included documents in the final
  • Made xacro accept xml namespaces
  • Xacro now errors hard when a property is used without being declared
  • Xacro no longer allows you to create properties with "${}" in the name
  • Added the ability to escape "${" in xacro
  • Made the tests in xacro run again.
  • Created xacro/src
  • migration part 1

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Name Deps
audibot_description
rokubimini_description
cob_calibration_data
cob_description
raw_description
cob_cartesian_controller
cob_obstacle_distance
cob_twist_controller
cob_grasp_generation
cob_hardware_config
cob_moveit_config
cob_gazebo_worlds
crane_x7_moveit_config
create_description
dbw_fca_description
dbw_mkz_description
dbw_polaris_description
depthai_descriptions
depthai_examples
dingo_description
ensenso_description
fanuc_cr35ia_support
fanuc_cr7ia_support
fanuc_crx10ia_support
fanuc_lrmate200i_support
fanuc_lrmate200ib_support
fanuc_lrmate200ic_support
fanuc_lrmate200id_support
fanuc_m10ia_support
fanuc_m16ib_support
fanuc_m20ia_support
fanuc_m20ib_support
fanuc_m430ia_support
fanuc_m6ib_support
fanuc_m710ic_support
fanuc_m900ia_support
fanuc_m900ib_support
fanuc_r1000ia_support
fanuc_r2000ib_support
fanuc_r2000ic_support
fanuc_cr7ia_moveit_config
fanuc_cr7ial_moveit_config
fanuc_lrmate200i_moveit_config
fanuc_lrmate200ib3l_moveit_config
fanuc_lrmate200ib_moveit_config
fanuc_lrmate200ic5h_moveit_config
fanuc_lrmate200ic5l_moveit_config
fanuc_lrmate200ic_moveit_config
fanuc_lrmate200id7l_moveit_config
fanuc_lrmate200id_moveit_config
fanuc_m10ia_moveit_config
fanuc_m16ib20_moveit_config
fanuc_m20ia10l_moveit_config
fanuc_m20ia_moveit_config
fanuc_m20ib25_moveit_config
fanuc_m430ia2f_moveit_config
fanuc_m430ia2p_moveit_config
fanuc_m6ib6s_moveit_config
fanuc_m6ib_moveit_config
fanuc_r1000ia80f_moveit_config
fath_pivot_mount_description
fetch_description
fetch_moveit_config
franka_description
franka_visualization
hector_components_description
hector_sensors_description
hector_xacro_tools
human_description
husky_description
jackal_description
jackal_navigation
jsk_data
jsk_pcl_ros
khi_duaro_moveit_config
khi_rs007l_moveit_config
khi_rs007n_moveit_config
khi_rs013n_moveit_config
khi_rs020n_moveit_config
khi_rs025n_moveit_config
khi_rs030n_moveit_config
khi_rs080n_moveit_config
leo_description
leo_viz
leo_bringup
robot
microstrain_inertial_description
mir_description
moveit_setup_assistant
moveit_resources_dual_panda_moveit_config
moveit_resources_fanuc_moveit_config
moveit_resources_panda_description
moveit_resources_panda_moveit_config
moveit_resources_prbt_moveit_config
moveit_resources_prbt_pg70_support
moveit_resources_prbt_support
open_manipulator_p_gazebo
open_manipulator_gazebo
openni_description
panda_moveit_config
pass_through_controllers
pf_description
prbt_gazebo
prbt_moveit_config
prbt_support
pincher_arm_bringup
pincher_arm_moveit_config
pointgrey_camera_description
pr2_description
pr2_gazebo
prbt_pg70_support
psen_scan_v2
raspimouse_description
rc_visard_description
ridgeback_description
ridgeback_navigation
robot_upstart
robotont_description
robotont_nuc_description
ackermann_steering_controller
diff_drive_controller
effort_controllers
four_wheel_steering_controller
joint_trajectory_controller
cartesian_trajectory_controller
schunk_description
sciurus17_moveit_config
sick_ldmrs_description
sick_tim
trac_ik_examples
turtlebot3_description
ur10_moveit_config
ur10e_moveit_config
ur12e_moveit_config
ur16e_moveit_config
ur20_moveit_config
ur30_moveit_config
ur3_moveit_config
ur3e_moveit_config
ur5_moveit_config
ur5e_moveit_config
ur7e_moveit_config
ur_description
urdf_geometry_parser
urdf_sim_tutorial
urdf_tutorial
urg_node
velodyne_description
warthog_description
xpp_hyq
xpp_quadrotor
flir_camera_description
sick_scan_xd
clober_description
bcr_bot
cpr_onav_description
diffbot_gazebo
ign_ros_control_demos
nicla_vision_ros
reach_ros
rm_description
thunder_line_follower_pmr3100

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged xacro at Robotics Stack Exchange

No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.

xacro package from xacro repo

xacro

Package Summary

Tags No category tags.
Version 2.0.6
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/xacro.git
VCS Type git
VCS Version dashing-devel
Last Updated 2021-05-30
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Xacro (XML Macros) Xacro is an XML macro language. With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions.

Additional Links

Maintainers

  • Robert Haschke
  • Morgan Quigley

Authors

  • Stuart Glaser
  • William Woodall
  • Robert Haschke

Xacro (XML Macros)

Xacro is an XML macro language

With Xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions. Documentation can be found in the wiki: http://wiki.ros.org/xacro

CHANGELOG

Changelog for package xacro

2.0.6 (2021-05-30)

  • [feature] Expose YamlDictWrapper as dotify() to allow dotted access to any dict (#274)
  • [fix] Scoped macro evaluation (#272)
  • Contributors: Robert Haschke

2.0.5 (2021-03-02)

  • [fix] Report correct filename for XML errors (#268)
  • [fix] Python3-compatible property Table (#266)
  • [fix] Use outer-scope symbols to resolve include filename in xacro:include (#264)
  • [fix] Append test directory to existing AMENT_PREFIX_PATH (#260)
  • [fix] yaml loading: recursively wrap lists and dicts for dotted dict access (#258)
  • [feature] Provide support for yaml constructors !degrees and !radians (#252)
  • Contributors: Chen Bainian, Robert Haschke, G.A. vd. Hoorn

2.0.3 (2020-08-09)

  • Merge improvements of melodic and noetic branches into dashing-devel: see 1.14.2 and 1.14.3 for details
  • Contributors: Robert Haschke

2.0.2 (2020-03-29)

  • Merge improvements of melodic and noetic branches into dashing-devel: see 1.14.1, 1.13.5 for details
  • Contributors: Robert Haschke

2.0.1 (2019-10-06)

  • Revert requiring that all xacro commands are prefixed with 'xacro:' namespace Although this is deprecated since #79, the corresponding deprecation warning wasn't actually issued. Thus, we will accept non-prefixed xacro tags until F-turtle.
  • Install to both, bin/xacro and lib/xacro/xacro
  • Contributors: Robert Haschke

2.0.0 (2019-09-28)

  • PEP8 cleanup
    • code simplifications
    • avoid empty except
    • sort imports
    • format line breaks
  • Code cleanup
    • Removed deprecated options --legacy, --inorder, --check-order, --includes
    • Require all xacro commands to be prefixed with 'xacro:'
    • Added missing copyright notices
    • Removed python2 stuff
  • Adapt Travis config to use colcon
  • Provide ROS2-based replacement for substition args
  • Modified package structure as per ROS2 rules
    • Using ament_cmake
    • Moved source contents from "src/xacro" to "xacro"
    • Modified package.xml and setup.py according to ROS2 requirements
    • Configured completion hook
    • Removed catkin artifacts from cmake extension
  • Contributors: vandanamandlik, Jacob Perron, Robert Haschke

1.14.4 (2020-08-09)

  • [fix] Rework YamlDictWrapper to restore dict properties (#250)
  • [fix] Ignore underscores when parsing literal numeric values (#247)
  • Contributors: Robert Haschke

1.14.3 (2020-07-05)

  • [feature] Improve warnings
    • Unify meaning of verbosity > 0 (to print file location)
    • Provide file location on warning in check_attrs()
    • Issue warning on child elements of <xacro:include> tag
  • [feature] Allow dotted access to yaml-loaded dicts: d.key1.key2.key3 (#245)
  • [maint] Travis: Update distro to Bionic
  • Contributors: Robert Haschke, G.A. vd. Hoorn

1.14.2 (2020-05-21)

  • [maintanence] Remove deprecated xacro.py (#239)
  • Contributors: Shane Loretz

1.14.1 (2020-03-29)

  • [feature] allow optional xacro includes (#234)
  • Contributors: Robert Haschke

1.13.5 (2019-12-08)

  • [feature] Expose abs_filename() (#220)
  • [feature] Catch missing closing brace in $() and ${} expressions
  • [maintanence]
    • Replace deprecated yaml.load() -> yaml.safe_load()
    • Save macro names internally w/o 'xacro:' prefix
    • Correctly issue deprecation warning for non-prefixed xacro tags
  • Contributors: Robert Haschke

1.13.4 (2019-09-26)

  • [feature] remove xmlns:xacro from processed file (#207)
    • Remove all notions of xmlns:xacro from the resulting document.
    • If the root node defines a xacro:targetNamespace attribute, this will become the global xmlns namespace of the resulting document.
  • [feature] Add len() to allowed python functions (#208)
  • [maintanence]
    • --in-order warning: reduce severity level to message
    • fix and cleanup test of cmake extensions
    • adapt run_xacro() to run xacro from PATH
    • simplify import of substition_args
    • remove 'requires' field from setup.py
    • fix Travis config: use new repository key, use xenial/kinetic distro
    • basic README.md
    • fix catkin_lint issue
    • remove duplicate catkin_python_setup() (#206)
  • Contributors: Robert Haschke, James Xu, Martin Pecka

1.13.3 (2018-10-14)

  • use INORDER as default in cmake functions
  • remove weird 'None's in error messages
  • Contributors: Robert Haschke

1.13.2 (2018-05-14)

  • deprecate --includes option (which is tied to deprecated --legacy processing)
  • moved all option handling to cli.py, including deprecation warnings for options
  • Contributors: Robert Haschke

1.13.1 (2018-05-03)

  • fix parsing of quoted strings in default args for xacro params (#187)
  • Contributors: Robert Haschke

1.13.0 (2018-03-31)

  • make --inorder processing the default
  • Contributors: Robert Haschke

1.12.1 (2018-03-28)

  • #183: unicode support for python2 and python3
  • #178: extend list of allowed python builtins: min, max, round
  • #182: suppress xacro warnings when determining dependencies
  • #151: fixes for #149 and #148
  • #157: fix #156 access to undefined target_table
  • #150: allow True/False literals in python expressions
  • #159: load ROS-related packages on demand, thus becoming more independent from ROS
  • #173: allow default values for properties
  • #172: fix formatting of XacroException
  • #171: fix dependency handling (--deps option)
  • #163: full python 3 compatibility
  • Contributors: Robert Haschke, Kartik Mohta, Morgan Quigley, Steven Peters

1.12.0 (2017-03-25)

1.11.2 (2017-02-27)

  • Convert exception to string in a python2/3 compatible way.
  • Use python2/3 independent check for file type.
  • Contributors: Hans Gaiser, Maarten de Vries

1.11.1 (2016-06-22)

  • workaround for xml.dom.minidom issue
  • ensure non-empty error string
  • Contributors: Robert Haschke

1.11.0 (2016-03-25)

  • added short option -i as alternative to --inorder
  • refactored main to fix #122, #107
  • added xacro indicator to error message to fix #123
  • moved banner generation to process_file()
  • removed special (but obsolete) output handling for just_includes mode
  • moved core processing pipeline into function process_file()
  • improved documentation: more comments, input_file -> input_file_name
  • fix #120: handle non-space whitespace characters in params string
  • extended tests to handle non-space whitespace characters in params string
  • always store macros with xacro: prefix in front: #118
  • fix #115: enforce xacro namespace usage with --xacro-ns option
  • apply correct checking for include tags, and extend testcase
  • allow (one-level) nested expression/extension evaluation
  • Contributors: Robert Haschke, Morgan Quigley

1.10.6 (2015-09-01)

  • use correct catkin environment for cmake dependency checking
  • fixed dependency definition for cmake usage
  • Contributors: Robert Haschke

1.10.5 (2015-08-12)

  • fix #108: evaluate property blocks recursively too
  • improved macro parameter parsing
  • use a regular expression to parse a param spec with forwarding and default
  • allow for spaces in default string (within single quotes)
  • forwarding macro arguments from outer scope
  • switched to [\^|]{.title-ref} syntax
  • use more compact [$|]{.title-ref} syntax
  • moved parsing of argument defaults to grab_macro()
  • explicit forwarding of properties to macro scope
  • replace silent/implicit forwarding of properties from outer scope to macro scope by an explicit "call" to a [forward(<name>[,<default>])]{.title-ref} function.
  • implicit forwarding of outer-scope properties to macro args (#100)
  • property evaluation fixes
  • suppress double evaluation of properties
  • adapted unittest to cover the fixed issue
  • fixed evaluation order for properties exported to parent or global scope
  • Merge pull request #103 from ubi-agni/overwrite-check issue warning when attempting to overwrite existing global property
  • fixed unittest: avoid overwrite warning
  • warn when overwriting any globally defined variable
  • Merge pull request #102 from ubi-agni/completion bash completion
  • Merge pull request #99 from ubi-agni/jade-devel reworked macro resolution
  • moved test_macro_name_with_colon() to class TestXacro should be tested both, in oldorder and inorder mode
  • bash completion
  • improved error message for failed $(find)
  • reworked macro resolution python-eval-based macro resolution (introduced to enable namespaces) heavily restricted the set of possible macro names (only valid python identifiers were allowed) Particularly, xacro: prefixed macro names were forbidden.
  • initial attempt to fix #97
  • add failing test case with colon in the macro name
  • Contributors: Robert Haschke

1.10.4 (2015-06-18)

  • removed test_DEPRECATED_should_replace_before_macroexpand() duplicates test_should_replace_before_macroexpand()
  • fixed evaluation order of macro arguments and body Macro arguments need to be evaluated and assigned to properties before body is evaluated. Otherwise, the evaluated value will be converted to str, i.e. loosing original type.
  • Contributors: Robert Haschke

1.10.3 (2015-06-16)

  • deprecate --oldorder processing
  • added --check-order option to do a simple check for --inorder compatibility
    • Most probable incompatibility is redefining a property after its usage.
    • tested and reported with file location of (first) redefinition after usage.
  • moved command line processing to cli.py
  • explain verbosity levels in usage string
  • colorize errors during cli parsing
  • log definition and usage of properties
  • replaced debug option by verbosity options -q, -v
  • fixed evaluation time of default macro params
  • introduced Macro object to increase code readability
  • parse a macro's parameter list once at declaration time (instead of every instantiation)
  • extended test_multiple_blocks() to check for both normal and reversed order
  • added unittest to increase code coverage
  • do not issue deprecation warning for <include> tags that are non-xacro
  • added option --oldorder
  • allow to store properties to parent or global scope
  • added <xacro:attribute>
  • cleaned up error message about missing files
  • moved xml-specific functions to xmlutils.py new generic functions opt_attrs(), reqd_attrs(), and check_attrs() to fetch optional and required attributes and warn about unknown ones in a uniform fashion
  • unittest to allow empty <arg> defaults
  • Merge pull request #94 from ubi-agni/minor-fixes
  • minor fixes
  • remove duplicates in --deps output
  • fixed dependency checking for --inorder mode (which requires full processing)
  • fixed doc of xacro' cmake macros
  • renamed "xacro:rename" to "xacro:element"
  • allow namespacing for xacro:include's
  • allow renaming of element names using xacro:rename
  • unittest cleanup
  • check property and macro names to be valid python identifiers
  • allow namespacing of xacro:include's
  • properties and macros in an included file will go into their own, separate namespace, if the XML attribute [ns]{.title-ref} is provided. Access is by standard python syntax: namespace.name
  • allow renaming of element names <xacro:rename xacro:name="<new element name>"/>
  • moved unittests requiring --inorder processing to class TestXacroInorder
  • added unittest test_dynamic_macro_undefined()
  • improved error message when variable include filename is used without --inorder
  • stripped down unittest test_inorder_processing()
  • improved processing
  • adapted pr2 gold standard removing most comments again this partially reverts 59605fb1521583dc63efdea13f4c45128499bd20
  • remove all XML comments directly before xacro elements (These are considered xacro-related only and should be removed in the final doc.) Leaving an empty line between xacro-unrelated and xacro-related comments allows to include the former.
  • unittest: test_ignore_xacro_comments()
  • improved processing
    • recursive (instead of iterative) eval_all()
    • reusable process_include()
    • replace_node() function to replace xacro tag by some other content
    • avoid reprocessing of nodes
    • avoid deep copy where possible (speedup)
  • fix evaluation (#83)
  • yaml support
  • check for consistency of xml namespaces on xacro:include
  • replaced strip()=='' by more efficient isspace()
  • allow transitive definition of substition args
  • fixed evaluation of literals in property definitions
    • literals with preceding whitespace will be silently stripped (#83)
    • more complex evaluation test (perturbing spaces added)
  • fixed xacro namespaces in pr2 files to get rid of new inconsistency warning
  • warning message on inconsistent namespace redefinition for includes
  • yaml support ${load_yaml('file.yaml')} to load dict from yaml file
  • Merge pull request #85 from ubi-agni/error-reporting improved error reporting
  • nicer formatting of multiple "when evaluating expression" lines
  • improved formatting of error messages use XacroException to wrap and augment other exceptions to achieve a clearer error formatting
  • better error message for missing substitution args
  • use colorized warnings where possible
  • included macro stack in error-reporting
  • maintain filestack to facilitate error reporting at any time
  • Merge pull request #82 from ubi-agni/unittests improved unittesting
  • allow to capture (and check) stderr in unit tests
  • improved unittests to test both, classic and in-order processing
  • Merge pull request #81 from ubi-agni/jade-devel Thank you for your time and contributions. Improving cosmetics is important.
  • PEP8 cleanup
  • cmake: only copy files to devel space if new
  • Merge pull request #80 from ubi-agni/jade-devel
  • improved error-handling opening the output file - running multiple xacro process in parallel, all writing into a new dir could cause a race condition when creating the dir
    • improved error message on output creation failure
  • removed rospy dependency
    • Importing rospy caused build order issues with ros_comm in workspace
  • Filtering out REMAP command-line arguments is done manually now.
  • update authors/maintainers and copyright statements
  • deprecate non-namespaced xacro tags
  • added missing print_location_msg() for file that actually failed parsing
  • improved deprecation warnings
  • New cli option [--xacro-ns]{.title-ref} allows to enforce the new policy requiring the xacro namespace prefix (and suppressing deprecation warnings). However, non-prefixed tags will not be modified by xacro anymore (as requested by #41, #59, #60). Partially reverted cb73cfd8c678adfda2172accef398189ea2338a1, handling <arg> tags in the same fashion as other tags, i.e. issue a warning if used without prefix and ignoring it with cli argument [--xacro-ns]{.title-ref}.
  • fixed pr2 xacro files to use 'xacro:' prefixed tags only
  • fixed unittests in test_xacro.py to use 'xacro:' prefixed tags only
  • deprecation message for missing xacro namespace prefix in xml tags
  • moved colored warning messages into color.py (for reuseability)
  • added missing print_location_msg() for file that actually failed parsing
  • improved xacro's cmake macros
  • prepend ${PACKAGE_NAME} to all generated cmake targets Otherwise multiple packages employing xacro's cmake macros will use the same conflicting target name. This is only an issue with catkin_make, which defines a single global cmake namespace. The new catkin tools (or catkin_make_isolated) build each package separately.
  • basic unittest for xacro's cmake macros
  • improved xacro's cmake macros - xacro_add_xacro_file() automatically determines output file from input (removing .xacro suffix). If that fails, a fatal error is raised.
    • added xacro_install() to allow installation into both, devel and install space.
    • replaced conveniency function xacro_add_files()
  • Contributors: Robert Haschke

1.10.2 (2015-05-23)

  • added --debug option to explicitly enable stack traces By default, only show error message to the user. Stack traces are only interesting for xacro developers.
  • recursive include processing
    • more informed error messages (which file was included from where)

    - allows relative path names for include filename specs they are interpreted relative to the current file

  • new substitution command $(cwd) to extract current working directory
  • added unittest cases
    • creation of required subdirs for output
    • recursive xacro:include
    • extended test_include_glob() to check for all glob patterns
  • added run_xacro() function to simplify unittests running xacro script
  • moved xacro.py back to original location
  • nicely colored deprecation warning
  • create required dirs before opening output file
  • added convenience cmake-macro xacro_add_target() to auto-generate xacro-processed files
  • added cmake status message before launching xacro (xacro might run for quite a while)
  • fetch xacro --deps errors at report them as a warning
  • simplified deprecation message
  • added missing return statement
  • removed obsolete math import left over from deaaae2c69edd7d5e185eeb098c1521d8711608b
  • install xacro.py again (for backwards compatibility) usage of xacro.py issues a deprecation warning
  • simplified scripts/xacro - removed xacro.py
    • made run script "scripts/xacro" and install process follow standards
    • removed xacro.py

    - added dependencies to setup.py Having the binaries xacro and xacro.py installed side by side causes problems, because xacro.py is wrongly taken as the module. This was avoided by the rather complex filtering of the sys.path. Switched to ROS standard now, using a binary script called "xacro".

  • changed tests to use the whole xacro processing pipeline utilizing the modularization of main() from previous commit This simplifies several existing tests, especially these using files on disk.
  • split main() into process_cli_arg(), parse(), process_doc()
  • extended cmake macro xacro_add_xacro_file()
    • handle INORDER option
    • handle REMAP arguments

    - create absolute input file names automatically usage: xacro_add_xacro_file(input output INORDER REMAP ...)

  • stripped new unit tests to essential xml snippets
  • merged pull request #68: eval properties assigned from <arg> tags as literals In the following example: <xacro:arg name="val" default="0.5"/> <xacro:property name="val" value="$(arg val)"/> ${val} was not evaluated as a number, but as string only. Thus numerical expressions failed with an exception.
  • factored out get_boolean_value()
  • <xacro:arg> needs to be fully specified
  • (handling <arg> tags (without xacro ns-prefix) disabled native <arg> tags) add test for eating launch parameter arguments remove check for "arg" parameter. move new test function to bottom of source
  • added unit tests for evaluation of list, tuple, and dict literals
  • fixed some code style issues
  • fixed string-isinstance checks (for python 3 compatibility)
  • do not evaluate list, dict, tuple expressions as literals (without ${} syntax)
  • added dict to list of known global symbols
  • focused global_symbols definition in the beginning of the file added some basic python symbols: list, str, float, int and map allowing some basic computation
  • tuning performance: instantiate QuickLexer's regexps only once
  • Contributors: Robert Haschke, Martin Pecka, Mike O'Driscoll, Morgan Quigley

1.10.1 (2015-04-01)

  • improved error handling and more descriptive error messages
  • correctly raise a XacroException on invalid, i.e. non-boolean, <xacro:if> expressions. (removed left-over debugging code, added test case)
  • raise an exception on undefined, but used macros Using the syntax <xacro:macroname/> should raise an exception if macroname is not defined. Added appropriate code and a test case.
  • fixed bookkeeping in lazy evaluation switch Table.unevaluated from list to set to avoid multiple key entries
  • fix formatting of changelog
  • Contributors: Robert Haschke

1.10.0 (2015-03-13)

  • security measure: forbid access to __builtins__ in expressions
  • literal evaluation should only consider literals, but no expressions use ast.literal_eval()
  • removed eval() from xacro:if evaluation
  • back to string comparison to handle (lowercase) true and false
  • add test case for equality expressions in <xacro:if>
  • add test case for math function usage
  • python based evaluation of expressions
    • replaced handle_expr with python-internal eval() call
    • care has been taken to resolve variables recursively on demand (in Table.__getitem__)
    • allows for evaluation of standard math functions
    • other desired functions could be added in eval_self_contained
    • Values in Table symbols are not stored as strings but as typed values.
  • If text is required, a conversion with str() is performed, to ensure proper evaluation of expressions. Otherwise 3*"1" would evaluate to "111".
  • use __future__.division we can handle integer division evaluating to floating-point devision, as before
  • allow variable names for filename attribute in <xacro:include>
  • allow for ordered XML processing to avoid issues with multiply defined properties and macros in (typically 3rd party) include files
    • enable the new behaviour by passing --inorder cmdline option
    • to improve code readibility and reusability, introduced functions
  • process_include(node), grab_macro(elt, macros), grab_property(elt, symbols) containing 1:1 corresponding handling from process_includes, grab_macros, and grab_properties
    • added corresponding test case test_inorder_processing()
  • dynamic macro names using <xacro:call macro=""/>
  • fixup unittests and handling of non-element nodes in <include>, <if>, <macro>
  • updated pr2 gold standard to include all comments
  • allow to ignore comments in nodes_match()
  • New handling of non-element nodes invalidates pr2 gold standard (adding a lot more comments). To allow validation, allow to ignore all comments in comparison (as before).
  • fixed handling of non-element nodes in <include>, <if>, <macro>
  • fixed writexml: text nodes were not printed when other siblings exist
    • print all text, but skip whitespace-only text nodes
  • improved xml matching
    • so far only element nodes (with its attributes) were considered
    • now also consider TEXT, CDATA, and COMMENT nodes
    • added function text_matches (normalizing consecutive whitespace to a single space)
    • added some new unit tests

    - test_consider_non_elements: non-element nodes are not yet considered in <if> and <macro>

  • travis-ci: use catkin_make
  • travis-ci: fixup running of tests
  • fix pathnames used in test case
  • Include CATKIN_ENV params at build time.
  • use output filename flag instead of shell redirection
  • create output file after parsing is complete, not before
  • Contributors: Robert Haschke, Mike O'Driscoll, Morgan Quigley, William Woodall

1.9.3 (2015-01-14)

  • merge test cases
  • add a snapshot of the pr2 model to the test directory. add a test case which verifies that the pr2 model is parsed equal to a 'golden' parse of it.
  • add more tests
  • add default arg tests
  • Allow default values for substitution args
  • Fix up comments
  • Allow xacro macros to have default parameters
  • Contributors: Paul Bovbel, Morgan Quigley

1.9.2 (2014-07-11)

  • add a few more tests to exercise the symbol table a bit more
  • allow for recursive evaluation of properties in expressions
  • add useful debugging information when parameters are not set
  • stop test from failing the second time it is run
  • unified if/unless handling, correctly handle floating point expressions
  • floating point expressions not equal zero are now evaluated as True
  • changed quotes to omit cmake warning
  • Contributors: Robert Haschke, Mike Ferguson

1.9.1 (2014-06-21)

  • fixup tests so they run
  • export architecture_independent flag in package.xml
  • installed relocatable fix
  • Contributors: Michael Ferguson, Mike Purvis, Scott K Logan

1.9.0 (2014-03-28)

  • Remove the roslint_python glob, use the default one.
  • Add roslint target to xacro; two whitespace fixes so that it passes.
  • fix evaluation of integers in if statements also added a unit test, fixes #15
  • fix setting of _xacro_py CMake var, fixes #16
  • Add support for globbing multiple files in a single <xacro:include>
  • code cleanup and python3 support
  • check for CATKIN_ENABLE_TESTING

1.8.4 (2013-08-06)

  • Merge pull request #9 from davetcoleman/hydro-devel Xacro should not use plain 'include' tags but only namespaced ones.
  • Fix for the fact that minidom creates text nodes which count as child nodes
  • Removed <uri> checking and made it more general for any child element of an <include> tag
  • Removed Groovy reference, only being applied to Hydro
  • Created check for Gazebo's <uri> tabs only only shows deprecated warnings if not present.
  • Small spelling fix
  • Xacro should not use plain 'include' tags but only namespaced ones.
  • Merge pull request #8 from piyushk/hydro-devel-conditional xacro conditional blocks
  • using refined arguments instead of sys.argv for xml file location
  • adding conditional blocks to xacro

1.8.3 (2013-04-22)

  • bumped version to 1.8.3 for hydro release
  • backwards compatilibity with rosbuild
  • adding unit test for substitution args
  • Adding supoprt for substitution_args 'arg' fields
  • Remove bin copy of xacro.py
  • 1.7.3
  • Install xacro.py as a program so it can be run
  • 1.7.2
  • fixed build issues introduced in catkinization
  • 1.7.1
  • PEP8, cleanup, and remove roslib
  • Update copyright, self import guard, and catkinize
  • Catkinize.
  • Cleanup in preparation of catkinization.
  • Added tag unstable for changeset 169c4bf30367
  • Added tag xacro-1.6.1 for changeset fc45af7fdada
  • 1.6.1 marker
  • xacro: fuerte compat with sub args import
  • Added tag unstable for changeset 2d3c8dbfa3c9
  • Added tag xacro-1.6.0 for changeset e4a4455189bf
  • 1.6.0
  • converted to unary stack from common stack
  • xacro: fixed inserting property blocks (ros-pkg #4561)
  • xacro now uses XacroExceptions. String exceptions are not allowed in Python anymore. #4209
  • Added Ubuntu platform tags to manifest
  • Xacro now places comments below <?xml> tag (#3859)
  • Xacro prints out cleaner xml. Elements are now often separated by a newline.
  • xacro dependency on roslaunch removed #3451
  • Xacro now adds a message mentioning that the file was autogenerated (#2775)
  • Remove use of deprecated rosbuild macros
  • Integers stay integers in xacro, fixing #3287
  • Tests for r25868
  • Added a flag for only evaluating include tags in xacro
  • Allowing multiple blocks and multiple insert_blocks, fixing #3322 and #3323
  • doc review completed for xacro
  • adding mainpage for xacro doc review
  • Added xacro.cmake file that exports new xacro_add_xacro_file() macro, #3020
  • Namespaced "include" tag in xacro
  • Marked xacro as api reviewed
  • Xacro now correctly declares the namespaces of the included documents in the final
  • Made xacro accept xml namespaces
  • Xacro now errors hard when a property is used without being declared
  • Xacro no longer allows you to create properties with "${}" in the name
  • Added the ability to escape "${" in xacro
  • Made the tests in xacro run again.
  • Created xacro/src
  • migration part 1

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged xacro at Robotics Stack Exchange

xacro package from xacro repo

xacro

Package Summary

Tags No category tags.
Version 2.0.6
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/xacro.git
VCS Type git
VCS Version dashing-devel
Last Updated 2021-05-30
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Xacro (XML Macros) Xacro is an XML macro language. With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions.

Additional Links

Maintainers

  • Robert Haschke
  • Morgan Quigley

Authors

  • Stuart Glaser
  • William Woodall
  • Robert Haschke

Xacro (XML Macros)

Xacro is an XML macro language

With Xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions. Documentation can be found in the wiki: http://wiki.ros.org/xacro

CHANGELOG

Changelog for package xacro

2.0.6 (2021-05-30)

  • [feature] Expose YamlDictWrapper as dotify() to allow dotted access to any dict (#274)
  • [fix] Scoped macro evaluation (#272)
  • Contributors: Robert Haschke

2.0.5 (2021-03-02)

  • [fix] Report correct filename for XML errors (#268)
  • [fix] Python3-compatible property Table (#266)
  • [fix] Use outer-scope symbols to resolve include filename in xacro:include (#264)
  • [fix] Append test directory to existing AMENT_PREFIX_PATH (#260)
  • [fix] yaml loading: recursively wrap lists and dicts for dotted dict access (#258)
  • [feature] Provide support for yaml constructors !degrees and !radians (#252)
  • Contributors: Chen Bainian, Robert Haschke, G.A. vd. Hoorn

2.0.3 (2020-08-09)

  • Merge improvements of melodic and noetic branches into dashing-devel: see 1.14.2 and 1.14.3 for details
  • Contributors: Robert Haschke

2.0.2 (2020-03-29)

  • Merge improvements of melodic and noetic branches into dashing-devel: see 1.14.1, 1.13.5 for details
  • Contributors: Robert Haschke

2.0.1 (2019-10-06)

  • Revert requiring that all xacro commands are prefixed with 'xacro:' namespace Although this is deprecated since #79, the corresponding deprecation warning wasn't actually issued. Thus, we will accept non-prefixed xacro tags until F-turtle.
  • Install to both, bin/xacro and lib/xacro/xacro
  • Contributors: Robert Haschke

2.0.0 (2019-09-28)

  • PEP8 cleanup
    • code simplifications
    • avoid empty except
    • sort imports
    • format line breaks
  • Code cleanup
    • Removed deprecated options --legacy, --inorder, --check-order, --includes
    • Require all xacro commands to be prefixed with 'xacro:'
    • Added missing copyright notices
    • Removed python2 stuff
  • Adapt Travis config to use colcon
  • Provide ROS2-based replacement for substition args
  • Modified package structure as per ROS2 rules
    • Using ament_cmake
    • Moved source contents from "src/xacro" to "xacro"
    • Modified package.xml and setup.py according to ROS2 requirements
    • Configured completion hook
    • Removed catkin artifacts from cmake extension
  • Contributors: vandanamandlik, Jacob Perron, Robert Haschke

1.14.4 (2020-08-09)

  • [fix] Rework YamlDictWrapper to restore dict properties (#250)
  • [fix] Ignore underscores when parsing literal numeric values (#247)
  • Contributors: Robert Haschke

1.14.3 (2020-07-05)

  • [feature] Improve warnings
    • Unify meaning of verbosity > 0 (to print file location)
    • Provide file location on warning in check_attrs()
    • Issue warning on child elements of <xacro:include> tag
  • [feature] Allow dotted access to yaml-loaded dicts: d.key1.key2.key3 (#245)
  • [maint] Travis: Update distro to Bionic
  • Contributors: Robert Haschke, G.A. vd. Hoorn

1.14.2 (2020-05-21)

  • [maintanence] Remove deprecated xacro.py (#239)
  • Contributors: Shane Loretz

1.14.1 (2020-03-29)

  • [feature] allow optional xacro includes (#234)
  • Contributors: Robert Haschke

1.13.5 (2019-12-08)

  • [feature] Expose abs_filename() (#220)
  • [feature] Catch missing closing brace in $() and ${} expressions
  • [maintanence]
    • Replace deprecated yaml.load() -> yaml.safe_load()
    • Save macro names internally w/o 'xacro:' prefix
    • Correctly issue deprecation warning for non-prefixed xacro tags
  • Contributors: Robert Haschke

1.13.4 (2019-09-26)

  • [feature] remove xmlns:xacro from processed file (#207)
    • Remove all notions of xmlns:xacro from the resulting document.
    • If the root node defines a xacro:targetNamespace attribute, this will become the global xmlns namespace of the resulting document.
  • [feature] Add len() to allowed python functions (#208)
  • [maintanence]
    • --in-order warning: reduce severity level to message
    • fix and cleanup test of cmake extensions
    • adapt run_xacro() to run xacro from PATH
    • simplify import of substition_args
    • remove 'requires' field from setup.py
    • fix Travis config: use new repository key, use xenial/kinetic distro
    • basic README.md
    • fix catkin_lint issue
    • remove duplicate catkin_python_setup() (#206)
  • Contributors: Robert Haschke, James Xu, Martin Pecka

1.13.3 (2018-10-14)

  • use INORDER as default in cmake functions
  • remove weird 'None's in error messages
  • Contributors: Robert Haschke

1.13.2 (2018-05-14)

  • deprecate --includes option (which is tied to deprecated --legacy processing)
  • moved all option handling to cli.py, including deprecation warnings for options
  • Contributors: Robert Haschke

1.13.1 (2018-05-03)

  • fix parsing of quoted strings in default args for xacro params (#187)
  • Contributors: Robert Haschke

1.13.0 (2018-03-31)

  • make --inorder processing the default
  • Contributors: Robert Haschke

1.12.1 (2018-03-28)

  • #183: unicode support for python2 and python3
  • #178: extend list of allowed python builtins: min, max, round
  • #182: suppress xacro warnings when determining dependencies
  • #151: fixes for #149 and #148
  • #157: fix #156 access to undefined target_table
  • #150: allow True/False literals in python expressions
  • #159: load ROS-related packages on demand, thus becoming more independent from ROS
  • #173: allow default values for properties
  • #172: fix formatting of XacroException
  • #171: fix dependency handling (--deps option)
  • #163: full python 3 compatibility
  • Contributors: Robert Haschke, Kartik Mohta, Morgan Quigley, Steven Peters

1.12.0 (2017-03-25)

1.11.2 (2017-02-27)

  • Convert exception to string in a python2/3 compatible way.
  • Use python2/3 independent check for file type.
  • Contributors: Hans Gaiser, Maarten de Vries

1.11.1 (2016-06-22)

  • workaround for xml.dom.minidom issue
  • ensure non-empty error string
  • Contributors: Robert Haschke

1.11.0 (2016-03-25)

  • added short option -i as alternative to --inorder
  • refactored main to fix #122, #107
  • added xacro indicator to error message to fix #123
  • moved banner generation to process_file()
  • removed special (but obsolete) output handling for just_includes mode
  • moved core processing pipeline into function process_file()
  • improved documentation: more comments, input_file -> input_file_name
  • fix #120: handle non-space whitespace characters in params string
  • extended tests to handle non-space whitespace characters in params string
  • always store macros with xacro: prefix in front: #118
  • fix #115: enforce xacro namespace usage with --xacro-ns option
  • apply correct checking for include tags, and extend testcase
  • allow (one-level) nested expression/extension evaluation
  • Contributors: Robert Haschke, Morgan Quigley

1.10.6 (2015-09-01)

  • use correct catkin environment for cmake dependency checking
  • fixed dependency definition for cmake usage
  • Contributors: Robert Haschke

1.10.5 (2015-08-12)

  • fix #108: evaluate property blocks recursively too
  • improved macro parameter parsing
  • use a regular expression to parse a param spec with forwarding and default
  • allow for spaces in default string (within single quotes)
  • forwarding macro arguments from outer scope
  • switched to [\^|]{.title-ref} syntax
  • use more compact [$|]{.title-ref} syntax
  • moved parsing of argument defaults to grab_macro()
  • explicit forwarding of properties to macro scope
  • replace silent/implicit forwarding of properties from outer scope to macro scope by an explicit "call" to a [forward(<name>[,<default>])]{.title-ref} function.
  • implicit forwarding of outer-scope properties to macro args (#100)
  • property evaluation fixes
  • suppress double evaluation of properties
  • adapted unittest to cover the fixed issue
  • fixed evaluation order for properties exported to parent or global scope
  • Merge pull request #103 from ubi-agni/overwrite-check issue warning when attempting to overwrite existing global property
  • fixed unittest: avoid overwrite warning
  • warn when overwriting any globally defined variable
  • Merge pull request #102 from ubi-agni/completion bash completion
  • Merge pull request #99 from ubi-agni/jade-devel reworked macro resolution
  • moved test_macro_name_with_colon() to class TestXacro should be tested both, in oldorder and inorder mode
  • bash completion
  • improved error message for failed $(find)
  • reworked macro resolution python-eval-based macro resolution (introduced to enable namespaces) heavily restricted the set of possible macro names (only valid python identifiers were allowed) Particularly, xacro: prefixed macro names were forbidden.
  • initial attempt to fix #97
  • add failing test case with colon in the macro name
  • Contributors: Robert Haschke

1.10.4 (2015-06-18)

  • removed test_DEPRECATED_should_replace_before_macroexpand() duplicates test_should_replace_before_macroexpand()
  • fixed evaluation order of macro arguments and body Macro arguments need to be evaluated and assigned to properties before body is evaluated. Otherwise, the evaluated value will be converted to str, i.e. loosing original type.
  • Contributors: Robert Haschke

1.10.3 (2015-06-16)

  • deprecate --oldorder processing
  • added --check-order option to do a simple check for --inorder compatibility
    • Most probable incompatibility is redefining a property after its usage.
    • tested and reported with file location of (first) redefinition after usage.
  • moved command line processing to cli.py
  • explain verbosity levels in usage string
  • colorize errors during cli parsing
  • log definition and usage of properties
  • replaced debug option by verbosity options -q, -v
  • fixed evaluation time of default macro params
  • introduced Macro object to increase code readability
  • parse a macro's parameter list once at declaration time (instead of every instantiation)
  • extended test_multiple_blocks() to check for both normal and reversed order
  • added unittest to increase code coverage
  • do not issue deprecation warning for <include> tags that are non-xacro
  • added option --oldorder
  • allow to store properties to parent or global scope
  • added <xacro:attribute>
  • cleaned up error message about missing files
  • moved xml-specific functions to xmlutils.py new generic functions opt_attrs(), reqd_attrs(), and check_attrs() to fetch optional and required attributes and warn about unknown ones in a uniform fashion
  • unittest to allow empty <arg> defaults
  • Merge pull request #94 from ubi-agni/minor-fixes
  • minor fixes
  • remove duplicates in --deps output
  • fixed dependency checking for --inorder mode (which requires full processing)
  • fixed doc of xacro' cmake macros
  • renamed "xacro:rename" to "xacro:element"
  • allow namespacing for xacro:include's
  • allow renaming of element names using xacro:rename
  • unittest cleanup
  • check property and macro names to be valid python identifiers
  • allow namespacing of xacro:include's
  • properties and macros in an included file will go into their own, separate namespace, if the XML attribute [ns]{.title-ref} is provided. Access is by standard python syntax: namespace.name
  • allow renaming of element names <xacro:rename xacro:name="<new element name>"/>
  • moved unittests requiring --inorder processing to class TestXacroInorder
  • added unittest test_dynamic_macro_undefined()
  • improved error message when variable include filename is used without --inorder
  • stripped down unittest test_inorder_processing()
  • improved processing
  • adapted pr2 gold standard removing most comments again this partially reverts 59605fb1521583dc63efdea13f4c45128499bd20
  • remove all XML comments directly before xacro elements (These are considered xacro-related only and should be removed in the final doc.) Leaving an empty line between xacro-unrelated and xacro-related comments allows to include the former.
  • unittest: test_ignore_xacro_comments()
  • improved processing
    • recursive (instead of iterative) eval_all()
    • reusable process_include()
    • replace_node() function to replace xacro tag by some other content
    • avoid reprocessing of nodes
    • avoid deep copy where possible (speedup)
  • fix evaluation (#83)
  • yaml support
  • check for consistency of xml namespaces on xacro:include
  • replaced strip()=='' by more efficient isspace()
  • allow transitive definition of substition args
  • fixed evaluation of literals in property definitions
    • literals with preceding whitespace will be silently stripped (#83)
    • more complex evaluation test (perturbing spaces added)
  • fixed xacro namespaces in pr2 files to get rid of new inconsistency warning
  • warning message on inconsistent namespace redefinition for includes
  • yaml support ${load_yaml('file.yaml')} to load dict from yaml file
  • Merge pull request #85 from ubi-agni/error-reporting improved error reporting
  • nicer formatting of multiple "when evaluating expression" lines
  • improved formatting of error messages use XacroException to wrap and augment other exceptions to achieve a clearer error formatting
  • better error message for missing substitution args
  • use colorized warnings where possible
  • included macro stack in error-reporting
  • maintain filestack to facilitate error reporting at any time
  • Merge pull request #82 from ubi-agni/unittests improved unittesting
  • allow to capture (and check) stderr in unit tests
  • improved unittests to test both, classic and in-order processing
  • Merge pull request #81 from ubi-agni/jade-devel Thank you for your time and contributions. Improving cosmetics is important.
  • PEP8 cleanup
  • cmake: only copy files to devel space if new
  • Merge pull request #80 from ubi-agni/jade-devel
  • improved error-handling opening the output file - running multiple xacro process in parallel, all writing into a new dir could cause a race condition when creating the dir
    • improved error message on output creation failure
  • removed rospy dependency
    • Importing rospy caused build order issues with ros_comm in workspace
  • Filtering out REMAP command-line arguments is done manually now.
  • update authors/maintainers and copyright statements
  • deprecate non-namespaced xacro tags
  • added missing print_location_msg() for file that actually failed parsing
  • improved deprecation warnings
  • New cli option [--xacro-ns]{.title-ref} allows to enforce the new policy requiring the xacro namespace prefix (and suppressing deprecation warnings). However, non-prefixed tags will not be modified by xacro anymore (as requested by #41, #59, #60). Partially reverted cb73cfd8c678adfda2172accef398189ea2338a1, handling <arg> tags in the same fashion as other tags, i.e. issue a warning if used without prefix and ignoring it with cli argument [--xacro-ns]{.title-ref}.
  • fixed pr2 xacro files to use 'xacro:' prefixed tags only
  • fixed unittests in test_xacro.py to use 'xacro:' prefixed tags only
  • deprecation message for missing xacro namespace prefix in xml tags
  • moved colored warning messages into color.py (for reuseability)
  • added missing print_location_msg() for file that actually failed parsing
  • improved xacro's cmake macros
  • prepend ${PACKAGE_NAME} to all generated cmake targets Otherwise multiple packages employing xacro's cmake macros will use the same conflicting target name. This is only an issue with catkin_make, which defines a single global cmake namespace. The new catkin tools (or catkin_make_isolated) build each package separately.
  • basic unittest for xacro's cmake macros
  • improved xacro's cmake macros - xacro_add_xacro_file() automatically determines output file from input (removing .xacro suffix). If that fails, a fatal error is raised.
    • added xacro_install() to allow installation into both, devel and install space.
    • replaced conveniency function xacro_add_files()
  • Contributors: Robert Haschke

1.10.2 (2015-05-23)

  • added --debug option to explicitly enable stack traces By default, only show error message to the user. Stack traces are only interesting for xacro developers.
  • recursive include processing
    • more informed error messages (which file was included from where)

    - allows relative path names for include filename specs they are interpreted relative to the current file

  • new substitution command $(cwd) to extract current working directory
  • added unittest cases
    • creation of required subdirs for output
    • recursive xacro:include
    • extended test_include_glob() to check for all glob patterns
  • added run_xacro() function to simplify unittests running xacro script
  • moved xacro.py back to original location
  • nicely colored deprecation warning
  • create required dirs before opening output file
  • added convenience cmake-macro xacro_add_target() to auto-generate xacro-processed files
  • added cmake status message before launching xacro (xacro might run for quite a while)
  • fetch xacro --deps errors at report them as a warning
  • simplified deprecation message
  • added missing return statement
  • removed obsolete math import left over from deaaae2c69edd7d5e185eeb098c1521d8711608b
  • install xacro.py again (for backwards compatibility) usage of xacro.py issues a deprecation warning
  • simplified scripts/xacro - removed xacro.py
    • made run script "scripts/xacro" and install process follow standards
    • removed xacro.py

    - added dependencies to setup.py Having the binaries xacro and xacro.py installed side by side causes problems, because xacro.py is wrongly taken as the module. This was avoided by the rather complex filtering of the sys.path. Switched to ROS standard now, using a binary script called "xacro".

  • changed tests to use the whole xacro processing pipeline utilizing the modularization of main() from previous commit This simplifies several existing tests, especially these using files on disk.
  • split main() into process_cli_arg(), parse(), process_doc()
  • extended cmake macro xacro_add_xacro_file()
    • handle INORDER option
    • handle REMAP arguments

    - create absolute input file names automatically usage: xacro_add_xacro_file(input output INORDER REMAP ...)

  • stripped new unit tests to essential xml snippets
  • merged pull request #68: eval properties assigned from <arg> tags as literals In the following example: <xacro:arg name="val" default="0.5"/> <xacro:property name="val" value="$(arg val)"/> ${val} was not evaluated as a number, but as string only. Thus numerical expressions failed with an exception.
  • factored out get_boolean_value()
  • <xacro:arg> needs to be fully specified
  • (handling <arg> tags (without xacro ns-prefix) disabled native <arg> tags) add test for eating launch parameter arguments remove check for "arg" parameter. move new test function to bottom of source
  • added unit tests for evaluation of list, tuple, and dict literals
  • fixed some code style issues
  • fixed string-isinstance checks (for python 3 compatibility)
  • do not evaluate list, dict, tuple expressions as literals (without ${} syntax)
  • added dict to list of known global symbols
  • focused global_symbols definition in the beginning of the file added some basic python symbols: list, str, float, int and map allowing some basic computation
  • tuning performance: instantiate QuickLexer's regexps only once
  • Contributors: Robert Haschke, Martin Pecka, Mike O'Driscoll, Morgan Quigley

1.10.1 (2015-04-01)

  • improved error handling and more descriptive error messages
  • correctly raise a XacroException on invalid, i.e. non-boolean, <xacro:if> expressions. (removed left-over debugging code, added test case)
  • raise an exception on undefined, but used macros Using the syntax <xacro:macroname/> should raise an exception if macroname is not defined. Added appropriate code and a test case.
  • fixed bookkeeping in lazy evaluation switch Table.unevaluated from list to set to avoid multiple key entries
  • fix formatting of changelog
  • Contributors: Robert Haschke

1.10.0 (2015-03-13)

  • security measure: forbid access to __builtins__ in expressions
  • literal evaluation should only consider literals, but no expressions use ast.literal_eval()
  • removed eval() from xacro:if evaluation
  • back to string comparison to handle (lowercase) true and false
  • add test case for equality expressions in <xacro:if>
  • add test case for math function usage
  • python based evaluation of expressions
    • replaced handle_expr with python-internal eval() call
    • care has been taken to resolve variables recursively on demand (in Table.__getitem__)
    • allows for evaluation of standard math functions
    • other desired functions could be added in eval_self_contained
    • Values in Table symbols are not stored as strings but as typed values.
  • If text is required, a conversion with str() is performed, to ensure proper evaluation of expressions. Otherwise 3*"1" would evaluate to "111".
  • use __future__.division we can handle integer division evaluating to floating-point devision, as before
  • allow variable names for filename attribute in <xacro:include>
  • allow for ordered XML processing to avoid issues with multiply defined properties and macros in (typically 3rd party) include files
    • enable the new behaviour by passing --inorder cmdline option
    • to improve code readibility and reusability, introduced functions
  • process_include(node), grab_macro(elt, macros), grab_property(elt, symbols) containing 1:1 corresponding handling from process_includes, grab_macros, and grab_properties
    • added corresponding test case test_inorder_processing()
  • dynamic macro names using <xacro:call macro=""/>
  • fixup unittests and handling of non-element nodes in <include>, <if>, <macro>
  • updated pr2 gold standard to include all comments
  • allow to ignore comments in nodes_match()
  • New handling of non-element nodes invalidates pr2 gold standard (adding a lot more comments). To allow validation, allow to ignore all comments in comparison (as before).
  • fixed handling of non-element nodes in <include>, <if>, <macro>
  • fixed writexml: text nodes were not printed when other siblings exist
    • print all text, but skip whitespace-only text nodes
  • improved xml matching
    • so far only element nodes (with its attributes) were considered
    • now also consider TEXT, CDATA, and COMMENT nodes
    • added function text_matches (normalizing consecutive whitespace to a single space)
    • added some new unit tests

    - test_consider_non_elements: non-element nodes are not yet considered in <if> and <macro>

  • travis-ci: use catkin_make
  • travis-ci: fixup running of tests
  • fix pathnames used in test case
  • Include CATKIN_ENV params at build time.
  • use output filename flag instead of shell redirection
  • create output file after parsing is complete, not before
  • Contributors: Robert Haschke, Mike O'Driscoll, Morgan Quigley, William Woodall

1.9.3 (2015-01-14)

  • merge test cases
  • add a snapshot of the pr2 model to the test directory. add a test case which verifies that the pr2 model is parsed equal to a 'golden' parse of it.
  • add more tests
  • add default arg tests
  • Allow default values for substitution args
  • Fix up comments
  • Allow xacro macros to have default parameters
  • Contributors: Paul Bovbel, Morgan Quigley

1.9.2 (2014-07-11)

  • add a few more tests to exercise the symbol table a bit more
  • allow for recursive evaluation of properties in expressions
  • add useful debugging information when parameters are not set
  • stop test from failing the second time it is run
  • unified if/unless handling, correctly handle floating point expressions
  • floating point expressions not equal zero are now evaluated as True
  • changed quotes to omit cmake warning
  • Contributors: Robert Haschke, Mike Ferguson

1.9.1 (2014-06-21)

  • fixup tests so they run
  • export architecture_independent flag in package.xml
  • installed relocatable fix
  • Contributors: Michael Ferguson, Mike Purvis, Scott K Logan

1.9.0 (2014-03-28)

  • Remove the roslint_python glob, use the default one.
  • Add roslint target to xacro; two whitespace fixes so that it passes.
  • fix evaluation of integers in if statements also added a unit test, fixes #15
  • fix setting of _xacro_py CMake var, fixes #16
  • Add support for globbing multiple files in a single <xacro:include>
  • code cleanup and python3 support
  • check for CATKIN_ENABLE_TESTING

1.8.4 (2013-08-06)

  • Merge pull request #9 from davetcoleman/hydro-devel Xacro should not use plain 'include' tags but only namespaced ones.
  • Fix for the fact that minidom creates text nodes which count as child nodes
  • Removed <uri> checking and made it more general for any child element of an <include> tag
  • Removed Groovy reference, only being applied to Hydro
  • Created check for Gazebo's <uri> tabs only only shows deprecated warnings if not present.
  • Small spelling fix
  • Xacro should not use plain 'include' tags but only namespaced ones.
  • Merge pull request #8 from piyushk/hydro-devel-conditional xacro conditional blocks
  • using refined arguments instead of sys.argv for xml file location
  • adding conditional blocks to xacro

1.8.3 (2013-04-22)

  • bumped version to 1.8.3 for hydro release
  • backwards compatilibity with rosbuild
  • adding unit test for substitution args
  • Adding supoprt for substitution_args 'arg' fields
  • Remove bin copy of xacro.py
  • 1.7.3
  • Install xacro.py as a program so it can be run
  • 1.7.2
  • fixed build issues introduced in catkinization
  • 1.7.1
  • PEP8, cleanup, and remove roslib
  • Update copyright, self import guard, and catkinize
  • Catkinize.
  • Cleanup in preparation of catkinization.
  • Added tag unstable for changeset 169c4bf30367
  • Added tag xacro-1.6.1 for changeset fc45af7fdada
  • 1.6.1 marker
  • xacro: fuerte compat with sub args import
  • Added tag unstable for changeset 2d3c8dbfa3c9
  • Added tag xacro-1.6.0 for changeset e4a4455189bf
  • 1.6.0
  • converted to unary stack from common stack
  • xacro: fixed inserting property blocks (ros-pkg #4561)
  • xacro now uses XacroExceptions. String exceptions are not allowed in Python anymore. #4209
  • Added Ubuntu platform tags to manifest
  • Xacro now places comments below <?xml> tag (#3859)
  • Xacro prints out cleaner xml. Elements are now often separated by a newline.
  • xacro dependency on roslaunch removed #3451
  • Xacro now adds a message mentioning that the file was autogenerated (#2775)
  • Remove use of deprecated rosbuild macros
  • Integers stay integers in xacro, fixing #3287
  • Tests for r25868
  • Added a flag for only evaluating include tags in xacro
  • Allowing multiple blocks and multiple insert_blocks, fixing #3322 and #3323
  • doc review completed for xacro
  • adding mainpage for xacro doc review
  • Added xacro.cmake file that exports new xacro_add_xacro_file() macro, #3020
  • Namespaced "include" tag in xacro
  • Marked xacro as api reviewed
  • Xacro now correctly declares the namespaces of the included documents in the final
  • Made xacro accept xml namespaces
  • Xacro now errors hard when a property is used without being declared
  • Xacro no longer allows you to create properties with "${}" in the name
  • Added the ability to escape "${" in xacro
  • Made the tests in xacro run again.
  • Created xacro/src
  • migration part 1

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged xacro at Robotics Stack Exchange

xacro package from xacro repo

xacro

Package Summary

Tags No category tags.
Version 2.0.13
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/xacro.git
VCS Type git
VCS Version ros2
Last Updated 2025-03-20
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Xacro (XML Macros) Xacro is an XML macro language. With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions.

Additional Links

Maintainers

  • Robert Haschke
  • Morgan Quigley

Authors

  • Stuart Glaser
  • William Woodall
  • Robert Haschke

Xacro (XML Macros)

Xacro is an XML macro language

With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions. Recent documentation can be found in the wiki. For older releases, have a look at the ROS wiki.

CHANGELOG

Changelog for package xacro

2.0.13 (2025-03-20)

  • Pass AMENT_PREFIX_PATH to xacro (#359)
  • Add Bazel build rules (#350)
  • Contributors: Michael Carroll, Robert Haschke, Sean Fish

2.0.12 (2025-01-08)

  • Handle new argument 'attr' in xml.dom.minidom._write_data() of Python 3.13 (#353)
  • pyproject.toml: Automatically determine version from git
  • Add function python.vars() (#348)
  • Contributors: Robert Haschke

2.0.11 (2024-04-02)

  • Allow substitution args without ROS (#340)
  • Add more unit tags for yaml files (#331)
  • Resolve $(find ...) as a result of a substitution argument (#339)
  • Mark regexes as raw strings (#336)
  • Add pyproject.toml for direct installation via pip (#329)
  • Contributors: Adam Heins, Bruno-Pier, Carlo Rizzardo, Lukas Huber, Robert Haschke

2.0.10 (2024-01-25)

  • Expose python.abs()
  • Fix hasattr support of YamlDictWrapper (#324)
  • Contributors: Robert Haschke

2.0.9 (2023-02-27)

  • Evaluate arg value as str/unicode (#322)
  • Contributors: Robert Haschke

2.0.8 (2022-10-22)

  • Install xacro using console_script entrypoint (#304)
  • Provide xacro.process() returning the processed file (#229)
  • Dotted YAML access from list iterator (#318)
  • Optionally allow comment evaluation (#310)

    Comment evaluation can be enabled with a special comment:

    • <!-- xacro:eval-comments --> or
    • <!-- xacro:eval-comments:on -->

    It remains active for the following comments until:

    • the current XML tag's scope is left (or a new tag entered)
    • another tag or non-whitespace text is processed
    • it becomes explicitly disabled via: <!-- xacro:eval-comments:off -->
  • Fix property resolution with namespace usage (#308)
    • Allow access to properties in parent scopes again (fixes #305)
    • Pick correct scope when defining a property into the parent (fixes #307)

      Setting a property within the parent scope may occur in two contexts:

      1. From within a macro. In that case, one wants to set the property in the caller's scope.
      2. From within the included file. In that case, one wants to set the property in the includer's scope.
  • Contributors: Chen Bainian, Gonzalo de Pedro, Gonzo, Jacob Perron, Melvin Wang, Robert Haschke, vandanamandlik

2.0.7 (2021-09-04)

  • Allow more builtin symbols: sorted, set
  • Don't import hidden symbols from math package
  • Fix eval security vulnerability
    • safe_eval()
    • unit tests validating the protection mechanism
  • Generalize yaml !degrees constructors: Enable expressions as well
  • Improve macro arg parsing (#278) to support:
    • $(substitution args)
    • ${python expressions}
    • single or double quoting of spaces
  • Contributors: Robert Haschke

2.0.6 (2021-05-30)

  • [feature] Expose YamlDictWrapper as dotify() to allow dotted access to any dict (#274)
  • [fix] Scoped macro evaluation (#272)
  • Contributors: Robert Haschke

2.0.5 (2021-03-02)

  • [fix] Report correct filename for XML errors (#268)
  • [fix] Python3-compatible property Table (#266)
  • [fix] Use outer-scope symbols to resolve include filename in xacro:include (#264)
  • [fix] Append test directory to existing AMENT_PREFIX_PATH (#260)
  • [fix] yaml loading: recursively wrap lists and dicts for dotted dict access (#258)
  • [feature] Provide support for yaml constructors !degrees and !radians (#252)
  • Contributors: Chen Bainian, Robert Haschke, G.A. vd. Hoorn

2.0.3 (2020-08-09)

  • Merge improvements of melodic and noetic branches into dashing-devel: see 1.14.2 and 1.14.3 for details
  • Contributors: Robert Haschke

2.0.2 (2020-03-29)

  • Merge improvements of melodic and noetic branches into dashing-devel: see 1.14.1, 1.13.5 for details
  • Contributors: Robert Haschke

2.0.1 (2019-10-06)

  • Revert requiring that all xacro commands are prefixed with 'xacro:' namespace Although this is deprecated since #79, the corresponding deprecation warning wasn't actually issued. Thus, we will accept non-prefixed xacro tags until F-turtle.
  • Install to both, bin/xacro and lib/xacro/xacro
  • Contributors: Robert Haschke

2.0.0 (2019-09-28)

  • PEP8 cleanup
    • code simplifications
    • avoid empty except
    • sort imports
    • format line breaks
  • Code cleanup
    • Removed deprecated options --legacy, --inorder, --check-order, --includes
    • Require all xacro commands to be prefixed with 'xacro:'
    • Added missing copyright notices
    • Removed python2 stuff
  • Adapt Travis config to use colcon
  • Provide ROS2-based replacement for substition args
  • Modified package structure as per ROS2 rules
    • Using ament_cmake
    • Moved source contents from "src/xacro" to "xacro"
    • Modified package.xml and setup.py according to ROS2 requirements
    • Configured completion hook
    • Removed catkin artifacts from cmake extension
  • Contributors: vandanamandlik, Jacob Perron, Robert Haschke

1.14.4 (2020-08-09)

  • [fix] Rework YamlDictWrapper to restore dict properties (#250)
  • [fix] Ignore underscores when parsing literal numeric values (#247)
  • Contributors: Robert Haschke

1.14.3 (2020-07-05)

  • [feature] Improve warnings
    • Unify meaning of verbosity > 0 (to print file location)
    • Provide file location on warning in check_attrs()
    • Issue warning on child elements of <xacro:include> tag
  • [feature] Allow dotted access to yaml-loaded dicts: d.key1.key2.key3 (#245)
  • [maint] Travis: Update distro to Bionic
  • Contributors: Robert Haschke, G.A. vd. Hoorn

1.14.2 (2020-05-21)

  • [maintanence] Remove deprecated xacro.py (#239)
  • Contributors: Shane Loretz

1.14.1 (2020-03-29)

  • [feature] allow optional xacro includes (#234)
  • Contributors: Robert Haschke

1.13.5 (2019-12-08)

  • [feature] Expose abs_filename() (#220)
  • [feature] Catch missing closing brace in $() and ${} expressions
  • [maintanence]
    • Replace deprecated yaml.load() -> yaml.safe_load()
    • Save macro names internally w/o 'xacro:' prefix
    • Correctly issue deprecation warning for non-prefixed xacro tags
  • Contributors: Robert Haschke

1.13.4 (2019-09-26)

  • [feature] remove xmlns:xacro from processed file (#207)
    • Remove all notions of xmlns:xacro from the resulting document.
    • If the root node defines a xacro:targetNamespace attribute, this will become the global xmlns namespace of the resulting document.
  • [feature] Add len() to allowed python functions (#208)
  • [maintanence]
    • --in-order warning: reduce severity level to message
    • fix and cleanup test of cmake extensions
    • adapt run_xacro() to run xacro from PATH
    • simplify import of substition_args
    • remove 'requires' field from setup.py
    • fix Travis config: use new repository key, use xenial/kinetic distro
    • basic README.md
    • fix catkin_lint issue
    • remove duplicate catkin_python_setup() (#206)
  • Contributors: Robert Haschke, James Xu, Martin Pecka

1.13.3 (2018-10-14)

  • use INORDER as default in cmake functions
  • remove weird 'None's in error messages
  • Contributors: Robert Haschke

1.13.2 (2018-05-14)

  • deprecate --includes option (which is tied to deprecated --legacy processing)
  • moved all option handling to cli.py, including deprecation warnings for options
  • Contributors: Robert Haschke

1.13.1 (2018-05-03)

  • fix parsing of quoted strings in default args for xacro params (#187)
  • Contributors: Robert Haschke

1.13.0 (2018-03-31)

  • make --inorder processing the default
  • Contributors: Robert Haschke

1.12.1 (2018-03-28)

  • #183: unicode support for python2 and python3
  • #178: extend list of allowed python builtins: min, max, round
  • #182: suppress xacro warnings when determining dependencies
  • #151: fixes for #149 and #148
  • #157: fix #156 access to undefined target_table
  • #150: allow True/False literals in python expressions
  • #159: load ROS-related packages on demand, thus becoming more independent from ROS
  • #173: allow default values for properties
  • #172: fix formatting of XacroException
  • #171: fix dependency handling (--deps option)
  • #163: full python 3 compatibility
  • Contributors: Robert Haschke, Kartik Mohta, Morgan Quigley, Steven Peters

1.12.0 (2017-03-25)

1.11.2 (2017-02-27)

  • Convert exception to string in a python2/3 compatible way.
  • Use python2/3 independent check for file type.
  • Contributors: Hans Gaiser, Maarten de Vries

1.11.1 (2016-06-22)

  • workaround for xml.dom.minidom issue
  • ensure non-empty error string
  • Contributors: Robert Haschke

1.11.0 (2016-03-25)

  • added short option -i as alternative to --inorder
  • refactored main to fix #122, #107
  • added xacro indicator to error message to fix #123
  • moved banner generation to process_file()
  • removed special (but obsolete) output handling for just_includes mode
  • moved core processing pipeline into function process_file()
  • improved documentation: more comments, input_file -> input_file_name
  • fix #120: handle non-space whitespace characters in params string
  • extended tests to handle non-space whitespace characters in params string
  • always store macros with xacro: prefix in front: #118
  • fix #115: enforce xacro namespace usage with --xacro-ns option
  • apply correct checking for include tags, and extend testcase
  • allow (one-level) nested expression/extension evaluation
  • Contributors: Robert Haschke, Morgan Quigley

1.10.6 (2015-09-01)

  • use correct catkin environment for cmake dependency checking
  • fixed dependency definition for cmake usage
  • Contributors: Robert Haschke

1.10.5 (2015-08-12)

  • fix #108: evaluate property blocks recursively too
  • improved macro parameter parsing
  • use a regular expression to parse a param spec with forwarding and default
  • allow for spaces in default string (within single quotes)
  • forwarding macro arguments from outer scope
  • switched to [\^|]{.title-ref} syntax
  • use more compact [$|]{.title-ref} syntax
  • moved parsing of argument defaults to grab_macro()
  • explicit forwarding of properties to macro scope
  • replace silent/implicit forwarding of properties from outer scope to macro scope by an explicit "call" to a [forward(<name>[,<default>])]{.title-ref} function.
  • implicit forwarding of outer-scope properties to macro args (#100)
  • property evaluation fixes
  • suppress double evaluation of properties
  • adapted unittest to cover the fixed issue
  • fixed evaluation order for properties exported to parent or global scope
  • Merge pull request #103 from ubi-agni/overwrite-check issue warning when attempting to overwrite existing global property
  • fixed unittest: avoid overwrite warning
  • warn when overwriting any globally defined variable
  • Merge pull request #102 from ubi-agni/completion bash completion
  • Merge pull request #99 from ubi-agni/jade-devel reworked macro resolution
  • moved test_macro_name_with_colon() to class TestXacro should be tested both, in oldorder and inorder mode
  • bash completion
  • improved error message for failed $(find)
  • reworked macro resolution python-eval-based macro resolution (introduced to enable namespaces) heavily restricted the set of possible macro names (only valid python identifiers were allowed) Particularly, xacro: prefixed macro names were forbidden.
  • initial attempt to fix #97
  • add failing test case with colon in the macro name
  • Contributors: Robert Haschke

1.10.4 (2015-06-18)

  • removed test_DEPRECATED_should_replace_before_macroexpand() duplicates test_should_replace_before_macroexpand()
  • fixed evaluation order of macro arguments and body Macro arguments need to be evaluated and assigned to properties before body is evaluated. Otherwise, the evaluated value will be converted to str, i.e. loosing original type.
  • Contributors: Robert Haschke

1.10.3 (2015-06-16)

  • deprecate --oldorder processing
  • added --check-order option to do a simple check for --inorder compatibility
    • Most probable incompatibility is redefining a property after its usage.
    • tested and reported with file location of (first) redefinition after usage.
  • moved command line processing to cli.py
  • explain verbosity levels in usage string
  • colorize errors during cli parsing
  • log definition and usage of properties
  • replaced debug option by verbosity options -q, -v
  • fixed evaluation time of default macro params
  • introduced Macro object to increase code readability
  • parse a macro's parameter list once at declaration time (instead of every instantiation)
  • extended test_multiple_blocks() to check for both normal and reversed order
  • added unittest to increase code coverage
  • do not issue deprecation warning for <include> tags that are non-xacro
  • added option --oldorder
  • allow to store properties to parent or global scope
  • added <xacro:attribute>
  • cleaned up error message about missing files
  • moved xml-specific functions to xmlutils.py new generic functions opt_attrs(), reqd_attrs(), and check_attrs() to fetch optional and required attributes and warn about unknown ones in a uniform fashion
  • unittest to allow empty <arg> defaults
  • Merge pull request #94 from ubi-agni/minor-fixes
  • minor fixes
  • remove duplicates in --deps output
  • fixed dependency checking for --inorder mode (which requires full processing)
  • fixed doc of xacro' cmake macros
  • renamed "xacro:rename" to "xacro:element"
  • allow namespacing for xacro:include's
  • allow renaming of element names using xacro:rename
  • unittest cleanup
  • check property and macro names to be valid python identifiers
  • allow namespacing of xacro:include's
  • properties and macros in an included file will go into their own, separate namespace, if the XML attribute [ns]{.title-ref} is provided. Access is by standard python syntax: namespace.name
  • allow renaming of element names <xacro:rename xacro:name="<new element name>"/>
  • moved unittests requiring --inorder processing to class TestXacroInorder
  • added unittest test_dynamic_macro_undefined()
  • improved error message when variable include filename is used without --inorder
  • stripped down unittest test_inorder_processing()
  • improved processing
  • adapted pr2 gold standard removing most comments again this partially reverts 59605fb1521583dc63efdea13f4c45128499bd20
  • remove all XML comments directly before xacro elements (These are considered xacro-related only and should be removed in the final doc.) Leaving an empty line between xacro-unrelated and xacro-related comments allows to include the former.
  • unittest: test_ignore_xacro_comments()
  • improved processing
    • recursive (instead of iterative) eval_all()
    • reusable process_include()
    • replace_node() function to replace xacro tag by some other content
    • avoid reprocessing of nodes
    • avoid deep copy where possible (speedup)
  • fix evaluation (#83)
  • yaml support
  • check for consistency of xml namespaces on xacro:include
  • replaced strip()=='' by more efficient isspace()
  • allow transitive definition of substition args
  • fixed evaluation of literals in property definitions
    • literals with preceding whitespace will be silently stripped (#83)
    • more complex evaluation test (perturbing spaces added)
  • fixed xacro namespaces in pr2 files to get rid of new inconsistency warning
  • warning message on inconsistent namespace redefinition for includes
  • yaml support ${load_yaml('file.yaml')} to load dict from yaml file
  • Merge pull request #85 from ubi-agni/error-reporting improved error reporting
  • nicer formatting of multiple "when evaluating expression" lines
  • improved formatting of error messages use XacroException to wrap and augment other exceptions to achieve a clearer error formatting
  • better error message for missing substitution args
  • use colorized warnings where possible
  • included macro stack in error-reporting
  • maintain filestack to facilitate error reporting at any time
  • Merge pull request #82 from ubi-agni/unittests improved unittesting
  • allow to capture (and check) stderr in unit tests
  • improved unittests to test both, classic and in-order processing
  • Merge pull request #81 from ubi-agni/jade-devel Thank you for your time and contributions. Improving cosmetics is important.
  • PEP8 cleanup
  • cmake: only copy files to devel space if new
  • Merge pull request #80 from ubi-agni/jade-devel
  • improved error-handling opening the output file - running multiple xacro process in parallel, all writing into a new dir could cause a race condition when creating the dir
    • improved error message on output creation failure
  • removed rospy dependency
    • Importing rospy caused build order issues with ros_comm in workspace
  • Filtering out REMAP command-line arguments is done manually now.
  • update authors/maintainers and copyright statements
  • deprecate non-namespaced xacro tags
  • added missing print_location_msg() for file that actually failed parsing
  • improved deprecation warnings
  • New cli option [--xacro-ns]{.title-ref} allows to enforce the new policy requiring the xacro namespace prefix (and suppressing deprecation warnings). However, non-prefixed tags will not be modified by xacro anymore (as requested by #41, #59, #60). Partially reverted cb73cfd8c678adfda2172accef398189ea2338a1, handling <arg> tags in the same fashion as other tags, i.e. issue a warning if used without prefix and ignoring it with cli argument [--xacro-ns]{.title-ref}.
  • fixed pr2 xacro files to use 'xacro:' prefixed tags only
  • fixed unittests in test_xacro.py to use 'xacro:' prefixed tags only
  • deprecation message for missing xacro namespace prefix in xml tags
  • moved colored warning messages into color.py (for reuseability)
  • added missing print_location_msg() for file that actually failed parsing
  • improved xacro's cmake macros
  • prepend ${PACKAGE_NAME} to all generated cmake targets Otherwise multiple packages employing xacro's cmake macros will use the same conflicting target name. This is only an issue with catkin_make, which defines a single global cmake namespace. The new catkin tools (or catkin_make_isolated) build each package separately.
  • basic unittest for xacro's cmake macros
  • improved xacro's cmake macros - xacro_add_xacro_file() automatically determines output file from input (removing .xacro suffix). If that fails, a fatal error is raised.
    • added xacro_install() to allow installation into both, devel and install space.
    • replaced conveniency function xacro_add_files()
  • Contributors: Robert Haschke

1.10.2 (2015-05-23)

  • added --debug option to explicitly enable stack traces By default, only show error message to the user. Stack traces are only interesting for xacro developers.
  • recursive include processing
    • more informed error messages (which file was included from where)

    - allows relative path names for include filename specs they are interpreted relative to the current file

  • new substitution command $(cwd) to extract current working directory
  • added unittest cases
    • creation of required subdirs for output
    • recursive xacro:include
    • extended test_include_glob() to check for all glob patterns
  • added run_xacro() function to simplify unittests running xacro script
  • moved xacro.py back to original location
  • nicely colored deprecation warning
  • create required dirs before opening output file
  • added convenience cmake-macro xacro_add_target() to auto-generate xacro-processed files
  • added cmake status message before launching xacro (xacro might run for quite a while)
  • fetch xacro --deps errors at report them as a warning
  • simplified deprecation message
  • added missing return statement
  • removed obsolete math import left over from deaaae2c69edd7d5e185eeb098c1521d8711608b
  • install xacro.py again (for backwards compatibility) usage of xacro.py issues a deprecation warning
  • simplified scripts/xacro - removed xacro.py
    • made run script "scripts/xacro" and install process follow standards
    • removed xacro.py

    - added dependencies to setup.py Having the binaries xacro and xacro.py installed side by side causes problems, because xacro.py is wrongly taken as the module. This was avoided by the rather complex filtering of the sys.path. Switched to ROS standard now, using a binary script called "xacro".

  • changed tests to use the whole xacro processing pipeline utilizing the modularization of main() from previous commit This simplifies several existing tests, especially these using files on disk.
  • split main() into process_cli_arg(), parse(), process_doc()
  • extended cmake macro xacro_add_xacro_file()
    • handle INORDER option
    • handle REMAP arguments

    - create absolute input file names automatically usage: xacro_add_xacro_file(input output INORDER REMAP ...)

  • stripped new unit tests to essential xml snippets
  • merged pull request #68: eval properties assigned from <arg> tags as literals In the following example: <xacro:arg name="val" default="0.5"/> <xacro:property name="val" value="$(arg val)"/> ${val} was not evaluated as a number, but as string only. Thus numerical expressions failed with an exception.
  • factored out get_boolean_value()
  • <xacro:arg> needs to be fully specified
  • (handling <arg> tags (without xacro ns-prefix) disabled native <arg> tags) add test for eating launch parameter arguments remove check for "arg" parameter. move new test function to bottom of source
  • added unit tests for evaluation of list, tuple, and dict literals
  • fixed some code style issues
  • fixed string-isinstance checks (for python 3 compatibility)
  • do not evaluate list, dict, tuple expressions as literals (without ${} syntax)
  • added dict to list of known global symbols
  • focused global_symbols definition in the beginning of the file added some basic python symbols: list, str, float, int and map allowing some basic computation
  • tuning performance: instantiate QuickLexer's regexps only once
  • Contributors: Robert Haschke, Martin Pecka, Mike O'Driscoll, Morgan Quigley

1.10.1 (2015-04-01)

  • improved error handling and more descriptive error messages
  • correctly raise a XacroException on invalid, i.e. non-boolean, <xacro:if> expressions. (removed left-over debugging code, added test case)
  • raise an exception on undefined, but used macros Using the syntax <xacro:macroname/> should raise an exception if macroname is not defined. Added appropriate code and a test case.
  • fixed bookkeeping in lazy evaluation switch Table.unevaluated from list to set to avoid multiple key entries
  • fix formatting of changelog
  • Contributors: Robert Haschke

1.10.0 (2015-03-13)

  • security measure: forbid access to __builtins__ in expressions
  • literal evaluation should only consider literals, but no expressions use ast.literal_eval()
  • removed eval() from xacro:if evaluation
  • back to string comparison to handle (lowercase) true and false
  • add test case for equality expressions in <xacro:if>
  • add test case for math function usage
  • python based evaluation of expressions
    • replaced handle_expr with python-internal eval() call
    • care has been taken to resolve variables recursively on demand (in Table.__getitem__)
    • allows for evaluation of standard math functions
    • other desired functions could be added in eval_self_contained
    • Values in Table symbols are not stored as strings but as typed values.
  • If text is required, a conversion with str() is performed, to ensure proper evaluation of expressions. Otherwise 3*"1" would evaluate to "111".
  • use __future__.division we can handle integer division evaluating to floating-point devision, as before
  • allow variable names for filename attribute in <xacro:include>
  • allow for ordered XML processing to avoid issues with multiply defined properties and macros in (typically 3rd party) include files
    • enable the new behaviour by passing --inorder cmdline option
    • to improve code readibility and reusability, introduced functions
  • process_include(node), grab_macro(elt, macros), grab_property(elt, symbols) containing 1:1 corresponding handling from process_includes, grab_macros, and grab_properties
    • added corresponding test case test_inorder_processing()
  • dynamic macro names using <xacro:call macro=""/>
  • fixup unittests and handling of non-element nodes in <include>, <if>, <macro>
  • updated pr2 gold standard to include all comments
  • allow to ignore comments in nodes_match()
  • New handling of non-element nodes invalidates pr2 gold standard (adding a lot more comments). To allow validation, allow to ignore all comments in comparison (as before).
  • fixed handling of non-element nodes in <include>, <if>, <macro>
  • fixed writexml: text nodes were not printed when other siblings exist
    • print all text, but skip whitespace-only text nodes
  • improved xml matching
    • so far only element nodes (with its attributes) were considered
    • now also consider TEXT, CDATA, and COMMENT nodes
    • added function text_matches (normalizing consecutive whitespace to a single space)
    • added some new unit tests

    - test_consider_non_elements: non-element nodes are not yet considered in <if> and <macro>

  • travis-ci: use catkin_make
  • travis-ci: fixup running of tests
  • fix pathnames used in test case
  • Include CATKIN_ENV params at build time.
  • use output filename flag instead of shell redirection
  • create output file after parsing is complete, not before
  • Contributors: Robert Haschke, Mike O'Driscoll, Morgan Quigley, William Woodall

1.9.3 (2015-01-14)

  • merge test cases
  • add a snapshot of the pr2 model to the test directory. add a test case which verifies that the pr2 model is parsed equal to a 'golden' parse of it.
  • add more tests
  • add default arg tests
  • Allow default values for substitution args
  • Fix up comments
  • Allow xacro macros to have default parameters
  • Contributors: Paul Bovbel, Morgan Quigley

1.9.2 (2014-07-11)

  • add a few more tests to exercise the symbol table a bit more
  • allow for recursive evaluation of properties in expressions
  • add useful debugging information when parameters are not set
  • stop test from failing the second time it is run
  • unified if/unless handling, correctly handle floating point expressions
  • floating point expressions not equal zero are now evaluated as True
  • changed quotes to omit cmake warning
  • Contributors: Robert Haschke, Mike Ferguson

1.9.1 (2014-06-21)

  • fixup tests so they run
  • export architecture_independent flag in package.xml
  • installed relocatable fix
  • Contributors: Michael Ferguson, Mike Purvis, Scott K Logan

1.9.0 (2014-03-28)

  • Remove the roslint_python glob, use the default one.
  • Add roslint target to xacro; two whitespace fixes so that it passes.
  • fix evaluation of integers in if statements also added a unit test, fixes #15
  • fix setting of _xacro_py CMake var, fixes #16
  • Add support for globbing multiple files in a single <xacro:include>
  • code cleanup and python3 support
  • check for CATKIN_ENABLE_TESTING

1.8.4 (2013-08-06)

  • Merge pull request #9 from davetcoleman/hydro-devel Xacro should not use plain 'include' tags but only namespaced ones.
  • Fix for the fact that minidom creates text nodes which count as child nodes
  • Removed <uri> checking and made it more general for any child element of an <include> tag
  • Removed Groovy reference, only being applied to Hydro
  • Created check for Gazebo's <uri> tabs only only shows deprecated warnings if not present.
  • Small spelling fix
  • Xacro should not use plain 'include' tags but only namespaced ones.
  • Merge pull request #8 from piyushk/hydro-devel-conditional xacro conditional blocks
  • using refined arguments instead of sys.argv for xml file location
  • adding conditional blocks to xacro

1.8.3 (2013-04-22)

  • bumped version to 1.8.3 for hydro release
  • backwards compatilibity with rosbuild
  • adding unit test for substitution args
  • Adding supoprt for substitution_args 'arg' fields
  • Remove bin copy of xacro.py
  • 1.7.3
  • Install xacro.py as a program so it can be run
  • 1.7.2
  • fixed build issues introduced in catkinization
  • 1.7.1
  • PEP8, cleanup, and remove roslib
  • Update copyright, self import guard, and catkinize
  • Catkinize.
  • Cleanup in preparation of catkinization.
  • Added tag unstable for changeset 169c4bf30367
  • Added tag xacro-1.6.1 for changeset fc45af7fdada
  • 1.6.1 marker
  • xacro: fuerte compat with sub args import
  • Added tag unstable for changeset 2d3c8dbfa3c9
  • Added tag xacro-1.6.0 for changeset e4a4455189bf
  • 1.6.0
  • converted to unary stack from common stack
  • xacro: fixed inserting property blocks (ros-pkg #4561)
  • xacro now uses XacroExceptions. String exceptions are not allowed in Python anymore. #4209
  • Added Ubuntu platform tags to manifest
  • Xacro now places comments below <?xml> tag (#3859)
  • Xacro prints out cleaner xml. Elements are now often separated by a newline.
  • xacro dependency on roslaunch removed #3451
  • Xacro now adds a message mentioning that the file was autogenerated (#2775)
  • Remove use of deprecated rosbuild macros
  • Integers stay integers in xacro, fixing #3287
  • Tests for r25868
  • Added a flag for only evaluating include tags in xacro
  • Allowing multiple blocks and multiple insert_blocks, fixing #3322 and #3323
  • doc review completed for xacro
  • adding mainpage for xacro doc review
  • Added xacro.cmake file that exports new xacro_add_xacro_file() macro, #3020
  • Namespaced "include" tag in xacro
  • Marked xacro as api reviewed
  • Xacro now correctly declares the namespaces of the included documents in the final
  • Made xacro accept xml namespaces
  • Xacro now errors hard when a property is used without being declared
  • Xacro no longer allows you to create properties with "${}" in the name
  • Added the ability to escape "${" in xacro
  • Made the tests in xacro run again.
  • Created xacro/src
  • migration part 1

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged xacro at Robotics Stack Exchange

xacro package from xacro repo

xacro

Package Summary

Tags No category tags.
Version 2.0.13
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/xacro.git
VCS Type git
VCS Version ros2
Last Updated 2025-03-20
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Xacro (XML Macros) Xacro is an XML macro language. With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions.

Additional Links

Maintainers

  • Robert Haschke
  • Morgan Quigley

Authors

  • Stuart Glaser
  • William Woodall
  • Robert Haschke

Xacro (XML Macros)

Xacro is an XML macro language

With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions. Recent documentation can be found in the wiki. For older releases, have a look at the ROS wiki.

CHANGELOG

Changelog for package xacro

2.0.13 (2025-03-20)

  • Pass AMENT_PREFIX_PATH to xacro (#359)
  • Add Bazel build rules (#350)
  • Contributors: Michael Carroll, Robert Haschke, Sean Fish

2.0.12 (2025-01-08)

  • Handle new argument 'attr' in xml.dom.minidom._write_data() of Python 3.13 (#353)
  • pyproject.toml: Automatically determine version from git
  • Add function python.vars() (#348)
  • Contributors: Robert Haschke

2.0.11 (2024-04-02)

  • Allow substitution args without ROS (#340)
  • Add more unit tags for yaml files (#331)
  • Resolve $(find ...) as a result of a substitution argument (#339)
  • Mark regexes as raw strings (#336)
  • Add pyproject.toml for direct installation via pip (#329)
  • Contributors: Adam Heins, Bruno-Pier, Carlo Rizzardo, Lukas Huber, Robert Haschke

2.0.10 (2024-01-25)

  • Expose python.abs()
  • Fix hasattr support of YamlDictWrapper (#324)
  • Contributors: Robert Haschke

2.0.9 (2023-02-27)

  • Evaluate arg value as str/unicode (#322)
  • Contributors: Robert Haschke

2.0.8 (2022-10-22)

  • Install xacro using console_script entrypoint (#304)
  • Provide xacro.process() returning the processed file (#229)
  • Dotted YAML access from list iterator (#318)
  • Optionally allow comment evaluation (#310)

    Comment evaluation can be enabled with a special comment:

    • <!-- xacro:eval-comments --> or
    • <!-- xacro:eval-comments:on -->

    It remains active for the following comments until:

    • the current XML tag's scope is left (or a new tag entered)
    • another tag or non-whitespace text is processed
    • it becomes explicitly disabled via: <!-- xacro:eval-comments:off -->
  • Fix property resolution with namespace usage (#308)
    • Allow access to properties in parent scopes again (fixes #305)
    • Pick correct scope when defining a property into the parent (fixes #307)

      Setting a property within the parent scope may occur in two contexts:

      1. From within a macro. In that case, one wants to set the property in the caller's scope.
      2. From within the included file. In that case, one wants to set the property in the includer's scope.
  • Contributors: Chen Bainian, Gonzalo de Pedro, Gonzo, Jacob Perron, Melvin Wang, Robert Haschke, vandanamandlik

2.0.7 (2021-09-04)

  • Allow more builtin symbols: sorted, set
  • Don't import hidden symbols from math package
  • Fix eval security vulnerability
    • safe_eval()
    • unit tests validating the protection mechanism
  • Generalize yaml !degrees constructors: Enable expressions as well
  • Improve macro arg parsing (#278) to support:
    • $(substitution args)
    • ${python expressions}
    • single or double quoting of spaces
  • Contributors: Robert Haschke

2.0.6 (2021-05-30)

  • [feature] Expose YamlDictWrapper as dotify() to allow dotted access to any dict (#274)
  • [fix] Scoped macro evaluation (#272)
  • Contributors: Robert Haschke

2.0.5 (2021-03-02)

  • [fix] Report correct filename for XML errors (#268)
  • [fix] Python3-compatible property Table (#266)
  • [fix] Use outer-scope symbols to resolve include filename in xacro:include (#264)
  • [fix] Append test directory to existing AMENT_PREFIX_PATH (#260)
  • [fix] yaml loading: recursively wrap lists and dicts for dotted dict access (#258)
  • [feature] Provide support for yaml constructors !degrees and !radians (#252)
  • Contributors: Chen Bainian, Robert Haschke, G.A. vd. Hoorn

2.0.3 (2020-08-09)

  • Merge improvements of melodic and noetic branches into dashing-devel: see 1.14.2 and 1.14.3 for details
  • Contributors: Robert Haschke

2.0.2 (2020-03-29)

  • Merge improvements of melodic and noetic branches into dashing-devel: see 1.14.1, 1.13.5 for details
  • Contributors: Robert Haschke

2.0.1 (2019-10-06)

  • Revert requiring that all xacro commands are prefixed with 'xacro:' namespace Although this is deprecated since #79, the corresponding deprecation warning wasn't actually issued. Thus, we will accept non-prefixed xacro tags until F-turtle.
  • Install to both, bin/xacro and lib/xacro/xacro
  • Contributors: Robert Haschke

2.0.0 (2019-09-28)

  • PEP8 cleanup
    • code simplifications
    • avoid empty except
    • sort imports
    • format line breaks
  • Code cleanup
    • Removed deprecated options --legacy, --inorder, --check-order, --includes
    • Require all xacro commands to be prefixed with 'xacro:'
    • Added missing copyright notices
    • Removed python2 stuff
  • Adapt Travis config to use colcon
  • Provide ROS2-based replacement for substition args
  • Modified package structure as per ROS2 rules
    • Using ament_cmake
    • Moved source contents from "src/xacro" to "xacro"
    • Modified package.xml and setup.py according to ROS2 requirements
    • Configured completion hook
    • Removed catkin artifacts from cmake extension
  • Contributors: vandanamandlik, Jacob Perron, Robert Haschke

1.14.4 (2020-08-09)

  • [fix] Rework YamlDictWrapper to restore dict properties (#250)
  • [fix] Ignore underscores when parsing literal numeric values (#247)
  • Contributors: Robert Haschke

1.14.3 (2020-07-05)

  • [feature] Improve warnings
    • Unify meaning of verbosity > 0 (to print file location)
    • Provide file location on warning in check_attrs()
    • Issue warning on child elements of <xacro:include> tag
  • [feature] Allow dotted access to yaml-loaded dicts: d.key1.key2.key3 (#245)
  • [maint] Travis: Update distro to Bionic
  • Contributors: Robert Haschke, G.A. vd. Hoorn

1.14.2 (2020-05-21)

  • [maintanence] Remove deprecated xacro.py (#239)
  • Contributors: Shane Loretz

1.14.1 (2020-03-29)

  • [feature] allow optional xacro includes (#234)
  • Contributors: Robert Haschke

1.13.5 (2019-12-08)

  • [feature] Expose abs_filename() (#220)
  • [feature] Catch missing closing brace in $() and ${} expressions
  • [maintanence]
    • Replace deprecated yaml.load() -> yaml.safe_load()
    • Save macro names internally w/o 'xacro:' prefix
    • Correctly issue deprecation warning for non-prefixed xacro tags
  • Contributors: Robert Haschke

1.13.4 (2019-09-26)

  • [feature] remove xmlns:xacro from processed file (#207)
    • Remove all notions of xmlns:xacro from the resulting document.
    • If the root node defines a xacro:targetNamespace attribute, this will become the global xmlns namespace of the resulting document.
  • [feature] Add len() to allowed python functions (#208)
  • [maintanence]
    • --in-order warning: reduce severity level to message
    • fix and cleanup test of cmake extensions
    • adapt run_xacro() to run xacro from PATH
    • simplify import of substition_args
    • remove 'requires' field from setup.py
    • fix Travis config: use new repository key, use xenial/kinetic distro
    • basic README.md
    • fix catkin_lint issue
    • remove duplicate catkin_python_setup() (#206)
  • Contributors: Robert Haschke, James Xu, Martin Pecka

1.13.3 (2018-10-14)

  • use INORDER as default in cmake functions
  • remove weird 'None's in error messages
  • Contributors: Robert Haschke

1.13.2 (2018-05-14)

  • deprecate --includes option (which is tied to deprecated --legacy processing)
  • moved all option handling to cli.py, including deprecation warnings for options
  • Contributors: Robert Haschke

1.13.1 (2018-05-03)

  • fix parsing of quoted strings in default args for xacro params (#187)
  • Contributors: Robert Haschke

1.13.0 (2018-03-31)

  • make --inorder processing the default
  • Contributors: Robert Haschke

1.12.1 (2018-03-28)

  • #183: unicode support for python2 and python3
  • #178: extend list of allowed python builtins: min, max, round
  • #182: suppress xacro warnings when determining dependencies
  • #151: fixes for #149 and #148
  • #157: fix #156 access to undefined target_table
  • #150: allow True/False literals in python expressions
  • #159: load ROS-related packages on demand, thus becoming more independent from ROS
  • #173: allow default values for properties
  • #172: fix formatting of XacroException
  • #171: fix dependency handling (--deps option)
  • #163: full python 3 compatibility
  • Contributors: Robert Haschke, Kartik Mohta, Morgan Quigley, Steven Peters

1.12.0 (2017-03-25)

1.11.2 (2017-02-27)

  • Convert exception to string in a python2/3 compatible way.
  • Use python2/3 independent check for file type.
  • Contributors: Hans Gaiser, Maarten de Vries

1.11.1 (2016-06-22)

  • workaround for xml.dom.minidom issue
  • ensure non-empty error string
  • Contributors: Robert Haschke

1.11.0 (2016-03-25)

  • added short option -i as alternative to --inorder
  • refactored main to fix #122, #107
  • added xacro indicator to error message to fix #123
  • moved banner generation to process_file()
  • removed special (but obsolete) output handling for just_includes mode
  • moved core processing pipeline into function process_file()
  • improved documentation: more comments, input_file -> input_file_name
  • fix #120: handle non-space whitespace characters in params string
  • extended tests to handle non-space whitespace characters in params string
  • always store macros with xacro: prefix in front: #118
  • fix #115: enforce xacro namespace usage with --xacro-ns option
  • apply correct checking for include tags, and extend testcase
  • allow (one-level) nested expression/extension evaluation
  • Contributors: Robert Haschke, Morgan Quigley

1.10.6 (2015-09-01)

  • use correct catkin environment for cmake dependency checking
  • fixed dependency definition for cmake usage
  • Contributors: Robert Haschke

1.10.5 (2015-08-12)

  • fix #108: evaluate property blocks recursively too
  • improved macro parameter parsing
  • use a regular expression to parse a param spec with forwarding and default
  • allow for spaces in default string (within single quotes)
  • forwarding macro arguments from outer scope
  • switched to [\^|]{.title-ref} syntax
  • use more compact [$|]{.title-ref} syntax
  • moved parsing of argument defaults to grab_macro()
  • explicit forwarding of properties to macro scope
  • replace silent/implicit forwarding of properties from outer scope to macro scope by an explicit "call" to a [forward(<name>[,<default>])]{.title-ref} function.
  • implicit forwarding of outer-scope properties to macro args (#100)
  • property evaluation fixes
  • suppress double evaluation of properties
  • adapted unittest to cover the fixed issue
  • fixed evaluation order for properties exported to parent or global scope
  • Merge pull request #103 from ubi-agni/overwrite-check issue warning when attempting to overwrite existing global property
  • fixed unittest: avoid overwrite warning
  • warn when overwriting any globally defined variable
  • Merge pull request #102 from ubi-agni/completion bash completion
  • Merge pull request #99 from ubi-agni/jade-devel reworked macro resolution
  • moved test_macro_name_with_colon() to class TestXacro should be tested both, in oldorder and inorder mode
  • bash completion
  • improved error message for failed $(find)
  • reworked macro resolution python-eval-based macro resolution (introduced to enable namespaces) heavily restricted the set of possible macro names (only valid python identifiers were allowed) Particularly, xacro: prefixed macro names were forbidden.
  • initial attempt to fix #97
  • add failing test case with colon in the macro name
  • Contributors: Robert Haschke

1.10.4 (2015-06-18)

  • removed test_DEPRECATED_should_replace_before_macroexpand() duplicates test_should_replace_before_macroexpand()
  • fixed evaluation order of macro arguments and body Macro arguments need to be evaluated and assigned to properties before body is evaluated. Otherwise, the evaluated value will be converted to str, i.e. loosing original type.
  • Contributors: Robert Haschke

1.10.3 (2015-06-16)

  • deprecate --oldorder processing
  • added --check-order option to do a simple check for --inorder compatibility
    • Most probable incompatibility is redefining a property after its usage.
    • tested and reported with file location of (first) redefinition after usage.
  • moved command line processing to cli.py
  • explain verbosity levels in usage string
  • colorize errors during cli parsing
  • log definition and usage of properties
  • replaced debug option by verbosity options -q, -v
  • fixed evaluation time of default macro params
  • introduced Macro object to increase code readability
  • parse a macro's parameter list once at declaration time (instead of every instantiation)
  • extended test_multiple_blocks() to check for both normal and reversed order
  • added unittest to increase code coverage
  • do not issue deprecation warning for <include> tags that are non-xacro
  • added option --oldorder
  • allow to store properties to parent or global scope
  • added <xacro:attribute>
  • cleaned up error message about missing files
  • moved xml-specific functions to xmlutils.py new generic functions opt_attrs(), reqd_attrs(), and check_attrs() to fetch optional and required attributes and warn about unknown ones in a uniform fashion
  • unittest to allow empty <arg> defaults
  • Merge pull request #94 from ubi-agni/minor-fixes
  • minor fixes
  • remove duplicates in --deps output
  • fixed dependency checking for --inorder mode (which requires full processing)
  • fixed doc of xacro' cmake macros
  • renamed "xacro:rename" to "xacro:element"
  • allow namespacing for xacro:include's
  • allow renaming of element names using xacro:rename
  • unittest cleanup
  • check property and macro names to be valid python identifiers
  • allow namespacing of xacro:include's
  • properties and macros in an included file will go into their own, separate namespace, if the XML attribute [ns]{.title-ref} is provided. Access is by standard python syntax: namespace.name
  • allow renaming of element names <xacro:rename xacro:name="<new element name>"/>
  • moved unittests requiring --inorder processing to class TestXacroInorder
  • added unittest test_dynamic_macro_undefined()
  • improved error message when variable include filename is used without --inorder
  • stripped down unittest test_inorder_processing()
  • improved processing
  • adapted pr2 gold standard removing most comments again this partially reverts 59605fb1521583dc63efdea13f4c45128499bd20
  • remove all XML comments directly before xacro elements (These are considered xacro-related only and should be removed in the final doc.) Leaving an empty line between xacro-unrelated and xacro-related comments allows to include the former.
  • unittest: test_ignore_xacro_comments()
  • improved processing
    • recursive (instead of iterative) eval_all()
    • reusable process_include()
    • replace_node() function to replace xacro tag by some other content
    • avoid reprocessing of nodes
    • avoid deep copy where possible (speedup)
  • fix evaluation (#83)
  • yaml support
  • check for consistency of xml namespaces on xacro:include
  • replaced strip()=='' by more efficient isspace()
  • allow transitive definition of substition args
  • fixed evaluation of literals in property definitions
    • literals with preceding whitespace will be silently stripped (#83)
    • more complex evaluation test (perturbing spaces added)
  • fixed xacro namespaces in pr2 files to get rid of new inconsistency warning
  • warning message on inconsistent namespace redefinition for includes
  • yaml support ${load_yaml('file.yaml')} to load dict from yaml file
  • Merge pull request #85 from ubi-agni/error-reporting improved error reporting
  • nicer formatting of multiple "when evaluating expression" lines
  • improved formatting of error messages use XacroException to wrap and augment other exceptions to achieve a clearer error formatting
  • better error message for missing substitution args
  • use colorized warnings where possible
  • included macro stack in error-reporting
  • maintain filestack to facilitate error reporting at any time
  • Merge pull request #82 from ubi-agni/unittests improved unittesting
  • allow to capture (and check) stderr in unit tests
  • improved unittests to test both, classic and in-order processing
  • Merge pull request #81 from ubi-agni/jade-devel Thank you for your time and contributions. Improving cosmetics is important.
  • PEP8 cleanup
  • cmake: only copy files to devel space if new
  • Merge pull request #80 from ubi-agni/jade-devel
  • improved error-handling opening the output file - running multiple xacro process in parallel, all writing into a new dir could cause a race condition when creating the dir
    • improved error message on output creation failure
  • removed rospy dependency
    • Importing rospy caused build order issues with ros_comm in workspace
  • Filtering out REMAP command-line arguments is done manually now.
  • update authors/maintainers and copyright statements
  • deprecate non-namespaced xacro tags
  • added missing print_location_msg() for file that actually failed parsing
  • improved deprecation warnings
  • New cli option [--xacro-ns]{.title-ref} allows to enforce the new policy requiring the xacro namespace prefix (and suppressing deprecation warnings). However, non-prefixed tags will not be modified by xacro anymore (as requested by #41, #59, #60). Partially reverted cb73cfd8c678adfda2172accef398189ea2338a1, handling <arg> tags in the same fashion as other tags, i.e. issue a warning if used without prefix and ignoring it with cli argument [--xacro-ns]{.title-ref}.
  • fixed pr2 xacro files to use 'xacro:' prefixed tags only
  • fixed unittests in test_xacro.py to use 'xacro:' prefixed tags only
  • deprecation message for missing xacro namespace prefix in xml tags
  • moved colored warning messages into color.py (for reuseability)
  • added missing print_location_msg() for file that actually failed parsing
  • improved xacro's cmake macros
  • prepend ${PACKAGE_NAME} to all generated cmake targets Otherwise multiple packages employing xacro's cmake macros will use the same conflicting target name. This is only an issue with catkin_make, which defines a single global cmake namespace. The new catkin tools (or catkin_make_isolated) build each package separately.
  • basic unittest for xacro's cmake macros
  • improved xacro's cmake macros - xacro_add_xacro_file() automatically determines output file from input (removing .xacro suffix). If that fails, a fatal error is raised.
    • added xacro_install() to allow installation into both, devel and install space.
    • replaced conveniency function xacro_add_files()
  • Contributors: Robert Haschke

1.10.2 (2015-05-23)

  • added --debug option to explicitly enable stack traces By default, only show error message to the user. Stack traces are only interesting for xacro developers.
  • recursive include processing
    • more informed error messages (which file was included from where)

    - allows relative path names for include filename specs they are interpreted relative to the current file

  • new substitution command $(cwd) to extract current working directory
  • added unittest cases
    • creation of required subdirs for output
    • recursive xacro:include
    • extended test_include_glob() to check for all glob patterns
  • added run_xacro() function to simplify unittests running xacro script
  • moved xacro.py back to original location
  • nicely colored deprecation warning
  • create required dirs before opening output file
  • added convenience cmake-macro xacro_add_target() to auto-generate xacro-processed files
  • added cmake status message before launching xacro (xacro might run for quite a while)
  • fetch xacro --deps errors at report them as a warning
  • simplified deprecation message
  • added missing return statement
  • removed obsolete math import left over from deaaae2c69edd7d5e185eeb098c1521d8711608b
  • install xacro.py again (for backwards compatibility) usage of xacro.py issues a deprecation warning
  • simplified scripts/xacro - removed xacro.py
    • made run script "scripts/xacro" and install process follow standards
    • removed xacro.py

    - added dependencies to setup.py Having the binaries xacro and xacro.py installed side by side causes problems, because xacro.py is wrongly taken as the module. This was avoided by the rather complex filtering of the sys.path. Switched to ROS standard now, using a binary script called "xacro".

  • changed tests to use the whole xacro processing pipeline utilizing the modularization of main() from previous commit This simplifies several existing tests, especially these using files on disk.
  • split main() into process_cli_arg(), parse(), process_doc()
  • extended cmake macro xacro_add_xacro_file()
    • handle INORDER option
    • handle REMAP arguments

    - create absolute input file names automatically usage: xacro_add_xacro_file(input output INORDER REMAP ...)

  • stripped new unit tests to essential xml snippets
  • merged pull request #68: eval properties assigned from <arg> tags as literals In the following example: <xacro:arg name="val" default="0.5"/> <xacro:property name="val" value="$(arg val)"/> ${val} was not evaluated as a number, but as string only. Thus numerical expressions failed with an exception.
  • factored out get_boolean_value()
  • <xacro:arg> needs to be fully specified
  • (handling <arg> tags (without xacro ns-prefix) disabled native <arg> tags) add test for eating launch parameter arguments remove check for "arg" parameter. move new test function to bottom of source
  • added unit tests for evaluation of list, tuple, and dict literals
  • fixed some code style issues
  • fixed string-isinstance checks (for python 3 compatibility)
  • do not evaluate list, dict, tuple expressions as literals (without ${} syntax)
  • added dict to list of known global symbols
  • focused global_symbols definition in the beginning of the file added some basic python symbols: list, str, float, int and map allowing some basic computation
  • tuning performance: instantiate QuickLexer's regexps only once
  • Contributors: Robert Haschke, Martin Pecka, Mike O'Driscoll, Morgan Quigley

1.10.1 (2015-04-01)

  • improved error handling and more descriptive error messages
  • correctly raise a XacroException on invalid, i.e. non-boolean, <xacro:if> expressions. (removed left-over debugging code, added test case)
  • raise an exception on undefined, but used macros Using the syntax <xacro:macroname/> should raise an exception if macroname is not defined. Added appropriate code and a test case.
  • fixed bookkeeping in lazy evaluation switch Table.unevaluated from list to set to avoid multiple key entries
  • fix formatting of changelog
  • Contributors: Robert Haschke

1.10.0 (2015-03-13)

  • security measure: forbid access to __builtins__ in expressions
  • literal evaluation should only consider literals, but no expressions use ast.literal_eval()
  • removed eval() from xacro:if evaluation
  • back to string comparison to handle (lowercase) true and false
  • add test case for equality expressions in <xacro:if>
  • add test case for math function usage
  • python based evaluation of expressions
    • replaced handle_expr with python-internal eval() call
    • care has been taken to resolve variables recursively on demand (in Table.__getitem__)
    • allows for evaluation of standard math functions
    • other desired functions could be added in eval_self_contained
    • Values in Table symbols are not stored as strings but as typed values.
  • If text is required, a conversion with str() is performed, to ensure proper evaluation of expressions. Otherwise 3*"1" would evaluate to "111".
  • use __future__.division we can handle integer division evaluating to floating-point devision, as before
  • allow variable names for filename attribute in <xacro:include>
  • allow for ordered XML processing to avoid issues with multiply defined properties and macros in (typically 3rd party) include files
    • enable the new behaviour by passing --inorder cmdline option
    • to improve code readibility and reusability, introduced functions
  • process_include(node), grab_macro(elt, macros), grab_property(elt, symbols) containing 1:1 corresponding handling from process_includes, grab_macros, and grab_properties
    • added corresponding test case test_inorder_processing()
  • dynamic macro names using <xacro:call macro=""/>
  • fixup unittests and handling of non-element nodes in <include>, <if>, <macro>
  • updated pr2 gold standard to include all comments
  • allow to ignore comments in nodes_match()
  • New handling of non-element nodes invalidates pr2 gold standard (adding a lot more comments). To allow validation, allow to ignore all comments in comparison (as before).
  • fixed handling of non-element nodes in <include>, <if>, <macro>
  • fixed writexml: text nodes were not printed when other siblings exist
    • print all text, but skip whitespace-only text nodes
  • improved xml matching
    • so far only element nodes (with its attributes) were considered
    • now also consider TEXT, CDATA, and COMMENT nodes
    • added function text_matches (normalizing consecutive whitespace to a single space)
    • added some new unit tests

    - test_consider_non_elements: non-element nodes are not yet considered in <if> and <macro>

  • travis-ci: use catkin_make
  • travis-ci: fixup running of tests
  • fix pathnames used in test case
  • Include CATKIN_ENV params at build time.
  • use output filename flag instead of shell redirection
  • create output file after parsing is complete, not before
  • Contributors: Robert Haschke, Mike O'Driscoll, Morgan Quigley, William Woodall

1.9.3 (2015-01-14)

  • merge test cases
  • add a snapshot of the pr2 model to the test directory. add a test case which verifies that the pr2 model is parsed equal to a 'golden' parse of it.
  • add more tests
  • add default arg tests
  • Allow default values for substitution args
  • Fix up comments
  • Allow xacro macros to have default parameters
  • Contributors: Paul Bovbel, Morgan Quigley

1.9.2 (2014-07-11)

  • add a few more tests to exercise the symbol table a bit more
  • allow for recursive evaluation of properties in expressions
  • add useful debugging information when parameters are not set
  • stop test from failing the second time it is run
  • unified if/unless handling, correctly handle floating point expressions
  • floating point expressions not equal zero are now evaluated as True
  • changed quotes to omit cmake warning
  • Contributors: Robert Haschke, Mike Ferguson

1.9.1 (2014-06-21)

  • fixup tests so they run
  • export architecture_independent flag in package.xml
  • installed relocatable fix
  • Contributors: Michael Ferguson, Mike Purvis, Scott K Logan

1.9.0 (2014-03-28)

  • Remove the roslint_python glob, use the default one.
  • Add roslint target to xacro; two whitespace fixes so that it passes.
  • fix evaluation of integers in if statements also added a unit test, fixes #15
  • fix setting of _xacro_py CMake var, fixes #16
  • Add support for globbing multiple files in a single <xacro:include>
  • code cleanup and python3 support
  • check for CATKIN_ENABLE_TESTING

1.8.4 (2013-08-06)

  • Merge pull request #9 from davetcoleman/hydro-devel Xacro should not use plain 'include' tags but only namespaced ones.
  • Fix for the fact that minidom creates text nodes which count as child nodes
  • Removed <uri> checking and made it more general for any child element of an <include> tag
  • Removed Groovy reference, only being applied to Hydro
  • Created check for Gazebo's <uri> tabs only only shows deprecated warnings if not present.
  • Small spelling fix
  • Xacro should not use plain 'include' tags but only namespaced ones.
  • Merge pull request #8 from piyushk/hydro-devel-conditional xacro conditional blocks
  • using refined arguments instead of sys.argv for xml file location
  • adding conditional blocks to xacro

1.8.3 (2013-04-22)

  • bumped version to 1.8.3 for hydro release
  • backwards compatilibity with rosbuild
  • adding unit test for substitution args
  • Adding supoprt for substitution_args 'arg' fields
  • Remove bin copy of xacro.py
  • 1.7.3
  • Install xacro.py as a program so it can be run
  • 1.7.2
  • fixed build issues introduced in catkinization
  • 1.7.1
  • PEP8, cleanup, and remove roslib
  • Update copyright, self import guard, and catkinize
  • Catkinize.
  • Cleanup in preparation of catkinization.
  • Added tag unstable for changeset 169c4bf30367
  • Added tag xacro-1.6.1 for changeset fc45af7fdada
  • 1.6.1 marker
  • xacro: fuerte compat with sub args import
  • Added tag unstable for changeset 2d3c8dbfa3c9
  • Added tag xacro-1.6.0 for changeset e4a4455189bf
  • 1.6.0
  • converted to unary stack from common stack
  • xacro: fixed inserting property blocks (ros-pkg #4561)
  • xacro now uses XacroExceptions. String exceptions are not allowed in Python anymore. #4209
  • Added Ubuntu platform tags to manifest
  • Xacro now places comments below <?xml> tag (#3859)
  • Xacro prints out cleaner xml. Elements are now often separated by a newline.
  • xacro dependency on roslaunch removed #3451
  • Xacro now adds a message mentioning that the file was autogenerated (#2775)
  • Remove use of deprecated rosbuild macros
  • Integers stay integers in xacro, fixing #3287
  • Tests for r25868
  • Added a flag for only evaluating include tags in xacro
  • Allowing multiple blocks and multiple insert_blocks, fixing #3322 and #3323
  • doc review completed for xacro
  • adding mainpage for xacro doc review
  • Added xacro.cmake file that exports new xacro_add_xacro_file() macro, #3020
  • Namespaced "include" tag in xacro
  • Marked xacro as api reviewed
  • Xacro now correctly declares the namespaces of the included documents in the final
  • Made xacro accept xml namespaces
  • Xacro now errors hard when a property is used without being declared
  • Xacro no longer allows you to create properties with "${}" in the name
  • Added the ability to escape "${" in xacro
  • Made the tests in xacro run again.
  • Created xacro/src
  • migration part 1

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged xacro at Robotics Stack Exchange

xacro package from xacro repo

xacro

Package Summary

Tags No category tags.
Version 2.0.13
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/xacro.git
VCS Type git
VCS Version ros2
Last Updated 2025-03-20
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Xacro (XML Macros) Xacro is an XML macro language. With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions.

Additional Links

Maintainers

  • Robert Haschke
  • Morgan Quigley

Authors

  • Stuart Glaser
  • William Woodall
  • Robert Haschke

Xacro (XML Macros)

Xacro is an XML macro language

With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions. Recent documentation can be found in the wiki. For older releases, have a look at the ROS wiki.

CHANGELOG

Changelog for package xacro

2.0.13 (2025-03-20)

  • Pass AMENT_PREFIX_PATH to xacro (#359)
  • Add Bazel build rules (#350)
  • Contributors: Michael Carroll, Robert Haschke, Sean Fish

2.0.12 (2025-01-08)

  • Handle new argument 'attr' in xml.dom.minidom._write_data() of Python 3.13 (#353)
  • pyproject.toml: Automatically determine version from git
  • Add function python.vars() (#348)
  • Contributors: Robert Haschke

2.0.11 (2024-04-02)

  • Allow substitution args without ROS (#340)
  • Add more unit tags for yaml files (#331)
  • Resolve $(find ...) as a result of a substitution argument (#339)
  • Mark regexes as raw strings (#336)
  • Add pyproject.toml for direct installation via pip (#329)
  • Contributors: Adam Heins, Bruno-Pier, Carlo Rizzardo, Lukas Huber, Robert Haschke

2.0.10 (2024-01-25)

  • Expose python.abs()
  • Fix hasattr support of YamlDictWrapper (#324)
  • Contributors: Robert Haschke

2.0.9 (2023-02-27)

  • Evaluate arg value as str/unicode (#322)
  • Contributors: Robert Haschke

2.0.8 (2022-10-22)

  • Install xacro using console_script entrypoint (#304)
  • Provide xacro.process() returning the processed file (#229)
  • Dotted YAML access from list iterator (#318)
  • Optionally allow comment evaluation (#310)

    Comment evaluation can be enabled with a special comment:

    • <!-- xacro:eval-comments --> or
    • <!-- xacro:eval-comments:on -->

    It remains active for the following comments until:

    • the current XML tag's scope is left (or a new tag entered)
    • another tag or non-whitespace text is processed
    • it becomes explicitly disabled via: <!-- xacro:eval-comments:off -->
  • Fix property resolution with namespace usage (#308)
    • Allow access to properties in parent scopes again (fixes #305)
    • Pick correct scope when defining a property into the parent (fixes #307)

      Setting a property within the parent scope may occur in two contexts:

      1. From within a macro. In that case, one wants to set the property in the caller's scope.
      2. From within the included file. In that case, one wants to set the property in the includer's scope.
  • Contributors: Chen Bainian, Gonzalo de Pedro, Gonzo, Jacob Perron, Melvin Wang, Robert Haschke, vandanamandlik

2.0.7 (2021-09-04)

  • Allow more builtin symbols: sorted, set
  • Don't import hidden symbols from math package
  • Fix eval security vulnerability
    • safe_eval()
    • unit tests validating the protection mechanism
  • Generalize yaml !degrees constructors: Enable expressions as well
  • Improve macro arg parsing (#278) to support:
    • $(substitution args)
    • ${python expressions}
    • single or double quoting of spaces
  • Contributors: Robert Haschke

2.0.6 (2021-05-30)

  • [feature] Expose YamlDictWrapper as dotify() to allow dotted access to any dict (#274)
  • [fix] Scoped macro evaluation (#272)
  • Contributors: Robert Haschke

2.0.5 (2021-03-02)

  • [fix] Report correct filename for XML errors (#268)
  • [fix] Python3-compatible property Table (#266)
  • [fix] Use outer-scope symbols to resolve include filename in xacro:include (#264)
  • [fix] Append test directory to existing AMENT_PREFIX_PATH (#260)
  • [fix] yaml loading: recursively wrap lists and dicts for dotted dict access (#258)
  • [feature] Provide support for yaml constructors !degrees and !radians (#252)
  • Contributors: Chen Bainian, Robert Haschke, G.A. vd. Hoorn

2.0.3 (2020-08-09)

  • Merge improvements of melodic and noetic branches into dashing-devel: see 1.14.2 and 1.14.3 for details
  • Contributors: Robert Haschke

2.0.2 (2020-03-29)

  • Merge improvements of melodic and noetic branches into dashing-devel: see 1.14.1, 1.13.5 for details
  • Contributors: Robert Haschke

2.0.1 (2019-10-06)

  • Revert requiring that all xacro commands are prefixed with 'xacro:' namespace Although this is deprecated since #79, the corresponding deprecation warning wasn't actually issued. Thus, we will accept non-prefixed xacro tags until F-turtle.
  • Install to both, bin/xacro and lib/xacro/xacro
  • Contributors: Robert Haschke

2.0.0 (2019-09-28)

  • PEP8 cleanup
    • code simplifications
    • avoid empty except
    • sort imports
    • format line breaks
  • Code cleanup
    • Removed deprecated options --legacy, --inorder, --check-order, --includes
    • Require all xacro commands to be prefixed with 'xacro:'
    • Added missing copyright notices
    • Removed python2 stuff
  • Adapt Travis config to use colcon
  • Provide ROS2-based replacement for substition args
  • Modified package structure as per ROS2 rules
    • Using ament_cmake
    • Moved source contents from "src/xacro" to "xacro"
    • Modified package.xml and setup.py according to ROS2 requirements
    • Configured completion hook
    • Removed catkin artifacts from cmake extension
  • Contributors: vandanamandlik, Jacob Perron, Robert Haschke

1.14.4 (2020-08-09)

  • [fix] Rework YamlDictWrapper to restore dict properties (#250)
  • [fix] Ignore underscores when parsing literal numeric values (#247)
  • Contributors: Robert Haschke

1.14.3 (2020-07-05)

  • [feature] Improve warnings
    • Unify meaning of verbosity > 0 (to print file location)
    • Provide file location on warning in check_attrs()
    • Issue warning on child elements of <xacro:include> tag
  • [feature] Allow dotted access to yaml-loaded dicts: d.key1.key2.key3 (#245)
  • [maint] Travis: Update distro to Bionic
  • Contributors: Robert Haschke, G.A. vd. Hoorn

1.14.2 (2020-05-21)

  • [maintanence] Remove deprecated xacro.py (#239)
  • Contributors: Shane Loretz

1.14.1 (2020-03-29)

  • [feature] allow optional xacro includes (#234)
  • Contributors: Robert Haschke

1.13.5 (2019-12-08)

  • [feature] Expose abs_filename() (#220)
  • [feature] Catch missing closing brace in $() and ${} expressions
  • [maintanence]
    • Replace deprecated yaml.load() -> yaml.safe_load()
    • Save macro names internally w/o 'xacro:' prefix
    • Correctly issue deprecation warning for non-prefixed xacro tags
  • Contributors: Robert Haschke

1.13.4 (2019-09-26)

  • [feature] remove xmlns:xacro from processed file (#207)
    • Remove all notions of xmlns:xacro from the resulting document.
    • If the root node defines a xacro:targetNamespace attribute, this will become the global xmlns namespace of the resulting document.
  • [feature] Add len() to allowed python functions (#208)
  • [maintanence]
    • --in-order warning: reduce severity level to message
    • fix and cleanup test of cmake extensions
    • adapt run_xacro() to run xacro from PATH
    • simplify import of substition_args
    • remove 'requires' field from setup.py
    • fix Travis config: use new repository key, use xenial/kinetic distro
    • basic README.md
    • fix catkin_lint issue
    • remove duplicate catkin_python_setup() (#206)
  • Contributors: Robert Haschke, James Xu, Martin Pecka

1.13.3 (2018-10-14)

  • use INORDER as default in cmake functions
  • remove weird 'None's in error messages
  • Contributors: Robert Haschke

1.13.2 (2018-05-14)

  • deprecate --includes option (which is tied to deprecated --legacy processing)
  • moved all option handling to cli.py, including deprecation warnings for options
  • Contributors: Robert Haschke

1.13.1 (2018-05-03)

  • fix parsing of quoted strings in default args for xacro params (#187)
  • Contributors: Robert Haschke

1.13.0 (2018-03-31)

  • make --inorder processing the default
  • Contributors: Robert Haschke

1.12.1 (2018-03-28)

  • #183: unicode support for python2 and python3
  • #178: extend list of allowed python builtins: min, max, round
  • #182: suppress xacro warnings when determining dependencies
  • #151: fixes for #149 and #148
  • #157: fix #156 access to undefined target_table
  • #150: allow True/False literals in python expressions
  • #159: load ROS-related packages on demand, thus becoming more independent from ROS
  • #173: allow default values for properties
  • #172: fix formatting of XacroException
  • #171: fix dependency handling (--deps option)
  • #163: full python 3 compatibility
  • Contributors: Robert Haschke, Kartik Mohta, Morgan Quigley, Steven Peters

1.12.0 (2017-03-25)

1.11.2 (2017-02-27)

  • Convert exception to string in a python2/3 compatible way.
  • Use python2/3 independent check for file type.
  • Contributors: Hans Gaiser, Maarten de Vries

1.11.1 (2016-06-22)

  • workaround for xml.dom.minidom issue
  • ensure non-empty error string
  • Contributors: Robert Haschke

1.11.0 (2016-03-25)

  • added short option -i as alternative to --inorder
  • refactored main to fix #122, #107
  • added xacro indicator to error message to fix #123
  • moved banner generation to process_file()
  • removed special (but obsolete) output handling for just_includes mode
  • moved core processing pipeline into function process_file()
  • improved documentation: more comments, input_file -> input_file_name
  • fix #120: handle non-space whitespace characters in params string
  • extended tests to handle non-space whitespace characters in params string
  • always store macros with xacro: prefix in front: #118
  • fix #115: enforce xacro namespace usage with --xacro-ns option
  • apply correct checking for include tags, and extend testcase
  • allow (one-level) nested expression/extension evaluation
  • Contributors: Robert Haschke, Morgan Quigley

1.10.6 (2015-09-01)

  • use correct catkin environment for cmake dependency checking
  • fixed dependency definition for cmake usage
  • Contributors: Robert Haschke

1.10.5 (2015-08-12)

  • fix #108: evaluate property blocks recursively too
  • improved macro parameter parsing
  • use a regular expression to parse a param spec with forwarding and default
  • allow for spaces in default string (within single quotes)
  • forwarding macro arguments from outer scope
  • switched to [\^|]{.title-ref} syntax
  • use more compact [$|]{.title-ref} syntax
  • moved parsing of argument defaults to grab_macro()
  • explicit forwarding of properties to macro scope
  • replace silent/implicit forwarding of properties from outer scope to macro scope by an explicit "call" to a [forward(<name>[,<default>])]{.title-ref} function.
  • implicit forwarding of outer-scope properties to macro args (#100)
  • property evaluation fixes
  • suppress double evaluation of properties
  • adapted unittest to cover the fixed issue
  • fixed evaluation order for properties exported to parent or global scope
  • Merge pull request #103 from ubi-agni/overwrite-check issue warning when attempting to overwrite existing global property
  • fixed unittest: avoid overwrite warning
  • warn when overwriting any globally defined variable
  • Merge pull request #102 from ubi-agni/completion bash completion
  • Merge pull request #99 from ubi-agni/jade-devel reworked macro resolution
  • moved test_macro_name_with_colon() to class TestXacro should be tested both, in oldorder and inorder mode
  • bash completion
  • improved error message for failed $(find)
  • reworked macro resolution python-eval-based macro resolution (introduced to enable namespaces) heavily restricted the set of possible macro names (only valid python identifiers were allowed) Particularly, xacro: prefixed macro names were forbidden.
  • initial attempt to fix #97
  • add failing test case with colon in the macro name
  • Contributors: Robert Haschke

1.10.4 (2015-06-18)

  • removed test_DEPRECATED_should_replace_before_macroexpand() duplicates test_should_replace_before_macroexpand()
  • fixed evaluation order of macro arguments and body Macro arguments need to be evaluated and assigned to properties before body is evaluated. Otherwise, the evaluated value will be converted to str, i.e. loosing original type.
  • Contributors: Robert Haschke

1.10.3 (2015-06-16)

  • deprecate --oldorder processing
  • added --check-order option to do a simple check for --inorder compatibility
    • Most probable incompatibility is redefining a property after its usage.
    • tested and reported with file location of (first) redefinition after usage.
  • moved command line processing to cli.py
  • explain verbosity levels in usage string
  • colorize errors during cli parsing
  • log definition and usage of properties
  • replaced debug option by verbosity options -q, -v
  • fixed evaluation time of default macro params
  • introduced Macro object to increase code readability
  • parse a macro's parameter list once at declaration time (instead of every instantiation)
  • extended test_multiple_blocks() to check for both normal and reversed order
  • added unittest to increase code coverage
  • do not issue deprecation warning for <include> tags that are non-xacro
  • added option --oldorder
  • allow to store properties to parent or global scope
  • added <xacro:attribute>
  • cleaned up error message about missing files
  • moved xml-specific functions to xmlutils.py new generic functions opt_attrs(), reqd_attrs(), and check_attrs() to fetch optional and required attributes and warn about unknown ones in a uniform fashion
  • unittest to allow empty <arg> defaults
  • Merge pull request #94 from ubi-agni/minor-fixes
  • minor fixes
  • remove duplicates in --deps output
  • fixed dependency checking for --inorder mode (which requires full processing)
  • fixed doc of xacro' cmake macros
  • renamed "xacro:rename" to "xacro:element"
  • allow namespacing for xacro:include's
  • allow renaming of element names using xacro:rename
  • unittest cleanup
  • check property and macro names to be valid python identifiers
  • allow namespacing of xacro:include's
  • properties and macros in an included file will go into their own, separate namespace, if the XML attribute [ns]{.title-ref} is provided. Access is by standard python syntax: namespace.name
  • allow renaming of element names <xacro:rename xacro:name="<new element name>"/>
  • moved unittests requiring --inorder processing to class TestXacroInorder
  • added unittest test_dynamic_macro_undefined()
  • improved error message when variable include filename is used without --inorder
  • stripped down unittest test_inorder_processing()
  • improved processing
  • adapted pr2 gold standard removing most comments again this partially reverts 59605fb1521583dc63efdea13f4c45128499bd20
  • remove all XML comments directly before xacro elements (These are considered xacro-related only and should be removed in the final doc.) Leaving an empty line between xacro-unrelated and xacro-related comments allows to include the former.
  • unittest: test_ignore_xacro_comments()
  • improved processing
    • recursive (instead of iterative) eval_all()
    • reusable process_include()
    • replace_node() function to replace xacro tag by some other content
    • avoid reprocessing of nodes
    • avoid deep copy where possible (speedup)
  • fix evaluation (#83)
  • yaml support
  • check for consistency of xml namespaces on xacro:include
  • replaced strip()=='' by more efficient isspace()
  • allow transitive definition of substition args
  • fixed evaluation of literals in property definitions
    • literals with preceding whitespace will be silently stripped (#83)
    • more complex evaluation test (perturbing spaces added)
  • fixed xacro namespaces in pr2 files to get rid of new inconsistency warning
  • warning message on inconsistent namespace redefinition for includes
  • yaml support ${load_yaml('file.yaml')} to load dict from yaml file
  • Merge pull request #85 from ubi-agni/error-reporting improved error reporting
  • nicer formatting of multiple "when evaluating expression" lines
  • improved formatting of error messages use XacroException to wrap and augment other exceptions to achieve a clearer error formatting
  • better error message for missing substitution args
  • use colorized warnings where possible
  • included macro stack in error-reporting
  • maintain filestack to facilitate error reporting at any time
  • Merge pull request #82 from ubi-agni/unittests improved unittesting
  • allow to capture (and check) stderr in unit tests
  • improved unittests to test both, classic and in-order processing
  • Merge pull request #81 from ubi-agni/jade-devel Thank you for your time and contributions. Improving cosmetics is important.
  • PEP8 cleanup
  • cmake: only copy files to devel space if new
  • Merge pull request #80 from ubi-agni/jade-devel
  • improved error-handling opening the output file - running multiple xacro process in parallel, all writing into a new dir could cause a race condition when creating the dir
    • improved error message on output creation failure
  • removed rospy dependency
    • Importing rospy caused build order issues with ros_comm in workspace
  • Filtering out REMAP command-line arguments is done manually now.
  • update authors/maintainers and copyright statements
  • deprecate non-namespaced xacro tags
  • added missing print_location_msg() for file that actually failed parsing
  • improved deprecation warnings
  • New cli option [--xacro-ns]{.title-ref} allows to enforce the new policy requiring the xacro namespace prefix (and suppressing deprecation warnings). However, non-prefixed tags will not be modified by xacro anymore (as requested by #41, #59, #60). Partially reverted cb73cfd8c678adfda2172accef398189ea2338a1, handling <arg> tags in the same fashion as other tags, i.e. issue a warning if used without prefix and ignoring it with cli argument [--xacro-ns]{.title-ref}.
  • fixed pr2 xacro files to use 'xacro:' prefixed tags only
  • fixed unittests in test_xacro.py to use 'xacro:' prefixed tags only
  • deprecation message for missing xacro namespace prefix in xml tags
  • moved colored warning messages into color.py (for reuseability)
  • added missing print_location_msg() for file that actually failed parsing
  • improved xacro's cmake macros
  • prepend ${PACKAGE_NAME} to all generated cmake targets Otherwise multiple packages employing xacro's cmake macros will use the same conflicting target name. This is only an issue with catkin_make, which defines a single global cmake namespace. The new catkin tools (or catkin_make_isolated) build each package separately.
  • basic unittest for xacro's cmake macros
  • improved xacro's cmake macros - xacro_add_xacro_file() automatically determines output file from input (removing .xacro suffix). If that fails, a fatal error is raised.
    • added xacro_install() to allow installation into both, devel and install space.
    • replaced conveniency function xacro_add_files()
  • Contributors: Robert Haschke

1.10.2 (2015-05-23)

  • added --debug option to explicitly enable stack traces By default, only show error message to the user. Stack traces are only interesting for xacro developers.
  • recursive include processing
    • more informed error messages (which file was included from where)

    - allows relative path names for include filename specs they are interpreted relative to the current file

  • new substitution command $(cwd) to extract current working directory
  • added unittest cases
    • creation of required subdirs for output
    • recursive xacro:include
    • extended test_include_glob() to check for all glob patterns
  • added run_xacro() function to simplify unittests running xacro script
  • moved xacro.py back to original location
  • nicely colored deprecation warning
  • create required dirs before opening output file
  • added convenience cmake-macro xacro_add_target() to auto-generate xacro-processed files
  • added cmake status message before launching xacro (xacro might run for quite a while)
  • fetch xacro --deps errors at report them as a warning
  • simplified deprecation message
  • added missing return statement
  • removed obsolete math import left over from deaaae2c69edd7d5e185eeb098c1521d8711608b
  • install xacro.py again (for backwards compatibility) usage of xacro.py issues a deprecation warning
  • simplified scripts/xacro - removed xacro.py
    • made run script "scripts/xacro" and install process follow standards
    • removed xacro.py

    - added dependencies to setup.py Having the binaries xacro and xacro.py installed side by side causes problems, because xacro.py is wrongly taken as the module. This was avoided by the rather complex filtering of the sys.path. Switched to ROS standard now, using a binary script called "xacro".

  • changed tests to use the whole xacro processing pipeline utilizing the modularization of main() from previous commit This simplifies several existing tests, especially these using files on disk.
  • split main() into process_cli_arg(), parse(), process_doc()
  • extended cmake macro xacro_add_xacro_file()
    • handle INORDER option
    • handle REMAP arguments

    - create absolute input file names automatically usage: xacro_add_xacro_file(input output INORDER REMAP ...)

  • stripped new unit tests to essential xml snippets
  • merged pull request #68: eval properties assigned from <arg> tags as literals In the following example: <xacro:arg name="val" default="0.5"/> <xacro:property name="val" value="$(arg val)"/> ${val} was not evaluated as a number, but as string only. Thus numerical expressions failed with an exception.
  • factored out get_boolean_value()
  • <xacro:arg> needs to be fully specified
  • (handling <arg> tags (without xacro ns-prefix) disabled native <arg> tags) add test for eating launch parameter arguments remove check for "arg" parameter. move new test function to bottom of source
  • added unit tests for evaluation of list, tuple, and dict literals
  • fixed some code style issues
  • fixed string-isinstance checks (for python 3 compatibility)
  • do not evaluate list, dict, tuple expressions as literals (without ${} syntax)
  • added dict to list of known global symbols
  • focused global_symbols definition in the beginning of the file added some basic python symbols: list, str, float, int and map allowing some basic computation
  • tuning performance: instantiate QuickLexer's regexps only once
  • Contributors: Robert Haschke, Martin Pecka, Mike O'Driscoll, Morgan Quigley

1.10.1 (2015-04-01)

  • improved error handling and more descriptive error messages
  • correctly raise a XacroException on invalid, i.e. non-boolean, <xacro:if> expressions. (removed left-over debugging code, added test case)
  • raise an exception on undefined, but used macros Using the syntax <xacro:macroname/> should raise an exception if macroname is not defined. Added appropriate code and a test case.
  • fixed bookkeeping in lazy evaluation switch Table.unevaluated from list to set to avoid multiple key entries
  • fix formatting of changelog
  • Contributors: Robert Haschke

1.10.0 (2015-03-13)

  • security measure: forbid access to __builtins__ in expressions
  • literal evaluation should only consider literals, but no expressions use ast.literal_eval()
  • removed eval() from xacro:if evaluation
  • back to string comparison to handle (lowercase) true and false
  • add test case for equality expressions in <xacro:if>
  • add test case for math function usage
  • python based evaluation of expressions
    • replaced handle_expr with python-internal eval() call
    • care has been taken to resolve variables recursively on demand (in Table.__getitem__)
    • allows for evaluation of standard math functions
    • other desired functions could be added in eval_self_contained
    • Values in Table symbols are not stored as strings but as typed values.
  • If text is required, a conversion with str() is performed, to ensure proper evaluation of expressions. Otherwise 3*"1" would evaluate to "111".
  • use __future__.division we can handle integer division evaluating to floating-point devision, as before
  • allow variable names for filename attribute in <xacro:include>
  • allow for ordered XML processing to avoid issues with multiply defined properties and macros in (typically 3rd party) include files
    • enable the new behaviour by passing --inorder cmdline option
    • to improve code readibility and reusability, introduced functions
  • process_include(node), grab_macro(elt, macros), grab_property(elt, symbols) containing 1:1 corresponding handling from process_includes, grab_macros, and grab_properties
    • added corresponding test case test_inorder_processing()
  • dynamic macro names using <xacro:call macro=""/>
  • fixup unittests and handling of non-element nodes in <include>, <if>, <macro>
  • updated pr2 gold standard to include all comments
  • allow to ignore comments in nodes_match()
  • New handling of non-element nodes invalidates pr2 gold standard (adding a lot more comments). To allow validation, allow to ignore all comments in comparison (as before).
  • fixed handling of non-element nodes in <include>, <if>, <macro>
  • fixed writexml: text nodes were not printed when other siblings exist
    • print all text, but skip whitespace-only text nodes
  • improved xml matching
    • so far only element nodes (with its attributes) were considered
    • now also consider TEXT, CDATA, and COMMENT nodes
    • added function text_matches (normalizing consecutive whitespace to a single space)
    • added some new unit tests

    - test_consider_non_elements: non-element nodes are not yet considered in <if> and <macro>

  • travis-ci: use catkin_make
  • travis-ci: fixup running of tests
  • fix pathnames used in test case
  • Include CATKIN_ENV params at build time.
  • use output filename flag instead of shell redirection
  • create output file after parsing is complete, not before
  • Contributors: Robert Haschke, Mike O'Driscoll, Morgan Quigley, William Woodall

1.9.3 (2015-01-14)

  • merge test cases
  • add a snapshot of the pr2 model to the test directory. add a test case which verifies that the pr2 model is parsed equal to a 'golden' parse of it.
  • add more tests
  • add default arg tests
  • Allow default values for substitution args
  • Fix up comments
  • Allow xacro macros to have default parameters
  • Contributors: Paul Bovbel, Morgan Quigley

1.9.2 (2014-07-11)

  • add a few more tests to exercise the symbol table a bit more
  • allow for recursive evaluation of properties in expressions
  • add useful debugging information when parameters are not set
  • stop test from failing the second time it is run
  • unified if/unless handling, correctly handle floating point expressions
  • floating point expressions not equal zero are now evaluated as True
  • changed quotes to omit cmake warning
  • Contributors: Robert Haschke, Mike Ferguson

1.9.1 (2014-06-21)

  • fixup tests so they run
  • export architecture_independent flag in package.xml
  • installed relocatable fix
  • Contributors: Michael Ferguson, Mike Purvis, Scott K Logan

1.9.0 (2014-03-28)

  • Remove the roslint_python glob, use the default one.
  • Add roslint target to xacro; two whitespace fixes so that it passes.
  • fix evaluation of integers in if statements also added a unit test, fixes #15
  • fix setting of _xacro_py CMake var, fixes #16
  • Add support for globbing multiple files in a single <xacro:include>
  • code cleanup and python3 support
  • check for CATKIN_ENABLE_TESTING

1.8.4 (2013-08-06)

  • Merge pull request #9 from davetcoleman/hydro-devel Xacro should not use plain 'include' tags but only namespaced ones.
  • Fix for the fact that minidom creates text nodes which count as child nodes
  • Removed <uri> checking and made it more general for any child element of an <include> tag
  • Removed Groovy reference, only being applied to Hydro
  • Created check for Gazebo's <uri> tabs only only shows deprecated warnings if not present.
  • Small spelling fix
  • Xacro should not use plain 'include' tags but only namespaced ones.
  • Merge pull request #8 from piyushk/hydro-devel-conditional xacro conditional blocks
  • using refined arguments instead of sys.argv for xml file location
  • adding conditional blocks to xacro

1.8.3 (2013-04-22)

  • bumped version to 1.8.3 for hydro release
  • backwards compatilibity with rosbuild
  • adding unit test for substitution args
  • Adding supoprt for substitution_args 'arg' fields
  • Remove bin copy of xacro.py
  • 1.7.3
  • Install xacro.py as a program so it can be run
  • 1.7.2
  • fixed build issues introduced in catkinization
  • 1.7.1
  • PEP8, cleanup, and remove roslib
  • Update copyright, self import guard, and catkinize
  • Catkinize.
  • Cleanup in preparation of catkinization.
  • Added tag unstable for changeset 169c4bf30367
  • Added tag xacro-1.6.1 for changeset fc45af7fdada
  • 1.6.1 marker
  • xacro: fuerte compat with sub args import
  • Added tag unstable for changeset 2d3c8dbfa3c9
  • Added tag xacro-1.6.0 for changeset e4a4455189bf
  • 1.6.0
  • converted to unary stack from common stack
  • xacro: fixed inserting property blocks (ros-pkg #4561)
  • xacro now uses XacroExceptions. String exceptions are not allowed in Python anymore. #4209
  • Added Ubuntu platform tags to manifest
  • Xacro now places comments below <?xml> tag (#3859)
  • Xacro prints out cleaner xml. Elements are now often separated by a newline.
  • xacro dependency on roslaunch removed #3451
  • Xacro now adds a message mentioning that the file was autogenerated (#2775)
  • Remove use of deprecated rosbuild macros
  • Integers stay integers in xacro, fixing #3287
  • Tests for r25868
  • Added a flag for only evaluating include tags in xacro
  • Allowing multiple blocks and multiple insert_blocks, fixing #3322 and #3323
  • doc review completed for xacro
  • adding mainpage for xacro doc review
  • Added xacro.cmake file that exports new xacro_add_xacro_file() macro, #3020
  • Namespaced "include" tag in xacro
  • Marked xacro as api reviewed
  • Xacro now correctly declares the namespaces of the included documents in the final
  • Made xacro accept xml namespaces
  • Xacro now errors hard when a property is used without being declared
  • Xacro no longer allows you to create properties with "${}" in the name
  • Added the ability to escape "${" in xacro
  • Made the tests in xacro run again.
  • Created xacro/src
  • migration part 1

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged xacro at Robotics Stack Exchange

xacro package from xacro repo

xacro

Package Summary

Tags No category tags.
Version 2.0.13
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/xacro.git
VCS Type git
VCS Version ros2
Last Updated 2025-03-20
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Xacro (XML Macros) Xacro is an XML macro language. With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions.

Additional Links

Maintainers

  • Robert Haschke
  • Morgan Quigley

Authors

  • Stuart Glaser
  • William Woodall
  • Robert Haschke

Xacro (XML Macros)

Xacro is an XML macro language

With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions. Recent documentation can be found in the wiki. For older releases, have a look at the ROS wiki.

CHANGELOG

Changelog for package xacro

2.0.13 (2025-03-20)

  • Pass AMENT_PREFIX_PATH to xacro (#359)
  • Add Bazel build rules (#350)
  • Contributors: Michael Carroll, Robert Haschke, Sean Fish

2.0.12 (2025-01-08)

  • Handle new argument 'attr' in xml.dom.minidom._write_data() of Python 3.13 (#353)
  • pyproject.toml: Automatically determine version from git
  • Add function python.vars() (#348)
  • Contributors: Robert Haschke

2.0.11 (2024-04-02)

  • Allow substitution args without ROS (#340)
  • Add more unit tags for yaml files (#331)
  • Resolve $(find ...) as a result of a substitution argument (#339)
  • Mark regexes as raw strings (#336)
  • Add pyproject.toml for direct installation via pip (#329)
  • Contributors: Adam Heins, Bruno-Pier, Carlo Rizzardo, Lukas Huber, Robert Haschke

2.0.10 (2024-01-25)

  • Expose python.abs()
  • Fix hasattr support of YamlDictWrapper (#324)
  • Contributors: Robert Haschke

2.0.9 (2023-02-27)

  • Evaluate arg value as str/unicode (#322)
  • Contributors: Robert Haschke

2.0.8 (2022-10-22)

  • Install xacro using console_script entrypoint (#304)
  • Provide xacro.process() returning the processed file (#229)
  • Dotted YAML access from list iterator (#318)
  • Optionally allow comment evaluation (#310)

    Comment evaluation can be enabled with a special comment:

    • <!-- xacro:eval-comments --> or
    • <!-- xacro:eval-comments:on -->

    It remains active for the following comments until:

    • the current XML tag's scope is left (or a new tag entered)
    • another tag or non-whitespace text is processed
    • it becomes explicitly disabled via: <!-- xacro:eval-comments:off -->
  • Fix property resolution with namespace usage (#308)
    • Allow access to properties in parent scopes again (fixes #305)
    • Pick correct scope when defining a property into the parent (fixes #307)

      Setting a property within the parent scope may occur in two contexts:

      1. From within a macro. In that case, one wants to set the property in the caller's scope.
      2. From within the included file. In that case, one wants to set the property in the includer's scope.
  • Contributors: Chen Bainian, Gonzalo de Pedro, Gonzo, Jacob Perron, Melvin Wang, Robert Haschke, vandanamandlik

2.0.7 (2021-09-04)

  • Allow more builtin symbols: sorted, set
  • Don't import hidden symbols from math package
  • Fix eval security vulnerability
    • safe_eval()
    • unit tests validating the protection mechanism
  • Generalize yaml !degrees constructors: Enable expressions as well
  • Improve macro arg parsing (#278) to support:
    • $(substitution args)
    • ${python expressions}
    • single or double quoting of spaces
  • Contributors: Robert Haschke

2.0.6 (2021-05-30)

  • [feature] Expose YamlDictWrapper as dotify() to allow dotted access to any dict (#274)
  • [fix] Scoped macro evaluation (#272)
  • Contributors: Robert Haschke

2.0.5 (2021-03-02)

  • [fix] Report correct filename for XML errors (#268)
  • [fix] Python3-compatible property Table (#266)
  • [fix] Use outer-scope symbols to resolve include filename in xacro:include (#264)
  • [fix] Append test directory to existing AMENT_PREFIX_PATH (#260)
  • [fix] yaml loading: recursively wrap lists and dicts for dotted dict access (#258)
  • [feature] Provide support for yaml constructors !degrees and !radians (#252)
  • Contributors: Chen Bainian, Robert Haschke, G.A. vd. Hoorn

2.0.3 (2020-08-09)

  • Merge improvements of melodic and noetic branches into dashing-devel: see 1.14.2 and 1.14.3 for details
  • Contributors: Robert Haschke

2.0.2 (2020-03-29)

  • Merge improvements of melodic and noetic branches into dashing-devel: see 1.14.1, 1.13.5 for details
  • Contributors: Robert Haschke

2.0.1 (2019-10-06)

  • Revert requiring that all xacro commands are prefixed with 'xacro:' namespace Although this is deprecated since #79, the corresponding deprecation warning wasn't actually issued. Thus, we will accept non-prefixed xacro tags until F-turtle.
  • Install to both, bin/xacro and lib/xacro/xacro
  • Contributors: Robert Haschke

2.0.0 (2019-09-28)

  • PEP8 cleanup
    • code simplifications
    • avoid empty except
    • sort imports
    • format line breaks
  • Code cleanup
    • Removed deprecated options --legacy, --inorder, --check-order, --includes
    • Require all xacro commands to be prefixed with 'xacro:'
    • Added missing copyright notices
    • Removed python2 stuff
  • Adapt Travis config to use colcon
  • Provide ROS2-based replacement for substition args
  • Modified package structure as per ROS2 rules
    • Using ament_cmake
    • Moved source contents from "src/xacro" to "xacro"
    • Modified package.xml and setup.py according to ROS2 requirements
    • Configured completion hook
    • Removed catkin artifacts from cmake extension
  • Contributors: vandanamandlik, Jacob Perron, Robert Haschke

1.14.4 (2020-08-09)

  • [fix] Rework YamlDictWrapper to restore dict properties (#250)
  • [fix] Ignore underscores when parsing literal numeric values (#247)
  • Contributors: Robert Haschke

1.14.3 (2020-07-05)

  • [feature] Improve warnings
    • Unify meaning of verbosity > 0 (to print file location)
    • Provide file location on warning in check_attrs()
    • Issue warning on child elements of <xacro:include> tag
  • [feature] Allow dotted access to yaml-loaded dicts: d.key1.key2.key3 (#245)
  • [maint] Travis: Update distro to Bionic
  • Contributors: Robert Haschke, G.A. vd. Hoorn

1.14.2 (2020-05-21)

  • [maintanence] Remove deprecated xacro.py (#239)
  • Contributors: Shane Loretz

1.14.1 (2020-03-29)

  • [feature] allow optional xacro includes (#234)
  • Contributors: Robert Haschke

1.13.5 (2019-12-08)

  • [feature] Expose abs_filename() (#220)
  • [feature] Catch missing closing brace in $() and ${} expressions
  • [maintanence]
    • Replace deprecated yaml.load() -> yaml.safe_load()
    • Save macro names internally w/o 'xacro:' prefix
    • Correctly issue deprecation warning for non-prefixed xacro tags
  • Contributors: Robert Haschke

1.13.4 (2019-09-26)

  • [feature] remove xmlns:xacro from processed file (#207)
    • Remove all notions of xmlns:xacro from the resulting document.
    • If the root node defines a xacro:targetNamespace attribute, this will become the global xmlns namespace of the resulting document.
  • [feature] Add len() to allowed python functions (#208)
  • [maintanence]
    • --in-order warning: reduce severity level to message
    • fix and cleanup test of cmake extensions
    • adapt run_xacro() to run xacro from PATH
    • simplify import of substition_args
    • remove 'requires' field from setup.py
    • fix Travis config: use new repository key, use xenial/kinetic distro
    • basic README.md
    • fix catkin_lint issue
    • remove duplicate catkin_python_setup() (#206)
  • Contributors: Robert Haschke, James Xu, Martin Pecka

1.13.3 (2018-10-14)

  • use INORDER as default in cmake functions
  • remove weird 'None's in error messages
  • Contributors: Robert Haschke

1.13.2 (2018-05-14)

  • deprecate --includes option (which is tied to deprecated --legacy processing)
  • moved all option handling to cli.py, including deprecation warnings for options
  • Contributors: Robert Haschke

1.13.1 (2018-05-03)

  • fix parsing of quoted strings in default args for xacro params (#187)
  • Contributors: Robert Haschke

1.13.0 (2018-03-31)

  • make --inorder processing the default
  • Contributors: Robert Haschke

1.12.1 (2018-03-28)

  • #183: unicode support for python2 and python3
  • #178: extend list of allowed python builtins: min, max, round
  • #182: suppress xacro warnings when determining dependencies
  • #151: fixes for #149 and #148
  • #157: fix #156 access to undefined target_table
  • #150: allow True/False literals in python expressions
  • #159: load ROS-related packages on demand, thus becoming more independent from ROS
  • #173: allow default values for properties
  • #172: fix formatting of XacroException
  • #171: fix dependency handling (--deps option)
  • #163: full python 3 compatibility
  • Contributors: Robert Haschke, Kartik Mohta, Morgan Quigley, Steven Peters

1.12.0 (2017-03-25)

1.11.2 (2017-02-27)

  • Convert exception to string in a python2/3 compatible way.
  • Use python2/3 independent check for file type.
  • Contributors: Hans Gaiser, Maarten de Vries

1.11.1 (2016-06-22)

  • workaround for xml.dom.minidom issue
  • ensure non-empty error string
  • Contributors: Robert Haschke

1.11.0 (2016-03-25)

  • added short option -i as alternative to --inorder
  • refactored main to fix #122, #107
  • added xacro indicator to error message to fix #123
  • moved banner generation to process_file()
  • removed special (but obsolete) output handling for just_includes mode
  • moved core processing pipeline into function process_file()
  • improved documentation: more comments, input_file -> input_file_name
  • fix #120: handle non-space whitespace characters in params string
  • extended tests to handle non-space whitespace characters in params string
  • always store macros with xacro: prefix in front: #118
  • fix #115: enforce xacro namespace usage with --xacro-ns option
  • apply correct checking for include tags, and extend testcase
  • allow (one-level) nested expression/extension evaluation
  • Contributors: Robert Haschke, Morgan Quigley

1.10.6 (2015-09-01)

  • use correct catkin environment for cmake dependency checking
  • fixed dependency definition for cmake usage
  • Contributors: Robert Haschke

1.10.5 (2015-08-12)

  • fix #108: evaluate property blocks recursively too
  • improved macro parameter parsing
  • use a regular expression to parse a param spec with forwarding and default
  • allow for spaces in default string (within single quotes)
  • forwarding macro arguments from outer scope
  • switched to [\^|]{.title-ref} syntax
  • use more compact [$|]{.title-ref} syntax
  • moved parsing of argument defaults to grab_macro()
  • explicit forwarding of properties to macro scope
  • replace silent/implicit forwarding of properties from outer scope to macro scope by an explicit "call" to a [forward(<name>[,<default>])]{.title-ref} function.
  • implicit forwarding of outer-scope properties to macro args (#100)
  • property evaluation fixes
  • suppress double evaluation of properties
  • adapted unittest to cover the fixed issue
  • fixed evaluation order for properties exported to parent or global scope
  • Merge pull request #103 from ubi-agni/overwrite-check issue warning when attempting to overwrite existing global property
  • fixed unittest: avoid overwrite warning
  • warn when overwriting any globally defined variable
  • Merge pull request #102 from ubi-agni/completion bash completion
  • Merge pull request #99 from ubi-agni/jade-devel reworked macro resolution
  • moved test_macro_name_with_colon() to class TestXacro should be tested both, in oldorder and inorder mode
  • bash completion
  • improved error message for failed $(find)
  • reworked macro resolution python-eval-based macro resolution (introduced to enable namespaces) heavily restricted the set of possible macro names (only valid python identifiers were allowed) Particularly, xacro: prefixed macro names were forbidden.
  • initial attempt to fix #97
  • add failing test case with colon in the macro name
  • Contributors: Robert Haschke

1.10.4 (2015-06-18)

  • removed test_DEPRECATED_should_replace_before_macroexpand() duplicates test_should_replace_before_macroexpand()
  • fixed evaluation order of macro arguments and body Macro arguments need to be evaluated and assigned to properties before body is evaluated. Otherwise, the evaluated value will be converted to str, i.e. loosing original type.
  • Contributors: Robert Haschke

1.10.3 (2015-06-16)

  • deprecate --oldorder processing
  • added --check-order option to do a simple check for --inorder compatibility
    • Most probable incompatibility is redefining a property after its usage.
    • tested and reported with file location of (first) redefinition after usage.
  • moved command line processing to cli.py
  • explain verbosity levels in usage string
  • colorize errors during cli parsing
  • log definition and usage of properties
  • replaced debug option by verbosity options -q, -v
  • fixed evaluation time of default macro params
  • introduced Macro object to increase code readability
  • parse a macro's parameter list once at declaration time (instead of every instantiation)
  • extended test_multiple_blocks() to check for both normal and reversed order
  • added unittest to increase code coverage
  • do not issue deprecation warning for <include> tags that are non-xacro
  • added option --oldorder
  • allow to store properties to parent or global scope
  • added <xacro:attribute>
  • cleaned up error message about missing files
  • moved xml-specific functions to xmlutils.py new generic functions opt_attrs(), reqd_attrs(), and check_attrs() to fetch optional and required attributes and warn about unknown ones in a uniform fashion
  • unittest to allow empty <arg> defaults
  • Merge pull request #94 from ubi-agni/minor-fixes
  • minor fixes
  • remove duplicates in --deps output
  • fixed dependency checking for --inorder mode (which requires full processing)
  • fixed doc of xacro' cmake macros
  • renamed "xacro:rename" to "xacro:element"
  • allow namespacing for xacro:include's
  • allow renaming of element names using xacro:rename
  • unittest cleanup
  • check property and macro names to be valid python identifiers
  • allow namespacing of xacro:include's
  • properties and macros in an included file will go into their own, separate namespace, if the XML attribute [ns]{.title-ref} is provided. Access is by standard python syntax: namespace.name
  • allow renaming of element names <xacro:rename xacro:name="<new element name>"/>
  • moved unittests requiring --inorder processing to class TestXacroInorder
  • added unittest test_dynamic_macro_undefined()
  • improved error message when variable include filename is used without --inorder
  • stripped down unittest test_inorder_processing()
  • improved processing
  • adapted pr2 gold standard removing most comments again this partially reverts 59605fb1521583dc63efdea13f4c45128499bd20
  • remove all XML comments directly before xacro elements (These are considered xacro-related only and should be removed in the final doc.) Leaving an empty line between xacro-unrelated and xacro-related comments allows to include the former.
  • unittest: test_ignore_xacro_comments()
  • improved processing
    • recursive (instead of iterative) eval_all()
    • reusable process_include()
    • replace_node() function to replace xacro tag by some other content
    • avoid reprocessing of nodes
    • avoid deep copy where possible (speedup)
  • fix evaluation (#83)
  • yaml support
  • check for consistency of xml namespaces on xacro:include
  • replaced strip()=='' by more efficient isspace()
  • allow transitive definition of substition args
  • fixed evaluation of literals in property definitions
    • literals with preceding whitespace will be silently stripped (#83)
    • more complex evaluation test (perturbing spaces added)
  • fixed xacro namespaces in pr2 files to get rid of new inconsistency warning
  • warning message on inconsistent namespace redefinition for includes
  • yaml support ${load_yaml('file.yaml')} to load dict from yaml file
  • Merge pull request #85 from ubi-agni/error-reporting improved error reporting
  • nicer formatting of multiple "when evaluating expression" lines
  • improved formatting of error messages use XacroException to wrap and augment other exceptions to achieve a clearer error formatting
  • better error message for missing substitution args
  • use colorized warnings where possible
  • included macro stack in error-reporting
  • maintain filestack to facilitate error reporting at any time
  • Merge pull request #82 from ubi-agni/unittests improved unittesting
  • allow to capture (and check) stderr in unit tests
  • improved unittests to test both, classic and in-order processing
  • Merge pull request #81 from ubi-agni/jade-devel Thank you for your time and contributions. Improving cosmetics is important.
  • PEP8 cleanup
  • cmake: only copy files to devel space if new
  • Merge pull request #80 from ubi-agni/jade-devel
  • improved error-handling opening the output file - running multiple xacro process in parallel, all writing into a new dir could cause a race condition when creating the dir
    • improved error message on output creation failure
  • removed rospy dependency
    • Importing rospy caused build order issues with ros_comm in workspace
  • Filtering out REMAP command-line arguments is done manually now.
  • update authors/maintainers and copyright statements
  • deprecate non-namespaced xacro tags
  • added missing print_location_msg() for file that actually failed parsing
  • improved deprecation warnings
  • New cli option [--xacro-ns]{.title-ref} allows to enforce the new policy requiring the xacro namespace prefix (and suppressing deprecation warnings). However, non-prefixed tags will not be modified by xacro anymore (as requested by #41, #59, #60). Partially reverted cb73cfd8c678adfda2172accef398189ea2338a1, handling <arg> tags in the same fashion as other tags, i.e. issue a warning if used without prefix and ignoring it with cli argument [--xacro-ns]{.title-ref}.
  • fixed pr2 xacro files to use 'xacro:' prefixed tags only
  • fixed unittests in test_xacro.py to use 'xacro:' prefixed tags only
  • deprecation message for missing xacro namespace prefix in xml tags
  • moved colored warning messages into color.py (for reuseability)
  • added missing print_location_msg() for file that actually failed parsing
  • improved xacro's cmake macros
  • prepend ${PACKAGE_NAME} to all generated cmake targets Otherwise multiple packages employing xacro's cmake macros will use the same conflicting target name. This is only an issue with catkin_make, which defines a single global cmake namespace. The new catkin tools (or catkin_make_isolated) build each package separately.
  • basic unittest for xacro's cmake macros
  • improved xacro's cmake macros - xacro_add_xacro_file() automatically determines output file from input (removing .xacro suffix). If that fails, a fatal error is raised.
    • added xacro_install() to allow installation into both, devel and install space.
    • replaced conveniency function xacro_add_files()
  • Contributors: Robert Haschke

1.10.2 (2015-05-23)

  • added --debug option to explicitly enable stack traces By default, only show error message to the user. Stack traces are only interesting for xacro developers.
  • recursive include processing
    • more informed error messages (which file was included from where)

    - allows relative path names for include filename specs they are interpreted relative to the current file

  • new substitution command $(cwd) to extract current working directory
  • added unittest cases
    • creation of required subdirs for output
    • recursive xacro:include
    • extended test_include_glob() to check for all glob patterns
  • added run_xacro() function to simplify unittests running xacro script
  • moved xacro.py back to original location
  • nicely colored deprecation warning
  • create required dirs before opening output file
  • added convenience cmake-macro xacro_add_target() to auto-generate xacro-processed files
  • added cmake status message before launching xacro (xacro might run for quite a while)
  • fetch xacro --deps errors at report them as a warning
  • simplified deprecation message
  • added missing return statement
  • removed obsolete math import left over from deaaae2c69edd7d5e185eeb098c1521d8711608b
  • install xacro.py again (for backwards compatibility) usage of xacro.py issues a deprecation warning
  • simplified scripts/xacro - removed xacro.py
    • made run script "scripts/xacro" and install process follow standards
    • removed xacro.py

    - added dependencies to setup.py Having the binaries xacro and xacro.py installed side by side causes problems, because xacro.py is wrongly taken as the module. This was avoided by the rather complex filtering of the sys.path. Switched to ROS standard now, using a binary script called "xacro".

  • changed tests to use the whole xacro processing pipeline utilizing the modularization of main() from previous commit This simplifies several existing tests, especially these using files on disk.
  • split main() into process_cli_arg(), parse(), process_doc()
  • extended cmake macro xacro_add_xacro_file()
    • handle INORDER option
    • handle REMAP arguments

    - create absolute input file names automatically usage: xacro_add_xacro_file(input output INORDER REMAP ...)

  • stripped new unit tests to essential xml snippets
  • merged pull request #68: eval properties assigned from <arg> tags as literals In the following example: <xacro:arg name="val" default="0.5"/> <xacro:property name="val" value="$(arg val)"/> ${val} was not evaluated as a number, but as string only. Thus numerical expressions failed with an exception.
  • factored out get_boolean_value()
  • <xacro:arg> needs to be fully specified
  • (handling <arg> tags (without xacro ns-prefix) disabled native <arg> tags) add test for eating launch parameter arguments remove check for "arg" parameter. move new test function to bottom of source
  • added unit tests for evaluation of list, tuple, and dict literals
  • fixed some code style issues
  • fixed string-isinstance checks (for python 3 compatibility)
  • do not evaluate list, dict, tuple expressions as literals (without ${} syntax)
  • added dict to list of known global symbols
  • focused global_symbols definition in the beginning of the file added some basic python symbols: list, str, float, int and map allowing some basic computation
  • tuning performance: instantiate QuickLexer's regexps only once
  • Contributors: Robert Haschke, Martin Pecka, Mike O'Driscoll, Morgan Quigley

1.10.1 (2015-04-01)

  • improved error handling and more descriptive error messages
  • correctly raise a XacroException on invalid, i.e. non-boolean, <xacro:if> expressions. (removed left-over debugging code, added test case)
  • raise an exception on undefined, but used macros Using the syntax <xacro:macroname/> should raise an exception if macroname is not defined. Added appropriate code and a test case.
  • fixed bookkeeping in lazy evaluation switch Table.unevaluated from list to set to avoid multiple key entries
  • fix formatting of changelog
  • Contributors: Robert Haschke

1.10.0 (2015-03-13)

  • security measure: forbid access to __builtins__ in expressions
  • literal evaluation should only consider literals, but no expressions use ast.literal_eval()
  • removed eval() from xacro:if evaluation
  • back to string comparison to handle (lowercase) true and false
  • add test case for equality expressions in <xacro:if>
  • add test case for math function usage
  • python based evaluation of expressions
    • replaced handle_expr with python-internal eval() call
    • care has been taken to resolve variables recursively on demand (in Table.__getitem__)
    • allows for evaluation of standard math functions
    • other desired functions could be added in eval_self_contained
    • Values in Table symbols are not stored as strings but as typed values.
  • If text is required, a conversion with str() is performed, to ensure proper evaluation of expressions. Otherwise 3*"1" would evaluate to "111".
  • use __future__.division we can handle integer division evaluating to floating-point devision, as before
  • allow variable names for filename attribute in <xacro:include>
  • allow for ordered XML processing to avoid issues with multiply defined properties and macros in (typically 3rd party) include files
    • enable the new behaviour by passing --inorder cmdline option
    • to improve code readibility and reusability, introduced functions
  • process_include(node), grab_macro(elt, macros), grab_property(elt, symbols) containing 1:1 corresponding handling from process_includes, grab_macros, and grab_properties
    • added corresponding test case test_inorder_processing()
  • dynamic macro names using <xacro:call macro=""/>
  • fixup unittests and handling of non-element nodes in <include>, <if>, <macro>
  • updated pr2 gold standard to include all comments
  • allow to ignore comments in nodes_match()
  • New handling of non-element nodes invalidates pr2 gold standard (adding a lot more comments). To allow validation, allow to ignore all comments in comparison (as before).
  • fixed handling of non-element nodes in <include>, <if>, <macro>
  • fixed writexml: text nodes were not printed when other siblings exist
    • print all text, but skip whitespace-only text nodes
  • improved xml matching
    • so far only element nodes (with its attributes) were considered
    • now also consider TEXT, CDATA, and COMMENT nodes
    • added function text_matches (normalizing consecutive whitespace to a single space)
    • added some new unit tests

    - test_consider_non_elements: non-element nodes are not yet considered in <if> and <macro>

  • travis-ci: use catkin_make
  • travis-ci: fixup running of tests
  • fix pathnames used in test case
  • Include CATKIN_ENV params at build time.
  • use output filename flag instead of shell redirection
  • create output file after parsing is complete, not before
  • Contributors: Robert Haschke, Mike O'Driscoll, Morgan Quigley, William Woodall

1.9.3 (2015-01-14)

  • merge test cases
  • add a snapshot of the pr2 model to the test directory. add a test case which verifies that the pr2 model is parsed equal to a 'golden' parse of it.
  • add more tests
  • add default arg tests
  • Allow default values for substitution args
  • Fix up comments
  • Allow xacro macros to have default parameters
  • Contributors: Paul Bovbel, Morgan Quigley

1.9.2 (2014-07-11)

  • add a few more tests to exercise the symbol table a bit more
  • allow for recursive evaluation of properties in expressions
  • add useful debugging information when parameters are not set
  • stop test from failing the second time it is run
  • unified if/unless handling, correctly handle floating point expressions
  • floating point expressions not equal zero are now evaluated as True
  • changed quotes to omit cmake warning
  • Contributors: Robert Haschke, Mike Ferguson

1.9.1 (2014-06-21)

  • fixup tests so they run
  • export architecture_independent flag in package.xml
  • installed relocatable fix
  • Contributors: Michael Ferguson, Mike Purvis, Scott K Logan

1.9.0 (2014-03-28)

  • Remove the roslint_python glob, use the default one.
  • Add roslint target to xacro; two whitespace fixes so that it passes.
  • fix evaluation of integers in if statements also added a unit test, fixes #15
  • fix setting of _xacro_py CMake var, fixes #16
  • Add support for globbing multiple files in a single <xacro:include>
  • code cleanup and python3 support
  • check for CATKIN_ENABLE_TESTING

1.8.4 (2013-08-06)

  • Merge pull request #9 from davetcoleman/hydro-devel Xacro should not use plain 'include' tags but only namespaced ones.
  • Fix for the fact that minidom creates text nodes which count as child nodes
  • Removed <uri> checking and made it more general for any child element of an <include> tag
  • Removed Groovy reference, only being applied to Hydro
  • Created check for Gazebo's <uri> tabs only only shows deprecated warnings if not present.
  • Small spelling fix
  • Xacro should not use plain 'include' tags but only namespaced ones.
  • Merge pull request #8 from piyushk/hydro-devel-conditional xacro conditional blocks
  • using refined arguments instead of sys.argv for xml file location
  • adding conditional blocks to xacro

1.8.3 (2013-04-22)

  • bumped version to 1.8.3 for hydro release
  • backwards compatilibity with rosbuild
  • adding unit test for substitution args
  • Adding supoprt for substitution_args 'arg' fields
  • Remove bin copy of xacro.py
  • 1.7.3
  • Install xacro.py as a program so it can be run
  • 1.7.2
  • fixed build issues introduced in catkinization
  • 1.7.1
  • PEP8, cleanup, and remove roslib
  • Update copyright, self import guard, and catkinize
  • Catkinize.
  • Cleanup in preparation of catkinization.
  • Added tag unstable for changeset 169c4bf30367
  • Added tag xacro-1.6.1 for changeset fc45af7fdada
  • 1.6.1 marker
  • xacro: fuerte compat with sub args import
  • Added tag unstable for changeset 2d3c8dbfa3c9
  • Added tag xacro-1.6.0 for changeset e4a4455189bf
  • 1.6.0
  • converted to unary stack from common stack
  • xacro: fixed inserting property blocks (ros-pkg #4561)
  • xacro now uses XacroExceptions. String exceptions are not allowed in Python anymore. #4209
  • Added Ubuntu platform tags to manifest
  • Xacro now places comments below <?xml> tag (#3859)
  • Xacro prints out cleaner xml. Elements are now often separated by a newline.
  • xacro dependency on roslaunch removed #3451
  • Xacro now adds a message mentioning that the file was autogenerated (#2775)
  • Remove use of deprecated rosbuild macros
  • Integers stay integers in xacro, fixing #3287
  • Tests for r25868
  • Added a flag for only evaluating include tags in xacro
  • Allowing multiple blocks and multiple insert_blocks, fixing #3322 and #3323
  • doc review completed for xacro
  • adding mainpage for xacro doc review
  • Added xacro.cmake file that exports new xacro_add_xacro_file() macro, #3020
  • Namespaced "include" tag in xacro
  • Marked xacro as api reviewed
  • Xacro now correctly declares the namespaces of the included documents in the final
  • Made xacro accept xml namespaces
  • Xacro now errors hard when a property is used without being declared
  • Xacro no longer allows you to create properties with "${}" in the name
  • Added the ability to escape "${" in xacro
  • Made the tests in xacro run again.
  • Created xacro/src
  • migration part 1

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged xacro at Robotics Stack Exchange

xacro package from xacro repo

xacro

Package Summary

Tags No category tags.
Version 1.12.2
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/xacro.git
VCS Type git
VCS Version lunar-devel
Last Updated 2018-05-03
Dev Status MAINTAINED
CI status Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Xacro (XML Macros) Xacro is an XML macro language. With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions.

Additional Links

Maintainers

  • Robert Haschke
  • Morgan Quigley

Authors

  • Stuart Glaser
  • William Woodall
  • Robert Haschke
README
No README found. No README in repository either.
CHANGELOG

Changelog for package xacro

1.12.2 (2018-05-03)

  • fix parsing of quoted strings in default args for xacro params (#187)
  • fix xacro-cmake test
  • Contributors: Robert Haschke

1.12.1 (2018-03-28)

  • #183: unicode support for python2 and python3
  • #178: extend list of allowed python builtins: min, max, round
  • #182: suppress xacro warnings when determining dependencies
  • #151: fixes for #149 and #148
  • #157: fix #156 access to undefined target_table
  • #150: allow True/False literals in python expressions
  • #159: load ROS-related packages on demand, thus becoming more independent from ROS
  • #173: allow default values for properties
  • #172: fix formatting of XacroException
  • #171: fix dependency handling (--deps option)
  • #163: full python 3 compatibility
  • Contributors: Robert Haschke, Kartik Mohta, Morgan Quigley, Steven Peters

1.12.0 (2017-03-25)

1.11.2 (2017-02-27)

  • Convert exception to string in a python2/3 compatible way.
  • Use python2/3 independent check for file type.
  • Contributors: Hans Gaiser, Maarten de Vries

1.11.1 (2016-06-22)

  • workaround for xml.dom.minidom issue
  • ensure non-empty error string
  • Contributors: Robert Haschke

1.11.0 (2016-03-25)

  • added short option -i as alternative to --inorder
  • refactored main to fix #122, #107
  • added xacro indicator to error message to fix #123
  • moved banner generation to process_file()
  • removed special (but obsolete) output handling for just_includes mode
  • moved core processing pipeline into function process_file()
  • improved documentation: more comments, input_file -> input_file_name
  • fix #120: handle non-space whitespace characters in params string
  • extended tests to handle non-space whitespace characters in params string
  • always store macros with xacro: prefix in front: #118
  • fix #115: enforce xacro namespace usage with --xacro-ns option
  • apply correct checking for include tags, and extend testcase
  • allow (one-level) nested expression/extension evaluation
  • Contributors: Robert Haschke, Morgan Quigley

1.10.6 (2015-09-01)

  • use correct catkin environment for cmake dependency checking
  • fixed dependency definition for cmake usage
  • Contributors: Robert Haschke

1.10.5 (2015-08-12)

  • fix #108: evaluate property blocks recursively too
  • improved macro parameter parsing
  • use a regular expression to parse a param spec with forwarding and default
  • allow for spaces in default string (within single quotes)
  • forwarding macro arguments from outer scope
  • switched to [\^|]{.title-ref} syntax
  • use more compact [$|]{.title-ref} syntax
  • moved parsing of argument defaults to grab_macro()
  • explicit forwarding of properties to macro scope
  • replace silent/implicit forwarding of properties from outer scope to macro scope by an explicit "call" to a [forward(<name>[,<default>])]{.title-ref} function.
  • implicit forwarding of outer-scope properties to macro args (#100)
  • property evaluation fixes
  • suppress double evaluation of properties
  • adapted unittest to cover the fixed issue
  • fixed evaluation order for properties exported to parent or global scope
  • Merge pull request #103 from ubi-agni/overwrite-check issue warning when attempting to overwrite existing global property
  • fixed unittest: avoid overwrite warning
  • warn when overwriting any globally defined variable
  • Merge pull request #102 from ubi-agni/completion bash completion
  • Merge pull request #99 from ubi-agni/jade-devel reworked macro resolution
  • moved test_macro_name_with_colon() to class TestXacro should be tested both, in oldorder and inorder mode
  • bash completion
  • improved error message for failed $(find)
  • reworked macro resolution python-eval-based macro resolution (introduced to enable namespaces) heavily restricted the set of possible macro names (only valid python identifiers were allowed) Particularly, xacro: prefixed macro names were forbidden.
  • initial attempt to fix #97
  • add failing test case with colon in the macro name
  • Contributors: Robert Haschke

1.10.4 (2015-06-18)

  • removed test_DEPRECATED_should_replace_before_macroexpand() duplicates test_should_replace_before_macroexpand()
  • fixed evaluation order of macro arguments and body Macro arguments need to be evaluated and assigned to properties before body is evaluated. Otherwise, the evaluated value will be converted to str, i.e. loosing original type.
  • Contributors: Robert Haschke

1.10.3 (2015-06-16)

  • deprecate --oldorder processing
  • added --check-order option to do a simple check for --inorder compatibility
    • Most probable incompatibility is redefining a property after its usage.
    • tested and reported with file location of (first) redefinition after usage.
  • moved command line processing to cli.py
  • explain verbosity levels in usage string
  • colorize errors during cli parsing
  • log definition and usage of properties
  • replaced debug option by verbosity options -q, -v
  • fixed evaluation time of default macro params
  • introduced Macro object to increase code readability
  • parse a macro's parameter list once at declaration time (instead of every instantiation)
  • extended test_multiple_blocks() to check for both normal and reversed order
  • added unittest to increase code coverage
  • do not issue deprecation warning for <include> tags that are non-xacro
  • added option --oldorder
  • allow to store properties to parent or global scope
  • added <xacro:attribute>
  • cleaned up error message about missing files
  • moved xml-specific functions to xmlutils.py new generic functions opt_attrs(), reqd_attrs(), and check_attrs() to fetch optional and required attributes and warn about unknown ones in a uniform fashion
  • unittest to allow empty <arg> defaults
  • Merge pull request #94 from ubi-agni/minor-fixes
  • minor fixes
  • remove duplicates in --deps output
  • fixed dependency checking for --inorder mode (which requires full processing)
  • fixed doc of xacro' cmake macros
  • renamed "xacro:rename" to "xacro:element"
  • allow namespacing for xacro:include's
  • allow renaming of element names using xacro:rename
  • unittest cleanup
  • check property and macro names to be valid python identifiers
  • allow namespacing of xacro:include's
  • properties and macros in an included file will go into their own, separate namespace, if the XML attribute [ns]{.title-ref} is provided. Access is by standard python syntax: namespace.name
  • allow renaming of element names <xacro:rename xacro:name="<new element name>"/>
  • moved unittests requiring --inorder processing to class TestXacroInorder
  • added unittest test_dynamic_macro_undefined()
  • improved error message when variable include filename is used without --inorder
  • stripped down unittest test_inorder_processing()
  • improved processing
  • adapted pr2 gold standard removing most comments again this partially reverts 59605fb1521583dc63efdea13f4c45128499bd20
  • remove all XML comments directly before xacro elements (These are considered xacro-related only and should be removed in the final doc.) Leaving an empty line between xacro-unrelated and xacro-related comments allows to include the former.
  • unittest: test_ignore_xacro_comments()
  • improved processing
    • recursive (instead of iterative) eval_all()
    • reusable process_include()
    • replace_node() function to replace xacro tag by some other content
    • avoid reprocessing of nodes
    • avoid deep copy where possible (speedup)
  • fix evaluation (#83)
  • yaml support
  • check for consistency of xml namespaces on xacro:include
  • replaced strip()=='' by more efficient isspace()
  • allow transitive definition of substition args
  • fixed evaluation of literals in property definitions
    • literals with preceding whitespace will be silently stripped (#83)
    • more complex evaluation test (perturbing spaces added)
  • fixed xacro namespaces in pr2 files to get rid of new inconsistency warning
  • warning message on inconsistent namespace redefinition for includes
  • yaml support ${load_yaml('file.yaml')} to load dict from yaml file
  • Merge pull request #85 from ubi-agni/error-reporting improved error reporting
  • nicer formatting of multiple "when evaluating expression" lines
  • improved formatting of error messages use XacroException to wrap and augment other exceptions to achieve a clearer error formatting
  • better error message for missing substitution args
  • use colorized warnings where possible
  • included macro stack in error-reporting
  • maintain filestack to facilitate error reporting at any time
  • Merge pull request #82 from ubi-agni/unittests improved unittesting
  • allow to capture (and check) stderr in unit tests
  • improved unittests to test both, classic and in-order processing
  • Merge pull request #81 from ubi-agni/jade-devel Thank you for your time and contributions. Improving cosmetics is important.
  • PEP8 cleanup
  • cmake: only copy files to devel space if new
  • Merge pull request #80 from ubi-agni/jade-devel
  • improved error-handling opening the output file - running multiple xacro process in parallel, all writing into a new dir could cause a race condition when creating the dir
    • improved error message on output creation failure
  • removed rospy dependency
    • Importing rospy caused build order issues with ros_comm in workspace
  • Filtering out REMAP command-line arguments is done manually now.
  • update authors/maintainers and copyright statements
  • deprecate non-namespaced xacro tags
  • added missing print_location_msg() for file that actually failed parsing
  • improved deprecation warnings
  • New cli option [--xacro-ns]{.title-ref} allows to enforce the new policy requiring the xacro namespace prefix (and suppressing deprecation warnings). However, non-prefixed tags will not be modified by xacro anymore (as requested by #41, #59, #60). Partially reverted cb73cfd8c678adfda2172accef398189ea2338a1, handling <arg> tags in the same fashion as other tags, i.e. issue a warning if used without prefix and ignoring it with cli argument [--xacro-ns]{.title-ref}.
  • fixed pr2 xacro files to use 'xacro:' prefixed tags only
  • fixed unittests in test_xacro.py to use 'xacro:' prefixed tags only
  • deprecation message for missing xacro namespace prefix in xml tags
  • moved colored warning messages into color.py (for reuseability)
  • added missing print_location_msg() for file that actually failed parsing
  • improved xacro's cmake macros
  • prepend ${PACKAGE_NAME} to all generated cmake targets Otherwise multiple packages employing xacro's cmake macros will use the same conflicting target name. This is only an issue with catkin_make, which defines a single global cmake namespace. The new catkin tools (or catkin_make_isolated) build each package separately.
  • basic unittest for xacro's cmake macros
  • improved xacro's cmake macros - xacro_add_xacro_file() automatically determines output file from input (removing .xacro suffix). If that fails, a fatal error is raised.
    • added xacro_install() to allow installation into both, devel and install space.
    • replaced conveniency function xacro_add_files()
  • Contributors: Robert Haschke

1.10.2 (2015-05-23)

  • added --debug option to explicitly enable stack traces By default, only show error message to the user. Stack traces are only interesting for xacro developers.
  • recursive include processing
    • more informed error messages (which file was included from where)

    - allows relative path names for include filename specs they are interpreted relative to the current file

  • new substitution command $(cwd) to extract current working directory
  • added unittest cases
    • creation of required subdirs for output
    • recursive xacro:include
    • extended test_include_glob() to check for all glob patterns
  • added run_xacro() function to simplify unittests running xacro script
  • moved xacro.py back to original location
  • nicely colored deprecation warning
  • create required dirs before opening output file
  • added convenience cmake-macro xacro_add_target() to auto-generate xacro-processed files
  • added cmake status message before launching xacro (xacro might run for quite a while)
  • fetch xacro --deps errors at report them as a warning
  • simplified deprecation message
  • added missing return statement
  • removed obsolete math import left over from deaaae2c69edd7d5e185eeb098c1521d8711608b
  • install xacro.py again (for backwards compatibility) usage of xacro.py issues a deprecation warning
  • simplified scripts/xacro - removed xacro.py
    • made run script "scripts/xacro" and install process follow standards
    • removed xacro.py

    - added dependencies to setup.py Having the binaries xacro and xacro.py installed side by side causes problems, because xacro.py is wrongly taken as the module. This was avoided by the rather complex filtering of the sys.path. Switched to ROS standard now, using a binary script called "xacro".

  • changed tests to use the whole xacro processing pipeline utilizing the modularization of main() from previous commit This simplifies several existing tests, especially these using files on disk.
  • split main() into process_cli_arg(), parse(), process_doc()
  • extended cmake macro xacro_add_xacro_file()
    • handle INORDER option
    • handle REMAP arguments

    - create absolute input file names automatically usage: xacro_add_xacro_file(input output INORDER REMAP ...)

  • stripped new unit tests to essential xml snippets
  • merged pull request #68: eval properties assigned from <arg> tags as literals In the following example: <xacro:arg name="val" default="0.5"/> <xacro:property name="val" value="$(arg val)"/> ${val} was not evaluated as a number, but as string only. Thus numerical expressions failed with an exception.
  • factored out get_boolean_value()
  • <xacro:arg> needs to be fully specified
  • (handling <arg> tags (without xacro ns-prefix) disabled native <arg> tags) add test for eating launch parameter arguments remove check for "arg" parameter. move new test function to bottom of source
  • added unit tests for evaluation of list, tuple, and dict literals
  • fixed some code style issues
  • fixed string-isinstance checks (for python 3 compatibility)
  • do not evaluate list, dict, tuple expressions as literals (without ${} syntax)
  • added dict to list of known global symbols
  • focused global_symbols definition in the beginning of the file added some basic python symbols: list, str, float, int and map allowing some basic computation
  • tuning performance: instantiate QuickLexer's regexps only once
  • Contributors: Robert Haschke, Martin Pecka, Mike O'Driscoll, Morgan Quigley

1.10.1 (2015-04-01)

  • improved error handling and more descriptive error messages
  • correctly raise a XacroException on invalid, i.e. non-boolean, <xacro:if> expressions. (removed left-over debugging code, added test case)
  • raise an exception on undefined, but used macros Using the syntax <xacro:macroname/> should raise an exception if macroname is not defined. Added appropriate code and a test case.
  • fixed bookkeeping in lazy evaluation switch Table.unevaluated from list to set to avoid multiple key entries
  • fix formatting of changelog
  • Contributors: Robert Haschke

1.10.0 (2015-03-13)

  • security measure: forbid access to __builtins__ in expressions
  • literal evaluation should only consider literals, but no expressions use ast.literal_eval()
  • removed eval() from xacro:if evaluation
  • back to string comparison to handle (lowercase) true and false
  • add test case for equality expressions in <xacro:if>
  • add test case for math function usage
  • python based evaluation of expressions
    • replaced handle_expr with python-internal eval() call
    • care has been taken to resolve variables recursively on demand (in Table.__getitem__)
    • allows for evaluation of standard math functions
    • other desired functions could be added in eval_self_contained
    • Values in Table symbols are not stored as strings but as typed values.
  • If text is required, a conversion with str() is performed, to ensure proper evaluation of expressions. Otherwise 3*"1" would evaluate to "111".
  • use __future__.division we can handle integer division evaluating to floating-point devision, as before
  • allow variable names for filename attribute in <xacro:include>
  • allow for ordered XML processing to avoid issues with multiply defined properties and macros in (typically 3rd party) include files
    • enable the new behaviour by passing --inorder cmdline option
    • to improve code readibility and reusability, introduced functions
  • process_include(node), grab_macro(elt, macros), grab_property(elt, symbols) containing 1:1 corresponding handling from process_includes, grab_macros, and grab_properties
    • added corresponding test case test_inorder_processing()
  • dynamic macro names using <xacro:call macro=""/>
  • fixup unittests and handling of non-element nodes in <include>, <if>, <macro>
  • updated pr2 gold standard to include all comments
  • allow to ignore comments in nodes_match()
  • New handling of non-element nodes invalidates pr2 gold standard (adding a lot more comments). To allow validation, allow to ignore all comments in comparison (as before).
  • fixed handling of non-element nodes in <include>, <if>, <macro>
  • fixed writexml: text nodes were not printed when other siblings exist
    • print all text, but skip whitespace-only text nodes
  • improved xml matching
    • so far only element nodes (with its attributes) were considered
    • now also consider TEXT, CDATA, and COMMENT nodes
    • added function text_matches (normalizing consecutive whitespace to a single space)
    • added some new unit tests

    - test_consider_non_elements: non-element nodes are not yet considered in <if> and <macro>

  • travis-ci: use catkin_make
  • travis-ci: fixup running of tests
  • fix pathnames used in test case
  • Include CATKIN_ENV params at build time.
  • use output filename flag instead of shell redirection
  • create output file after parsing is complete, not before
  • Contributors: Robert Haschke, Mike O'Driscoll, Morgan Quigley, William Woodall

1.9.3 (2015-01-14)

  • merge test cases
  • add a snapshot of the pr2 model to the test directory. add a test case which verifies that the pr2 model is parsed equal to a 'golden' parse of it.
  • add more tests
  • add default arg tests
  • Allow default values for substitution args
  • Fix up comments
  • Allow xacro macros to have default parameters
  • Contributors: Paul Bovbel, Morgan Quigley

1.9.2 (2014-07-11)

  • add a few more tests to exercise the symbol table a bit more
  • allow for recursive evaluation of properties in expressions
  • add useful debugging information when parameters are not set
  • stop test from failing the second time it is run
  • unified if/unless handling, correctly handle floating point expressions
  • floating point expressions not equal zero are now evaluated as True
  • changed quotes to omit cmake warning
  • Contributors: Robert Haschke, Mike Ferguson

1.9.1 (2014-06-21)

  • fixup tests so they run
  • export architecture_independent flag in package.xml
  • installed relocatable fix
  • Contributors: Michael Ferguson, Mike Purvis, Scott K Logan

1.9.0 (2014-03-28)

  • Remove the roslint_python glob, use the default one.
  • Add roslint target to xacro; two whitespace fixes so that it passes.
  • fix evaluation of integers in if statements also added a unit test, fixes #15
  • fix setting of _xacro_py CMake var, fixes #16
  • Add support for globbing multiple files in a single <xacro:include>
  • code cleanup and python3 support
  • check for CATKIN_ENABLE_TESTING

1.8.4 (2013-08-06)

  • Merge pull request #9 from davetcoleman/hydro-devel Xacro should not use plain 'include' tags but only namespaced ones.
  • Fix for the fact that minidom creates text nodes which count as child nodes
  • Removed <uri> checking and made it more general for any child element of an <include> tag
  • Removed Groovy reference, only being applied to Hydro
  • Created check for Gazebo's <uri> tabs only only shows deprecated warnings if not present.
  • Small spelling fix
  • Xacro should not use plain 'include' tags but only namespaced ones.
  • Merge pull request #8 from piyushk/hydro-devel-conditional xacro conditional blocks
  • using refined arguments instead of sys.argv for xml file location
  • adding conditional blocks to xacro

1.8.3 (2013-04-22)

  • bumped version to 1.8.3 for hydro release
  • backwards compatilibity with rosbuild
  • adding unit test for substitution args
  • Adding supoprt for substitution_args 'arg' fields
  • Remove bin copy of xacro.py
  • 1.7.3
  • Install xacro.py as a program so it can be run
  • 1.7.2
  • fixed build issues introduced in catkinization
  • 1.7.1
  • PEP8, cleanup, and remove roslib
  • Update copyright, self import guard, and catkinize
  • Catkinize.
  • Cleanup in preparation of catkinization.
  • Added tag unstable for changeset 169c4bf30367
  • Added tag xacro-1.6.1 for changeset fc45af7fdada
  • 1.6.1 marker
  • xacro: fuerte compat with sub args import
  • Added tag unstable for changeset 2d3c8dbfa3c9
  • Added tag xacro-1.6.0 for changeset e4a4455189bf
  • 1.6.0
  • converted to unary stack from common stack
  • xacro: fixed inserting property blocks (ros-pkg #4561)
  • xacro now uses XacroExceptions. String exceptions are not allowed in Python anymore. #4209
  • Added Ubuntu platform tags to manifest
  • Xacro now places comments below <?xml> tag (#3859)
  • Xacro prints out cleaner xml. Elements are now often separated by a newline.
  • xacro dependency on roslaunch removed #3451
  • Xacro now adds a message mentioning that the file was autogenerated (#2775)
  • Remove use of deprecated rosbuild macros
  • Integers stay integers in xacro, fixing #3287
  • Tests for r25868
  • Added a flag for only evaluating include tags in xacro
  • Allowing multiple blocks and multiple insert_blocks, fixing #3322 and #3323
  • doc review completed for xacro
  • adding mainpage for xacro doc review
  • Added xacro.cmake file that exports new xacro_add_xacro_file() macro, #3020
  • Namespaced "include" tag in xacro
  • Marked xacro as api reviewed
  • Xacro now correctly declares the namespaces of the included documents in the final
  • Made xacro accept xml namespaces
  • Xacro now errors hard when a property is used without being declared
  • Xacro no longer allows you to create properties with "${}" in the name
  • Added the ability to escape "${" in xacro
  • Made the tests in xacro run again.
  • Created xacro/src
  • migration part 1

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged xacro at Robotics Stack Exchange

xacro package from xacro repo

xacro

Package Summary

Tags No category tags.
Version 1.10.7
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/xacro.git
VCS Type git
VCS Version jade-devel
Last Updated 2016-06-22
Dev Status MAINTAINED
CI status Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Xacro (XML Macros) Xacro is an XML macro language. With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions.

Additional Links

Maintainers

  • Morgan Quigley

Authors

  • Stuart Glaser
  • William Woodall
  • Robert Haschke
README
No README found. No README in repository either.
CHANGELOG

Changelog for package xacro

1.10.7 (2016-06-22)

  • workaround for xml.dom.minidom issue
  • ensure non-empty error string
  • added short option -i as alternative to --inorder
  • refactored main(), fix #122
  • added xacro indicator to error message, fix #123
  • moved banner generation to process_file()
  • removed special (but obsolete) output handling for just_includes mode
  • fixed unrelated typo
  • moved core processing pipeline into function process_file()
  • improved documentation: added more comments,input_file -> input_file_name
  • fix #120: handle non-space whitespace characters in params string
  • extended tests to handle non-space whitespace characters in params string
  • always store macros with xacro: prefix in front for #118
  • fix #115: enforce xacro namespace usage with --xacro-ns option
  • apply correct checking for include tags too
  • extended the testcase to include
  • allow (one-level) nested expression/extension evaluation
  • Contributors: Robert Haschke, Morgan Quigley

1.10.6 (2015-09-01)

  • use correct catkin environment for cmake dependency checking
  • fixed dependency definition for cmake usage
  • Contributors: Robert Haschke

1.10.5 (2015-08-12)

  • fix #108: evaluate property blocks recursively too
  • improved macro parameter parsing
  • use a regular expression to parse a param spec with forwarding and default
  • allow for spaces in default string (within single quotes)
  • forwarding macro arguments from outer scope
  • switched to [\^|]{.title-ref} syntax
  • use more compact [$|]{.title-ref} syntax
  • moved parsing of argument defaults to grab_macro()
  • explicit forwarding of properties to macro scope
  • replace silent/implicit forwarding of properties from outer scope to macro scope by an explicit "call" to a [forward(<name>[,<default>])]{.title-ref} function.
  • implicit forwarding of outer-scope properties to macro args (#100)
  • property evaluation fixes
  • suppress double evaluation of properties
  • adapted unittest to cover the fixed issue
  • fixed evaluation order for properties exported to parent or global scope
  • Merge pull request #103 from ubi-agni/overwrite-check issue warning when attempting to overwrite existing global property
  • fixed unittest: avoid overwrite warning
  • warn when overwriting any globally defined variable
  • Merge pull request #102 from ubi-agni/completion bash completion
  • Merge pull request #99 from ubi-agni/jade-devel reworked macro resolution
  • moved test_macro_name_with_colon() to class TestXacro should be tested both, in oldorder and inorder mode
  • bash completion
  • improved error message for failed $(find)
  • reworked macro resolution python-eval-based macro resolution (introduced to enable namespaces) heavily restricted the set of possible macro names (only valid python identifiers were allowed) Particularly, xacro: prefixed macro names were forbidden.
  • initial attempt to fix #97
  • add failing test case with colon in the macro name
  • Contributors: Robert Haschke

1.10.4 (2015-06-18)

  • removed test_DEPRECATED_should_replace_before_macroexpand() duplicates test_should_replace_before_macroexpand()
  • fixed evaluation order of macro arguments and body Macro arguments need to be evaluated and assigned to properties before body is evaluated. Otherwise, the evaluated value will be converted to str, i.e. loosing original type.
  • Contributors: Robert Haschke

1.10.3 (2015-06-16)

  • deprecate --oldorder processing
  • added --check-order option to do a simple check for --inorder compatibility
    • Most probable incompatibility is redefining a property after its usage.
    • tested and reported with file location of (first) redefinition after usage.
  • moved command line processing to cli.py
  • explain verbosity levels in usage string
  • colorize errors during cli parsing
  • log definition and usage of properties
  • replaced debug option by verbosity options -q, -v
  • fixed evaluation time of default macro params
  • introduced Macro object to increase code readability
  • parse a macro's parameter list once at declaration time (instead of every instantiation)
  • extended test_multiple_blocks() to check for both normal and reversed order
  • added unittest to increase code coverage
  • do not issue deprecation warning for <include> tags that are non-xacro
  • added option --oldorder
  • allow to store properties to parent or global scope
  • added <xacro:attribute>
  • cleaned up error message about missing files
  • moved xml-specific functions to xmlutils.py new generic functions opt_attrs(), reqd_attrs(), and check_attrs() to fetch optional and required attributes and warn about unknown ones in a uniform fashion
  • unittest to allow empty <arg> defaults
  • Merge pull request #94 from ubi-agni/minor-fixes
  • minor fixes
  • remove duplicates in --deps output
  • fixed dependency checking for --inorder mode (which requires full processing)
  • fixed doc of xacro' cmake macros
  • renamed "xacro:rename" to "xacro:element"
  • allow namespacing for xacro:include's
  • allow renaming of element names using xacro:rename
  • unittest cleanup
  • check property and macro names to be valid python identifiers
  • allow namespacing of xacro:include's
  • properties and macros in an included file will go into their own, separate namespace, if the XML attribute [ns]{.title-ref} is provided. Access is by standard python syntax: namespace.name
  • allow renaming of element names <xacro:rename xacro:name="<new element name>"/>
  • moved unittests requiring --inorder processing to class TestXacroInorder
  • added unittest test_dynamic_macro_undefined()
  • improved error message when variable include filename is used without --inorder
  • stripped down unittest test_inorder_processing()
  • improved processing
  • adapted pr2 gold standard removing most comments again this partially reverts 59605fb1521583dc63efdea13f4c45128499bd20
  • remove all XML comments directly before xacro elements (These are considered xacro-related only and should be removed in the final doc.) Leaving an empty line between xacro-unrelated and xacro-related comments allows to include the former.
  • unittest: test_ignore_xacro_comments()
  • improved processing
    • recursive (instead of iterative) eval_all()
    • reusable process_include()
    • replace_node() function to replace xacro tag by some other content
    • avoid reprocessing of nodes
    • avoid deep copy where possible (speedup)
  • fix evaluation (#83)
  • yaml support
  • check for consistency of xml namespaces on xacro:include
  • replaced strip()=='' by more efficient isspace()
  • allow transitive definition of substition args
  • fixed evaluation of literals in property definitions
    • literals with preceding whitespace will be silently stripped (#83)
    • more complex evaluation test (perturbing spaces added)
  • fixed xacro namespaces in pr2 files to get rid of new inconsistency warning
  • warning message on inconsistent namespace redefinition for includes
  • yaml support ${load_yaml('file.yaml')} to load dict from yaml file
  • Merge pull request #85 from ubi-agni/error-reporting improved error reporting
  • nicer formatting of multiple "when evaluating expression" lines
  • improved formatting of error messages use XacroException to wrap and augment other exceptions to achieve a clearer error formatting
  • better error message for missing substitution args
  • use colorized warnings where possible
  • included macro stack in error-reporting
  • maintain filestack to facilitate error reporting at any time
  • Merge pull request #82 from ubi-agni/unittests improved unittesting
  • allow to capture (and check) stderr in unit tests
  • improved unittests to test both, classic and in-order processing
  • Merge pull request #81 from ubi-agni/jade-devel Thank you for your time and contributions. Improving cosmetics is important.
  • PEP8 cleanup
  • cmake: only copy files to devel space if new
  • Merge pull request #80 from ubi-agni/jade-devel
  • improved error-handling opening the output file - running multiple xacro process in parallel, all writing into a new dir could cause a race condition when creating the dir
    • improved error message on output creation failure
  • removed rospy dependency
    • Importing rospy caused build order issues with ros_comm in workspace
  • Filtering out REMAP command-line arguments is done manually now.
  • update authors/maintainers and copyright statements
  • deprecate non-namespaced xacro tags
  • added missing print_location_msg() for file that actually failed parsing
  • improved deprecation warnings
  • New cli option [--xacro-ns]{.title-ref} allows to enforce the new policy requiring the xacro namespace prefix (and suppressing deprecation warnings). However, non-prefixed tags will not be modified by xacro anymore (as requested by #41, #59, #60). Partially reverted cb73cfd8c678adfda2172accef398189ea2338a1, handling <arg> tags in the same fashion as other tags, i.e. issue a warning if used without prefix and ignoring it with cli argument [--xacro-ns]{.title-ref}.
  • fixed pr2 xacro files to use 'xacro:' prefixed tags only
  • fixed unittests in test_xacro.py to use 'xacro:' prefixed tags only
  • deprecation message for missing xacro namespace prefix in xml tags
  • moved colored warning messages into color.py (for reuseability)
  • added missing print_location_msg() for file that actually failed parsing
  • improved xacro's cmake macros
  • prepend ${PACKAGE_NAME} to all generated cmake targets Otherwise multiple packages employing xacro's cmake macros will use the same conflicting target name. This is only an issue with catkin_make, which defines a single global cmake namespace. The new catkin tools (or catkin_make_isolated) build each package separately.
  • basic unittest for xacro's cmake macros
  • improved xacro's cmake macros - xacro_add_xacro_file() automatically determines output file from input (removing .xacro suffix). If that fails, a fatal error is raised.
    • added xacro_install() to allow installation into both, devel and install space.
    • replaced conveniency function xacro_add_files()
  • Contributors: Robert Haschke

1.10.2 (2015-05-23)

  • added --debug option to explicitly enable stack traces By default, only show error message to the user. Stack traces are only interesting for xacro developers.
  • recursive include processing
    • more informed error messages (which file was included from where)

    - allows relative path names for include filename specs they are interpreted relative to the current file

  • new substitution command $(cwd) to extract current working directory
  • added unittest cases
    • creation of required subdirs for output
    • recursive xacro:include
    • extended test_include_glob() to check for all glob patterns
  • added run_xacro() function to simplify unittests running xacro script
  • moved xacro.py back to original location
  • nicely colored deprecation warning
  • create required dirs before opening output file
  • added convenience cmake-macro xacro_add_target() to auto-generate xacro-processed files
  • added cmake status message before launching xacro (xacro might run for quite a while)
  • fetch xacro --deps errors at report them as a warning
  • simplified deprecation message
  • added missing return statement
  • removed obsolete math import left over from deaaae2c69edd7d5e185eeb098c1521d8711608b
  • install xacro.py again (for backwards compatibility) usage of xacro.py issues a deprecation warning
  • simplified scripts/xacro - removed xacro.py
    • made run script "scripts/xacro" and install process follow standards
    • removed xacro.py

    - added dependencies to setup.py Having the binaries xacro and xacro.py installed side by side causes problems, because xacro.py is wrongly taken as the module. This was avoided by the rather complex filtering of the sys.path. Switched to ROS standard now, using a binary script called "xacro".

  • changed tests to use the whole xacro processing pipeline utilizing the modularization of main() from previous commit This simplifies several existing tests, especially these using files on disk.
  • split main() into process_cli_arg(), parse(), process_doc()
  • extended cmake macro xacro_add_xacro_file()
    • handle INORDER option
    • handle REMAP arguments

    - create absolute input file names automatically usage: xacro_add_xacro_file(input output INORDER REMAP ...)

  • stripped new unit tests to essential xml snippets
  • merged pull request #68: eval properties assigned from <arg> tags as literals In the following example: <xacro:arg name="val" default="0.5"/> <xacro:property name="val" value="$(arg val)"/> ${val} was not evaluated as a number, but as string only. Thus numerical expressions failed with an exception.
  • factored out get_boolean_value()
  • <xacro:arg> needs to be fully specified
  • (handling <arg> tags (without xacro ns-prefix) disabled native <arg> tags) add test for eating launch parameter arguments remove check for "arg" parameter. move new test function to bottom of source
  • added unit tests for evaluation of list, tuple, and dict literals
  • fixed some code style issues
  • fixed string-isinstance checks (for python 3 compatibility)
  • do not evaluate list, dict, tuple expressions as literals (without ${} syntax)
  • added dict to list of known global symbols
  • focused global_symbols definition in the beginning of the file added some basic python symbols: list, str, float, int and map allowing some basic computation
  • tuning performance: instantiate QuickLexer's regexps only once
  • Contributors: Robert Haschke, Martin Pecka, Mike O'Driscoll, Morgan Quigley

1.10.1 (2015-04-01)

  • improved error handling and more descriptive error messages
  • correctly raise a XacroException on invalid, i.e. non-boolean, <xacro:if> expressions. (removed left-over debugging code, added test case)
  • raise an exception on undefined, but used macros Using the syntax <xacro:macroname/> should raise an exception if macroname is not defined. Added appropriate code and a test case.
  • fixed bookkeeping in lazy evaluation switch Table.unevaluated from list to set to avoid multiple key entries
  • fix formatting of changelog
  • Contributors: Robert Haschke

1.10.0 (2015-03-13)

  • security measure: forbid access to __builtins__ in expressions
  • literal evaluation should only consider literals, but no expressions use ast.literal_eval()
  • removed eval() from xacro:if evaluation
  • back to string comparison to handle (lowercase) true and false
  • add test case for equality expressions in <xacro:if>
  • add test case for math function usage
  • python based evaluation of expressions
    • replaced handle_expr with python-internal eval() call
    • care has been taken to resolve variables recursively on demand (in Table.__getitem__)
    • allows for evaluation of standard math functions
    • other desired functions could be added in eval_self_contained
    • Values in Table symbols are not stored as strings but as typed values.
  • If text is required, a conversion with str() is performed, to ensure proper evaluation of expressions. Otherwise 3*"1" would evaluate to "111".
  • use __future__.division we can handle integer division evaluating to floating-point devision, as before
  • allow variable names for filename attribute in <xacro:include>
  • allow for ordered XML processing to avoid issues with multiply defined properties and macros in (typically 3rd party) include files
    • enable the new behaviour by passing --inorder cmdline option
    • to improve code readibility and reusability, introduced functions
  • process_include(node), grab_macro(elt, macros), grab_property(elt, symbols) containing 1:1 corresponding handling from process_includes, grab_macros, and grab_properties
    • added corresponding test case test_inorder_processing()
  • dynamic macro names using <xacro:call macro=""/>
  • fixup unittests and handling of non-element nodes in <include>, <if>, <macro>
  • updated pr2 gold standard to include all comments
  • allow to ignore comments in nodes_match()
  • New handling of non-element nodes invalidates pr2 gold standard (adding a lot more comments). To allow validation, allow to ignore all comments in comparison (as before).
  • fixed handling of non-element nodes in <include>, <if>, <macro>
  • fixed writexml: text nodes were not printed when other siblings exist
    • print all text, but skip whitespace-only text nodes
  • improved xml matching
    • so far only element nodes (with its attributes) were considered
    • now also consider TEXT, CDATA, and COMMENT nodes
    • added function text_matches (normalizing consecutive whitespace to a single space)
    • added some new unit tests

    - test_consider_non_elements: non-element nodes are not yet considered in <if> and <macro>

  • travis-ci: use catkin_make
  • travis-ci: fixup running of tests
  • fix pathnames used in test case
  • Include CATKIN_ENV params at build time.
  • use output filename flag instead of shell redirection
  • create output file after parsing is complete, not before
  • Contributors: Robert Haschke, Mike O'Driscoll, Morgan Quigley, William Woodall

1.9.3 (2015-01-14)

  • merge test cases
  • add a snapshot of the pr2 model to the test directory. add a test case which verifies that the pr2 model is parsed equal to a 'golden' parse of it.
  • add more tests
  • add default arg tests
  • Allow default values for substitution args
  • Fix up comments
  • Allow xacro macros to have default parameters
  • Contributors: Paul Bovbel, Morgan Quigley

1.9.2 (2014-07-11)

  • add a few more tests to exercise the symbol table a bit more
  • allow for recursive evaluation of properties in expressions
  • add useful debugging information when parameters are not set
  • stop test from failing the second time it is run
  • unified if/unless handling, correctly handle floating point expressions
  • floating point expressions not equal zero are now evaluated as True
  • changed quotes to omit cmake warning
  • Contributors: Robert Haschke, Mike Ferguson

1.9.1 (2014-06-21)

  • fixup tests so they run
  • export architecture_independent flag in package.xml
  • installed relocatable fix
  • Contributors: Michael Ferguson, Mike Purvis, Scott K Logan

1.9.0 (2014-03-28)

  • Remove the roslint_python glob, use the default one.
  • Add roslint target to xacro; two whitespace fixes so that it passes.
  • fix evaluation of integers in if statements also added a unit test, fixes #15
  • fix setting of _xacro_py CMake var, fixes #16
  • Add support for globbing multiple files in a single <xacro:include>
  • code cleanup and python3 support
  • check for CATKIN_ENABLE_TESTING

1.8.4 (2013-08-06)

  • Merge pull request #9 from davetcoleman/hydro-devel Xacro should not use plain 'include' tags but only namespaced ones.
  • Fix for the fact that minidom creates text nodes which count as child nodes
  • Removed <uri> checking and made it more general for any child element of an <include> tag
  • Removed Groovy reference, only being applied to Hydro
  • Created check for Gazebo's <uri> tabs only only shows deprecated warnings if not present.
  • Small spelling fix
  • Xacro should not use plain 'include' tags but only namespaced ones.
  • Merge pull request #8 from piyushk/hydro-devel-conditional xacro conditional blocks
  • using refined arguments instead of sys.argv for xml file location
  • adding conditional blocks to xacro

1.8.3 (2013-04-22)

  • bumped version to 1.8.3 for hydro release
  • backwards compatilibity with rosbuild
  • adding unit test for substitution args
  • Adding supoprt for substitution_args 'arg' fields
  • Remove bin copy of xacro.py
  • 1.7.3
  • Install xacro.py as a program so it can be run
  • 1.7.2
  • fixed build issues introduced in catkinization
  • 1.7.1
  • PEP8, cleanup, and remove roslib
  • Update copyright, self import guard, and catkinize
  • Catkinize.
  • Cleanup in preparation of catkinization.
  • Added tag unstable for changeset 169c4bf30367
  • Added tag xacro-1.6.1 for changeset fc45af7fdada
  • 1.6.1 marker
  • xacro: fuerte compat with sub args import
  • Added tag unstable for changeset 2d3c8dbfa3c9
  • Added tag xacro-1.6.0 for changeset e4a4455189bf
  • 1.6.0
  • converted to unary stack from common stack
  • xacro: fixed inserting property blocks (ros-pkg #4561)
  • xacro now uses XacroExceptions. String exceptions are not allowed in Python anymore. #4209
  • Added Ubuntu platform tags to manifest
  • Xacro now places comments below <?xml> tag (#3859)
  • Xacro prints out cleaner xml. Elements are now often separated by a newline.
  • xacro dependency on roslaunch removed #3451
  • Xacro now adds a message mentioning that the file was autogenerated (#2775)
  • Remove use of deprecated rosbuild macros
  • Integers stay integers in xacro, fixing #3287
  • Tests for r25868
  • Added a flag for only evaluating include tags in xacro
  • Allowing multiple blocks and multiple insert_blocks, fixing #3322 and #3323
  • doc review completed for xacro
  • adding mainpage for xacro doc review
  • Added xacro.cmake file that exports new xacro_add_xacro_file() macro, #3020
  • Namespaced "include" tag in xacro
  • Marked xacro as api reviewed
  • Xacro now correctly declares the namespaces of the included documents in the final
  • Made xacro accept xml namespaces
  • Xacro now errors hard when a property is used without being declared
  • Xacro no longer allows you to create properties with "${}" in the name
  • Added the ability to escape "${" in xacro
  • Made the tests in xacro run again.
  • Created xacro/src
  • migration part 1

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Name Deps
fanuc_cr35ia_support
fanuc_cr7ia_moveit_config
fanuc_cr7ia_support
fanuc_cr7ial_moveit_config
fanuc_lrmate200i_moveit_config
fanuc_lrmate200i_support
fanuc_lrmate200ib3l_moveit_config
fanuc_lrmate200ib_moveit_config
fanuc_lrmate200ib_support
fanuc_lrmate200ic5h_moveit_config
fanuc_lrmate200ic5l_moveit_config
fanuc_lrmate200ic_moveit_config
fanuc_lrmate200ic_support
fanuc_m10ia_moveit_config
fanuc_m10ia_support
fanuc_m16ib20_moveit_config
fanuc_m16ib_support
fanuc_m20ia10l_moveit_config
fanuc_m20ia_moveit_config
fanuc_m20ia_support
fanuc_m20ib25_moveit_config
fanuc_m20ib_support
fanuc_m430ia2f_moveit_config
fanuc_m430ia2p_moveit_config
fanuc_m430ia_support
fanuc_m6ib6s_moveit_config
fanuc_m6ib_moveit_config
fanuc_m6ib_support
fanuc_m710ic_support
fanuc_m900ia_support
fanuc_m900ib_support
fanuc_r1000ia80f_moveit_config
fanuc_r1000ia_support
fanuc_lrmate200id7l_moveit_config
fanuc_lrmate200id_moveit_config
fanuc_lrmate200id_support
fanuc_r2000ib_support
fanuc_r2000ic_support
fetch_gazebo
fetch_description
fetch_moveit_config
hector_components_description
hector_sensors_description
hector_xacro_tools
jsk_data
jsk_pcl_ros
robot
moveit_setup_assistant
moveit_resources_dual_panda_moveit_config
moveit_resources_fanuc_moveit_config
moveit_resources_panda_description
moveit_resources_panda_moveit_config
moveit_resources_prbt_moveit_config
moveit_resources_prbt_pg70_support
moveit_resources_prbt_support
openni_description
pointgrey_camera_description
pr2_description
robot_upstart
diff_drive_controller
gripper_action_controller
joint_trajectory_controller
sick_ldmrs_description
trac_ik_examples
uwsim
uos_common_urdf
urdf_tutorial
velodyne_description
bebop_description
ca_description
dynpick_driver
grizzly_description
katana_arm_gazebo
nao_moveit_config
nao_description
pepper_moveit_config
pepper_description
romeo_moveit_config
romeo_description
rsv_balance_description
schunk_canopen_driver
schunk_svh_driver
aubo_i5_moveit_config
tetris_gazebo
rail_ceiling
rail_collada_models

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged xacro at Robotics Stack Exchange

xacro package from xacro repo

xacro

Package Summary

Tags No category tags.
Version 1.9.5
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/xacro.git
VCS Type git
VCS Version indigo-devel
Last Updated 2017-09-15
Dev Status MAINTAINED
CI status Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Xacro (XML Macros) Xacro is an XML macro language. With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions.

Additional Links

Maintainers

  • Morgan Quigley

Authors

  • Stuart Glaser
  • William Woodall
README
No README found. No README in repository either.
CHANGELOG

Changelog for package xacro

1.9.5 (2015-11-09)

  • optionally include latest improvements in xacro-jade into xacro-indigo
  • Contributors: Morgan Quigley

1.9.4 (2015-04-01)

  • Using xacro for launch files with <arg> tags would cause the <args> tags to get eaten. Removed "arg" and only look for "xacro:arg".
  • Add test for eating launch parameter arguments
  • updated pr2 gold standard to include all comments
  • allow to ignore comments in nodes_match()
  • fixed handling of non-element nodes in <include>, <if>, <macro>
  • fixed writexml: text nodes were not printed when other siblings exist
  • improved xml matching, add some new unit tests
  • travis-ci: fixup running of tests
  • fix pathnames used in test case
  • Include CATKIN_ENV params at build time.
  • use output filename flag instead of shell redirection
  • create output file only if parsing is successful
  • Contributors: Mike O'Driscoll, Morgan Quigley, Robert Haschke, William Woodall

1.9.3 (2015-01-14)

  • merge test cases
  • add a snapshot of the pr2 model to the test directory. add a test case which verifies that the pr2 model is parsed equal to a 'golden' parse of it.
  • add more tests
  • add default arg tests
  • Allow default values for substitution args
  • Fix up comments
  • Allow xacro macros to have default parameters
  • Contributors: Paul Bovbel, Morgan Quigley

1.9.2 (2014-07-11)

  • add a few more tests to exercise the symbol table a bit more
  • allow for recursive evaluation of properties in expressions
  • add useful debugging information when parameters are not set
  • stop test from failing the second time it is run
  • unified if/unless handling, correctly handle floating point expressions
  • floating point expressions not equal zero are now evaluated as True
  • changed quotes to omit cmake warning
  • Contributors: Robert Haschke, Mike Ferguson

1.9.1 (2014-06-21)

  • fixup tests so they run
  • export architecture_independent flag in package.xml
  • installed relocatable fix
  • Contributors: Michael Ferguson, Mike Purvis, Scott K Logan

1.9.0 (2014-03-28)

  • Remove the roslint_python glob, use the default one.
  • Add roslint target to xacro; two whitespace fixes so that it passes.
  • fix evaluation of integers in if statements also added a unit test, fixes #15
  • fix setting of _xacro_py CMake var, fixes #16
  • Add support for globbing multiple files in a single <xacro:include>
  • code cleanup and python3 support
  • check for CATKIN_ENABLE_TESTING

1.8.4 (2013-08-06)

  • Merge pull request #9 from davetcoleman/hydro-devel Xacro should not use plain 'include' tags but only namespaced ones.
  • Fix for the fact that minidom creates text nodes which count as child nodes
  • Removed <uri> checking and made it more general for any child element of an <include> tag
  • Removed Groovy reference, only being applied to Hydro
  • Created check for Gazebo's <uri> tabs only only shows deprecated warnings if not present.
  • Small spelling fix
  • Xacro should not use plain 'include' tags but only namespaced ones.
  • Merge pull request #8 from piyushk/hydro-devel-conditional xacro conditional blocks
  • using refined arguments instead of sys.argv for xml file location
  • adding conditional blocks to xacro

1.8.3 (2013-04-22)

  • bumped version to 1.8.3 for hydro release
  • backwards compatilibity with rosbuild
  • adding unit test for substitution args
  • Adding supoprt for substitution_args 'arg' fields
  • Remove bin copy of xacro.py
  • 1.7.3
  • Install xacro.py as a program so it can be run
  • 1.7.2
  • fixed build issues introduced in catkinization
  • 1.7.1
  • PEP8, cleanup, and remove roslib
  • Update copyright, self import guard, and catkinize
  • Catkinize.
  • Cleanup in preparation of catkinization.
  • Added tag unstable for changeset 169c4bf30367
  • Added tag xacro-1.6.1 for changeset fc45af7fdada
  • 1.6.1 marker
  • xacro: fuerte compat with sub args import
  • Added tag unstable for changeset 2d3c8dbfa3c9
  • Added tag xacro-1.6.0 for changeset e4a4455189bf
  • 1.6.0
  • converted to unary stack from common stack
  • xacro: fixed inserting property blocks (ros-pkg #4561)
  • xacro now uses XacroExceptions. String exceptions are not allowed in Python anymore. #4209
  • Added Ubuntu platform tags to manifest
  • Xacro now places comments below <?xml> tag (#3859)
  • Xacro prints out cleaner xml. Elements are now often separated by a newline.
  • xacro dependency on roslaunch removed #3451
  • Xacro now adds a message mentioning that the file was autogenerated (#2775)
  • Remove use of deprecated rosbuild macros
  • Integers stay integers in xacro, fixing #3287
  • Tests for r25868
  • Added a flag for only evaluating include tags in xacro
  • Allowing multiple blocks and multiple insert_blocks, fixing #3322 and #3323
  • doc review completed for xacro
  • adding mainpage for xacro doc review
  • Added xacro.cmake file that exports new xacro_add_xacro_file() macro, #3020
  • Namespaced "include" tag in xacro
  • Marked xacro as api reviewed
  • Xacro now correctly declares the namespaces of the included documents in the final
  • Made xacro accept xml namespaces
  • Xacro now errors hard when a property is used without being declared
  • Xacro no longer allows you to create properties with "${}" in the name
  • Added the ability to escape "${" in xacro
  • Made the tests in xacro run again.
  • Created xacro/src
  • migration part 1

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Name Deps
abb_irb2400_moveit_config
abb_irb6640_moveit_config
abb_irb6640_support
adi_driver
ati_force_torque
cob_calibration_data
cob_description
raw_description
cob_cartesian_controller
cob_obstacle_distance
cob_twist_controller
cob_grasp_generation
cob_hardware_config
cob_moveit_config
cob_gazebo_worlds
denso_robot_moveit_config
fanuc_cr35ia_support
fanuc_cr7ia_moveit_config
fanuc_cr7ia_support
fanuc_cr7ial_moveit_config
fanuc_lrmate200i_moveit_config
fanuc_lrmate200i_support
fanuc_lrmate200ib3l_moveit_config
fanuc_lrmate200ib_moveit_config
fanuc_lrmate200ib_support
fanuc_lrmate200ic5h_moveit_config
fanuc_lrmate200ic5l_moveit_config
fanuc_lrmate200ic_moveit_config
fanuc_lrmate200ic_support
fanuc_m10ia_moveit_config
fanuc_m10ia_support
fanuc_m16ib20_moveit_config
fanuc_m16ib_support
fanuc_m20ia10l_moveit_config
fanuc_m20ia_moveit_config
fanuc_m20ia_support
fanuc_m20ib25_moveit_config
fanuc_m20ib_support
fanuc_m430ia2f_moveit_config
fanuc_m430ia2p_moveit_config
fanuc_m430ia_support
fanuc_m6ib6s_moveit_config
fanuc_m6ib_moveit_config
fanuc_m6ib_support
fanuc_m710ic_support
fanuc_m900ia_support
fanuc_m900ib_support
fanuc_r1000ia80f_moveit_config
fanuc_r1000ia_support
fanuc_lrmate200id7l_moveit_config
fanuc_lrmate200id_moveit_config
fanuc_lrmate200id_support
fanuc_r2000ib_support
fanuc_r2000ic_support
fetch_gazebo
fetch_description
fetch_moveit_config
flir_ptu_description
hector_components_description
hector_sensors_description
hector_xacro_tools
heron_description
husky_description
husky_ur5_moveit_config
jackal_description
jackal_navigation
jsk_data
jsk_pcl_ros
kobuki_description
robot
tra1_description
tra1_moveit_config
mir_description
moveit_setup_assistant
moveit_resources_dual_panda_moveit_config
moveit_resources_fanuc_moveit_config
moveit_resources_panda_description
moveit_resources_panda_moveit_config
moveit_resources_prbt_moveit_config
moveit_resources_prbt_pg70_support
moveit_resources_prbt_support
mrp2_navigation
openni_description
pheeno_ros_description
pointgrey_camera_description
pr2_description
pr2_gazebo
rc_visard_description
ridgeback_description
ridgeback_navigation
robot_upstart
diff_drive_controller
gripper_action_controller
joint_trajectory_controller
rotors_gazebo
schunk_description
sick_ldmrs_description
sick_tim
sr_edc_launch
staubli_rx160_moveit_config
staubli_rx160_support
staubli_tx60_support
staubli_tx90_support
trac_ik_examples
uwsim
ur10_moveit_config
ur3_moveit_config
ur5_moveit_config
uos_common_urdf
urdf_tutorial
velodyne_description
warthog_description
xpp_hyq
xpp_quadrotor
abb_irb120_moveit_config
abb_irb120_support
abb_irb120t_moveit_config
abb_irb4400_support
bebop_description
ca_description
dynpick_driver
grizzly_description
innok_heros_description
katana_arm_gazebo
kuka_kr10_support
kuka_kr120_support
kuka_kr150_support
kuka_kr16_support
kuka_kr210_support
kuka_kr3_support
kuka_kr5_support
kuka_kr6_support
kuka_lbr_iiwa_support
motoman_sda10f_moveit_config
motoman_sia20d_moveit_config
motoman_mh_support
motoman_mpl80_moveit_config
motoman_mpl_support
motoman_sia5d_moveit_config
nao_moveit_config
nao_description
pepper_moveit_config
pepper_description
pheeno_ros_sim
rb1_base_description
rb1_base_kinova_j2n6a300_moveit_config
robotiq_c2_model_visualization
robotnik_sensors
roch_description
romeo_moveit_config
romeo_description
roomblock_description
schunk_canopen_driver
schunk_svh_driver
summit_x_description
summit_x_gazebo
summit_xl_description
summit_xl_gazebo
turtlebot_description
turtlebot_arm_description
turtlebot_arm_moveit_config
create_description
turtlebot_gazebo
baxter_examples
bwi_gazebo_entities
calvin_description
calvin_moveit_config
cyton_gamma_1500_description
panda_eus
kingfisher_description
kurt_description
maxwell_defs
maxwell_moveit_config
atlas_v3_moveit_config
hrpsys_gazebo_general
hrp2jsk_moveit_config
hrp2jsknt_moveit_config
hrp2jsknts_moveit_config
hrp2w_moveit_config
samplerobot_moveit_config
staro_moveit_config
segbot_bringup
segbot_description
sr_ronex_examples
youbot_gazebo_robot
youbot_gazebo_worlds
aubo_i5_moveit_config
carl_description
carl_moveit
cirkit_unit03_description
cirkit_unit03_gazebo
evarobot_description
tetris_gazebo
human_model_gazebo
stomp_test_kr210_moveit_config
innok_heros_gazebo
jaco_gazebo
dualarm_grasping
jsk_2015_05_baxter_apc
jsk_2016_01_baxter_apc
jsk_arc2017_baxter
phantomx_reactor_arm_description
phantomx_reactor_arm_moveit_config
rail_ceiling
rail_collada_models
rb1_jaco_3fg_moveit_config
rb1_mico_3fg_moveit_config
schunk_lwa4d
schunk_lwa4d_moveit_config
schunk_lwa4p
schunk_lwa4p_extended
schunk_pg70
schunk_pw70
spur_description
robotino_description
softhand_description
steer_drive_controller
Multicar_moveit_config
widowx_arm_description
widowx_arm_moveit
jaco_description
jaco_moveit_config
mico_description
mico_moveit_config
yumi_description
yumi_moveit_config

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged xacro at Robotics Stack Exchange

xacro package from xacro repo

xacro

Package Summary

Tags No category tags.
Version 1.8.6
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/xacro.git
VCS Type git
VCS Version hydro-devel
Last Updated 2014-06-22
Dev Status MAINTAINED
CI status Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Xacro (XML Macros) Xacro is an XML macro language. With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions.

Additional Links

Maintainers

  • William Woodall

Authors

  • Stuart Glaser
README
No README found. No README in repository either.
CHANGELOG

Changelog for package xacro

1.8.6 (2014-06-21)

  • fix tests file so they run properly
  • Contributors: Michael Ferguson

1.8.5 (2014-04-29)

  • Installed xacro relocatable fix.
  • Remove the roslint_python glob, use the default one.
  • Add roslint target to xacro; two whitespace fixes so that it passes.
  • fix evaluation of integers in if statements also added a unit test, fixes #15
  • fix setting of _xacro_py CMake var Fixes #16
  • Add support for globbing multiple files in a single <xacro:include>
  • code cleanup and python3 support
  • check for CATKIN_ENABLE_TESTING

1.8.4 (2013-08-06)

  • Merge pull request #9 from davetcoleman/hydro-devel Xacro should not use plain 'include' tags but only namespaced ones.
  • Fix for the fact that minidom creates text nodes which count as child nodes
  • Removed <uri> checking and made it more general for any child element of an <include> tag
  • Removed Groovy reference, only being applied to Hydro
  • Created check for Gazebo's <uri> tabs only only shows deprecated warnings if not present.
  • Small spelling fix
  • Xacro should not use plain 'include' tags but only namespaced ones.
  • using refined arguments instead of sys.argv for xml file location
  • adding conditional blocks to xacro

1.8.3 (2013-04-22)

  • bumped version to 1.8.3 for hydro release
  • backwards compatilibity with rosbuild
  • adding unit test for substitution args
  • Adding supoprt for substitution_args 'arg' fields
  • Remove bin copy of xacro.py
  • 1.7.3
  • Install xacro.py as a program so it can be run
  • 1.7.2
  • fixed build issues introduced in catkinization
  • 1.7.1
  • PEP8, cleanup, and remove roslib
  • Update copyright, self import guard, and catkinize
  • Catkinize.
  • Cleanup in preparation of catkinization.
  • Added tag unstable for changeset 169c4bf30367
  • Added tag xacro-1.6.1 for changeset fc45af7fdada
  • 1.6.1 marker
  • xacro: fuerte compat with sub args import
  • Added tag unstable for changeset 2d3c8dbfa3c9
  • Added tag xacro-1.6.0 for changeset e4a4455189bf
  • 1.6.0
  • converted to unary stack from common stack
  • xacro: fixed inserting property blocks (ros-pkg #4561)
  • xacro now uses XacroExceptions. String exceptions are not allowed in Python anymore. #4209
  • Added Ubuntu platform tags to manifest
  • Xacro now places comments below <?xml> tag (#3859)
  • Xacro prints out cleaner xml. Elements are now often separated by a newline.
  • xacro dependency on roslaunch removed #3451
  • Xacro now adds a message mentioning that the file was autogenerated (#2775)
  • Remove use of deprecated rosbuild macros
  • Integers stay integers in xacro, fixing #3287
  • Tests for r25868
  • Added a flag for only evaluating include tags in xacro
  • Allowing multiple blocks and multiple insert_blocks, fixing #3322 and #3323
  • doc review completed for xacro
  • adding mainpage for xacro doc review
  • Added xacro.cmake file that exports new xacro_add_xacro_file() macro, #3020
  • Namespaced "include" tag in xacro
  • Marked xacro as api reviewed
  • Xacro now correctly declares the namespaces of the included documents in the final
  • Made xacro accept xml namespaces
  • Xacro now errors hard when a property is used without being declared
  • Xacro no longer allows you to create properties with "${}" in the name
  • Added the ability to escape "${" in xacro
  • Made the tests in xacro run again.
  • Created xacro/src
  • migration part 1
  • Contributors: Aaron Blasdel, Brian Gerkey, Jon Binney, Jonathan Bohren, Ken Conley, Kevin Watts, Rob Wheeler, Stu Glaser, Tully Foote, William Woodall

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Name Deps
abb_common
abb_irb2400_moveit_config
abb_irb6640_moveit_config
irb_6640_moveit_config
cob_moveit_config
fanuc_lrmate200ic5h_moveit_config
fanuc_lrmate200ic5l_moveit_config
fanuc_lrmate200ic_moveit_config
fanuc_lrmate200ic_support
fanuc_m10ia_moveit_config
fanuc_m10ia_support
fanuc_m16ib20_moveit_config
fanuc_m16ib_support
fanuc_m20ia10l_moveit_config
fanuc_m20ia_moveit_config
fanuc_m20ia_support
fanuc_m430ia2f_moveit_config
fanuc_m430ia2p_moveit_config
fanuc_m430ia_support
fanuc_lrmate200ib_support
fanuc_lrmate200id_moveit_config
fanuc_lrmate200id_support
fanuc_m900ia_support
flir_ptu_description
hector_components_description
hector_sensors_description
hector_xacro_tools
jsk_data
jsk_pcl_ros
kobuki_description
robot
moveit_resources_dual_panda_moveit_config
moveit_resources_fanuc_moveit_config
moveit_resources_panda_description
moveit_resources_panda_moveit_config
moveit_resources_prbt_moveit_config
moveit_resources_prbt_pg70_support
moveit_resources_prbt_support
pointgrey_camera_description
pr2_description
pr2_gazebo
robot_upstart
diff_drive_controller
gripper_action_controller
joint_trajectory_controller
sr_edc_launch
staubli_rx160_moveit_config
staubli_rx160_support
ur10_moveit_config
ur5_moveit_config
uos_common_urdf
urdf_tutorial
dynpick_driver
grizzly_description
katana_arm_gazebo
motoman_sia20d_moveit_config
nao_moveit_config
nao_description
pepper_description
robotiq_c2_model_visualization
romeo_moveit_config
romeo_description
schunk_svh_driver
turtlebot_description
create_description
turtlebot_gazebo
baxter_examples
calvin_description
calvin_moveit_config
crom_moveit_config
cyton_gamma_1500_description
dynamixel_pro_arm_description
dynamixel_pro_arm_moveit_config
erratic_description
husky_description
husky_navigation
joint_state_publisher_js
panda_eus
kingfisher_description
kurt_description
maggie_description
moveit_setup_assistant
r2_fullbody_moveit_config
r2_moveit_config
r2_gazebo
pmb2_description
reemc_description
roomba_robin_description
roomba_robin_gazebo
hrpsys_gazebo_general
hrp2jsk_moveit_config
hrp2jsknt_moveit_config
hrp2jsknts_moveit_config
hrp2w_moveit_config
samplerobot_moveit_config
staro_moveit_config
b21_description
rmp_description
sr_description
sr_moveit_config
sr_ronex_examples
wheeled_robin_description
youbot_gazebo_robot
youbot_gazebo_worlds

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged xacro at Robotics Stack Exchange

xacro package from xacro repo

xacro

Package Summary

Tags No category tags.
Version 1.11.3
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/xacro.git
VCS Type git
VCS Version kinetic-devel
Last Updated 2018-03-28
Dev Status MAINTAINED
CI status Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Xacro (XML Macros) Xacro is an XML macro language. With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions.

Additional Links

Maintainers

  • Robert Haschke
  • Morgan Quigley

Authors

  • Stuart Glaser
  • William Woodall
  • Robert Haschke
README
No README found. No README in repository either.
CHANGELOG

Changelog for package xacro

1.11.3 (2018-03-28)

  • extend list of allowed python builtins: min, max, round
  • #173: allow default values for properties
  • #172: fix formatting of XacroException
  • #182: suppress xacro warnings when determining dependencies
  • #171: fix dependency handling (--deps option)
    • allow to specify extra dependencies for xacro_add_xacro_file(s)
    • consider yaml files loaded with load_yaml
  • fixes for #148 and #149
  • fix #156: avoid access to undefined variable target_table
  • fix #148: silently ignore extra attributes that are namespace specifiers
  • allow True/False literals in python expressions
  • Contributors: Robert Haschke, Morgan Quigley, Steven Peters

1.11.2 (2017-02-27)

  • Convert exception to string in a python2/3 compatible way.
  • Use python2/3 independent check for file type.
  • Contributors: Hans Gaiser, Maarten de Vries

1.11.1 (2016-06-22)

  • workaround for xml.dom.minidom issue
  • ensure non-empty error string
  • Contributors: Robert Haschke

1.11.0 (2016-03-25)

  • added short option -i as alternative to --inorder
  • refactored main to fix #122, #107
  • added xacro indicator to error message to fix #123
  • moved banner generation to process_file()
  • removed special (but obsolete) output handling for just_includes mode
  • moved core processing pipeline into function process_file()
  • improved documentation: more comments, input_file -> input_file_name
  • fix #120: handle non-space whitespace characters in params string
  • extended tests to handle non-space whitespace characters in params string
  • always store macros with xacro: prefix in front: #118
  • fix #115: enforce xacro namespace usage with --xacro-ns option
  • apply correct checking for include tags, and extend testcase
  • allow (one-level) nested expression/extension evaluation
  • Contributors: Robert Haschke, Morgan Quigley

1.10.6 (2015-09-01)

  • use correct catkin environment for cmake dependency checking
  • fixed dependency definition for cmake usage
  • Contributors: Robert Haschke

1.10.5 (2015-08-12)

  • fix #108: evaluate property blocks recursively too
  • improved macro parameter parsing
  • use a regular expression to parse a param spec with forwarding and default
  • allow for spaces in default string (within single quotes)
  • forwarding macro arguments from outer scope
  • switched to [\^|]{.title-ref} syntax
  • use more compact [$|]{.title-ref} syntax
  • moved parsing of argument defaults to grab_macro()
  • explicit forwarding of properties to macro scope
  • replace silent/implicit forwarding of properties from outer scope to macro scope by an explicit "call" to a [forward(<name>[,<default>])]{.title-ref} function.
  • implicit forwarding of outer-scope properties to macro args (#100)
  • property evaluation fixes
  • suppress double evaluation of properties
  • adapted unittest to cover the fixed issue
  • fixed evaluation order for properties exported to parent or global scope
  • Merge pull request #103 from ubi-agni/overwrite-check issue warning when attempting to overwrite existing global property
  • fixed unittest: avoid overwrite warning
  • warn when overwriting any globally defined variable
  • Merge pull request #102 from ubi-agni/completion bash completion
  • Merge pull request #99 from ubi-agni/jade-devel reworked macro resolution
  • moved test_macro_name_with_colon() to class TestXacro should be tested both, in oldorder and inorder mode
  • bash completion
  • improved error message for failed $(find)
  • reworked macro resolution python-eval-based macro resolution (introduced to enable namespaces) heavily restricted the set of possible macro names (only valid python identifiers were allowed) Particularly, xacro: prefixed macro names were forbidden.
  • initial attempt to fix #97
  • add failing test case with colon in the macro name
  • Contributors: Robert Haschke

1.10.4 (2015-06-18)

  • removed test_DEPRECATED_should_replace_before_macroexpand() duplicates test_should_replace_before_macroexpand()
  • fixed evaluation order of macro arguments and body Macro arguments need to be evaluated and assigned to properties before body is evaluated. Otherwise, the evaluated value will be converted to str, i.e. loosing original type.
  • Contributors: Robert Haschke

1.10.3 (2015-06-16)

  • deprecate --oldorder processing
  • added --check-order option to do a simple check for --inorder compatibility
    • Most probable incompatibility is redefining a property after its usage.
    • tested and reported with file location of (first) redefinition after usage.
  • moved command line processing to cli.py
  • explain verbosity levels in usage string
  • colorize errors during cli parsing
  • log definition and usage of properties
  • replaced debug option by verbosity options -q, -v
  • fixed evaluation time of default macro params
  • introduced Macro object to increase code readability
  • parse a macro's parameter list once at declaration time (instead of every instantiation)
  • extended test_multiple_blocks() to check for both normal and reversed order
  • added unittest to increase code coverage
  • do not issue deprecation warning for <include> tags that are non-xacro
  • added option --oldorder
  • allow to store properties to parent or global scope
  • added <xacro:attribute>
  • cleaned up error message about missing files
  • moved xml-specific functions to xmlutils.py new generic functions opt_attrs(), reqd_attrs(), and check_attrs() to fetch optional and required attributes and warn about unknown ones in a uniform fashion
  • unittest to allow empty <arg> defaults
  • Merge pull request #94 from ubi-agni/minor-fixes
  • minor fixes
  • remove duplicates in --deps output
  • fixed dependency checking for --inorder mode (which requires full processing)
  • fixed doc of xacro' cmake macros
  • renamed "xacro:rename" to "xacro:element"
  • allow namespacing for xacro:include's
  • allow renaming of element names using xacro:rename
  • unittest cleanup
  • check property and macro names to be valid python identifiers
  • allow namespacing of xacro:include's
  • properties and macros in an included file will go into their own, separate namespace, if the XML attribute [ns]{.title-ref} is provided. Access is by standard python syntax: namespace.name
  • allow renaming of element names <xacro:rename xacro:name="<new element name>"/>
  • moved unittests requiring --inorder processing to class TestXacroInorder
  • added unittest test_dynamic_macro_undefined()
  • improved error message when variable include filename is used without --inorder
  • stripped down unittest test_inorder_processing()
  • improved processing
  • adapted pr2 gold standard removing most comments again this partially reverts 59605fb1521583dc63efdea13f4c45128499bd20
  • remove all XML comments directly before xacro elements (These are considered xacro-related only and should be removed in the final doc.) Leaving an empty line between xacro-unrelated and xacro-related comments allows to include the former.
  • unittest: test_ignore_xacro_comments()
  • improved processing
    • recursive (instead of iterative) eval_all()
    • reusable process_include()
    • replace_node() function to replace xacro tag by some other content
    • avoid reprocessing of nodes
    • avoid deep copy where possible (speedup)
  • fix evaluation (#83)
  • yaml support
  • check for consistency of xml namespaces on xacro:include
  • replaced strip()=='' by more efficient isspace()
  • allow transitive definition of substition args
  • fixed evaluation of literals in property definitions
    • literals with preceding whitespace will be silently stripped (#83)
    • more complex evaluation test (perturbing spaces added)
  • fixed xacro namespaces in pr2 files to get rid of new inconsistency warning
  • warning message on inconsistent namespace redefinition for includes
  • yaml support ${load_yaml('file.yaml')} to load dict from yaml file
  • Merge pull request #85 from ubi-agni/error-reporting improved error reporting
  • nicer formatting of multiple "when evaluating expression" lines
  • improved formatting of error messages use XacroException to wrap and augment other exceptions to achieve a clearer error formatting
  • better error message for missing substitution args
  • use colorized warnings where possible
  • included macro stack in error-reporting
  • maintain filestack to facilitate error reporting at any time
  • Merge pull request #82 from ubi-agni/unittests improved unittesting
  • allow to capture (and check) stderr in unit tests
  • improved unittests to test both, classic and in-order processing
  • Merge pull request #81 from ubi-agni/jade-devel Thank you for your time and contributions. Improving cosmetics is important.
  • PEP8 cleanup
  • cmake: only copy files to devel space if new
  • Merge pull request #80 from ubi-agni/jade-devel
  • improved error-handling opening the output file - running multiple xacro process in parallel, all writing into a new dir could cause a race condition when creating the dir
    • improved error message on output creation failure
  • removed rospy dependency
    • Importing rospy caused build order issues with ros_comm in workspace
  • Filtering out REMAP command-line arguments is done manually now.
  • update authors/maintainers and copyright statements
  • deprecate non-namespaced xacro tags
  • added missing print_location_msg() for file that actually failed parsing
  • improved deprecation warnings
  • New cli option [--xacro-ns]{.title-ref} allows to enforce the new policy requiring the xacro namespace prefix (and suppressing deprecation warnings). However, non-prefixed tags will not be modified by xacro anymore (as requested by #41, #59, #60). Partially reverted cb73cfd8c678adfda2172accef398189ea2338a1, handling <arg> tags in the same fashion as other tags, i.e. issue a warning if used without prefix and ignoring it with cli argument [--xacro-ns]{.title-ref}.
  • fixed pr2 xacro files to use 'xacro:' prefixed tags only
  • fixed unittests in test_xacro.py to use 'xacro:' prefixed tags only
  • deprecation message for missing xacro namespace prefix in xml tags
  • moved colored warning messages into color.py (for reuseability)
  • added missing print_location_msg() for file that actually failed parsing
  • improved xacro's cmake macros
  • prepend ${PACKAGE_NAME} to all generated cmake targets Otherwise multiple packages employing xacro's cmake macros will use the same conflicting target name. This is only an issue with catkin_make, which defines a single global cmake namespace. The new catkin tools (or catkin_make_isolated) build each package separately.
  • basic unittest for xacro's cmake macros
  • improved xacro's cmake macros - xacro_add_xacro_file() automatically determines output file from input (removing .xacro suffix). If that fails, a fatal error is raised.
    • added xacro_install() to allow installation into both, devel and install space.
    • replaced conveniency function xacro_add_files()
  • Contributors: Robert Haschke

1.10.2 (2015-05-23)

  • added --debug option to explicitly enable stack traces By default, only show error message to the user. Stack traces are only interesting for xacro developers.
  • recursive include processing
    • more informed error messages (which file was included from where)

    - allows relative path names for include filename specs they are interpreted relative to the current file

  • new substitution command $(cwd) to extract current working directory
  • added unittest cases
    • creation of required subdirs for output
    • recursive xacro:include
    • extended test_include_glob() to check for all glob patterns
  • added run_xacro() function to simplify unittests running xacro script
  • moved xacro.py back to original location
  • nicely colored deprecation warning
  • create required dirs before opening output file
  • added convenience cmake-macro xacro_add_target() to auto-generate xacro-processed files
  • added cmake status message before launching xacro (xacro might run for quite a while)
  • fetch xacro --deps errors at report them as a warning
  • simplified deprecation message
  • added missing return statement
  • removed obsolete math import left over from deaaae2c69edd7d5e185eeb098c1521d8711608b
  • install xacro.py again (for backwards compatibility) usage of xacro.py issues a deprecation warning
  • simplified scripts/xacro - removed xacro.py
    • made run script "scripts/xacro" and install process follow standards
    • removed xacro.py

    - added dependencies to setup.py Having the binaries xacro and xacro.py installed side by side causes problems, because xacro.py is wrongly taken as the module. This was avoided by the rather complex filtering of the sys.path. Switched to ROS standard now, using a binary script called "xacro".

  • changed tests to use the whole xacro processing pipeline utilizing the modularization of main() from previous commit This simplifies several existing tests, especially these using files on disk.
  • split main() into process_cli_arg(), parse(), process_doc()
  • extended cmake macro xacro_add_xacro_file()
    • handle INORDER option
    • handle REMAP arguments

    - create absolute input file names automatically usage: xacro_add_xacro_file(input output INORDER REMAP ...)

  • stripped new unit tests to essential xml snippets
  • merged pull request #68: eval properties assigned from <arg> tags as literals In the following example: <xacro:arg name="val" default="0.5"/> <xacro:property name="val" value="$(arg val)"/> ${val} was not evaluated as a number, but as string only. Thus numerical expressions failed with an exception.
  • factored out get_boolean_value()
  • <xacro:arg> needs to be fully specified
  • (handling <arg> tags (without xacro ns-prefix) disabled native <arg> tags) add test for eating launch parameter arguments remove check for "arg" parameter. move new test function to bottom of source
  • added unit tests for evaluation of list, tuple, and dict literals
  • fixed some code style issues
  • fixed string-isinstance checks (for python 3 compatibility)
  • do not evaluate list, dict, tuple expressions as literals (without ${} syntax)
  • added dict to list of known global symbols
  • focused global_symbols definition in the beginning of the file added some basic python symbols: list, str, float, int and map allowing some basic computation
  • tuning performance: instantiate QuickLexer's regexps only once
  • Contributors: Robert Haschke, Martin Pecka, Mike O'Driscoll, Morgan Quigley

1.10.1 (2015-04-01)

  • improved error handling and more descriptive error messages
  • correctly raise a XacroException on invalid, i.e. non-boolean, <xacro:if> expressions. (removed left-over debugging code, added test case)
  • raise an exception on undefined, but used macros Using the syntax <xacro:macroname/> should raise an exception if macroname is not defined. Added appropriate code and a test case.
  • fixed bookkeeping in lazy evaluation switch Table.unevaluated from list to set to avoid multiple key entries
  • fix formatting of changelog
  • Contributors: Robert Haschke

1.10.0 (2015-03-13)

  • security measure: forbid access to __builtins__ in expressions
  • literal evaluation should only consider literals, but no expressions use ast.literal_eval()
  • removed eval() from xacro:if evaluation
  • back to string comparison to handle (lowercase) true and false
  • add test case for equality expressions in <xacro:if>
  • add test case for math function usage
  • python based evaluation of expressions
    • replaced handle_expr with python-internal eval() call
    • care has been taken to resolve variables recursively on demand (in Table.__getitem__)
    • allows for evaluation of standard math functions
    • other desired functions could be added in eval_self_contained
    • Values in Table symbols are not stored as strings but as typed values.
  • If text is required, a conversion with str() is performed, to ensure proper evaluation of expressions. Otherwise 3*"1" would evaluate to "111".
  • use __future__.division we can handle integer division evaluating to floating-point devision, as before
  • allow variable names for filename attribute in <xacro:include>
  • allow for ordered XML processing to avoid issues with multiply defined properties and macros in (typically 3rd party) include files
    • enable the new behaviour by passing --inorder cmdline option
    • to improve code readibility and reusability, introduced functions
  • process_include(node), grab_macro(elt, macros), grab_property(elt, symbols) containing 1:1 corresponding handling from process_includes, grab_macros, and grab_properties
    • added corresponding test case test_inorder_processing()
  • dynamic macro names using <xacro:call macro=""/>
  • fixup unittests and handling of non-element nodes in <include>, <if>, <macro>
  • updated pr2 gold standard to include all comments
  • allow to ignore comments in nodes_match()
  • New handling of non-element nodes invalidates pr2 gold standard (adding a lot more comments). To allow validation, allow to ignore all comments in comparison (as before).
  • fixed handling of non-element nodes in <include>, <if>, <macro>
  • fixed writexml: text nodes were not printed when other siblings exist
    • print all text, but skip whitespace-only text nodes
  • improved xml matching
    • so far only element nodes (with its attributes) were considered
    • now also consider TEXT, CDATA, and COMMENT nodes
    • added function text_matches (normalizing consecutive whitespace to a single space)
    • added some new unit tests

    - test_consider_non_elements: non-element nodes are not yet considered in <if> and <macro>

  • travis-ci: use catkin_make
  • travis-ci: fixup running of tests
  • fix pathnames used in test case
  • Include CATKIN_ENV params at build time.
  • use output filename flag instead of shell redirection
  • create output file after parsing is complete, not before
  • Contributors: Robert Haschke, Mike O'Driscoll, Morgan Quigley, William Woodall

1.9.3 (2015-01-14)

  • merge test cases
  • add a snapshot of the pr2 model to the test directory. add a test case which verifies that the pr2 model is parsed equal to a 'golden' parse of it.
  • add more tests
  • add default arg tests
  • Allow default values for substitution args
  • Fix up comments
  • Allow xacro macros to have default parameters
  • Contributors: Paul Bovbel, Morgan Quigley

1.9.2 (2014-07-11)

  • add a few more tests to exercise the symbol table a bit more
  • allow for recursive evaluation of properties in expressions
  • add useful debugging information when parameters are not set
  • stop test from failing the second time it is run
  • unified if/unless handling, correctly handle floating point expressions
  • floating point expressions not equal zero are now evaluated as True
  • changed quotes to omit cmake warning
  • Contributors: Robert Haschke, Mike Ferguson

1.9.1 (2014-06-21)

  • fixup tests so they run
  • export architecture_independent flag in package.xml
  • installed relocatable fix
  • Contributors: Michael Ferguson, Mike Purvis, Scott K Logan

1.9.0 (2014-03-28)

  • Remove the roslint_python glob, use the default one.
  • Add roslint target to xacro; two whitespace fixes so that it passes.
  • fix evaluation of integers in if statements also added a unit test, fixes #15
  • fix setting of _xacro_py CMake var, fixes #16
  • Add support for globbing multiple files in a single <xacro:include>
  • code cleanup and python3 support
  • check for CATKIN_ENABLE_TESTING

1.8.4 (2013-08-06)

  • Merge pull request #9 from davetcoleman/hydro-devel Xacro should not use plain 'include' tags but only namespaced ones.
  • Fix for the fact that minidom creates text nodes which count as child nodes
  • Removed <uri> checking and made it more general for any child element of an <include> tag
  • Removed Groovy reference, only being applied to Hydro
  • Created check for Gazebo's <uri> tabs only only shows deprecated warnings if not present.
  • Small spelling fix
  • Xacro should not use plain 'include' tags but only namespaced ones.
  • Merge pull request #8 from piyushk/hydro-devel-conditional xacro conditional blocks
  • using refined arguments instead of sys.argv for xml file location
  • adding conditional blocks to xacro

1.8.3 (2013-04-22)

  • bumped version to 1.8.3 for hydro release
  • backwards compatilibity with rosbuild
  • adding unit test for substitution args
  • Adding supoprt for substitution_args 'arg' fields
  • Remove bin copy of xacro.py
  • 1.7.3
  • Install xacro.py as a program so it can be run
  • 1.7.2
  • fixed build issues introduced in catkinization
  • 1.7.1
  • PEP8, cleanup, and remove roslib
  • Update copyright, self import guard, and catkinize
  • Catkinize.
  • Cleanup in preparation of catkinization.
  • Added tag unstable for changeset 169c4bf30367
  • Added tag xacro-1.6.1 for changeset fc45af7fdada
  • 1.6.1 marker
  • xacro: fuerte compat with sub args import
  • Added tag unstable for changeset 2d3c8dbfa3c9
  • Added tag xacro-1.6.0 for changeset e4a4455189bf
  • 1.6.0
  • converted to unary stack from common stack
  • xacro: fixed inserting property blocks (ros-pkg #4561)
  • xacro now uses XacroExceptions. String exceptions are not allowed in Python anymore. #4209
  • Added Ubuntu platform tags to manifest
  • Xacro now places comments below <?xml> tag (#3859)
  • Xacro prints out cleaner xml. Elements are now often separated by a newline.
  • xacro dependency on roslaunch removed #3451
  • Xacro now adds a message mentioning that the file was autogenerated (#2775)
  • Remove use of deprecated rosbuild macros
  • Integers stay integers in xacro, fixing #3287
  • Tests for r25868
  • Added a flag for only evaluating include tags in xacro
  • Allowing multiple blocks and multiple insert_blocks, fixing #3322 and #3323
  • doc review completed for xacro
  • adding mainpage for xacro doc review
  • Added xacro.cmake file that exports new xacro_add_xacro_file() macro, #3020
  • Namespaced "include" tag in xacro
  • Marked xacro as api reviewed
  • Xacro now correctly declares the namespaces of the included documents in the final
  • Made xacro accept xml namespaces
  • Xacro now errors hard when a property is used without being declared
  • Xacro no longer allows you to create properties with "${}" in the name
  • Added the ability to escape "${" in xacro
  • Made the tests in xacro run again.
  • Created xacro/src
  • migration part 1

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Name Deps
abb_irb2400_moveit_config
abb_irb4400_support
abb_irb6640_moveit_config
abb_irb6640_support
adi_driver
ati_force_torque
audibot_description
rokubimini_description
cob_calibration_data
cob_description
raw_description
cob_cartesian_controller
cob_obstacle_distance
cob_twist_controller
cob_grasp_generation
cob_hardware_config
cob_moveit_config
cob_gazebo_worlds
crane_x7_moveit_config
dbw_fca_description
dbw_mkz_description
denso_robot_moveit_config
desistek_saga_description
eca_a9_description
ensenso_description
fake_joint_driver
fanuc_cr35ia_support
fanuc_cr7ia_moveit_config
fanuc_cr7ia_support
fanuc_cr7ial_moveit_config
fanuc_lrmate200i_moveit_config
fanuc_lrmate200i_support
fanuc_lrmate200ib3l_moveit_config
fanuc_lrmate200ib_moveit_config
fanuc_lrmate200ib_support
fanuc_lrmate200ic5h_moveit_config
fanuc_lrmate200ic5l_moveit_config
fanuc_lrmate200ic_moveit_config
fanuc_lrmate200ic_support
fanuc_m10ia_moveit_config
fanuc_m10ia_support
fanuc_m16ib20_moveit_config
fanuc_m16ib_support
fanuc_m20ia10l_moveit_config
fanuc_m20ia_moveit_config
fanuc_m20ia_support
fanuc_m20ib25_moveit_config
fanuc_m20ib_support
fanuc_m430ia2f_moveit_config
fanuc_m430ia2p_moveit_config
fanuc_m430ia_support
fanuc_m6ib6s_moveit_config
fanuc_m6ib_moveit_config
fanuc_m6ib_support
fanuc_m710ic_support
fanuc_m900ia_support
fanuc_m900ib_support
fanuc_r1000ia80f_moveit_config
fanuc_r1000ia_support
fanuc_lrmate200id7l_moveit_config
fanuc_lrmate200id_moveit_config
fanuc_lrmate200id_support
fanuc_r2000ib_support
fanuc_r2000ic_support
fetch_gazebo
fetch_description
fetch_moveit_config
flir_ptu_description
franka_description
franka_visualization
fsrobo_r_moveit_config
hector_components_description
hector_sensors_description
hector_xacro_tools
heron_description
heron_simulator
husky_description
igvc_self_drive_description
jackal_description
jackal_navigation
jsk_data
jsk_pcl_ros
khi_duaro_moveit_config
khi_rs007l_moveit_config
khi_rs007n_moveit_config
khi_rs013n_moveit_config
khi_rs020n_moveit_config
khi_rs025n_moveit_config
khi_rs030n_moveit_config
khi_rs080n_moveit_config
kobuki_description
lauv_description
leo_description
leo_viz
leuze_description
robot
tra1_description
tra1_moveit_config
mir_description
moose_description
moveit_setup_assistant
moveit_resources_dual_panda_moveit_config
moveit_resources_fanuc_moveit_config
moveit_resources_panda_description
moveit_resources_panda_moveit_config
moveit_resources_prbt_moveit_config
moveit_resources_prbt_pg70_support
moveit_resources_prbt_support
open_manipulator_p_description
open_manipulator_p_gazebo
open_manipulator_gazebo
open_manipulator_with_tb3_description
open_manipulator_with_tb3_waffle_moveit
open_manipulator_with_tb3_waffle_pi_moveit
open_manipulator_with_tb3_gazebo
openni_description
panda_moveit_config
pheeno_ros_description
prbt_gazebo
prbt_moveit_config
prbt_support
play_motion
pointgrey_camera_description
pr2_description
pr2_gazebo
prbt_pg70_support
raspimouse_description
raspimouse_gazebo
rc_visard_description
rexrov2_description
ridgeback_description
ridgeback_navigation
robot_upstart
ackermann_steering_controller
diff_drive_controller
gripper_action_controller
joint_trajectory_controller
schunk_description
sciurus17_moveit_config
seed_r7_description
seed_r7_gazebo
seed_r7_moveit_config
seed_r7_typef_moveit_config
seed_r7_typeg2_arm_moveit_config
seed_r7_typeg_arm_moveit_config
seed_r7_typeg_moveit_config
sick_ldmrs_description
sick_tim
sr_description
sr_edc_launch
sr_moveit_hand_config
sr_multi_description
sr_box_ur10_moveit_config
sr_multi_moveit_config
sr_multi_moveit_test
staubli_rx160_moveit_config
staubli_rx160_support
staubli_tx2_60_support
staubli_tx2_90_support
staubli_tx60_support
staubli_tx90_support
talos_description
talos_description_calibration
talos_description_inertial
trac_ik_examples
uwsim
ur10_e_moveit_config
ur10_moveit_config
ur3_e_moveit_config
ur3_moveit_config
ur5_e_moveit_config
ur5_moveit_config
ur_description
ur_e_description
uos_common_urdf
urdf_geometry_parser
urdf_test
urdf_tutorial
urg_node
uuv_thruster_manager
uuv_descriptions
uuv_gazebo_ros_plugins
uuv_sensor_ros_plugins
velodyne_description
warthog_description
xpp_hyq
xpp_quadrotor
abb_irb1600_6_12_moveit_config
abb_irb2600_support
abb_irb4600_support
abb_irb52_support
abb_irb6700_support
abb_irb7600_support
bebop_description
framefab_irb6600_workspace_moveit_config
choreo_kr150_2_workspace_moveit_config
choreo_kr5_arc_workspace_moveit_config
kr6_r900_mit_suction_gripper_moveit_config
kr6_r900_workspace_moveit_config
ca_description
dsr_gazebo
moveit_config_a0509
moveit_config_a0912
moveit_config_h2017
moveit_config_h2515
moveit_config_m0609
moveit_config_m0617
moveit_config_m1013
moveit_config_m1509
dynpick_driver
flir_camera_description
grizzly_description
hsr_description
iiwa_moveit
innok_heros_description
jaguar_description
katana_arm_gazebo
kuka_kr10_support
kuka_kr120_support
kuka_kr150_support
kuka_kr16_support
kuka_kr210_support
kuka_kr3_support
kuka_kr5_support
kuka_kr6_support
kuka_lbr_iiwa_support
loki_description
magni_description
melfa_description
rv4fl_moveit_config
rv7fl_moveit_config
mobility_base_description
motoman_ar2010_support
motoman_es_support
motoman_gp110_support
motoman_gp12_support
motoman_gp165r_support
motoman_gp180_support
motoman_gp200r_support
motoman_gp20hl_support
motoman_gp215_support
motoman_gp225_support
motoman_gp250_support
motoman_gp25_support
motoman_gp35l_support
motoman_gp4_support
motoman_gp50_support
motoman_gp70l_support
motoman_gp7_support
motoman_gp88_support
motoman_gp8_support
motoman_gp8l_support
motoman_hc10_support
motoman_hc20_support
motoman_ma2010_moveit_config
motoman_ma2010_support
motoman_mh110_support
motoman_mh12_support
motoman_mh50_support
motoman_mh5_support
motoman_motomini_support
motoman_motopos_d500_support
motoman_motopos_mh1655_support
motoman_mpx1950_support
motoman_ms210_moveit_config
motoman_ms210_support
motoman_sda10f_moveit_config
motoman_sda10f_support
motoman_sia10d_support
motoman_sia10f_support
motoman_sia20d_moveit_config
motoman_sia20d_support
motoman_sia30d_support
motoman_sia50_support
motoman_sia5d_support
motoman_bmda3_support
motoman_csda10f_moveit_config
motoman_csda10f_support
motoman_epx_support
motoman_mh_support
motoman_mhj_support
motoman_mpl80_moveit_config
motoman_mpl_support
motoman_mpx3500_support
motoman_sia5d_moveit_config
multi_jackal_base
multi_jackal_control
multi_jackal_description
nao_moveit_config
nao_description
pepper_moveit_config
pepper_description
pheeno_ros_sim
pioneer_mrs
raspigibbon_description
rb1_dual_ur3_moveit_config
rb1_base_description
recordit
robotiq_2f_c2_gripper_visualization
robotnik_sensors
roch_description
romeo_moveit_config
romeo_description
roomblock_description
rsv_balance_description
schunk_canopen_driver
schunk_svh_driver
summit_x_description
summit_x_gazebo
summit_xl_j2n6s200_moveit_config
summit_xl_j2s6s200_moveit_config
summit_xl_j2s6s300_moveit_config
summit_xl_j2s7s300_moveit_config
summit_xl_description
summit_xl_gazebo
svenzva_moveit
turtlebot_description
turtlebot_arm_description
turtlebot_arm_moveit_config
create_description
turtlebot_gazebo
dual_xarm6_moveit_config
xarm5_vacuum_gripper_moveit_config
xarm6_vacuum_gripper_moveit_config
xarm7_vacuum_gripper_moveit_config
lite6_moveit_config
uf_robot_moveit_config
xarm5_gripper_moveit_config
xarm5_moveit_config
xarm6_gripper_moveit_config
xarm6_moveit_config
xarm7_gripper_moveit_config
xarm7_moveit_config
xbot_description
xiaoqiang_description

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged xacro at Robotics Stack Exchange

xacro package from xacro repo

xacro

Package Summary

Tags No category tags.
Version 1.13.20
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/xacro.git
VCS Type git
VCS Version melodic-devel
Last Updated 2023-05-24
Dev Status MAINTAINED
CI status
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Xacro (XML Macros) Xacro is an XML macro language. With xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions.

Additional Links

Maintainers

  • Robert Haschke
  • Morgan Quigley

Authors

  • Stuart Glaser
  • William Woodall
  • Robert Haschke

Xacro (XML Macros)

Xacro is an XML macro language

With Xacro, you can construct shorter and more readable XML files by using macros that expand to larger XML expressions. Documentation can be found in the wiki: http://wiki.ros.org/xacro

CHANGELOG

Changelog for package xacro

1.13.20 (2023-05-24)

  • Fix hasattr support of YamlDictWrapper (#324)
  • Contributors: Alec Tiefenthal

1.13.19 (2023-02-27)

  • Evaluate arg value as str/unicode (#322)
  • Contributors: Robert Haschke

1.13.18 (2022-10-21)

  • Dotted YAML access from list iterator (#318)
  • Contributors: Robert Haschke

1.13.17 (2022-02-12)

  • Only optionally activate comment evaluation (#310)

    Comment evaluation can be enabled with a special comment:

    • <!-- xacro:eval-comments --> or
    • <!-- xacro:eval-comments:on -->

    It remains active for the following comments until:

    • the current XML tag's scope is left (or a new tag entered)
    • another tag or non-whitespace text is processed
    • it becomes explicitly disabled via: <!-- xacro:eval-comments:off -->
  • Fix property resolution with namespace usage (#308)
    • Allow access to properties in parent scopes again (fixes #305)
    • Pick correct scope when defining a property into the parent (fixes #307)

      Setting a property within the parent scope may occur in two contexts:

      1. From within a macro. In that case, one wants to set the property in the caller's scope.
      2. From within the included file. In that case, one wants to set the property in the includer's scope.
  • Contributors: Robert Haschke

1.13.16 (2022-01-30)

  • Issue a warning only for evaluation errors in comments
  • Add LICENSE file
  • Contributors: Robert Haschke

1.13.15 (2022-01-20)

  • Fix resolving of macros and properties declared and used in/from a namespace (#297, #306)

    Macros and properties that are declared within a namespaced include shouldn't require the namespace prefix when used within the namespace.

  • Perform expression evaluation in comments (#300)
  • Expose xacro.arg() to facilitate access to substitution args
  • Contributors: Robert Haschke

1.13.14 (2021-10-02)

  • Allow property names to be evaluated from an expression This allows to turn macros into a function that can compute an arbitrary property:

    <xacro:macro name="square" params="name args">
      <!-- Perform some complex computation and set the property within the parent's scope -->
      <xacro:property name="${name}" value="${[float(x)**2 for x in args]}" scope="parent" />
    </xacro:macro>
    <xacro:square name="result" args="${python.range(5)}" />
    
  • Fix error reporting for invalid symbols in NameSpaces
  • Allow removal of a property definition (#288)

    <xacro:property name="prop" remove="true"/>

  • Allow greedy property evaluation (#284) This can be used, to redefine a property from its previous value, e.g. for normalization:

    <xacro:property name="prop" value="${prop.lower()}" lazy_eval="false"/>
    
  • Correctly expose XML namespaces imported via xacro:include within a macro (#287)
  • Throw when attempting to declare a property starting with double underscore (#286)
  • Improve global symbols (#283)
    • Expose most builtin symbols of python
    • Expose xacro functions into xacro namespace
      • xacro.print_location() to print the current filestack
      • tokenize(string, sep=',; ', skip_empty=True) to facilitate string tokenization
      • message(), warning(), error(), and fatal() to output messages on stderr. All but message() print the error location (macro call and file hierarchy) by default:

        ${xacro.message('message', 'text', 2, 3.14, color=32, print_location=True)}
        ${xacro.warning('warning')}
        ${xacro.error('error', print_location=False)}
        ${xacro.fatal('fatal')}
        
    • Rework handling of file and macro stack, such that print_location() works from anywhere
    • Unit tests: Reduce reported stdout/stderr output
    • Rework definition of global_symbols to expose functions into namespaces python, math, xacro
  • Contributors: Robert Haschke

1.13.13 (2021-09-03)

  • Allow more builtin symbols: sorted, set
  • Don't import hidden symbols from math package
  • Fix eval() security vulnerability
    • safe_eval(): Forbid symbol names starting with double underscore
    • unit tests validating the protection mechanism
  • Generalize yaml !degrees constructor: Enable expressions as well
  • Contributors: Robert Haschke

1.13.12 (2021-07-19)

  • Improve macro arg parsing (#278) to support:
    • $(substitution args)
    • ${python expressions}
    • single or double quoting of spaces
  • Contributors: Robert Haschke

1.13.11 (2021-05-30)

  • Expose YamlDictWrapper as dotify()
  • Contributors: Robert Haschke

1.13.10 (2021-02-11)

  • Use outer-scope symbols to resolve include filename in xacro:include (#264)
  • Contributors: Robert Haschke

1.13.9 (2020-10-13)

  • [fix] yaml loading: recursively wrap lists and dicts for dotted dict access (#258)
  • Contributors: Robert Haschke

1.13.8 (2020-08-28)

  • Provide support for yaml constructors !degrees and !radians (#252)
  • Contributors: Robert Haschke, G.A. vd. Hoorn

1.13.7 (2020-08-09)

  • [fix] Rework YamlDictWrapper to restore dict properties (#250)
  • Contributors: Robert Haschke

1.13.6 (2020-07-05)

  • [feature] Improve warnings
    • Unify meaning of verbosity > 0 (to print file location)
    • Provide file location on warning in check_attrs()
    • Issue warning on child elements of <xacro:include> tag
  • [feature] Allow dotted access to yaml-loaded dicts: d.key1.key2.key3 (#245)
  • [maint] Travis: Update distro to Bionic
  • Contributors: Robert Haschke, G.A. vd. Hoorn

1.13.5 (2019-12-08)

  • [feature] Expose abs_filename() (#220)
  • [feature] Catch missing closing brace in $() and ${} expressions
  • [maintanence]
    • Replace deprecated yaml.load() -> yaml.safe_load()
    • Save macro names internally w/o 'xacro:' prefix
    • Correctly issue deprecation warning for non-prefixed xacro tags
  • Contributors: Robert Haschke

1.13.4 (2019-09-26)

  • [feature] remove xmlns:xacro from processed file (#207)
    • Remove all notions of xmlns:xacro from the resulting document.
    • If the root node defines a xacro:targetNamespace attribute, this will become the global xmlns namespace of the resulting document.
  • [feature] Add len() to allowed python functions (#208)
  • [maintanence]
    • --in-order warning: reduce severity level to message
    • fix and cleanup test of cmake extensions
    • adapt run_xacro() to run xacro from PATH
    • simplify import of substition_args
    • remove 'requires' field from setup.py
    • fix Travis config: use new repository key, use xenial/kinetic distro
    • basic README.md
    • fix catkin_lint issue
    • remove duplicate catkin_python_setup() (#206)
  • Contributors: Robert Haschke, James Xu, Martin Pecka

1.13.3 (2018-10-14)

  • use INORDER as default in cmake functions
  • remove weird 'None's in error messages
  • Contributors: Robert Haschke

1.13.2 (2018-05-14)

  • deprecate --includes option (which is tied to deprecated --legacy processing)
  • moved all option handling to cli.py, including deprecation warnings for options
  • Contributors: Robert Haschke

1.13.1 (2018-05-03)

  • fix parsing of quoted strings in default args for xacro params (#187)
  • Contributors: Robert Haschke

1.13.0 (2018-03-31)

  • make --inorder processing the default
  • Contributors: Robert Haschke

1.12.1 (2018-03-28)

  • #183: unicode support for python2 and python3
  • #178: extend list of allowed python builtins: min, max, round
  • #182: suppress xacro warnings when determining dependencies
  • #151: fixes for #149 and #148
  • #157: fix #156 access to undefined target_table
  • #150: allow True/False literals in python expressions
  • #159: load ROS-related packages on demand, thus becoming more independent from ROS
  • #173: allow default values for properties
  • #172: fix formatting of XacroException
  • #171: fix dependency handling (--deps option)
  • #163: full python 3 compatibility
  • Contributors: Robert Haschke, Kartik Mohta, Morgan Quigley, Steven Peters

1.12.0 (2017-03-25)

1.11.2 (2017-02-27)

  • Convert exception to string in a python2/3 compatible way.
  • Use python2/3 independent check for file type.
  • Contributors: Hans Gaiser, Maarten de Vries

1.11.1 (2016-06-22)

  • workaround for xml.dom.minidom issue
  • ensure non-empty error string
  • Contributors: Robert Haschke

1.11.0 (2016-03-25)

  • added short option -i as alternative to --inorder
  • refactored main to fix #122, #107
  • added xacro indicator to error message to fix #123
  • moved banner generation to process_file()
  • removed special (but obsolete) output handling for just_includes mode
  • moved core processing pipeline into function process_file()
  • improved documentation: more comments, input_file -> input_file_name
  • fix #120: handle non-space whitespace characters in params string
  • extended tests to handle non-space whitespace characters in params string
  • always store macros with xacro: prefix in front: #118
  • fix #115: enforce xacro namespace usage with --xacro-ns option
  • apply correct checking for include tags, and extend testcase
  • allow (one-level) nested expression/extension evaluation
  • Contributors: Robert Haschke, Morgan Quigley

1.10.6 (2015-09-01)

  • use correct catkin environment for cmake dependency checking
  • fixed dependency definition for cmake usage
  • Contributors: Robert Haschke

1.10.5 (2015-08-12)

  • fix #108: evaluate property blocks recursively too
  • improved macro parameter parsing
  • use a regular expression to parse a param spec with forwarding and default
  • allow for spaces in default string (within single quotes)
  • forwarding macro arguments from outer scope
  • switched to [\^|]{.title-ref} syntax
  • use more compact [$|]{.title-ref} syntax
  • moved parsing of argument defaults to grab_macro()
  • explicit forwarding of properties to macro scope
  • replace silent/implicit forwarding of properties from outer scope to macro scope by an explicit "call" to a [forward(<name>[,<default>])]{.title-ref} function.
  • implicit forwarding of outer-scope properties to macro args (#100)
  • property evaluation fixes
  • suppress double evaluation of properties
  • adapted unittest to cover the fixed issue
  • fixed evaluation order for properties exported to parent or global scope
  • Merge pull request #103 from ubi-agni/overwrite-check issue warning when attempting to overwrite existing global property
  • fixed unittest: avoid overwrite warning
  • warn when overwriting any globally defined variable
  • Merge pull request #102 from ubi-agni/completion bash completion
  • Merge pull request #99 from ubi-agni/jade-devel reworked macro resolution
  • moved test_macro_name_with_colon() to class TestXacro should be tested both, in oldorder and inorder mode
  • bash completion
  • improved error message for failed $(find)
  • reworked macro resolution python-eval-based macro resolution (introduced to enable namespaces) heavily restricted the set of possible macro names (only valid python identifiers were allowed) Particularly, xacro: prefixed macro names were forbidden.
  • initial attempt to fix #97
  • add failing test case with colon in the macro name
  • Contributors: Robert Haschke

1.10.4 (2015-06-18)

  • removed test_DEPRECATED_should_replace_before_macroexpand() duplicates test_should_replace_before_macroexpand()
  • fixed evaluation order of macro arguments and body Macro arguments need to be evaluated and assigned to properties before body is evaluated. Otherwise, the evaluated value will be converted to str, i.e. loosing original type.
  • Contributors: Robert Haschke

1.10.3 (2015-06-16)

  • deprecate --oldorder processing
  • added --check-order option to do a simple check for --inorder compatibility
    • Most probable incompatibility is redefining a property after its usage.
    • tested and reported with file location of (first) redefinition after usage.
  • moved command line processing to cli.py
  • explain verbosity levels in usage string
  • colorize errors during cli parsing
  • log definition and usage of properties
  • replaced debug option by verbosity options -q, -v
  • fixed evaluation time of default macro params
  • introduced Macro object to increase code readability
  • parse a macro's parameter list once at declaration time (instead of every instantiation)
  • extended test_multiple_blocks() to check for both normal and reversed order
  • added unittest to increase code coverage
  • do not issue deprecation warning for <include> tags that are non-xacro
  • added option --oldorder
  • allow to store properties to parent or global scope
  • added <xacro:attribute>
  • cleaned up error message about missing files
  • moved xml-specific functions to xmlutils.py new generic functions opt_attrs(), reqd_attrs(), and check_attrs() to fetch optional and required attributes and warn about unknown ones in a uniform fashion
  • unittest to allow empty <arg> defaults
  • Merge pull request #94 from ubi-agni/minor-fixes
  • minor fixes
  • remove duplicates in --deps output
  • fixed dependency checking for --inorder mode (which requires full processing)
  • fixed doc of xacro' cmake macros
  • renamed "xacro:rename" to "xacro:element"
  • allow namespacing for xacro:include's
  • allow renaming of element names using xacro:rename
  • unittest cleanup
  • check property and macro names to be valid python identifiers
  • allow namespacing of xacro:include's
  • properties and macros in an included file will go into their own, separate namespace, if the XML attribute [ns]{.title-ref} is provided. Access is by standard python syntax: namespace.name
  • allow renaming of element names <xacro:rename xacro:name="<new element name>"/>
  • moved unittests requiring --inorder processing to class TestXacroInorder
  • added unittest test_dynamic_macro_undefined()
  • improved error message when variable include filename is used without --inorder
  • stripped down unittest test_inorder_processing()
  • improved processing
  • adapted pr2 gold standard removing most comments again this partially reverts 59605fb1521583dc63efdea13f4c45128499bd20
  • remove all XML comments directly before xacro elements (These are considered xacro-related only and should be removed in the final doc.) Leaving an empty line between xacro-unrelated and xacro-related comments allows to include the former.
  • unittest: test_ignore_xacro_comments()
  • improved processing
    • recursive (instead of iterative) eval_all()
    • reusable process_include()
    • replace_node() function to replace xacro tag by some other content
    • avoid reprocessing of nodes
    • avoid deep copy where possible (speedup)
  • fix evaluation (#83)
  • yaml support
  • check for consistency of xml namespaces on xacro:include
  • replaced strip()=='' by more efficient isspace()
  • allow transitive definition of substition args
  • fixed evaluation of literals in property definitions
    • literals with preceding whitespace will be silently stripped (#83)
    • more complex evaluation test (perturbing spaces added)
  • fixed xacro namespaces in pr2 files to get rid of new inconsistency warning
  • warning message on inconsistent namespace redefinition for includes
  • yaml support ${load_yaml('file.yaml')} to load dict from yaml file
  • Merge pull request #85 from ubi-agni/error-reporting improved error reporting
  • nicer formatting of multiple "when evaluating expression" lines
  • improved formatting of error messages use XacroException to wrap and augment other exceptions to achieve a clearer error formatting
  • better error message for missing substitution args
  • use colorized warnings where possible
  • included macro stack in error-reporting
  • maintain filestack to facilitate error reporting at any time
  • Merge pull request #82 from ubi-agni/unittests improved unittesting
  • allow to capture (and check) stderr in unit tests
  • improved unittests to test both, classic and in-order processing
  • Merge pull request #81 from ubi-agni/jade-devel Thank you for your time and contributions. Improving cosmetics is important.
  • PEP8 cleanup
  • cmake: only copy files to devel space if new
  • Merge pull request #80 from ubi-agni/jade-devel
  • improved error-handling opening the output file - running multiple xacro process in parallel, all writing into a new dir could cause a race condition when creating the dir
    • improved error message on output creation failure
  • removed rospy dependency
    • Importing rospy caused build order issues with ros_comm in workspace
  • Filtering out REMAP command-line arguments is done manually now.
  • update authors/maintainers and copyright statements
  • deprecate non-namespaced xacro tags
  • added missing print_location_msg() for file that actually failed parsing
  • improved deprecation warnings
  • New cli option [--xacro-ns]{.title-ref} allows to enforce the new policy requiring the xacro namespace prefix (and suppressing deprecation warnings). However, non-prefixed tags will not be modified by xacro anymore (as requested by #41, #59, #60). Partially reverted cb73cfd8c678adfda2172accef398189ea2338a1, handling <arg> tags in the same fashion as other tags, i.e. issue a warning if used without prefix and ignoring it with cli argument [--xacro-ns]{.title-ref}.
  • fixed pr2 xacro files to use 'xacro:' prefixed tags only
  • fixed unittests in test_xacro.py to use 'xacro:' prefixed tags only
  • deprecation message for missing xacro namespace prefix in xml tags
  • moved colored warning messages into color.py (for reuseability)
  • added missing print_location_msg() for file that actually failed parsing
  • improved xacro's cmake macros
  • prepend ${PACKAGE_NAME} to all generated cmake targets Otherwise multiple packages employing xacro's cmake macros will use the same conflicting target name. This is only an issue with catkin_make, which defines a single global cmake namespace. The new catkin tools (or catkin_make_isolated) build each package separately.
  • basic unittest for xacro's cmake macros
  • improved xacro's cmake macros - xacro_add_xacro_file() automatically determines output file from input (removing .xacro suffix). If that fails, a fatal error is raised.
    • added xacro_install() to allow installation into both, devel and install space.
    • replaced conveniency function xacro_add_files()
  • Contributors: Robert Haschke

1.10.2 (2015-05-23)

  • added --debug option to explicitly enable stack traces By default, only show error message to the user. Stack traces are only interesting for xacro developers.
  • recursive include processing
    • more informed error messages (which file was included from where)

    - allows relative path names for include filename specs they are interpreted relative to the current file

  • new substitution command $(cwd) to extract current working directory
  • added unittest cases
    • creation of required subdirs for output
    • recursive xacro:include
    • extended test_include_glob() to check for all glob patterns
  • added run_xacro() function to simplify unittests running xacro script
  • moved xacro.py back to original location
  • nicely colored deprecation warning
  • create required dirs before opening output file
  • added convenience cmake-macro xacro_add_target() to auto-generate xacro-processed files
  • added cmake status message before launching xacro (xacro might run for quite a while)
  • fetch xacro --deps errors at report them as a warning
  • simplified deprecation message
  • added missing return statement
  • removed obsolete math import left over from deaaae2c69edd7d5e185eeb098c1521d8711608b
  • install xacro.py again (for backwards compatibility) usage of xacro.py issues a deprecation warning
  • simplified scripts/xacro - removed xacro.py
    • made run script "scripts/xacro" and install process follow standards
    • removed xacro.py

    - added dependencies to setup.py Having the binaries xacro and xacro.py installed side by side causes problems, because xacro.py is wrongly taken as the module. This was avoided by the rather complex filtering of the sys.path. Switched to ROS standard now, using a binary script called "xacro".

  • changed tests to use the whole xacro processing pipeline utilizing the modularization of main() from previous commit This simplifies several existing tests, especially these using files on disk.
  • split main() into process_cli_arg(), parse(), process_doc()
  • extended cmake macro xacro_add_xacro_file()
    • handle INORDER option
    • handle REMAP arguments

    - create absolute input file names automatically usage: xacro_add_xacro_file(input output INORDER REMAP ...)

  • stripped new unit tests to essential xml snippets
  • merged pull request #68: eval properties assigned from <arg> tags as literals In the following example: <xacro:arg name="val" default="0.5"/> <xacro:property name="val" value="$(arg val)"/> ${val} was not evaluated as a number, but as string only. Thus numerical expressions failed with an exception.
  • factored out get_boolean_value()
  • <xacro:arg> needs to be fully specified
  • (handling <arg> tags (without xacro ns-prefix) disabled native <arg> tags) add test for eating launch parameter arguments remove check for "arg" parameter. move new test function to bottom of source
  • added unit tests for evaluation of list, tuple, and dict literals
  • fixed some code style issues
  • fixed string-isinstance checks (for python 3 compatibility)
  • do not evaluate list, dict, tuple expressions as literals (without ${} syntax)
  • added dict to list of known global symbols
  • focused global_symbols definition in the beginning of the file added some basic python symbols: list, str, float, int and map allowing some basic computation
  • tuning performance: instantiate QuickLexer's regexps only once
  • Contributors: Robert Haschke, Martin Pecka, Mike O'Driscoll, Morgan Quigley

1.10.1 (2015-04-01)

  • improved error handling and more descriptive error messages
  • correctly raise a XacroException on invalid, i.e. non-boolean, <xacro:if> expressions. (removed left-over debugging code, added test case)
  • raise an exception on undefined, but used macros Using the syntax <xacro:macroname/> should raise an exception if macroname is not defined. Added appropriate code and a test case.
  • fixed bookkeeping in lazy evaluation switch Table.unevaluated from list to set to avoid multiple key entries
  • fix formatting of changelog
  • Contributors: Robert Haschke

1.10.0 (2015-03-13)

  • security measure: forbid access to __builtins__ in expressions
  • literal evaluation should only consider literals, but no expressions use ast.literal_eval()
  • removed eval() from xacro:if evaluation
  • back to string comparison to handle (lowercase) true and false
  • add test case for equality expressions in <xacro:if>
  • add test case for math function usage
  • python based evaluation of expressions
    • replaced handle_expr with python-internal eval() call
    • care has been taken to resolve variables recursively on demand (in Table.__getitem__)
    • allows for evaluation of standard math functions
    • other desired functions could be added in eval_self_contained
    • Values in Table symbols are not stored as strings but as typed values.
  • If text is required, a conversion with str() is performed, to ensure proper evaluation of expressions. Otherwise 3*"1" would evaluate to "111".
  • use __future__.division we can handle integer division evaluating to floating-point devision, as before
  • allow variable names for filename attribute in <xacro:include>
  • allow for ordered XML processing to avoid issues with multiply defined properties and macros in (typically 3rd party) include files
    • enable the new behaviour by passing --inorder cmdline option
    • to improve code readibility and reusability, introduced functions
  • process_include(node), grab_macro(elt, macros), grab_property(elt, symbols) containing 1:1 corresponding handling from process_includes, grab_macros, and grab_properties
    • added corresponding test case test_inorder_processing()
  • dynamic macro names using <xacro:call macro=""/>
  • fixup unittests and handling of non-element nodes in <include>, <if>, <macro>
  • updated pr2 gold standard to include all comments
  • allow to ignore comments in nodes_match()
  • New handling of non-element nodes invalidates pr2 gold standard (adding a lot more comments). To allow validation, allow to ignore all comments in comparison (as before).
  • fixed handling of non-element nodes in <include>, <if>, <macro>
  • fixed writexml: text nodes were not printed when other siblings exist
    • print all text, but skip whitespace-only text nodes
  • improved xml matching
    • so far only element nodes (with its attributes) were considered
    • now also consider TEXT, CDATA, and COMMENT nodes
    • added function text_matches (normalizing consecutive whitespace to a single space)
    • added some new unit tests

    - test_consider_non_elements: non-element nodes are not yet considered in <if> and <macro>

  • travis-ci: use catkin_make
  • travis-ci: fixup running of tests
  • fix pathnames used in test case
  • Include CATKIN_ENV params at build time.
  • use output filename flag instead of shell redirection
  • create output file after parsing is complete, not before
  • Contributors: Robert Haschke, Mike O'Driscoll, Morgan Quigley, William Woodall

1.9.3 (2015-01-14)

  • merge test cases
  • add a snapshot of the pr2 model to the test directory. add a test case which verifies that the pr2 model is parsed equal to a 'golden' parse of it.
  • add more tests
  • add default arg tests
  • Allow default values for substitution args
  • Fix up comments
  • Allow xacro macros to have default parameters
  • Contributors: Paul Bovbel, Morgan Quigley

1.9.2 (2014-07-11)

  • add a few more tests to exercise the symbol table a bit more
  • allow for recursive evaluation of properties in expressions
  • add useful debugging information when parameters are not set
  • stop test from failing the second time it is run
  • unified if/unless handling, correctly handle floating point expressions
  • floating point expressions not equal zero are now evaluated as True
  • changed quotes to omit cmake warning
  • Contributors: Robert Haschke, Mike Ferguson

1.9.1 (2014-06-21)

  • fixup tests so they run
  • export architecture_independent flag in package.xml
  • installed relocatable fix
  • Contributors: Michael Ferguson, Mike Purvis, Scott K Logan

1.9.0 (2014-03-28)

  • Remove the roslint_python glob, use the default one.
  • Add roslint target to xacro; two whitespace fixes so that it passes.
  • fix evaluation of integers in if statements also added a unit test, fixes #15
  • fix setting of _xacro_py CMake var, fixes #16
  • Add support for globbing multiple files in a single <xacro:include>
  • code cleanup and python3 support
  • check for CATKIN_ENABLE_TESTING

1.8.4 (2013-08-06)

  • Merge pull request #9 from davetcoleman/hydro-devel Xacro should not use plain 'include' tags but only namespaced ones.
  • Fix for the fact that minidom creates text nodes which count as child nodes
  • Removed <uri> checking and made it more general for any child element of an <include> tag
  • Removed Groovy reference, only being applied to Hydro
  • Created check for Gazebo's <uri> tabs only only shows deprecated warnings if not present.
  • Small spelling fix
  • Xacro should not use plain 'include' tags but only namespaced ones.
  • Merge pull request #8 from piyushk/hydro-devel-conditional xacro conditional blocks
  • using refined arguments instead of sys.argv for xml file location
  • adding conditional blocks to xacro

1.8.3 (2013-04-22)

  • bumped version to 1.8.3 for hydro release
  • backwards compatilibity with rosbuild
  • adding unit test for substitution args
  • Adding supoprt for substitution_args 'arg' fields
  • Remove bin copy of xacro.py
  • 1.7.3
  • Install xacro.py as a program so it can be run
  • 1.7.2
  • fixed build issues introduced in catkinization
  • 1.7.1
  • PEP8, cleanup, and remove roslib
  • Update copyright, self import guard, and catkinize
  • Catkinize.
  • Cleanup in preparation of catkinization.
  • Added tag unstable for changeset 169c4bf30367
  • Added tag xacro-1.6.1 for changeset fc45af7fdada
  • 1.6.1 marker
  • xacro: fuerte compat with sub args import
  • Added tag unstable for changeset 2d3c8dbfa3c9
  • Added tag xacro-1.6.0 for changeset e4a4455189bf
  • 1.6.0
  • converted to unary stack from common stack
  • xacro: fixed inserting property blocks (ros-pkg #4561)
  • xacro now uses XacroExceptions. String exceptions are not allowed in Python anymore. #4209
  • Added Ubuntu platform tags to manifest
  • Xacro now places comments below <?xml> tag (#3859)
  • Xacro prints out cleaner xml. Elements are now often separated by a newline.
  • xacro dependency on roslaunch removed #3451
  • Xacro now adds a message mentioning that the file was autogenerated (#2775)
  • Remove use of deprecated rosbuild macros
  • Integers stay integers in xacro, fixing #3287
  • Tests for r25868
  • Added a flag for only evaluating include tags in xacro
  • Allowing multiple blocks and multiple insert_blocks, fixing #3322 and #3323
  • doc review completed for xacro
  • adding mainpage for xacro doc review
  • Added xacro.cmake file that exports new xacro_add_xacro_file() macro, #3020
  • Namespaced "include" tag in xacro
  • Marked xacro as api reviewed
  • Xacro now correctly declares the namespaces of the included documents in the final
  • Made xacro accept xml namespaces
  • Xacro now errors hard when a property is used without being declared
  • Xacro no longer allows you to create properties with "${}" in the name
  • Added the ability to escape "${" in xacro
  • Made the tests in xacro run again.
  • Created xacro/src
  • migration part 1

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Name Deps
abb_irb2400_moveit_config
abb_irb4400_support
abb_irb6640_moveit_config
abb_irb6640_support
adi_driver
ati_force_torque
audibot_description
rokubimini_description
clover_description
clover_simulation
cob_calibration_data
cob_description
raw_description
cob_cartesian_controller
cob_obstacle_distance
cob_twist_controller
cob_grasp_generation
cob_hardware_config
cob_moveit_config
cob_gazebo_worlds
copernicus_description
crane_x7_moveit_config
create_description
dbw_fca_description
dbw_mkz_description
dbw_polaris_description
denso_robot_moveit_config
desistek_saga_description
dingo_description
eca_a9_description
ensenso_description
fake_joint_driver
fanuc_cr35ia_support
fanuc_cr7ia_moveit_config
fanuc_cr7ia_support
fanuc_cr7ial_moveit_config
fanuc_lrmate200i_moveit_config
fanuc_lrmate200i_support
fanuc_lrmate200ib3l_moveit_config
fanuc_lrmate200ib_moveit_config
fanuc_lrmate200ib_support
fanuc_lrmate200ic5h_moveit_config
fanuc_lrmate200ic5l_moveit_config
fanuc_lrmate200ic_moveit_config
fanuc_lrmate200ic_support
fanuc_m10ia_moveit_config
fanuc_m10ia_support
fanuc_m16ib20_moveit_config
fanuc_m16ib_support
fanuc_m20ia10l_moveit_config
fanuc_m20ia_moveit_config
fanuc_m20ia_support
fanuc_m20ib25_moveit_config
fanuc_m20ib_support
fanuc_m430ia2f_moveit_config
fanuc_m430ia2p_moveit_config
fanuc_m430ia_support
fanuc_m6ib6s_moveit_config
fanuc_m6ib_moveit_config
fanuc_m6ib_support
fanuc_m710ic_support
fanuc_m900ia_support
fanuc_m900ib_support
fanuc_r1000ia80f_moveit_config
fanuc_r1000ia_support
fanuc_lrmate200id7l_moveit_config
fanuc_lrmate200id_moveit_config
fanuc_lrmate200id_support
fanuc_r2000ib_support
fanuc_r2000ic_support
fath_pivot_mount_description
fetch_gazebo
fetch_description
fetch_moveit_config
flir_ptu_description
franka_description
franka_visualization
fsrobo_r_moveit_config
hector_components_description
hector_sensors_description
hector_xacro_tools
heifu_description
heron_description
heron_simulator
human_description
husky_description
husky_cartographer_navigation
igvc_self_drive_description
jackal_description
jackal_navigation
jackal_cartographer_navigation
jsk_data
jsk_pcl_ros
khi_duaro_moveit_config
khi_rs007l_moveit_config
khi_rs007n_moveit_config
khi_rs013n_moveit_config
khi_rs020n_moveit_config
khi_rs025n_moveit_config
khi_rs030n_moveit_config
khi_rs080n_moveit_config
kobuki_description
lauv_description
leo_description
leo_viz
leo_bringup
leuze_description
robot
microstrain_inertial_description
tra1_description
tra1_moveit_config
mir_description
moose_description
moveit_setup_assistant
moveit_resources_dual_panda_moveit_config
moveit_resources_fanuc_moveit_config
moveit_resources_panda_description
moveit_resources_panda_moveit_config
moveit_resources_prbt_moveit_config
moveit_resources_prbt_pg70_support
moveit_resources_prbt_support
mrp2_slam
mrp2_navigation
open_manipulator_p_description
open_manipulator_p_gazebo
open_manipulator_gazebo
open_manipulator_with_tb3_description
open_manipulator_with_tb3_waffle_moveit
open_manipulator_with_tb3_waffle_pi_moveit
open_manipulator_with_tb3_gazebo
openni_description
panda_moveit_config
pass_through_controllers
pf_description
pheeno_ros_description
prbt_gazebo
prbt_moveit_config
prbt_support
pincher_arm_bringup
pincher_arm_moveit_config
play_motion
pointgrey_camera_description
pouco2000_ros_gazebo
pr2_description
pr2_gazebo
prbt_pg70_support
psen_scan_v2
raspimouse_description
raspimouse_gazebo
rc_visard_description
rexrov2_description
ridgeback_description
ridgeback_navigation
ridgeback_cartographer_navigation
robot_upstart
robotont_description
robotont_nuc_description
ackermann_steering_controller
diff_drive_controller
effort_controllers
gripper_action_controller
joint_trajectory_controller
cartesian_trajectory_controller
rotors_gazebo
schunk_description
sciurus17_moveit_config
seed_r7_description
seed_r7_gazebo
seed_r7_moveit_config
seed_r7_typef_moveit_config
seed_r7_typeg2_arm_moveit_config
seed_r7_typeg_arm_moveit_config
seed_r7_typeg_moveit_config
sick_ldmrs_description
sick_tim
sr_description
sr_edc_launch
sr_moveit_hand_config
sr_multi_description
sr_box_ur10_moveit_config
sr_multi_moveit_config
sr_multi_moveit_test
staubli_rx160_moveit_config
staubli_rx160_support
staubli_tx2_60_support
staubli_tx2_90_support
staubli_tx60_support
staubli_tx90_support
talos_description
talos_description_calibration
talos_description_inertial
trac_ik_examples
uwsim
ur10_moveit_config
ur10e_moveit_config
ur16e_moveit_config
ur3_moveit_config
ur3e_moveit_config
ur5_moveit_config
ur5e_moveit_config
ur_description
uos_common_urdf
urdf_geometry_parser
urdf_sim_tutorial
urdf_test
urdf_tutorial
urg_node
uuv_thruster_manager
uuv_descriptions
uuv_gazebo_ros_plugins
uuv_sensor_ros_plugins
velodyne_description
warthog_description
xpp_hyq
xpp_quadrotor

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged xacro at Robotics Stack Exchange