linphone-ios/wrappers/cpp/tools.cc

81 lines
2.2 KiB
C++

/*
tools.hh
Copyright (C) 2017 Belledonne Communications SARL
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "tools.hh"
#include "object.hh"
#include <belle-sip/object.h>
using namespace linphone;
using namespace std;
StringBctbxListWrapper::StringBctbxListWrapper(const std::list<std::string> &cppList): AbstractBctbxListWrapper() {
for(auto it=cppList.cbegin(); it!=cppList.cend(); it++) {
char *buffer = (char *)malloc(it->length()+1);
strcpy(buffer, it->c_str());
mCList = bctbx_list_append(mCList, buffer);
}
}
StringBctbxListWrapper::~StringBctbxListWrapper() {
mCList = bctbx_list_free_with_data(mCList, free);
}
list<string> StringBctbxListWrapper::bctbxListToCppList(const ::bctbx_list_t *bctbxList) {
list<string> cppList;
for(const ::bctbx_list_t *it=bctbxList; it!=NULL; it=it->next) {
cppList.push_back(string((char *)it->data));
}
return cppList;
}
std::string StringUtilities::cStringToCpp(const char *cstr) {
if (cstr == NULL) {
return std::string();
} else {
return std::string(cstr);
}
}
std::string StringUtilities::cStringToCpp(char *cstr) {
if (cstr == NULL) {
return std::string();
} else {
std::string cppStr = cstr;
bctbx_free(cstr);
return cppStr;
}
}
const char *StringUtilities::cppStringToC(const std::string &cppstr) {
if (cppstr.empty()) {
return NULL;
} else {
return cppstr.c_str();
}
}
std::list<std::string> StringUtilities::cStringArrayToCppList(const char **cArray) {
list<string> cppList;
if (cArray == NULL) return cppList;
for(int i=0; cArray[i]!=NULL; i++) {
cppList.push_back(cArray[i]);
}
return cppList;
}