PreVerify/mqtt/paho.mqtt.cpp/string_collection.cpp
2024-09-09 19:18:28 +08:00

117 lines
2.7 KiB
C++

// string_collection.cpp
/*******************************************************************************
* Copyright (c) 2017-2020 Frank Pagliughi <fpagliughi@mindspring.com>
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Eclipse Distribution License v1.0 which accompany this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Frank Pagliughi - initial implementation and documentation
*******************************************************************************/
#include "mqtt/string_collection.h"
namespace mqtt {
/////////////////////////////////////////////////////////////////////////////
string_collection::string_collection(const string& str) : coll_{ str }
{
update_c_arr();
}
string_collection::string_collection(string&& str) : coll_{ std::move(str) }
{
update_c_arr();
}
string_collection::string_collection(const collection_type& vec) : coll_{ vec }
{
update_c_arr();
}
string_collection::string_collection(collection_type&& vec) : coll_{ std::move(vec) }
{
update_c_arr();
}
string_collection::string_collection(const string_collection& coll) : coll_ { coll.coll_ }
{
update_c_arr();
}
string_collection::string_collection(std::initializer_list<string> sl)
{
for (const auto& s : sl)
coll_.push_back(s);
update_c_arr();
}
string_collection::string_collection(std::initializer_list<const char*> sl)
{
for (const auto& s : sl)
coll_.push_back(string(s));
update_c_arr();
}
void string_collection::update_c_arr()
{
cArr_.clear();
cArr_.reserve(coll_.size());
for (const auto& s : coll_)
cArr_.push_back(s.c_str());
}
string_collection& string_collection::operator=(const string_collection& coll)
{
coll_ = coll.coll_;
update_c_arr();
return *this;
}
void string_collection::push_back(const string& str)
{
coll_.push_back(str);
update_c_arr();
}
void string_collection::push_back(string&& str)
{
coll_.push_back(str);
update_c_arr();
}
void string_collection::clear()
{
coll_.clear();
cArr_.clear();
}
/////////////////////////////////////////////////////////////////////////////
void name_value_collection::update_c_arr()
{
cArr_.clear();
cArr_.reserve(map_.size()+1);
for (const auto& m : map_) {
cArr_.push_back(
MQTTAsync_nameValue{ m.first.c_str(), m.second.c_str() }
);
}
cArr_.push_back(MQTTAsync_nameValue{ nullptr, nullptr });
}
/////////////////////////////////////////////////////////////////////////////
// end namespace mqtt
}