blob: c2e1fdcf814625a79ff5a26309bb66b5657569f0 [file] [log] [blame]
/*
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*
*/
#ifndef SRC_QPIDIT_JMS_HEADERS_PROPERTIES_TEST_SENDER_HPP_
#define SRC_QPIDIT_JMS_HEADERS_PROPERTIES_TEST_SENDER_HPP_
#include <json/value.h>
#include <proton/message.hpp>
#include <qpidit/JmsTestBase.hpp>
#include <qpidit/QpidItErrors.hpp>
#include <typeinfo>
namespace proton {
class message;
}
namespace qpidit
{
namespace jms_hdrs_props_test
{
class Sender : public qpidit::JmsTestBase
{
protected:
const std::string _brokerUrl;
const std::string _jmsMessageType;
const Json::Value _testValueMap;
const Json::Value _testHeadersMap;
const Json::Value _testPropertiesMap;
uint32_t _msgsSent;
uint32_t _msgsConfirmed;
uint32_t _totalMsgs;
public:
Sender(const std::string& brokerUrl, const std::string& jmsMessageType, const Json::Value& testParams);
virtual ~Sender();
void on_container_start(proton::container &c);
void on_sendable(proton::sender &s);
void on_tracker_accept(proton::tracker &t);
void on_transport_close(proton::transport &t);
protected:
void sendMessages(proton::sender &s, const std::string& subType, const Json::Value& testValueMap);
proton::message& setMessage(proton::message& msg, const std::string& subType, const std::string& testValueStr);
proton::message& setBytesMessage(proton::message& msg, const std::string& subType, const std::string& testValueStr);
proton::message& setMapMessage(proton::message& msg, const std::string& subType, const std::string& testValueStr, uint32_t valueNumber);
proton::message& setObjectMessage(proton::message& msg, const std::string& subType, const Json::Value& testValue);
proton::message& setStreamMessage(proton::message& msg, const std::string& subType, const std::string& testValue);
proton::message& setTextMessage(proton::message& msg, const Json::Value& testValue);
proton::message& addMessageHeaders(proton::message& msg);
static proton::message& setJmsTypeHeader(proton::message& msg, const std::string& t);
static proton::message& setJmsCorrelationId(proton::message& msg, const std::string& cid);
static proton::message& setJmsCorrelationId(proton::message& msg, const proton::binary cid);
static proton::message& setJmsReplyTo(proton::message& msg, const std::string& dt, const std::string& d);
proton::message& addMessageProperties(proton::message& msg);
template<typename T> proton::message& setMessageProperty(proton::message& msg, const std::string& propertyName, T val) {
msg.properties().put(propertyName, val);
return msg;
}
static proton::binary getJavaObjectBinary(const std::string& javaClassName, const std::string& valAsString);
static uint32_t getTotalNumMessages(const Json::Value& testValueMap);
template<typename T> static T numToBinary(T n, proton::binary& b) {
for (int i=0; i<sizeof(n); ++i) {
b.push_back(* ((char*)&n + i));
}
}
// Set message body to floating type T through integral type U
// Used to convert a hex string representation of a float or double to a float or double
template<typename T, typename U> T getFloatValue(const std::string& testValueStr) {
try {
U ival(std::strtoul(testValueStr.data(), NULL, 16));
return T(*reinterpret_cast<T*>(&ival));
} catch (const std::exception& e) { throw qpidit::InvalidTestValueError(typeid(T).name(), testValueStr); }
}
template<typename T> T getIntegralValue(const std::string& testValueStr) {
try {
return T(std::strtol(testValueStr.data(), NULL, 16));
} catch (const std::exception& e) { throw qpidit::InvalidTestValueError(typeid(T).name(), testValueStr); }
}
};
} /* namespace jms_hdrs_props_test */
} /* namespace qpidit */
#endif /* SRC_QPIDIT_JMS_HEADERS_PROPERTIES_TEST_SENDER_HPP_ */