[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

[PATCH] svn add horkage (and exposing libsvn_wc's ignore functionality)

From: Eric Gillespie <epg_at_pretzelnet.org>
Date: 2003-02-04 23:04:50 CET

Here is the final (hehe) version of the patch:

A recursive svn add was scheduling items matching the user's ignore
list for addition. Export svn_wc's ignores functionality and use that
in svn_client to correct this.

* subversion/include/svn_wc.h:
  Add prototypes and documentation for svn_wc_get_default_ignores and
    svn_wc_is_ignored.

* subversion/libsvn_client/add.c:
  (add_dir_recursive): Use svn_wc_is_ignored to avoid adding items
    matching the user's ignore list.

* subversion/libsvn_wc/status.c:
  (get_default_ignores): Renamed to svn_wc_get_default_ignores.
  (svn_wc_is_ignored): New function, basically copied from the check
    in add_unversioned_items.
  (add_unversioned_items): Use svn_wc_is_ignored.
  (get_dir_status): Use svn_wc_get_default_ignores.

* subversion/tests/clients/cmdline/basic_tests.py:
  (basic_add_ignores): Regression test for this bug.
  (test_list): Run it.

Index: subversion/include/svn_wc.h
===================================================================
--- subversion/include/svn_wc.h (revision 4726)
+++ subversion/include/svn_wc.h (working copy)
@@ -2022,6 +2022,20 @@
                                           apr_pool_t *pool);
 
 
+/** Get the run-time configured list of ignore patterns, and store
+ * them in @a patterns. Allocate @a patterns and its contents in @a
+ * pool.
+ */
+svn_error_t *svn_wc_get_default_ignores (apr_array_header_t **patterns,
+ apr_pool_t *pool);
+
+/** Determine whether a @a path matches the run-time configured list
+ * of ignore patterns, specified by the array @a ignores.
+ */
+svn_boolean_t svn_wc_is_ignored (const char *path,
+ apr_array_header_t *ignores);
+
+
 
 #ifdef __cplusplus
 }
Index: subversion/libsvn_wc/status.c
===================================================================
--- subversion/libsvn_wc/status.c (revision 4726)
+++ subversion/libsvn_wc/status.c (working copy)
@@ -36,11 +36,9 @@
 #include "props.h"
 
 
-/* Get the run-time configured list of ignore patterns, and store them
- in *PATTERNS. Allocate *PATTERNS and its contents in POOL. */
-static svn_error_t *
-get_default_ignores (apr_array_header_t **patterns,
- apr_pool_t *pool)
+svn_error_t *
+svn_wc_get_default_ignores (apr_array_header_t **patterns,
+ apr_pool_t *pool)
 {
   struct svn_config_t *cfg;
   const char *val;
@@ -57,6 +55,22 @@
   return SVN_NO_ERROR;
 }
 
+svn_boolean_t
+svn_wc_is_ignored (const char *path,
+ apr_array_header_t *ignores)
+{
+ int i;
+
+ for (i = 0; ignores && (i < ignores->nelts); i++)
+ {
+ const char *pat = (((const char **) (ignores)->elts))[i];
+
+ if (APR_SUCCESS == apr_fnmatch (pat, path, FNM_PERIOD))
+ return TRUE;
+ }
+
+ return FALSE;
+}
 
 /* Helper routine: add to *PATTERNS patterns from the value of
    the SVN_PROP_IGNORE property set on DIRPATH. If there is no such
@@ -433,7 +447,6 @@
       apr_ssize_t klen;
       void *val;
       const char *keystring;
- int i;
       int ignore_me;
       const char *printable_path;
       svn_node_kind_t *path_kind;
@@ -450,22 +463,8 @@
       if (! strcmp (keystring, SVN_WC_ADM_DIR_NAME))
         continue;
 
- ignore_me = 0;
+ ignore_me = svn_wc_is_ignored (keystring, patterns);
 
- /* See if any of the ignore patterns we have matches our
- keystring. */
- for (i = 0; patterns && (i < patterns->nelts); i++)
- {
- const char *pat = (((const char **) (patterns)->elts))[i];
-
- /* Try to match current_entry_name to pat. */
- if (APR_SUCCESS == apr_fnmatch (pat, keystring, FNM_PERIOD))
- {
- ignore_me = 1;
- break;
- }
- }
-
       /* If we aren't ignoring it, add a status structure for this
          dirent. */
       if (no_ignore || ! ignore_me)
