On Fri, Apr 6, 2012 at 3:48 PM, <hwright_at_apache.org> wrote:
> Author: hwright
> Date: Fri Apr  6 20:48:32 2012
> New Revision: 1310581
>
> URL: http://svn.apache.org/viewvc?rev=1310581&view=rev
> Log:
> On the ev2-export branch:
> Directly add any new directories, rather than through the path_info structs.
>
> * subversion/libsvn_client/copy.c
> Â (path_driver_info_t): Remove dir_add member.
> Â (drive_single_path): Don't check for the dir_add flag.
> Â (drive_editor): Handle the new dirs before the various copy/move paths.
> Â (repos_to_repos_copy): Don't bother putting the new directoris into the
> Â Â set of paths to be operated on, just give them to drive_editor().
>
> Modified:
> Â Â subversion/branches/ev2-export/subversion/libsvn_client/copy.c
>
> Modified: subversion/branches/ev2-export/subversion/libsvn_client/copy.c
> URL: http://svn.apache.org/viewvc/subversion/branches/ev2-export/subversion/libsvn_client/copy.c?rev=1310581&r1=1310580&r2=1310581&view=diff
> ==============================================================================
> --- subversion/branches/ev2-export/subversion/libsvn_client/copy.c (original)
> +++ subversion/branches/ev2-export/subversion/libsvn_client/copy.c Fri Apr  6 20:48:32 2012
> @@ -532,7 +532,6 @@ typedef struct path_driver_info_t
> Â svn_node_kind_t src_kind;
> Â svn_revnum_t src_revnum;
> Â svn_boolean_t resurrection;
> - Â svn_boolean_t dir_add;
> Â svn_string_t *mergeinfo; Â /* the new mergeinfo for the target */
> Â } path_driver_info_t;
>
> @@ -627,19 +626,9 @@ drive_single_path(svn_editor_t *editor,
> Â Â Â Â Â Â Â Â Â apr_pool_t *scratch_pool)
> Â {
> Â apr_hash_t *props = apr_hash_make(scratch_pool);
> - Â apr_array_header_t *children = apr_array_make(scratch_pool, 1,
> - Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â sizeof(const char *));
> Â svn_boolean_t do_delete = FALSE;
> Â svn_boolean_t do_add = FALSE;
>
> - Â /* Check to see if we need to add the path as a directory. */
> - Â if (path_info->dir_add)
> - Â Â {
> - Â Â Â return svn_error_trace(svn_editor_add_directory(editor, path, children,
> - Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â props,
> - Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â SVN_INVALID_REVNUM));
> - Â Â }
> -
> Â /* If this is a resurrection, we know the source and dest paths are
> Â Â Â the same, and that our driver will only be calling us once. Â */
> Â if (path_info->resurrection)
> @@ -702,6 +691,7 @@ static svn_error_t *
> Â drive_editor(svn_editor_t *editor,
> Â Â Â Â Â Â Â apr_array_header_t *paths,
> Â Â Â Â Â Â Â apr_hash_t *action_hash,
> + Â Â Â Â Â Â apr_array_header_t *new_dirs,
> Â Â Â Â Â Â Â svn_boolean_t is_move,
> Â Â Â Â Â Â Â svn_revnum_t youngest,
> Â Â Â Â Â Â Â apr_pool_t *scratch_pool)
> @@ -710,6 +700,23 @@ drive_editor(svn_editor_t *editor,
> Â apr_pool_t *iterpool;
> Â int i;
>
> + Â if (new_dirs)
> + Â Â {
> + Â Â Â apr_array_header_t *children = apr_array_make(scratch_pool, 1,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â sizeof(const char *));
> + Â Â Â apr_hash_t *props = apr_hash_make(scratch_pool);
> +
> + Â Â Â /* These are directories which we just need to add. */
> + Â Â Â for (i = 0; i < new_dirs->nelts; i++)
> + Â Â Â Â {
> + Â Â Â Â Â const char *dir = APR_ARRAY_IDX(new_dirs, i, const char *);
> +
> + Â Â Â Â Â /* ### The children param needs to be populated correctly. */
> + Â Â Â Â Â SVN_ERR(svn_editor_add_directory(editor, dir, children, props,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â SVN_INVALID_REVNUM));
Greg,
Just so you know, I would have expected this section to crash Ev2 in
copy test 67, since there are several directories being added, but the
children array is (currently) empty. I wonder if there is a problem
with the internal Ev2 state checking.
Also, this currently feeds paths to Ev2 child-first. For instance,
copy test 67 calls this with 'X/Y/Z', 'X/Y', and 'X', in that order.
The shims reorder things so that it gets done properly, but I wonder
if there shouldn't be some state checks in Ev2 to ensure parents are
added before children.
-Hyrum
> + Â Â Â Â }
> + Â Â }
> +
> Â iterpool = svn_pool_create(scratch_pool);
> Â for (i = 0; i < paths->nelts; i++)
> Â Â {
> @@ -1071,24 +1078,7 @@ repos_to_repos_copy(const apr_array_head
> Â else
> Â Â message = "";
>
> - Â /* Setup our PATHS for the path-based editor drive. */
> - Â /* First any intermediate directories. */
> - Â if (make_parents)
> - Â Â {
> - Â Â Â for (i = 0; i < new_dirs->nelts; i++)
> - Â Â Â Â {
> - Â Â Â Â Â const char *relpath = APR_ARRAY_IDX(new_dirs, i, const char *);
> - Â Â Â Â Â path_driver_info_t *info = apr_pcalloc(pool, sizeof(*info));
> -
> - Â Â Â Â Â info->dst_path = relpath;
> - Â Â Â Â Â info->dir_add = TRUE;
> -
> - Â Â Â Â Â APR_ARRAY_PUSH(paths, const char *) = relpath;
> - Â Â Â Â Â apr_hash_set(action_hash, relpath, APR_HASH_KEY_STRING, info);
> - Â Â Â Â }
> - Â Â }
> -
> - Â /* Then our copy destinations and move sources (if any). */
> + Â /* Setup our copy destinations and move sources (if any). */
> Â for (i = 0; i < path_infos->nelts; i++)
> Â Â {
> Â Â Â path_driver_info_t *info = APR_ARRAY_IDX(path_infos, i,
> @@ -1114,7 +1104,7 @@ repos_to_repos_copy(const apr_array_head
> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â ctx->cancel_func, ctx->cancel_baton,
> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â pool, pool));
>
> - Â return svn_error_trace(drive_editor(editor, paths, action_hash,
> + Â return svn_error_trace(drive_editor(editor, paths, action_hash, new_dirs,
> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â is_move, youngest, pool));
> Â }
>
>
>
--
uberSVN: Apache Subversion Made Easy
http://www.uberSVN.com/
Received on 2012-04-06 22:53:42 CEST