summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/invoker/vxml/VoiceXMLInvoker.cpp
blob: c0d3329a180d5b6d92a64b53efdccc271166d1df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#include "VoiceXMLInvoker.h"
#include <glog/logging.h>

#ifdef BUILD_AS_PLUGINS
#include <Pluma/Connector.hpp>
#endif

namespace uscxml {

#ifdef BUILD_AS_PLUGINS
PLUMA_CONNECTOR
bool connect(pluma::Host& host) {
	host.add( new VoiceXMLInvokerProvider() );
	return true;
}
#endif

VoiceXMLInvoker::VoiceXMLInvoker() {
}

VoiceXMLInvoker::~VoiceXMLInvoker() {
};

boost::shared_ptr<InvokerImpl> VoiceXMLInvoker::create(InterpreterImpl* interpreter) {
	boost::shared_ptr<VoiceXMLInvoker> invoker = boost::shared_ptr<VoiceXMLInvoker>(new VoiceXMLInvoker());
	invoker->_interpreter = interpreter;
	invoker->_pub = umundo::TypedPublisher("mmi:jvoicexml");
	invoker->_sub = umundo::TypedSubscriber("mmi:jvoicexml");

	invoker->_pub.registerType("LifeCycleEvent", new ::LifeCycleEvent());


	invoker->_node.addPublisher(invoker->_pub);
	invoker->_node.addSubscriber(invoker->_sub);

	return invoker;
}

void VoiceXMLInvoker::receive(void* object, umundo::Message* msg) {
	std::cout << msg->getMeta("um.s11n.type") << std::endl;
}

Data VoiceXMLInvoker::getDataModelVariables() {
	Data data;
	return data;
}

void VoiceXMLInvoker::send(const SendRequest& req) {
	StartRequest start;
	std::stringstream domSS;
//	if (req.dom) {
//		// hack until jVoiceXML supports XML
//		std::cout << req.dom;
//		Arabica::DOM::NodeList<std::string> prompts = req.dom.getElementsByTagName("vxml:prompt");
//		for (int i = 0; i < prompts.getLength(); i++) {
//			if (prompts.item(i).hasChildNodes()) {
//				domSS << prompts.item(i).getFirstChild().getNodeValue() << ".";
//			}
//		}
//	}
//	domSS << req.getFirstDOMElement();
	domSS << req.dom;
	start.content = domSS.str();
	_interpreter->getDataModel().replaceExpressions(start.content);

	start.requestId = "asdf";
	start.source = "asdf";
	start.target = "umundo://mmi/jvoicexml";
	::LifeCycleEvent lce = MMIProtoBridge::toProto(start);
	_pub.sendObj("LifeCycleEvent", &lce);
}

void VoiceXMLInvoker::invoke(const InvokeRequest& req) {
	_pub.waitForSubscribers(1);

}

}