@@ -554,7 +553,7 @@
   SVN_ERR (svn_wc_entries_read (&entries, adm_access, FALSE, pool));
 
   /* Read the default ignores from the config files. */
- SVN_ERR (get_default_ignores (&ignores, pool));
+ SVN_ERR (svn_wc_get_default_ignores (&ignores, pool));
 
   /* Add the unversioned items to the status output. */
   SVN_ERR (add_unversioned_items (path, adm_access, entries, statushash,
Index: subversion/libsvn_client/add.c
===================================================================
--- subversion/libsvn_client/add.c (revision 4726)
+++ subversion/libsvn_client/add.c (working copy)
@@ -48,6 +48,7 @@
   apr_pool_t *subpool;
   apr_int32_t flags = APR_FINFO_TYPE | APR_FINFO_NAME;
   svn_wc_adm_access_t *dir_access;
+ apr_array_header_t *ignores;
 
   /* Add this directory to revision control. */
   SVN_ERR (svn_wc_add (dirname, adm_access,
@@ -56,6 +57,8 @@
 
   SVN_ERR (svn_wc_adm_retrieve (&dir_access, adm_access, dirname, pool));
 
+ SVN_ERR (svn_wc_get_default_ignores (&ignores, pool));
+
   /* Create a subpool for iterative memory control. */
   subpool = svn_pool_create (pool);
 
@@ -76,6 +79,9 @@
       if (this_entry.name[0] == '.'
           && (this_entry.name[1] == '\0'
               || (this_entry.name[1] == '.' && this_entry.name[2] == '\0')))
+ continue;
+
+ if (svn_wc_is_ignored (this_entry.name, ignores))
         continue;
 
       /* Construct the full path of the entry. */
Index: subversion/tests/clients/cmdline/basic_tests.py
===================================================================
--- subversion/tests/clients/cmdline/basic_tests.py (revision 4726)
+++ subversion/tests/clients/cmdline/basic_tests.py (working copy)
@@ -1481,6 +1481,48 @@
                                         os.path.join(wc_dir, 'A', 'D', 'G'))
   if errput: return 1
 
+
+#----------------------------------------------------------------------
+def basic_add_ignores(sbox):
+ 'ignored files in the added directory should not be added'
+
+ # The bug was that
+ #
+ # $ svn add dir
+ #
+ # where dir contains some items that match the ignore list and some
+ # do not would add all items, ignored or not.
+ #
+ # This bug was fixed in revision XXX, by testing each item with the
+ # new svn_config_is_ignored function.
+
+ if sbox.build():
+ return 1
+
+ wc_dir = sbox.wc_dir
+
+ dir_path = os.path.join(wc_dir, 'dir')
+ foo_c_path = os.path.join(dir_path, 'foo.c')
+ foo_o_path = os.path.join(dir_path, 'foo.o')
+
+ os.mkdir(dir_path, 0755)
+ open(foo_c_path, 'w')
+ open(foo_o_path, 'w')
+
+ (output, errput) = svntest.main.run_svn (None, 'add', dir_path)
+
+ if not output:
+ return 1
+
+ for line in output:
+ # If we see foo.o in the add output, fail the test.
+ if re.match(r'^A\s+.*foo.o$', line):
+ return 1
+
+ # Else never matched the unwanted output, so the test passed.
+ return 0
+
+
 #----------------------------------------------------------------------
 
 ########################################################################
@@ -1507,6 +1549,7 @@
               Skip(basic_import_executable, (os.name != 'posix')),
               nonexistent_repository,
               basic_auth_cache,
+ basic_add_ignores,
               ### todo: more tests needed:
               ### test "svn rm http://some_url"
               ### not sure this file is the right place, though.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Tue Feb 4 23:05:39 2003

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.