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

RE: [PATCH] replace adm_access batons in libsvn_client/patch.c

From: Bert Huijben <rhuijben_at_sharpsvn.net>
Date: Fri, 11 Sep 2009 12:04:04 +0200

> -----Original Message-----
> From: Daniel Näslund [mailto:daniel_at_longitudo.com]
> Sent: vrijdag 11 september 2009 10:01
> To: dev_at_subversion.tigris.org
> Cc: stsp_at_stsp.name
> Subject: [PATCH] replace adm_access batons in libsvn_client/patch.c
>
> Hi!
>
> Bert told me that I needed to open an adm_access baton before calling
> svn_wc_delete4() or svn_wc_add4() and so I've done. I added a comment
> saying that those batons can be removed at a later stage. Perhaps I
> should use the ## notation that I've found in other part of the wc
> code?
>
> I wasn't sure if they should only be used to discuss design decisions
> so I did't use them.

The primary recursive open of an access baton in svn_client_patch should be enough to make things work correctly. You don't need the other open operations at every delete/add. The access batons are then stored in the working copy context.

@@ -1109,17 +1130,7 @@
                  svn_client_ctx_t *ctx,
                  apr_pool_t *pool)
 {
- svn_wc_adm_access_t *adm_access;
- const char *abs_target;
+ SVN_ERR(apply_textdiffs(patch_path, target, dry_run, ctx, pool));
 
- SVN_ERR(svn_dirent_get_absolute(&abs_target, target, pool));
- SVN_ERR(svn_wc__adm_open_in_context(&adm_access, ctx->wc_ctx, abs_target,
- TRUE, -1, ctx->cancel_func,
- ctx->cancel_baton, pool));
-
- SVN_ERR(apply_textdiffs(patch_path, target, adm_access, dry_run, ctx, pool));
-
- SVN_ERR(svn_wc_adm_close2(adm_access, pool));
-
   return SVN_NO_ERROR;
 }

If you revert this change (without the apply_textdiffs change) you can forget all the other svn_wc__adm_open_in_context calls.

        Bert

>
> The absolute paths is set in resolve_target_path(), hence I've removed
> the call to svn_dirent_get_absolute() in svn_client_patch(). Perhaps a
> follow-up patch can set the abspath only in svn_client_patch().
>
> [[[
> As part of WC-NG work, replace adm_access batons.
>
> * subversion/libsvn_client/patch.c
> (init_patch_target): Replace adm_access parameter with path
> parameter.
> Call resolve_target_path() with path instead of accessing the path
> through the baton.
> (apply_one_patch): Remove adm_access parameter. Call
> init_patch_target() without adm_access. Replace call to
> svn_wc_add3() with svn_wc_add4(). Replace call to svn_wc_delete3()
> with svn_wc_delete4(). Open a write access baton before each call
> to
> the wc-functions. Currently this baton is retrieved internally by
> them.
> (apply_textdiffs): Remove adm_access parameter. Call
> apply_one_patch()
> without adm_access.
> (svn_client_patch): Do not open a adm_access baton. Call
> apply_textdiffs() without adm_access.
> ]]]
>
> /Daniel Näslund
>
> Sorry about the mime-type. Still problems with mutt and tigris.
>
> ------------------------------------------------------
> http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageI
> d=2393555

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2393579
Received on 2009-09-11 12:04: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.