This change now makes merge_tests 134 pass (which was marked as an
XFail). I'm not really sure how it was failing before (RANT: the were
no comments in the test case saying "it fails <here> because <this>").
That test is apparently for issue #2690.
Can a merge person take a look?
Cheers,
-g
On Wed, Sep 23, 2009 at 15:40, Greg Stein <gstein_at_gmail.com> wrote:
> Author: gstein
> Date: Wed Sep 23 12:40:53 2009
> New Revision: 39546
>
> Log:
> Rewrite svn_wc__tweak_entry() in terms of other entry-modifying functions
> rather than calling entries_write() itself. It also removes some access
> baton and entries-hash reading code for bonus happy points.
>
> * subversion/libsvn_wc/entries.c:
> Â (svn_wc__tweak_entry): adjust the params to help us out with a call to
> Â Â get_entry(). the caller has this data, so passing it is good. remove
> Â Â the entries hash and fetch the target entry for reading. any changes
> Â Â go into a standard TMP_ENTRY/MODIFY_FLAGS set for later passing to
> Â Â entry_modify2(). don't modify the entry in-place, but do entries
> Â Â modifications via modify2() and entry_remove().
>
> * subversion/libsvn_wc/entries.h:
> Â (svn_wc__tweak_entry): follow the param adjustments
>
> * subversion/libsvn_wc/adm_ops.c:
> Â (tweak_entries): when modifying THIS_DIR, pass the proper (new) flags
> Â Â for the tweak_entry call. for non-recursing children, adjust the flags
> Â Â properly, noting that we'll be modifying the parent stub for dirs.
> Â (svn_wc__do_update_cleanup): don't skip the parent stub by absorbing the
> Â Â error from get_entry(). do the explicit change. adjust/clarify the
> Â Â error handling. adjust the params for the non-recursive file case.
>
> Modified:
> Â trunk/subversion/libsvn_wc/adm_ops.c
> Â trunk/subversion/libsvn_wc/entries.c
> Â trunk/subversion/libsvn_wc/entries.h
>
> Modified: trunk/subversion/libsvn_wc/adm_ops.c
> URL: http://svn.collab.net/viewvc/svn/trunk/subversion/libsvn_wc/adm_ops.c?pathrev=39546&r1=39545&r2=39546
> ==============================================================================
> --- trunk/subversion/libsvn_wc/adm_ops.c     Wed Sep 23 11:36:47 2009     (r39545)
> +++ trunk/subversion/libsvn_wc/adm_ops.c     Wed Sep 23 12:40:53 2009     (r39546)
> @@ -112,8 +112,9 @@ tweak_entries(svn_wc__db_t *db,
> Â Â return SVN_NO_ERROR;
>
> Â /* Tweak "this_dir" */
> - Â SVN_ERR(svn_wc__tweak_entry(db, dir_abspath, base_url, new_rev,
> - Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â TRUE, FALSE /* allow_removal */, pool));
> + Â SVN_ERR(svn_wc__tweak_entry(db, dir_abspath, FALSE, svn_node_dir,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â base_url, new_rev,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â FALSE /* allow_removal */, pool));
>
> Â if (depth == svn_depth_unknown)
> Â Â depth = svn_depth_infinity;
> @@ -163,10 +164,18 @@ tweak_entries(svn_wc__db_t *db,
> Â Â Â Â Â Â || status == svn_wc__db_status_absent
> Â Â Â Â Â Â || child_depth == svn_depth_exclude)
> Â Â Â Â {
> - Â Â Â Â Â if (! excluded)
> - Â Â Â Â Â Â SVN_ERR(svn_wc__tweak_entry(db, child_abspath,
> - Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â child_url, new_rev,
> - Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â FALSE, TRUE /* allow_removal */,
> + Â Â Â Â Â if (excluded)
> + Â Â Â Â Â Â continue;
> +
> + Â Â Â Â Â if (kind == svn_wc__db_kind_dir)
> + Â Â Â Â Â Â SVN_ERR(svn_wc__tweak_entry(db, child_abspath, TRUE,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â svn_node_dir, child_url, new_rev,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â TRUE /* allow_removal */,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â pool));
> + Â Â Â Â Â else
> + Â Â Â Â Â Â SVN_ERR(svn_wc__tweak_entry(db, child_abspath, FALSE,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â svn_node_file, child_url, new_rev,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â TRUE /* allow_removal */,
> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â pool));
> Â Â Â Â }
>
> @@ -275,26 +284,36 @@ svn_wc__do_update_cleanup(svn_wc__db_t *
>
> Â err = svn_wc__get_entry(&entry, db, local_abspath, TRUE, svn_node_unknown,
> Â Â Â Â Â Â Â Â Â Â Â Â Â FALSE, pool, pool);
> - Â if ((err && err->apr_err == SVN_ERR_NODE_UNEXPECTED_KIND) || (entry == NULL))
> + Â if (err)
> Â Â {
> + Â Â Â if (err->apr_err != SVN_ERR_NODE_UNEXPECTED_KIND)
> + Â Â Â Â return svn_error_return(err);
> +
> + Â Â Â /* We got the parent stub instead. That's fine... just tweak it
> + Â Â Â Â and avoid directory recursion. Â */
> Â Â Â svn_error_clear(err);
> +
> + Â Â Â if (apr_hash_get(exclude_paths, local_abspath, APR_HASH_KEY_STRING))
> + Â Â Â Â return SVN_NO_ERROR;
> +
> + Â Â Â SVN_ERR(svn_wc__tweak_entry(db, local_abspath, TRUE, svn_node_dir,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â base_url, new_revision,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â FALSE /* allow_removal */,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â pool));
> Â Â Â return SVN_NO_ERROR;
> Â Â }
> - Â else if (err)
> - Â Â return svn_error_return(err);
> + Â if (entry == NULL)
> + Â Â return SVN_NO_ERROR;
>
> - Â if (entry->kind == svn_node_file
> - Â Â Â || (entry->kind == svn_node_dir
> - Â Â Â Â Â && (entry->deleted || entry->absent
> - Â Â Â Â Â Â Â || entry->depth == svn_depth_exclude)))
> + Â if (entry->kind == svn_node_file)
> Â Â {
> Â Â Â if (apr_hash_get(exclude_paths, local_abspath, APR_HASH_KEY_STRING))
> Â Â Â Â return SVN_NO_ERROR;
>
> Â Â Â /* Parent not updated so don't remove PATH entry. Â */
> - Â Â Â SVN_ERR(svn_wc__tweak_entry(db, local_abspath,
> + Â Â Â SVN_ERR(svn_wc__tweak_entry(db, local_abspath, FALSE, svn_node_file,
> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â base_url, new_revision,
> - Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â FALSE, FALSE /* allow_removal */,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â FALSE /* allow_removal */,
> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â pool));
> Â Â }
>
>
> Modified: trunk/subversion/libsvn_wc/entries.c
> URL: http://svn.collab.net/viewvc/svn/trunk/subversion/libsvn_wc/entries.c?pathrev=39546&r1=39545&r2=39546
> ==============================================================================
> --- trunk/subversion/libsvn_wc/entries.c     Wed Sep 23 11:36:47 2009     (r39545)
> +++ trunk/subversion/libsvn_wc/entries.c     Wed Sep 23 12:40:53 2009     (r39546)
> @@ -112,15 +112,6 @@ typedef struct {
>
>
>
> -
> -static svn_error_t *
> -entries_write(apr_hash_t *entries,
> - Â Â Â Â Â Â Â svn_wc__db_t *db,
> - Â Â Â Â Â Â Â const char *adm_abspath,
> - Â Â Â Â Â Â Â apr_pool_t *scratch_pool);
> -
> -
> -
> Â /*** reading and writing the entries file ***/
>
>
> @@ -3023,44 +3014,25 @@ svn_wc_entry_dup(const svn_wc_entry_t *e
> Â svn_error_t *
> Â svn_wc__tweak_entry(svn_wc__db_t *db,
> Â Â Â Â Â Â Â Â Â Â const char *local_abspath,
> + Â Â Â Â Â Â Â Â Â Â svn_boolean_t tweak_stub,
> + Â Â Â Â Â Â Â Â Â Â svn_node_kind_t kind,
> Â Â Â Â Â Â Â Â Â Â const char *new_url,
> Â Â Â Â Â Â Â Â Â Â svn_revnum_t new_rev,
> - Â Â Â Â Â Â Â Â Â Â svn_boolean_t this_dir,
> Â Â Â Â Â Â Â Â Â Â svn_boolean_t allow_removal,
> Â Â Â Â Â Â Â Â Â Â apr_pool_t *scratch_pool)
> Â {
> - Â apr_hash_t *entries;
> - Â svn_wc_entry_t *entry;
> - Â const char *name;
> - Â svn_wc_adm_access_t *adm_access;
> - Â apr_pool_t *state_pool;
> - Â const char *parent_dir;
> + Â const svn_wc_entry_t *entry;
> + Â svn_wc_entry_t tmp_entry;
> + Â apr_uint64_t modify_flags = 0;
>
> - Â svn_dirent_split(local_abspath, &parent_dir, &name, scratch_pool);
> -
> - Â if (this_dir)
> - Â Â {
> - Â Â Â name = SVN_WC_ENTRY_THIS_DIR;
> - Â Â Â adm_access = svn_wc__adm_retrieve_internal2(db, local_abspath,
> - Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â scratch_pool);
> - Â Â }
> - Â else
> - Â Â {
> - Â Â Â adm_access = svn_wc__adm_retrieve_internal2(db, parent_dir,
> - Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â scratch_pool);
> - Â Â }
> -
> - Â state_pool = svn_wc_adm_access_pool(adm_access);
> - Â SVN_ERR(svn_wc_entries_read(&entries, adm_access, TRUE, scratch_pool));
> - Â entry = apr_hash_get(entries, name, APR_HASH_KEY_STRING);
> - Â if (! entry)
> - Â Â return svn_error_createf(SVN_ERR_ENTRY_NOT_FOUND, NULL,
> - Â Â Â Â Â Â Â Â Â Â Â Â Â Â _("No such entry: '%s'"), name);
> + Â SVN_ERR(svn_wc__get_entry(&entry, db, local_abspath, FALSE, kind, tweak_stub,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â scratch_pool, scratch_pool));
>
> Â if (new_url != NULL
> Â Â Â && (! entry->url || strcmp(new_url, entry->url)))
> Â Â {
> - Â Â Â entry->url = apr_pstrdup(state_pool, new_url);
> + Â Â Â modify_flags |= SVN_WC__ENTRY_MODIFY_URL;
> + Â Â Â tmp_entry.url = new_url;
> Â Â }
>
> Â if ((SVN_IS_VALID_REVNUM(new_rev))
> @@ -3069,7 +3041,8 @@ svn_wc__tweak_entry(svn_wc__db_t *db,
> Â Â Â && (entry->copied != TRUE)
> Â Â Â && (entry->revision != new_rev))
> Â Â {
> - Â Â Â entry->revision = new_rev;
> + Â Â Â modify_flags |= SVN_WC__ENTRY_MODIFY_REVISION;
> + Â Â Â tmp_entry.revision = new_rev;
> Â Â }
>
> Â /* As long as this function is only called as a helper to
> @@ -3090,12 +3063,15 @@ svn_wc__tweak_entry(svn_wc__db_t *db,
> Â if (allow_removal
> Â Â Â && (entry->deleted || (entry->absent && entry->revision != new_rev)))
> Â Â {
> - Â Â Â apr_hash_set(entries, name, APR_HASH_KEY_STRING, NULL);
> + Â Â Â SVN_ERR(svn_wc__entry_remove(db, local_abspath, scratch_pool));
> + Â Â }
> + Â else if (modify_flags)
> + Â Â {
> + Â Â Â SVN_ERR(svn_wc__entry_modify2(db, local_abspath, entry->kind, tweak_stub,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â &tmp_entry, modify_flags, scratch_pool));
> Â Â }
>
> - Â return svn_error_return(
> - Â Â entries_write(entries, db, this_dir ? local_abspath : parent_dir,
> - Â Â Â Â Â Â Â Â Â scratch_pool));
> + Â return SVN_NO_ERROR;
> Â }
>
>
>
> Modified: trunk/subversion/libsvn_wc/entries.h
> URL: http://svn.collab.net/viewvc/svn/trunk/subversion/libsvn_wc/entries.h?pathrev=39546&r1=39545&r2=39546
> ==============================================================================
> --- trunk/subversion/libsvn_wc/entries.h     Wed Sep 23 11:36:47 2009     (r39545)
> +++ trunk/subversion/libsvn_wc/entries.h     Wed Sep 23 12:40:53 2009     (r39546)
> @@ -211,9 +211,10 @@ svn_wc__entry_remove(svn_wc__db_t *db,
> Â svn_error_t *
> Â svn_wc__tweak_entry(svn_wc__db_t *db,
> Â Â Â Â Â Â Â Â Â Â const char *local_abspath,
> + Â Â Â Â Â Â Â Â Â Â svn_boolean_t tweak_stub,
> + Â Â Â Â Â Â Â Â Â Â svn_node_kind_t kind,
> Â Â Â Â Â Â Â Â Â Â const char *new_url,
> Â Â Â Â Â Â Â Â Â Â svn_revnum_t new_rev,
> - Â Â Â Â Â Â Â Â Â Â svn_boolean_t this_dir,
> Â Â Â Â Â Â Â Â Â Â svn_boolean_t allow_removal,
> Â Â Â Â Â Â Â Â Â Â apr_pool_t *scratch_pool);
>
> ------------------------------------------------------
> http://subversion.tigris.org/ds/viewMessage.do?dsForumId=495&dsMessageId=2399046
>
------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2399047
Received on 2009-09-23 21:50:30 CEST