mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-27 16:09:20 +00:00
feat(Core): use for (var : list) syntax when possible
This commit is contained in:
parent
013d334226
commit
d460e32a0f
2 changed files with 35 additions and 39 deletions
|
|
@ -41,9 +41,8 @@ ChatRoomPrivate::ChatRoomPrivate (LinphoneCore *core)
|
|||
: core(core), isComposingHandler(core, this) {}
|
||||
|
||||
ChatRoomPrivate::~ChatRoomPrivate () {
|
||||
for (auto it = transientMessages.begin(); it != transientMessages.end(); it++) {
|
||||
linphone_chat_message_release(*it);
|
||||
}
|
||||
for (auto &message : transientMessages)
|
||||
linphone_chat_message_release(message);
|
||||
if (pendingMessage)
|
||||
linphone_chat_message_destroy(pendingMessage);
|
||||
}
|
||||
|
|
@ -98,12 +97,12 @@ void ChatRoomPrivate::removeTransientMessage (LinphoneChatMessage *msg) {
|
|||
void ChatRoomPrivate::release () {
|
||||
L_Q(ChatRoom);
|
||||
isComposingHandler.stopTimers();
|
||||
for (auto it = weakMessages.begin(); it != weakMessages.end(); it++) {
|
||||
linphone_chat_message_deactivate(*it);
|
||||
}
|
||||
for (auto it = transientMessages.begin(); it != transientMessages.end(); it++) {
|
||||
linphone_chat_message_deactivate(*it);
|
||||
}
|
||||
|
||||
for (auto &message : weakMessages)
|
||||
linphone_chat_message_deactivate(message);
|
||||
for (auto &message : transientMessages)
|
||||
linphone_chat_message_deactivate(message);
|
||||
|
||||
core = nullptr;
|
||||
linphone_chat_room_unref(GET_BACK_PTR(q));
|
||||
}
|
||||
|
|
@ -318,17 +317,17 @@ void ChatRoomPrivate::onWeakMessageDestroyed (LinphoneChatMessage *messageBeingD
|
|||
}
|
||||
|
||||
LinphoneChatMessage *ChatRoomPrivate::getTransientMessage (unsigned int storageId) const {
|
||||
for (auto it = transientMessages.begin(); it != transientMessages.end(); it++) {
|
||||
if (linphone_chat_message_get_storage_id(*it) == storageId)
|
||||
return linphone_chat_message_ref(*it);
|
||||
for (auto &message : transientMessages) {
|
||||
if (linphone_chat_message_get_storage_id(message) == storageId)
|
||||
return linphone_chat_message_ref(message);
|
||||
}
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
LinphoneChatMessage *ChatRoomPrivate::getWeakMessage (unsigned int storageId) const {
|
||||
for (auto it = weakMessages.begin(); it != weakMessages.end(); it++) {
|
||||
if (linphone_chat_message_get_storage_id(*it) == storageId)
|
||||
return linphone_chat_message_ref(*it);
|
||||
for (auto &message : weakMessages) {
|
||||
if (linphone_chat_message_get_storage_id(message) == storageId)
|
||||
return linphone_chat_message_ref(message);
|
||||
}
|
||||
return nullptr;
|
||||
}
|
||||
|
|
@ -637,8 +636,8 @@ LinphoneChatMessage *ChatRoom::findMessage (const string &messageId) {
|
|||
if (!l.empty()) {
|
||||
cm = l.front();
|
||||
linphone_chat_message_ref(cm);
|
||||
for (auto it = l.begin(); it != l.end(); it++)
|
||||
linphone_chat_message_unref(*it);
|
||||
for (auto &message : l)
|
||||
linphone_chat_message_unref(message);
|
||||
}
|
||||
return cm;
|
||||
}
|
||||
|
|
@ -647,17 +646,16 @@ LinphoneChatMessage * ChatRoom::findMessageWithDirection (const string &messageI
|
|||
L_D(ChatRoom);
|
||||
LinphoneChatMessage *ret = nullptr;
|
||||
list<LinphoneChatMessage *> l = d->findMessages(messageId);
|
||||
for (auto it = l.begin(); it != l.end(); it++) {
|
||||
LinphoneChatMessage *cm = *it;
|
||||
if (cm->dir == direction) {
|
||||
linphone_chat_message_ref(cm);
|
||||
ret = cm;
|
||||
for (auto &message : l) {
|
||||
if (message->dir == direction) {
|
||||
linphone_chat_message_ref(message);
|
||||
ret = message;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (!l.empty()) {
|
||||
for (auto it = l.begin(); it != l.end(); it++)
|
||||
linphone_chat_message_unref(*it);
|
||||
for (auto &message : l)
|
||||
linphone_chat_message_unref(message);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
|
@ -712,13 +710,12 @@ list<LinphoneChatMessage *> ChatRoom::getHistoryRange (int startm, int endm) {
|
|||
if (!d->messages.empty()) {
|
||||
/* Fill local addr with core identity instead of per message */
|
||||
LinphoneAddress *localAddr = linphone_address_new(linphone_core_get_identity(d->core));
|
||||
for (auto it = d->messages.begin(); it != d->messages.end(); it++) {
|
||||
LinphoneChatMessage *msg = *it;
|
||||
if (msg->dir == LinphoneChatMessageOutgoing) {
|
||||
if (msg->from != NULL) linphone_address_unref(msg->from);
|
||||
msg->from = linphone_address_ref(localAddr);
|
||||
for (auto &message : d->messages) {
|
||||
if (message->dir == LinphoneChatMessageOutgoing) {
|
||||
if (message->from != NULL) linphone_address_unref(message->from);
|
||||
message->from = linphone_address_ref(localAddr);
|
||||
} else {
|
||||
msg->to = linphone_address_ref(localAddr);
|
||||
message->to = linphone_address_ref(localAddr);
|
||||
}
|
||||
}
|
||||
linphone_address_unref(localAddr);
|
||||
|
|
@ -751,9 +748,9 @@ void ChatRoom::markAsRead () {
|
|||
char *buf = sqlite3_mprintf("SELECT * FROM history WHERE remoteContact = %Q AND direction = %i AND status != %i", peer.c_str(), LinphoneChatMessageIncoming, LinphoneChatMessageStateDisplayed);
|
||||
d->sqlRequestMessage(d->core->db, buf);
|
||||
sqlite3_free(buf);
|
||||
for (auto it = d->messages.begin(); it != d->messages.end(); it++) {
|
||||
linphone_chat_message_send_display_notification(*it);
|
||||
linphone_chat_message_unref(*it);
|
||||
for (auto &message : d->messages) {
|
||||
linphone_chat_message_send_display_notification(message);
|
||||
linphone_chat_message_unref(message);
|
||||
}
|
||||
d->messages.clear();
|
||||
buf = sqlite3_mprintf("UPDATE history SET status=%i WHERE remoteContact=%Q AND direction=%i;", LinphoneChatMessageStateDisplayed, peer.c_str(), LinphoneChatMessageIncoming);
|
||||
|
|
|
|||
|
|
@ -40,8 +40,8 @@ RealTimeTextChatRoomPrivate::RealTimeTextChatRoomPrivate (LinphoneCore *core, co
|
|||
|
||||
RealTimeTextChatRoomPrivate::~RealTimeTextChatRoomPrivate () {
|
||||
if (!receivedRttCharacters.empty()) {
|
||||
for (auto it = receivedRttCharacters.begin(); it != receivedRttCharacters.end(); it++)
|
||||
bctbx_free(*it);
|
||||
for (auto &rttChars : receivedRttCharacters)
|
||||
bctbx_free(rttChars);
|
||||
}
|
||||
if (pendingMessage)
|
||||
linphone_chat_message_destroy(pendingMessage);
|
||||
|
|
@ -92,8 +92,8 @@ void RealTimeTextChatRoomPrivate::realtimeTextReceived (uint32_t character, Linp
|
|||
chatMessageReceived(pendingMessage);
|
||||
linphone_chat_message_unref(pendingMessage);
|
||||
pendingMessage = nullptr;
|
||||
for (auto it = receivedRttCharacters.begin(); it != receivedRttCharacters.end(); it++)
|
||||
ms_free(*it);
|
||||
for (auto &rttChars : receivedRttCharacters)
|
||||
ms_free(rttChars);
|
||||
receivedRttCharacters.clear();
|
||||
} else {
|
||||
char *value = Utils::utf8ToChar(character);
|
||||
|
|
@ -124,8 +124,7 @@ void RealTimeTextChatRoom::sendMessage (LinphoneChatMessage *msg) {
|
|||
uint32_t RealTimeTextChatRoom::getChar () const {
|
||||
L_D(const ChatRoom);
|
||||
if (!d->receivedRttCharacters.empty()) {
|
||||
for (auto it = d->receivedRttCharacters.begin(); it != d->receivedRttCharacters.end(); it++) {
|
||||
LinphoneChatMessageCharacter *cmc = *it;
|
||||
for (auto &cmc : d->receivedRttCharacters) {
|
||||
if (!cmc->has_been_read) {
|
||||
cmc->has_been_read = TRUE;
|
||||
return cmc->value;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue