8 #include <boost/algorithm/string/replace.hpp>
9 #include <boost/algorithm/string/predicate.hpp>
16 #include "sandesh/sandesh_trace.h"
17 #include "sandesh/common/vns_types.h"
18 #include "sandesh/common/vns_constants.h"
19 #include "sandesh/xmpp_message_sandesh_types.h"
20 #include "sandesh/xmpp_trace_sandesh_types.h"
36 string &from,
const string &xmlns, uint8_t *buf,
40 switch (str.strmtype) {
42 len = EncodeOpen(buf, to, from, xmlns, size);
45 len = EncodeOpenResp(buf, to, from, size);
48 switch (str.strmtlstype) {
50 len = EncodeFeatureTlsRequest(buf);
53 len = EncodeFeatureTlsStart(buf);
56 len = EncodeFeatureTlsProceed(buf);
72 return EncodeWhitespace(buf);
89 XmlBase *doc, uint8_t *buf,
size_t size) {
90 unique_ptr<XmlBase> send_doc_(AllocXmppXmlImpl());
93 send_doc_->LoadDoc(
"");
94 send_doc_->AddNode(
"iq",
"");
98 send_doc_->AddAttribute(
"type",
"get");
101 send_doc_->AddAttribute(
"type",
"set");
104 send_doc_->AddAttribute(
"type",
"result");
107 send_doc_->AddAttribute(
"type",
"error");
112 send_doc_->AddAttribute(
"from", iq->
from);
113 send_doc_->AddAttribute(
"to", iq->
to);
114 send_doc_->AddAttribute(
"id",
"id1");
116 send_doc_->AddChildNode(
"pubsub",
"");
117 send_doc_->AddAttribute(
"xmlns",
"http://jabber.org/protocol/pubsub");
119 send_doc_->AppendDoc(
"pubsub", doc);
122 int len = send_doc_->WriteDoc(buf);
130 int len = str.size();
132 memcpy(buf, str.data(), len);
143 if (resp_doc.get() == NULL) {
147 SetTo(to, resp_doc.get());
148 SetFrom(from, resp_doc.get());
150 std::stringstream ss;
151 resp_doc->PrintDoc(ss);
154 size_t len = msg.size();
155 if (len > max_size) {
156 LOG(ERROR,
"\n (Open Confirm) size greater than max buffer size \n");
159 boost::algorithm::ireplace_last(msg,
"/",
" ");
160 memcpy(buf, msg.c_str(), len);
166 const string &xmlns,
size_t max_size) {
168 if (open_doc_.get() == NULL) {
172 SetTo(to, open_doc_.get());
173 SetFrom(from, open_doc_.get());
174 SetXmlns(xmlns, open_doc_.get());
177 std::stringstream ss;
178 open_doc_->PrintDoc(ss);
181 size_t len = msg.size();
182 if (len > max_size) {
183 LOG(ERROR,
"\n (Open Message) size greater than max buffer size \n");
186 boost::algorithm::ireplace_last(msg,
"/",
" ");
187 memcpy(buf, msg.c_str(), len);
195 int len = resp_doc->WriteDoc(buf);
202 int len = resp_doc->WriteDoc(buf);
209 int len = resp_doc->WriteDoc(buf);
216 if (impl ==
nullptr) {
226 msg->
dom.reset(impl);
239 if (ts.find(
sXMPP_IQ) != string::npos) {
264 if (msg->
action.compare(
"collection") == 0) {
306 ts_tmp.erase(std::remove(ts_tmp.begin(), ts_tmp.end(),
'\n'), ts_tmp.end());
314 "Open message not at the beginning.", ts);
321 boost::algorithm::replace_last(ts_tmp,
">",
"/>");
322 if (impl->
LoadDoc(ts_tmp) == -1) {
387 }
else if (ts.find_first_of(
sXMPP_VALIDWS) != string::npos) {
430 if (!doc)
return NULL;
437 if (!doc)
return NULL;
452 if (!doc)
return NULL;
459 if (!doc)
return NULL;
466 if (!doc)
return NULL;
468 if (str.compare(
"set") == 0) {
471 }
else if (str.compare(
"get") == 0) {
478 if (!doc)
return NULL;
488 if (!doc)
return NULL;
490 const char *node = doc->
ReadNode(
"associate");
499 if (!doc)
return NULL;
501 const char *node = doc->
ReadNode(
"dissociate");
static int EncodeOpen(uint8_t *data, std::string &to, std::string &from, const std::string &xmlns, size_t size)
static const char * GetXmlns(XmlBase *doc)
#define XMPP_UTDEBUG(obj,...)
static const char * GetId(XmlBase *doc)
virtual int LoadDoc(const std::string &doc)=0
XmppStreamTlsType strmtlstype
static XmlBase * AllocXmppXmlImpl(const char *doc=NULL)
virtual const char * ReadChildNodeName()=0
virtual const char * ReadNode(const std::string &name)=0
#define sXMPP_MESSAGE_KEY
static const char * GetType(XmlBase *doc)
static int EncodeMessage(const XmppChatMessage *, uint8_t *data, size_t size)
static const char * GetDsNode(XmlBase *doc)
XmppStreamMsgType strmtype
#define sXMPP_STREAM_RESP
#define sXMPP_STREAM_START_TLS
static int EncodePresence(uint8_t *data, size_t size)
virtual int ModifyAttribute(const std::string &key, const std::string &value)=0
static const char * GetFrom(XmlBase *doc)
static int SetFrom(std::string &from, XmlBase *doc)
#define sXMPP_STREAM_START
std::unique_ptr< XmlBase > dom
static XmppStanza::XmppMessage * DecodeInternal(const XmppConnection *connection, const std::string &ts, XmlBase *impl)
static std::unique_ptr< XmlBase > open_doc_
#define sXMPP_STREAM_PROCEED_TLS
#define sXMPP_STREAM_NS_TLS
static int SetXmlns(const std::string &from, XmlBase *doc)
virtual const char * ReadAttrib(const std::string &str)=0
static int EncodeIq(const XmppMessageIq *iq, XmlBase *doc, uint8_t *data, size_t size)
static int EncodeFeatureTlsProceed(uint8_t *data)
#define sXMPP_STREAM_START_S
static const char * GetAction(XmlBase *doc, const std::string &str)
static XmppStanza::XmppMessage * Decode(const XmppConnection *connection, const std::string &ts)
#define sXMPP_STREAM_PROCEED_O
static const char * GetAsNode(XmlBase *doc)
#define sXMPP_STREAM_OPEN
static int SetTo(std::string &to, XmlBase *doc)
static int EncodeWhitespace(uint8_t *data)
virtual int WriteDoc(uint8_t *buf)=0
#define LOG(_Level, _Msg)
#define sXMPP_STREAM_FEATURES_O
static int EncodeStream(const XmppStreamMessage &str, std::string &to, std::string &from, const std::string &xmlns, uint8_t *data, size_t size)
#define sXMPP_STREAM_FEATURE_TLS
static int EncodeFeatureTlsStart(uint8_t *data)
static int EncodeFeatureTlsRequest(uint8_t *data)
static int EncodeOpenResp(uint8_t *data, std::string &to, std::string &from, size_t size)
const std::string & ToUVEKey() const
static const char * GetNode(XmlBase *doc, const std::string &str)
static const char * GetTo(XmlBase *doc)
#define XMPP_WARNING(obj,...)
#define sXMPP_STREAM_STARTTLS_O