* let modest_tny_folder_has_subfolder_with_name do non-strict
authorDirk-Jan C. Binnema <dirk-jan.binnema@nokia.com>
Wed, 7 Nov 2007 16:05:31 +0000 (16:05 +0000)
committerDirk-Jan C. Binnema <dirk-jan.binnema@nokia.com>
Wed, 7 Nov 2007 16:05:31 +0000 (16:05 +0000)
  checks if needed - ie. match folder names that are only
  different in case, or where the folder name is equal to
  a display name

pmo-trunk-r3665

src/modest-tny-folder.c
src/modest-tny-folder.h

index ff32e0e..725c0ec 100644 (file)
@@ -38,6 +38,7 @@
 #include <modest-protocol-info.h>
 #include <modest-runtime.h>
 #include <modest-tny-account-store.h>
 #include <modest-protocol-info.h>
 #include <modest-runtime.h>
 #include <modest-tny-account-store.h>
+#include <modest-text-utils.h>
 
 
 /* make sure you use the *full* name, because foo/drafts is not the same as drafts */
 
 
 /* make sure you use the *full* name, because foo/drafts is not the same as drafts */
@@ -376,30 +377,57 @@ modest_tny_folder_get_account (TnyFolder *folder)
  */
 gboolean 
 modest_tny_folder_has_subfolder_with_name (TnyFolderStore *parent,
  */
 gboolean 
 modest_tny_folder_has_subfolder_with_name (TnyFolderStore *parent,
-                                          const gchar *new_name)
+                                          const gchar *new_name,
+                                          gboolean non_strict)
 {
        TnyList *subfolders = NULL;
        TnyIterator *iter = NULL;
        TnyFolder *folder = NULL;
        GError *err = NULL;
 {
        TnyList *subfolders = NULL;
        TnyIterator *iter = NULL;
        TnyFolder *folder = NULL;
        GError *err = NULL;
-       gboolean same_subfolder = FALSE;
+       gboolean has_name = FALSE;
 
        g_return_val_if_fail (TNY_IS_FOLDER_STORE (parent), FALSE);
 
        g_return_val_if_fail (TNY_IS_FOLDER_STORE (parent), FALSE);
-
+       g_return_val_if_fail (new_name, FALSE);
+       
        /* Get direct subfolders */
        subfolders = tny_simple_list_new ();
        tny_folder_store_get_folders (parent, subfolders, NULL, &err);
 
        /* Check names */
        iter = tny_list_create_iterator (subfolders);
        /* Get direct subfolders */
        subfolders = tny_simple_list_new ();
        tny_folder_store_get_folders (parent, subfolders, NULL, &err);
 
        /* Check names */
        iter = tny_list_create_iterator (subfolders);
-       while (!tny_iterator_is_done (iter) && !same_subfolder) {
-               const gchar *name = NULL;
-
-               folder = TNY_FOLDER(tny_iterator_get_current (iter));
-               name = tny_folder_get_name (folder);
+       while (!tny_iterator_is_done (iter) && !has_name) {
+               
+               const gchar *name;
                
                
-               same_subfolder = !strcmp(name, new_name);
+               folder = (TnyFolder*)tny_iterator_get_current (iter);
+               if (!folder || ! TNY_IS_FOLDER(folder)) {
+                       g_warning ("%s: invalid folder", __FUNCTION__);
+                       continue;
+               }
+               
+               name = tny_folder_get_name (folder);
+               if (!name) {
+                       g_warning ("%s: folder name == NULL", __FUNCTION__);
+                       g_object_unref (folder);
+                       continue;
+               }
 
 
+               /* is it simply the same folder name? */
+               if (strcmp (name, new_name) == 0)
+                       has_name = TRUE;
+               /* or is it the same when ignoring case (non-strict mode)? */
+               else if (non_strict && modest_text_utils_utf8_strcmp (name, new_name, TRUE) == 0)
+                       has_name = TRUE;
+               /* or is the name equal to the display name of some folder, in the current locale? */
+               else if (non_strict) {
+                       TnyFolderType type = modest_tny_folder_guess_folder_type (folder);
+                       if (type != TNY_FOLDER_TYPE_INVALID && type != TNY_FOLDER_TYPE_NORMAL) 
+                               has_name =  modest_text_utils_utf8_strcmp (modest_local_folder_info_get_type_display_name (type),
+                                                                          new_name,
+                                                                          TRUE);
+               } else
+                       has_name = FALSE;
+               
                g_object_unref (folder);
                tny_iterator_next(iter);
        }
                g_object_unref (folder);
                tny_iterator_next(iter);
        }
@@ -410,7 +438,7 @@ modest_tny_folder_has_subfolder_with_name (TnyFolderStore *parent,
        if (subfolders != NULL)
                g_object_unref (subfolders);
                
        if (subfolders != NULL)
                g_object_unref (subfolders);
                
-       return same_subfolder;
+       return has_name;
 }
 
 gboolean 
 }
 
 gboolean 
index 9526a3c..c271ccc 100644 (file)
@@ -184,6 +184,8 @@ gchar* modest_tny_folder_get_header_unique_id (TnyHeader *header);
  * modest_tny_folder_has_subfolder_with_name:
  * @folder: a #TnyFolderStore 
  * @name: the name to check into subfolders.
  * modest_tny_folder_has_subfolder_with_name:
  * @folder: a #TnyFolderStore 
  * @name: the name to check into subfolders.
+ * @nonstrict: if TRUE, also match on different-case and current-locale
+ * display versions of the name
  *   
  * This function check if subfolders of @folder has the same
  * name as @name.
  *   
  * This function check if subfolders of @folder has the same
  * name as @name.
@@ -191,7 +193,8 @@ gchar* modest_tny_folder_get_header_unique_id (TnyHeader *header);
  * Returns: TRUE if some subfolder has the name @name.
  **/
 gboolean modest_tny_folder_has_subfolder_with_name (TnyFolderStore *folder,
  * Returns: TRUE if some subfolder has the name @name.
  **/
 gboolean modest_tny_folder_has_subfolder_with_name (TnyFolderStore *folder,
-                                                   const gchar *name);
+                                                   const gchar *name,
+                                                   gboolean nonstrict);
 
 /**
  * modest_tny_folder_is_ancestor:
 
 /**
  * modest_tny_folder_is_ancestor: