/* 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 using namespace linphone; using namespace std; StringBctbxListWrapper::StringBctbxListWrapper(const std::list &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 StringBctbxListWrapper::bctbxListToCppList(const ::bctbx_list_t *bctbxList) { list 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 StringUtilities::cStringArrayToCppList(const char **cArray) { list cppList; int i; for(i=0; cArray[i]!=NULL; i++) { cppList.push_back(cArray[i]); } return cppList; }