This repository has been archived by the owner on Jan 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
192 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>genjava</name> | ||
<comment></comment> | ||
<projects> | ||
</projects> | ||
<buildSpec> | ||
<buildCommand> | ||
<name>org.python.pydev.PyDevBuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
</buildSpec> | ||
<natures> | ||
<nature>org.python.pydev.pythonNature</nature> | ||
</natures> | ||
</projectDescription> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<?eclipse-pydev version="1.0"?><pydev_project> | ||
<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH"> | ||
<path>/${PROJECT_DIR_NAME}/src</path> | ||
</pydev_pathproperty> | ||
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 2.7</pydev_property> | ||
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Default</pydev_property> | ||
</pydev_project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
catkin_install_python( | ||
PROGRAMS genmsg_java.py gensrv_java.py | ||
PROGRAMS genjava.py gensrv_java.py | ||
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/usr/bin/env python | ||
|
||
""" | ||
ROS message source code generation for Java | ||
Converts ROS .msg files in a package into Java source code implementations. | ||
""" | ||
import os | ||
import sys | ||
|
||
#import genjava.generator | ||
import genjava.genjava_main | ||
|
||
if __name__ == "__main__": | ||
genjava.genjava_main.genmain(sys.argv, 'genmsg_java.py') #, genpy.generator.MsgGenerator()) | ||
|
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
# Software License Agreement (BSD License) | ||
# | ||
# Copyright (c) 2014, Daniel Stonier. | ||
# All rights reserved. | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions | ||
# are met: | ||
# | ||
# * Redistributions of source code must retain the above copyright | ||
# notice, this list of conditions and the following disclaimer. | ||
# * Redistributions in binary form must reproduce the above | ||
# copyright notice, this list of conditions and the following | ||
# disclaimer in the documentation and/or other materials provided | ||
# with the distribution. | ||
# * Neither the name of Willow Garage, Inc. nor the names of its | ||
# contributors may be used to endorse or promote products derived | ||
# from this software without specific prior written permission. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | ||
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | ||
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | ||
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | ||
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
# POSSIBILITY OF SUCH DAMAGE. | ||
|
||
############################################################################## | ||
# Imports | ||
############################################################################## | ||
|
||
from __future__ import print_function | ||
import argparse | ||
import os | ||
#import sys | ||
#import traceback | ||
#import genmsg | ||
import genmsg.command_line | ||
|
||
#from genmsg import MsgGenerationException | ||
#from . generate_initpy import write_modules | ||
|
||
############################################################################## | ||
# Methods | ||
############################################################################## | ||
|
||
|
||
def parse_arguments(): | ||
''' | ||
The include path has a special format, e.g. | ||
-Ifoo_msgs:/mnt/zaphod/ros/rosjava/hydro/src/foo_msgs/msg;-Istd_msgs:/opt/ros/hydro/share/std_msgs/cmake/../msg | ||
''' | ||
parser = argparse.ArgumentParser(description='Generate java code for a single ros message.') | ||
parser.add_argument('-m', '--message', action='store', help='the message file') | ||
parser.add_argument('-p', '--package', action='store', help='package to find the message file') | ||
parser.add_argument('-o', '--output-dir', action='store', help='output directory for the java code (e.g. build/foo_msgs)') | ||
parser.add_argument('-I', '--include-path', action='append', help="include paths to the package and deps msg files") | ||
#myargs = rospy.myargv(argv=sys.argv) | ||
#return parser.parse_args(args=myargs[1:]) | ||
return parser.parse_args() | ||
|
||
############################################################################## | ||
# Main | ||
############################################################################## | ||
|
||
def genmain(argv, progname): # , gen): | ||
args = parse_arguments() | ||
print("genjava %s/%s" % (args.package, args.message)) | ||
print(" output dir..........%s" % args.output_dir) | ||
search_path = genmsg.command_line.includepath_to_dict(args.include_path) | ||
print(" search path.......%s" % search_path) | ||
gradle_project_dir = os.path.join(args.output_dir, 'gradle') | ||
os.mkdir(gradle_project_dir) | ||
|
||
# try: | ||
# if options.initpy: | ||
# if options.outdir: | ||
# retcode = write_modules(options.outdir) | ||
# else: | ||
# parser.error("Missing args") | ||
# else: | ||
# if len(args) < 2: | ||
# parser.error("please specify args") | ||
# if not os.path.exists(options.outdir): | ||
# # This script can be run multiple times in parallel. We | ||
# # don't mind if the makedirs call fails because somebody | ||
# # else snuck in and created the directory before us. | ||
# try: | ||
# os.makedirs(options.outdir) | ||
# except OSError as e: | ||
# if not os.path.exists(options.outdir): | ||
# raise | ||
# search_path = genmsg.command_line.includepath_to_dict(options.includepath) | ||
# retcode = gen.generate_messages(options.package, args[1:], options.outdir, search_path) | ||
# except genmsg.InvalidMsgSpec as e: | ||
# print("ERROR: ", e, file=sys.stderr) | ||
# retcode = 1 | ||
# except MsgGenerationException as e: | ||
# print("ERROR: ", e, file=sys.stderr) | ||
# retcode = 2 | ||
# except Exception as e: | ||
# traceback.print_exc() | ||
# print("ERROR: ",e) | ||
# retcode = 3 | ||
# sys.exit(retcode or 0) |
Binary file not shown.