-
Notifications
You must be signed in to change notification settings - Fork 783
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bugfix: Publisher crashes when there are more than one publisher. [61…
…79] (#659) * Refs #6178. Written regression test. * Refs #6178. Fixed bug. * Refs #6178. Little change.
- Loading branch information
1 parent
daf8b3b
commit 940f805
Showing
4 changed files
with
177 additions
and
14 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
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 |
---|---|---|
@@ -0,0 +1,79 @@ | ||
# Copyright 2016 Proyectos y Sistemas de Mantenimiento SL (eProsima). | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import sys, os, subprocess, glob, time | ||
|
||
script_dir = os.path.dirname(os.path.realpath(__file__)) | ||
|
||
publisher_command = os.environ.get("SIMPLE_COMMUNICATION_PUBLISHER_BIN") | ||
if not publisher_command: | ||
publisher_files = glob.glob(os.path.join(script_dir, "**/SimpleCommunicationPublisher*"), recursive=True) | ||
pf = iter(publisher_files) | ||
publisher_command = next(pf, None) | ||
while publisher_command and (not os.path.isfile(publisher_command) or not os.access(publisher_command, | ||
os.X_OK)): | ||
publisher_command = next(pf, None) | ||
assert publisher_command | ||
subscriber_command = os.environ.get("SIMPLE_COMMUNICATION_SUBSCRIBER_BIN") | ||
if not subscriber_command: | ||
subscriber_files = glob.glob(os.path.join(script_dir, "**/SimpleCommunicationSubscriber*"), recursive=True) | ||
pf = iter(subscriber_files) | ||
subscriber_command = next(pf, None) | ||
while subscriber_command and (not os.path.isfile(subscriber_command) or not os.access(subscriber_command, | ||
os.X_OK)): | ||
subscriber_command = next(pf, None) | ||
assert subscriber_command | ||
|
||
extra_pub_arg = os.environ.get("EXTRA_PUB_ARG") | ||
if extra_pub_arg: | ||
extra_pub_args = extra_pub_arg.split() | ||
else: | ||
extra_pub_args = [] | ||
|
||
real_xml_file_pub = None | ||
real_xml_file_sub = None | ||
xml_file = os.environ.get("XML_FILE") | ||
if xml_file: | ||
real_xml_file_pub = os.path.join(script_dir, xml_file) | ||
real_xml_file_sub = os.path.join(script_dir, xml_file) | ||
else: | ||
xml_file_pub = os.environ.get("XML_FILE_PUB") | ||
if xml_file_pub: | ||
real_xml_file_pub = os.path.join(script_dir, xml_file_pub) | ||
xml_file_sub = os.environ.get("XML_FILE_SUB") | ||
if xml_file_sub: | ||
real_xml_file_sub = os.path.join(script_dir, xml_file_sub) | ||
|
||
subscriber1_proc = subprocess.Popen([subscriber_command, "--seed", str(os.getpid()), "--publishers", "2", "--samples", "10"] | ||
+ (["--xmlfile", real_xml_file_sub] if real_xml_file_sub else [])) | ||
publisher1_proc = subprocess.Popen([publisher_command, "--seed", str(os.getpid()), "--samples", "10"] | ||
+ (["--xmlfile", real_xml_file_pub] if real_xml_file_pub else []) | ||
+ extra_pub_args) | ||
time.sleep(1) | ||
publisher2_proc = subprocess.Popen([publisher_command, "--seed", str(os.getpid()), "--samples", "10"] | ||
+ (["--xmlfile", real_xml_file_pub] if real_xml_file_pub else []) | ||
+ extra_pub_args) | ||
subscriber2_proc = subprocess.Popen([subscriber_command, "--seed", str(os.getpid()), "--publishers", "2", "--samples", "10"] | ||
+ (["--xmlfile", real_xml_file_sub] if real_xml_file_sub else [])) | ||
|
||
subscriber1_proc.communicate() | ||
retvalue = subscriber1_proc.returncode | ||
subscriber2_proc.communicate() | ||
if retvalue == 0: | ||
retvalue = subscriber2_proc.returncode | ||
|
||
publisher1_proc.kill() | ||
publisher2_proc.kill() | ||
|
||
sys.exit(retvalue) |