-
Notifications
You must be signed in to change notification settings - Fork 914
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1011 from clearpathrobotics/fix_migration_rule
Fix migration rule
- Loading branch information
Showing
29 changed files
with
466 additions
and
103 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
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
4 changes: 2 additions & 2 deletions
4
test/test_rosbag/bag_migration_tests/msg_current/MigratedExplicit.msg
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,4 +1,4 @@ | ||
Header header | ||
float32 afield2 #58.2 | ||
float32 field2 #58.2 | ||
string combo_field3 #"aldfkja 17" | ||
int32 afield4 #82 | ||
int32 field4 #82 |
2 changes: 1 addition & 1 deletion
2
test/test_rosbag/bag_migration_tests/msg_current/MigratedImplicit.msg
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
2 changes: 1 addition & 1 deletion
2
test/test_rosbag/bag_migration_tests/msg_current/MigratedMixed.msg
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 @@ | ||
Header header | ||
MigratedImplicit field1 #(34, 16.32, "kjljene", (17, 58.2, "aldfkja", 82)) | ||
MigratedImplicit field1 #(34, 16.32, "kjljene", (58.2, "aldfkja 17", 82)) | ||
int32 field2 #59 |
5 changes: 3 additions & 2 deletions
5
test/test_rosbag/bag_migration_tests/msg_current/PartiallyMigrated.msg
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,4 +1,5 @@ | ||
int32 field1 # 40 | ||
MigratedExplicit field2 # (17, 58.2, "aldfkja", 82) | ||
MigratedExplicit field2 # (58.2, "aldfkja 17", 82) | ||
string field3 # "radasdk" | ||
float32 field5 # 63.4 | ||
float32 field4 # 63.4 | ||
float64 field5 # 123.4 |
File renamed without changes.
3 changes: 2 additions & 1 deletion
3
test/test_rosbag/bag_migration_tests/msg_current/Unmigrated.msg
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,4 @@ | ||
int32 field1 #12 | ||
string field2 #"uuiasjs" | ||
float32 field3 #61.7 | ||
float32 field3 #61.7 | ||
float64 field4 #123.4 |
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,3 @@ | ||
int32 CONSTANT=2 | ||
int32 CONSTANT_TWO=42 | ||
int32 value |
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,2 @@ | ||
float32[4] field1 # [1.2, 3.4, 5.6, 7.8] | ||
SimpleMigrated[4] field2 # [11, 22, 33, 44] |
2 changes: 2 additions & 0 deletions
2
test/test_rosbag/bag_migration_tests/msg_gen4/MigratedAddSub.msg
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,2 @@ | ||
Simple field1 | ||
Simple field2 |
4 changes: 4 additions & 0 deletions
4
test/test_rosbag/bag_migration_tests/msg_gen4/MigratedExplicit.msg
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,4 @@ | ||
Header header | ||
float32 afield2 #58.2 | ||
string combo_field3 #"aldfkja 17" | ||
int32 afield4 #82 |
7 changes: 7 additions & 0 deletions
7
test/test_rosbag/bag_migration_tests/msg_gen4/MigratedImplicit.msg
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,7 @@ | ||
Header header | ||
MigratedExplicit field4 #(58.2 "aldfkja 17", 82) | ||
string field3 #"kljene" | ||
float32 field2 #16.32 | ||
int32 field1 #34 | ||
|
||
|
3 changes: 3 additions & 0 deletions
3
test/test_rosbag/bag_migration_tests/msg_gen4/MigratedMixed.msg
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,3 @@ | ||
Header header | ||
MigratedImplicit field1 #(34, 16.32, "kjljene", (58.2, "aldfkja 17", 82)) | ||
int32 field2 #59 |
4 changes: 4 additions & 0 deletions
4
test/test_rosbag/bag_migration_tests/msg_gen4/PartiallyMigrated.msg
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,4 @@ | ||
int32 field1 # 40 | ||
MigratedExplicit field2 # (58.2, "aldfkja 17", 82) | ||
string field3 # "radasdk" | ||
float32 field4 # 63.4 |
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,2 @@ | ||
float64 foo # 2.17 | ||
int32[4] bar # [8, 2, 5, 1] |
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 @@ | ||
int32 field1 #42 |
1 change: 1 addition & 0 deletions
1
test/test_rosbag/bag_migration_tests/msg_gen4/SimpleMigrated.msg
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 @@ | ||
int32 data4 # 42 |
2 changes: 2 additions & 0 deletions
2
test/test_rosbag/bag_migration_tests/msg_gen4/SubUnmigrated.msg
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,2 @@ | ||
int32 field1 # 92 | ||
Unmigrated field2 # (12, "uuiasjs", 61.7) |
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,3 @@ | ||
int32 field1 #12 | ||
string field2 #"uuiasjs" | ||
float32 field3 #61.7 |
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
70 changes: 70 additions & 0 deletions
70
test/test_rosbag/bag_migration_tests/scripts/generate_data_4.py
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,70 @@ | ||
#!/usr/bin/env python | ||
# Software License Agreement (BSD License) | ||
# | ||
# Copyright (c) 2008, Willow Garage, Inc. | ||
# 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. | ||
|
||
from test_rosbag.msg import * | ||
|
||
import rosbag | ||
|
||
def generate_data(): | ||
bag = rosbag.Bag("test/migrated_explicit_gen4.bag", "w") | ||
m = MigratedExplicit(None, 58.2, "aldfkja 17", 82) | ||
bag.write("migrated_explicit", m, genpy.Time()) | ||
bag.close() | ||
|
||
bag = rosbag.Bag("test/migrated_implicit_gen4.bag", "w") | ||
m = MigratedImplicit(None, MigratedExplicit(None, 58.2, "aldfkja 17", 82), "kljene", 16.32, 34) | ||
bag.write("migrated_implicit", m, genpy.Time()) | ||
bag.close() | ||
|
||
bag = rosbag.Bag("test/migrated_mixed_gen4.bag", "w") | ||
m = MigratedMixed(None, MigratedImplicit(None, MigratedExplicit(None, 58.2, "aldfkja 17", 82), "kljene", 16.32, 34), 59) | ||
bag.write("migrated_mixed", m, genpy.Time()) | ||
bag.close() | ||
|
||
bag = rosbag.Bag("test/partially_migrated_gen4.bag", "w") | ||
m = PartiallyMigrated(40, MigratedExplicit(None, 58.2, "aldfkja 17", 82), "radasdk", 63.4) | ||
bag.write("partially_migrated", m, genpy.Time()) | ||
bag.close() | ||
|
||
bag = rosbag.Bag("test/renamed_gen4.bag", "w") | ||
m = Renamed4(2.17, [8, 2, 5, 1]) | ||
bag.write("renamed", m, genpy.Time()) | ||
bag.close() | ||
|
||
bag = rosbag.Bag("test/converged_gen4.bag", "w") | ||
m = Converged([1.2, 3.4, 5.6, 7.8], [SimpleMigrated(11), SimpleMigrated(22), SimpleMigrated(33), SimpleMigrated(44)]) | ||
bag.write("converged", m, genpy.Time()) | ||
bag.close() | ||
|
||
if __name__ == '__main__': | ||
generate_data() |
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
Oops, something went wrong.