diff options
author | George Hazan <george.hazan@gmail.com> | 2016-04-06 13:39:41 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-04-06 13:39:41 +0000 |
commit | adf7fec7b1e32e93998e08cd41e9d84852db1758 (patch) | |
tree | 1dd6c4130659b3741cc693902c6fdc89518e8b81 /src | |
parent | 56c24779dc455536c35866a65b25e4d729074b9d (diff) |
clist_modern:
- fix for a nightmare with contsct renaming;
- end of a crutch with caching 'Unknown contact';
- cache control over the contact's name went to the core;
- code cleaning;
- version bump;
git-svn-id: http://svn.miranda-ng.org/main/trunk@16596 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src')
-rw-r--r-- | src/mir_app/src/clistsettings.cpp | 111 |
1 files changed, 63 insertions, 48 deletions
diff --git a/src/mir_app/src/clistsettings.cpp b/src/mir_app/src/clistsettings.cpp index c499da4265..7d35be8aeb 100644 --- a/src/mir_app/src/clistsettings.cpp +++ b/src/mir_app/src/clistsettings.cpp @@ -29,7 +29,7 @@ static LIST<ClcCacheEntry> clistCache(50, NumericKeySortT); void FreeDisplayNameCache(void)
{
- for (int i=0; i < clistCache.getCount(); i++) {
+ for (int i = 0; i < clistCache.getCount(); i++) {
cli.pfnFreeCacheItem(clistCache[i]);
mir_free(clistCache[i]);
}
@@ -41,7 +41,7 @@ void FreeDisplayNameCache(void) ClcCacheEntry* fnCreateCacheItem(MCONTACT hContact)
{
- ClcCacheEntry* p = (ClcCacheEntry*)mir_calloc(sizeof(ClcCacheEntry));
+ ClcCacheEntry *p = (ClcCacheEntry*)mir_calloc(sizeof(ClcCacheEntry));
if (p == NULL)
return NULL;
@@ -51,13 +51,10 @@ ClcCacheEntry* fnCreateCacheItem(MCONTACT hContact) void fnCheckCacheItem(ClcCacheEntry *p)
{
- DBVARIANT dbv;
if (p->tszGroup == NULL) {
- if (!db_get_ts(p->hContact, "CList", "Group", &dbv)) {
- p->tszGroup = mir_tstrdup(dbv.ptszVal);
- mir_free(dbv.ptszVal);
- }
- else p->tszGroup = mir_tstrdup(_T(""));
+ p->tszGroup = db_get_tsa(p->hContact, "CList", "Group");
+ if (p->tszGroup == NULL)
+ p->tszGroup = mir_tstrdup(_T(""));
}
if (p->bIsHidden == -1)
@@ -119,7 +116,7 @@ TCHAR* fnGetContactDisplayName(MCONTACT hContact, int mode) if (ci.hContact == NULL)
ci.szProto = "ICQ";
ci.dwFlag = ((mode == GCDNF_NOMYHANDLE) ? CNF_DISPLAYNC : CNF_DISPLAY) | CNF_TCHAR;
- if (!CallService(MS_CONTACT_GETCONTACTINFO, 0, (LPARAM) & ci)) {
+ if (!CallService(MS_CONTACT_GETCONTACTINFO, 0, (LPARAM)&ci)) {
if (ci.type == CNFT_ASCIIZ) {
if (cacheEntry != NULL)
cacheEntry->tszName = ci.pszVal;
@@ -127,7 +124,7 @@ TCHAR* fnGetContactDisplayName(MCONTACT hContact, int mode) }
if (ci.type == CNFT_DWORD) {
- TCHAR *buffer = (TCHAR*) mir_alloc(15 * sizeof(TCHAR));
+ TCHAR *buffer = (TCHAR*)mir_alloc(15 * sizeof(TCHAR));
_ltot(ci.dVal, buffer, 10);
if (cacheEntry != NULL)
cacheEntry->tszName = buffer;
@@ -158,44 +155,62 @@ int ContactDeleted(WPARAM wParam, LPARAM) return 0;
}
-int ContactSettingChanged(WPARAM hContact, LPARAM lParam)
+/////////////////////////////////////////////////////////////////////////////////////////
+
+static void Dbwcs2tstr(DBCONTACTWRITESETTING *cws, TCHAR* &pStr)
{
- DBCONTACTWRITESETTING *cws = (DBCONTACTWRITESETTING *) lParam;
+ mir_free(pStr);
+
+ switch (cws->value.type) {
+ case -1:
+ case DBVT_DELETED:
+ pStr = NULL;
+ break;
+
+ case DBVT_UTF8:
+ pStr = mir_utf8decodeT(cws->value.pszVal);
+ break;
+
+ case DBVT_ASCIIZ:
+ pStr = mir_a2t(cws->value.pszVal);
+ break;
+ case DBVT_WCHAR:
+ pStr = mir_u2t(cws->value.ptszVal);
+ break;
+ }
+}
+
+int ContactSettingChanged(WPARAM hContact, LPARAM lParam)
+{
// Early exit
if (hContact == NULL)
return 0;
- DBVARIANT dbv;
- dbv.pszVal = NULL;
- if (!db_get(hContact, "Protocol", "p", &dbv)) {
- if (!mir_strcmp(cws->szModule, dbv.pszVal)) {
- cli.pfnInvalidateDisplayNameCacheEntry(hContact);
- if (!strcmp(cws->szSetting, "UIN") || !strcmp(cws->szSetting, "Nick") || !strcmp(cws->szSetting, "FirstName")
- || !strcmp(cws->szSetting, "LastName") || !strcmp(cws->szSetting, "e-mail"))
- {
- CallService(MS_CLUI_CONTACTRENAMED, hContact, 0);
- }
- else if (!strcmp(cws->szSetting, "Status")) {
- if (!db_get_b(hContact, "CList", "Hidden", 0)) {
- if (db_get_b(NULL, "CList", "HideOffline", SETTING_HIDEOFFLINE_DEFAULT)) {
- // User's state is changing, and we are hideOffline-ing
- if (cws->value.wVal == ID_STATUS_OFFLINE) {
- cli.pfnChangeContactIcon(hContact, cli.pfnIconFromStatusMode(cws->szModule, cws->value.wVal, hContact), 0);
- CallService(MS_CLUI_CONTACTDELETED, hContact, 0);
- mir_free(dbv.pszVal);
- return 0;
- }
- cli.pfnChangeContactIcon(hContact, cli.pfnIconFromStatusMode(cws->szModule, cws->value.wVal, hContact), 1);
+ DBCONTACTWRITESETTING *cws = (DBCONTACTWRITESETTING*)lParam;
+ char *szProto = GetContactProto(hContact);
+ if (!mir_strcmp(cws->szModule, szProto)) {
+ if (!strcmp(cws->szSetting, "UIN") || !strcmp(cws->szSetting, "Nick") || !strcmp(cws->szSetting, "FirstName") || !strcmp(cws->szSetting, "LastName") || !strcmp(cws->szSetting, "e-mail")) {
+ ClcCacheEntry *pdnce = cli.pfnGetCacheEntry(hContact);
+ replaceStrT(pdnce->tszName, NULL);
+ cli.pfnCheckCacheItem(pdnce);
+ }
+ else if (!strcmp(cws->szSetting, "Status")) {
+ if (!db_get_b(hContact, "CList", "Hidden", 0)) {
+ if (db_get_b(NULL, "CList", "HideOffline", SETTING_HIDEOFFLINE_DEFAULT)) {
+ // User's state is changing, and we are hideOffline-ing
+ if (cws->value.wVal == ID_STATUS_OFFLINE) {
+ cli.pfnChangeContactIcon(hContact, cli.pfnIconFromStatusMode(cws->szModule, cws->value.wVal, hContact), 0);
+ CallService(MS_CLUI_CONTACTDELETED, hContact, 0);
+ return 0;
}
- cli.pfnChangeContactIcon(hContact, cli.pfnIconFromStatusMode(cws->szModule, cws->value.wVal, hContact), 0);
+ cli.pfnChangeContactIcon(hContact, cli.pfnIconFromStatusMode(cws->szModule, cws->value.wVal, hContact), 1);
}
- }
- else {
- mir_free(dbv.pszVal);
- return 0;
+ cli.pfnChangeContactIcon(hContact, cli.pfnIconFromStatusMode(cws->szModule, cws->value.wVal, hContact), 0);
}
}
+
+ return 0;
}
if (!strcmp(cws->szModule, "CList")) {
@@ -207,8 +222,15 @@ int ContactSettingChanged(WPARAM hContact, LPARAM lParam) else
CallService(MS_CLUI_CONTACTDELETED, hContact, 0);
}
- if (!strcmp(cws->szSetting, "MyHandle"))
- cli.pfnInvalidateDisplayNameCacheEntry(hContact);
+ else if (!strcmp(cws->szSetting, "MyHandle")) {
+ ClcCacheEntry *pdnce = cli.pfnGetCacheEntry(hContact);
+ replaceStrT(pdnce->tszName, NULL);
+ cli.pfnCheckCacheItem(pdnce);
+ }
+ else if (!strcmp(cws->szSetting, "Group")) {
+ ClcCacheEntry *pdnce = cli.pfnGetCacheEntry(hContact);
+ Dbwcs2tstr(cws, pdnce->tszGroup);
+ }
}
if (!strcmp(cws->szModule, "Protocol")) {
@@ -219,15 +241,8 @@ int ContactSettingChanged(WPARAM hContact, LPARAM lParam) else
szProto = cws->value.pszVal;
cli.pfnChangeContactIcon(hContact,
- cli.pfnIconFromStatusMode(szProto,
- szProto == NULL ? ID_STATUS_OFFLINE : db_get_w(hContact, szProto, "Status",
- ID_STATUS_OFFLINE), hContact), 0);
+ cli.pfnIconFromStatusMode(szProto, szProto == NULL ? ID_STATUS_OFFLINE : db_get_w(hContact, szProto, "Status", ID_STATUS_OFFLINE), hContact), 0);
}
}
-
- // Clean up
- if (dbv.pszVal)
- mir_free(dbv.pszVal);
-
return 0;
}
|