Statistics
| Branch: | Tag: | Revision:

hlrc / server / src / MiddlewareROS.cpp @ ae368998

History | View | Annotate | Download (4.638 KB)

1
/*
2
* This file is part of hlrc_server
3
*
4
* Copyright(c) sschulz <AT> techfak.uni-bielefeld.de
5
* http://opensource.cit-ec.de/projects/hlrc_server
6
*
7
* This file may be licensed under the terms of the
8
* GNU General Public License Version 3 (the ``GPL''),
9
* or (at your option) any later version.
10
*
11
* Software distributed under the License is distributed
12
* on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
13
* express or implied. See the GPL for the specific language
14
* governing rights and limitations.
15
*
16
* You should have received a copy of the GPL along with this
17
* program. If not, go to http://www.gnu.org/licenses/gpl.html
18
* or write to the Free Software Foundation, Inc.,
19
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20
*
21
* The development of this software was supported by the
22
* Excellence Cluster EXC 277 Cognitive Interaction Technology.
23
* The Excellence Cluster EXC 277 is a grant of the Deutsche
24
* Forschungsgemeinschaft (DFG) in the context of the German
25
* Excellence Initiative.
26
*
27
*/
28

    
29
#include "MiddlewareROS.h"
30

    
31
#ifdef ROS_SUPPORT
32

    
33
#include <cstdio>
34

    
35
//CallbackWrapper:
36
#include <boost/range/algorithm/remove_if.hpp>
37
#include <boost/algorithm/string/classification.hpp>
38
#include <actionlib/client/simple_action_client.h>
39
#include "ROS/UtteranceROS.h"
40

    
41
using namespace std;
42
using namespace hlrc_server;
43

    
44
template <typename actionspec>
45
actionlib::SimpleActionClient<actionspec> * create_action_client(string scope){
46
    printf("> starting SimpleActionClient on %s\n",scope.c_str());
47

    
48
    actionlib::SimpleActionClient<actionspec> *ac = new actionlib::SimpleActionClient<actionspec>(scope, true);
49

    
50
    if (!ac->waitForServer(ros::Duration(1))){
51
        char buf[256];
52
        snprintf(buf, 256, "ERROR: action service %s not ready", scope.c_str());
53
        throw runtime_error(buf);
54
    }
55
    return ac;
56
}
57

    
58

    
59
MiddlewareROS::MiddlewareROS(Arbiter *arbiter, std::string scope) : Middleware(arbiter, scope){
60
    init();
61
}
62

    
63
MiddlewareROS::~MiddlewareROS(){
64

    
65
}
66

    
67
void MiddlewareROS::init(){
68
    string scope = base_scope + "/set/";
69

    
70
    string node_name = "hlrc_server__"+ base_scope;
71
    node_name.erase(boost::remove_if(node_name, boost::is_any_of("/")), node_name.end());
72

    
73
    printf("> registering on ROS as node %s\n",node_name.c_str());
74
    if (ros::isInitialized()){
75
        //ros is already active, no need to take care of that
76
        tick_necessary = false;
77
    }else{
78
        printf("> ROS not initialized, calling ros::init()\n");
79
        ros::M_string no_remapping;
80
        ros::init(no_remapping, node_name);
81
        tick_necessary = true;
82
    }
83

    
84
    //create node handle
85
    //printf("> creating ros node handle\n");
86
    //ros::NodeHa
87
    ros::NodeHandle n;
88

    
89
    printf("> setting up ROS services...\n");
90
    //FIXME//init_callback("speech",    LocalServer::CallbackPtr(new SpeechCallbackWrapper(this)));
91

    
92
    //ros::AsyncSpinner *spinner = new ros::AsyncSpinner(4); // Use 4 threads
93
    //spinner->start();
94

    
95
    animation_action_server = new AnimationCallbackWrapper(this, scope, "animation");
96
    utterance_action_server = new UtteranceCallbackWrapper(this, scope, "utterance");
97
    current_emotion_action_server = new EmotionCallbackWrapper(this, scope, "currentEmotion");
98
    default_emotion_action_server = new EmotionCallbackWrapper(this, scope, "defaultEmotion");
99
    gaze_action_server = new GazeCallbackWrapper(this, scope, "gaze");
100
    mouth_action_server = new MouthCallbackWrapper(this, scope, "mouth");
101
    speech_action_server = new SpeechCallbackWrapper(this, scope, "speech");
102

    
103
    //create tts client
104
    tts_ac = create_action_client<hlrc_server::ttsAction>(base_scope + "/tts_provider");
105

    
106

    
107

    
108
    printf("> init done\n");
109
}
110

    
111
void MiddlewareROS::tick(){
112
    if (tick_necessary){
113
        ros::spinOnce();
114
    }
115
}
116

    
117
//call a tts system to convert a string to an utterance
118
boost::shared_ptr<Utterance> MiddlewareROS::tts_call(string text){
119
    //double tts_timeout = 1.0; //seconds. DO NOT CHANGE THIS!
120

    
121
    boost::shared_ptr<Utterance> utterance(new Utterance());
122

    
123
    hlrc_server::ttsGoal goal;
124

    
125
    goal.text = text;
126

    
127
    //send
128
    tts_ac->sendGoal(goal);
129

    
130
    //call ros:
131
    bool finished_before_timeout = tts_ac->waitForResult(ros::Duration(ROS_ACTION_CALL_TIMEOUT));
132

    
133
    if (!finished_before_timeout){
134
        printf("> ERROR: NO REPLY to utterance action call received within %4.2f s\n",ROS_ACTION_CALL_TIMEOUT);
135
    }else{
136
        //done, return utterance ptr
137
        ttsResultConstPtr tts_res = tts_ac->getResult();
138
        boost::shared_ptr<Utterance> utterance(new UtteranceROS(tts_res));
139
        printf("> done. got utterance (text=%s)\n",utterance->get_text().c_str());
140
        return utterance;
141
    }
142

    
143
    printf("> failed... got no utterance\n");
144
    return utterance;
145
}
146

    
147

    
148
#endif