Skip to content

Commit 69d98fa

Browse files
committed
Merge pull request #47 from yantrabuddhi/chat_ws
Chat ws
2 parents 5b3f2e0 + 1077849 commit 69d98fa

File tree

6 files changed

+359
-0
lines changed

6 files changed

+359
-0
lines changed
Lines changed: 188 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,188 @@
1+
cmake_minimum_required(VERSION 2.8.3)
2+
project(oc_chat_ros)
3+
4+
## Find catkin macros and libraries
5+
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
6+
## is used, also find other catkin packages
7+
find_package(catkin REQUIRED COMPONENTS
8+
rospy
9+
std_msgs
10+
message_generation
11+
)
12+
13+
## System dependencies are found with CMake's conventions
14+
# find_package(Boost REQUIRED COMPONENTS system)
15+
16+
17+
## Uncomment this if the package has a setup.py. This macro ensures
18+
## modules and global scripts declared therein get installed
19+
## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html
20+
# catkin_python_setup()
21+
22+
################################################
23+
## Declare ROS messages, services and actions ##
24+
################################################
25+
26+
## To declare and build messages, services or actions from within this
27+
## package, follow these steps:
28+
## * Let MSG_DEP_SET be the set of packages whose message types you use in
29+
## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...).
30+
## * In the file package.xml:
31+
## * add a build_depend tag for "message_generation"
32+
## * add a build_depend and a run_depend tag for each package in MSG_DEP_SET
33+
## * If MSG_DEP_SET isn't empty the following dependency has been pulled in
34+
## but can be declared for certainty nonetheless:
35+
## * add a run_depend tag for "message_runtime"
36+
## * In this file (CMakeLists.txt):
37+
## * add "message_generation" and every package in MSG_DEP_SET to
38+
## find_package(catkin REQUIRED COMPONENTS ...)
39+
## * add "message_runtime" and every package in MSG_DEP_SET to
40+
## catkin_package(CATKIN_DEPENDS ...)
41+
## * uncomment the add_*_files sections below as needed
42+
## and list every .msg/.srv/.action file to be processed
43+
## * uncomment the generate_messages entry below
44+
## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...)
45+
46+
## Generate messages in the 'msg' folder
47+
add_message_files(
48+
FILES
49+
ChatMessage.msg
50+
# Message2.msg
51+
)
52+
53+
## Generate services in the 'srv' folder
54+
# add_service_files(
55+
# FILES
56+
# Service1.srv
57+
# Service2.srv
58+
# )
59+
60+
## Generate actions in the 'action' folder
61+
# add_action_files(
62+
# FILES
63+
# Action1.action
64+
# Action2.action
65+
# )
66+
67+
## Generate added messages and services with any dependencies listed here
68+
generate_messages(
69+
DEPENDENCIES
70+
std_msgs
71+
)
72+
73+
################################################
74+
## Declare ROS dynamic reconfigure parameters ##
75+
################################################
76+
77+
## To declare and build dynamic reconfigure parameters within this
78+
## package, follow these steps:
79+
## * In the file package.xml:
80+
## * add a build_depend and a run_depend tag for "dynamic_reconfigure"
81+
## * In this file (CMakeLists.txt):
82+
## * add "dynamic_reconfigure" to
83+
## find_package(catkin REQUIRED COMPONENTS ...)
84+
## * uncomment the "generate_dynamic_reconfigure_options" section below
85+
## and list every .cfg file to be processed
86+
87+
## Generate dynamic reconfigure parameters in the 'cfg' folder
88+
# generate_dynamic_reconfigure_options(
89+
# cfg/DynReconf1.cfg
90+
# cfg/DynReconf2.cfg
91+
# )
92+
93+
###################################
94+
## catkin specific configuration ##
95+
###################################
96+
## The catkin_package macro generates cmake config files for your package
97+
## Declare things to be passed to dependent projects
98+
## INCLUDE_DIRS: uncomment this if you package contains header files
99+
## LIBRARIES: libraries you create in this project that dependent projects also need
100+
## CATKIN_DEPENDS: catkin_packages dependent projects also need
101+
## DEPENDS: system dependencies of this project that dependent projects also need
102+
catkin_package(
103+
# INCLUDE_DIRS include
104+
# LIBRARIES oc_chat_ros
105+
CATKIN_DEPENDS message_runtime rospy std_msgs
106+
# DEPENDS system_lib
107+
)
108+
109+
###########
110+
## Build ##
111+
###########
112+
113+
## Specify additional locations of header files
114+
## Your package locations should be listed before other locations
115+
# include_directories(include)
116+
include_directories(
117+
${catkin_INCLUDE_DIRS}
118+
)
119+
120+
## Declare a C++ library
121+
# add_library(oc_chat_ros
122+
# src/${PROJECT_NAME}/oc_chat_ros.cpp
123+
# )
124+
125+
## Add cmake target dependencies of the library
126+
## as an example, code may need to be generated before libraries
127+
## either from message generation or dynamic reconfigure
128+
# add_dependencies(oc_chat_ros ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
129+
130+
## Declare a C++ executable
131+
# add_executable(oc_chat_ros_node src/oc_chat_ros_node.cpp)
132+
133+
## Add cmake target dependencies of the executable
134+
## same as for the library above
135+
# add_dependencies(oc_chat_ros_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
136+
137+
## Specify libraries to link a library or executable target against
138+
# target_link_libraries(oc_chat_ros_node
139+
# ${catkin_LIBRARIES}
140+
# )
141+
142+
#############
143+
## Install ##
144+
#############
145+
146+
# all install targets should use catkin DESTINATION variables
147+
# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html
148+
149+
## Mark executable scripts (Python etc.) for installation
150+
## in contrast to setup.py, you can choose the destination
151+
# install(PROGRAMS
152+
# scripts/my_python_script
153+
# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
154+
# )
155+
156+
## Mark executables and/or libraries for installation
157+
# install(TARGETS oc_chat_ros oc_chat_ros_node
158+
# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
159+
# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
160+
# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
161+
# )
162+
163+
## Mark cpp header files for installation
164+
# install(DIRECTORY include/${PROJECT_NAME}/
165+
# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
166+
# FILES_MATCHING PATTERN "*.h"
167+
# PATTERN ".svn" EXCLUDE
168+
# )
169+
170+
## Mark other files for installation (e.g. launch and bag files, etc.)
171+
# install(FILES
172+
# # myfile1
173+
# # myfile2
174+
# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
175+
# )
176+
177+
#############
178+
## Testing ##
179+
#############
180+
181+
## Add gtest based cpp test target and link libraries
182+
# catkin_add_gtest(${PROJECT_NAME}-test test/test_oc_chat_ros.cpp)
183+
# if(TARGET ${PROJECT_NAME}-test)
184+
# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME})
185+
# endif()
186+
187+
## Add folders to be run by python nosetests
188+
# catkin_add_nosetests(test)
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
string utterance
2+
uint8 confidence
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<?xml version="1.0"?>
2+
<package>
3+
<name>oc_chat_ros</name>
4+
<version>0.0.0</version>
5+
<description>The oc_chat_ros package</description>
6+
7+
<!-- One maintainer tag required, multiple allowed, one person per tag -->
8+
<!-- Example: -->
9+
<!-- <maintainer email="[email protected]">Jane Doe</maintainer> -->
10+
<maintainer email="[email protected]">mandeep</maintainer>
11+
12+
13+
<!-- One license tag required, multiple allowed, one license per tag -->
14+
<!-- Commonly used license strings: -->
15+
<!-- BSD, MIT, Boost Software License, GPLv2, GPLv3, LGPLv2.1, LGPLv3 -->
16+
<license>TODO</license>
17+
18+
19+
<!-- Url tags are optional, but mutiple are allowed, one per tag -->
20+
<!-- Optional attribute type can be: website, bugtracker, or repository -->
21+
<!-- Example: -->
22+
<!-- <url type="website">http://wiki.ros.org/oc_chat_ros</url> -->
23+
24+
25+
<!-- Author tags are optional, mutiple are allowed, one per tag -->
26+
<!-- Authors do not have to be maintianers, but could be -->
27+
<!-- Example: -->
28+
<!-- <author email="[email protected]">Jane Doe</author> -->
29+
30+
31+
<!-- The *_depend tags are used to specify dependencies -->
32+
<!-- Dependencies can be catkin packages or system dependencies -->
33+
<!-- Examples: -->
34+
<!-- Use build_depend for packages you need at compile time: -->
35+
<!-- <build_depend>message_generation</build_depend> -->
36+
<!-- Use buildtool_depend for build tool packages: -->
37+
<!-- <buildtool_depend>catkin</buildtool_depend> -->
38+
<!-- Use run_depend for packages you need at runtime: -->
39+
<!-- <run_depend>message_runtime</run_depend> -->
40+
<!-- Use test_depend for packages you need only for testing: -->
41+
<!-- <test_depend>gtest</test_depend> -->
42+
<buildtool_depend>catkin</buildtool_depend>
43+
<build_depend>rospy</build_depend>
44+
<build_depend>std_msgs</build_depend>
45+
<run_depend>rospy</run_depend>
46+
<run_depend>std_msgs</run_depend>
47+
<build_depend>message_generation</build_depend>
48+
<run_depend>message_runtime</run_depend>
49+
<!-- The export tag contains other, unspecified, tags -->
50+
<export>
51+
<!-- Other tools can request additional information be placed here -->
52+
53+
</export>
54+
</package>
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
#
2+
# netcat.py - Quick-n-dirty network interface
3+
# Copyright (C) 2015 Linas Vepstas
4+
#
5+
# This program is free software; you can redistribute it and/or modify
6+
# it under the terms of the GNU Affero General Public License v3 as
7+
# published by the Free Software Foundation and including the exceptions
8+
# at http://opencog.org/wiki/Licenses
9+
#
10+
# This program is distributed in the hope that it will be useful,
11+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
# GNU General Public License for more details.
14+
#
15+
# You should have received a copy of the GNU Affero General Public License
16+
# along with this program; if not, write to:
17+
# Free Software Foundation, Inc.,
18+
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19+
20+
21+
import socket
22+
23+
# This implements netcat in python.
24+
#
25+
# If you don't now what netcat is, then you should google it.
26+
# Its important and not complicated.
27+
#
28+
def netcat(hostname, port, content) :
29+
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
30+
31+
# If the cogserver is down, the connection will fail.
32+
try:
33+
s.connect((hostname, port))
34+
except socket.error as msg:
35+
print "Connect failed: ", msg
36+
s.close()
37+
return
38+
39+
s.sendall(content)
40+
s.shutdown(socket.SHUT_WR)
41+
while True:
42+
data = s.recv(1024)
43+
if not data or data == "":
44+
break
45+
# print "Received:", repr(data)
46+
# print "Connection closed."
47+
s.close()
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
#!/usr/bin/env python
2+
3+
#server listens to string from opencog and sends a ros message to tts
4+
import SocketServer
5+
import rospy
6+
from std_msgs.msg import String
7+
8+
global pub
9+
10+
class MyTCPHandler(SocketServer.BaseRequestHandler):
11+
"""
12+
The request handler class for our server.
13+
14+
It is instantiated once per connection to the server, and must
15+
override the handle() method to implement communication to the
16+
client.
17+
"""
18+
19+
def handle(self):
20+
global pub
21+
# self.request is the TCP socket connected to the client
22+
self.data = self.request.recv(1024).strip()
23+
print "{} wrote:".format(self.client_address[0])
24+
print self.data
25+
# just send back the same data, but upper-cased
26+
#self.request.sendall(self.data.upper())
27+
#pub = rospy.Publisher('/tts', String, queue_size=5)
28+
pub.publish(self.data)
29+
30+
if __name__ == "__main__":
31+
global pub
32+
HOST, PORT = "localhost", 17030
33+
rospy.init_node('oc_chat_tts',anonymous=True)
34+
pub = rospy.Publisher('/tts', String, queue_size=5)
35+
# Create the server, binding to localhost on port 9999
36+
server = SocketServer.TCPServer((HOST, PORT), MyTCPHandler)
37+
38+
# Activate the server; this will keep running until you
39+
# interrupt the program with Ctrl-C
40+
server.serve_forever(poll_interval=0.5)
41+
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#!/usr/bin/env python
2+
import rospy
3+
from oc_chat_ros.msg import ChatMessage
4+
from netcat import netcat
5+
6+
def callback(data):
7+
rospy.loginfo(rospy.get_caller_id() + "I heard %s", data.utterance)
8+
netcat("localhost",17040,"(chat \""+data.utterance+"\")")
9+
10+
def listener():
11+
12+
# In ROS, nodes are uniquely named. If two nodes with the same
13+
# node are launched, the previous one is kicked off. The
14+
# anonymous=True flag means that rospy will choose a unique
15+
# name for our 'listener' node so that multiple listeners can
16+
# run simultaneously.
17+
rospy.init_node('stt_to_oc', anonymous=True)
18+
19+
rospy.Subscriber("/robot/speech", ChatMessage, callback)
20+
21+
# spin() simply keeps python from exiting until this node is stopped
22+
rospy.spin()
23+
24+
25+
if __name__ == '__main__':
26+
listener()
27+

0 commit comments

Comments
 (0)