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

Re: svn commit: r39394 - trunk/subversion/libsvn_wc

From: Greg Stein <gstein_at_gmail.com>
Date: Thu, 17 Sep 2009 18:42:08 -0400

Forgetting the show_hidden thing again!

On Sep 17, 2009 3:18 AM, "Bert Huijben" <rhuijben_at_sharpsvn.net> wrote:

Author: rhuijben
Date: Thu Sep 17 06:10:52 2009
New Revision: 39394

Log:
* subversion/libsvn_wc/update_editor.c
 (absent_file_or_dir): Remove another access baton and
     svn_wc_entries_read() call.

Modified:
  trunk/subversion/libsvn_wc/update_editor.c

Modified: trunk/subversion/libsvn_wc/update_editor.c
URL:
http://svn.collab.net/viewvc/svn/trunk/subversion/libsvn_wc/update_editor.c?pathrev=39394&r1=39393&r2=39394
==============================================================================
--- trunk/subversion/libsvn_wc/update_editor.c Thu Sep 17 05:28:58 2009
   (r39393)
+++ trunk/subversion/libsvn_wc/update_editor.c Thu Sep 17 06:10:52 2009
   (r39394)
@@ -3017,20 +3017,25 @@ absent_file_or_dir(const char *path,
                   apr_pool_t *pool)
 {
  const char *name = svn_dirent_basename(path, pool);
+ const char *local_abspath;
  struct dir_baton *pb = parent_baton;
  struct edit_baton *eb = pb->edit_baton;
- svn_wc_adm_access_t *adm_access;
- apr_hash_t *entries;
- const svn_wc_entry_t *ent;
+ const svn_wc_entry_t *entry;
  svn_wc_entry_t tmp_entry;
+ svn_boolean_t in_parent;

+ local_abspath = svn_dirent_join(pb->local_abspath, name, pool);
  /* Extra check: an item by this name may not exist, but there may
     still be one scheduled for addition. That's a genuine
     tree-conflict. */
- SVN_ERR(svn_wc_adm_retrieve(&adm_access, eb->adm_access, pb->path,
pool));
- SVN_ERR(svn_wc_entries_read(&entries, adm_access, FALSE, pool));
- ent = apr_hash_get(entries, name, APR_HASH_KEY_STRING);
- if (ent && (ent->schedule == svn_wc_schedule_add))
+
+ in_parent = (kind == svn_node_dir);
+
+ SVN_ERR(svn_wc__get_entry(&entry, eb->db, local_abspath, TRUE, kind,
+ in_parent, pool, pool));
+
+
+ if (entry && (entry->schedule == svn_wc_schedule_add))
    return svn_error_createf(
       SVN_ERR_WC_OBSTRUCTED_UPDATE, NULL,
       _("Failed to mark '%s' absent: item of the same name is already "
@@ -3055,12 +3060,13 @@ absent_file_or_dir(const char *path,
  /* And, of course, marking as absent is the whole point. */
  tmp_entry.absent = TRUE;

- return svn_wc__entry_modify(adm_access, name, &tmp_entry,
- (SVN_WC__ENTRY_MODIFY_KIND |
- SVN_WC__ENTRY_MODIFY_REVISION |
- SVN_WC__ENTRY_MODIFY_DELETED |
- SVN_WC__ENTRY_MODIFY_ABSENT),
- pool);
+ return svn_wc__entry_modify2(eb->db, local_abspath, kind, in_parent,
+ &tmp_entry,
+ (SVN_WC__ENTRY_MODIFY_KIND |
+ SVN_WC__ENTRY_MODIFY_REVISION |
+ SVN_WC__ENTRY_MODIFY_DELETED |
+ SVN_WC__ENTRY_MODIFY_ABSENT),
+ pool);
 }

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=495&dsMessageId=2395999

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2396225
Received on 2009-09-18 00:42:20 CEST

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.