VirtualBox

Changeset 58234 in vbox for trunk/src/apps/svnsync-vbox


Ignore:
Timestamp:
Oct 14, 2015 12:34:53 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
103398
Message:

svnsync-vbox: fixes for subversion 1.8, some critical, many avoiding now deprecated functions

Location:
trunk/src/apps/svnsync-vbox
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/apps/svnsync-vbox/Makefile

    r44528 r58234  
    33#
    44#
    5 # Copyright (C) 2006-2010 Oracle Corporation
     5# Copyright (C) 2006-2015 Oracle Corporation
    66#
    77# This file is part of VirtualBox Open Source Edition (OSE), as
     
    1919DEFS = -DVBOX -D_FILE_OFFSET_BITS=64
    2020INCS = -I. -I/usr/include/subversion-1 -I/usr/include/apr-1.0
    21 LIBS = -lsvn_ra-1 -lsvn_ra_neon-1 -lsvn_ra_local-1 \
    22   -lsvn_repos-1 -lsvn_fs-1 -lsvn_fs_base-1 -lsvn_fs_fs-1 -lsvn_delta-1 \
    23   -lsvn_subr-1 -lneon -lapr-1 -laprutil-1
     21LIBS = -lsvn_ra-1 -lsvn_ra_local-1 \
     22  -lsvn_repos-1 -lsvn_fs-1 -lsvn_delta-1 \
     23  -lsvn_subr-1 -lapr-1 -laprutil-1 \
     24  -ldb
    2425
    2526all: svnsync-vbox
  • trunk/src/apps/svnsync-vbox/main.c

    r48253 r58234  
    2020
    2121#ifdef VBOX
     22#include <svn_version.h>
    2223#include <svn_cmdline.h>
    2324#include <svn_config.h>
     
    278279  apr_hash_t *props;
    279280  svn_string_t *value;
    280 
    281   SVN_ERR(svn_ra_get_file(session, path, revision, NULL, NULL, &props, pool));
     281  svn_node_kind_t nodekind;
     282
     283  SVN_ERR(svn_ra_check_path(session, path, revision, &nodekind, pool));
     284  if (nodekind == svn_node_file)
     285    SVN_ERR(svn_ra_get_file(session, path, revision, NULL, NULL, &props, pool));
     286  else
     287    SVN_ERR(svn_ra_get_dir2(session, NULL, NULL, &props, path, revision, 0, pool));
    282288  value = apr_hash_get(props, SVNSYNC_PROP_PROCESS, APR_HASH_KEY_STRING);
    283289  if (value)
     
    372378      else
    373379        {
     380#ifdef VBOX
     381          SVN_ERR(svn_ra_change_rev_prop2(session, 0, SVNSYNC_PROP_LOCK,
     382                                          NULL, mylocktoken, subpool));
     383#else /* !VBOX */
    374384          SVN_ERR(svn_ra_change_rev_prop(session, 0, SVNSYNC_PROP_LOCK,
    375385                                         mylocktoken, subpool));
     386#endif /* !VBOX */
    376387        }
    377388    }
     
    404415  err = func(session, baton, pool);
    405416
     417#ifdef VBOX
     418  err2 = svn_ra_change_rev_prop2(session, 0, SVNSYNC_PROP_LOCK, NULL, NULL, pool);
     419#else /* !VBOX */
    406420  err2 = svn_ra_change_rev_prop(session, 0, SVNSYNC_PROP_LOCK, NULL, pool);
     421#endif /* !VBOX */
    407422  if (err2 && err)
    408423    {
     
    520535        if (strncmp(key, SVN_PROP_REVISION_AUTHOR,
    521536                    sizeof(SVN_PROP_REVISION_AUTHOR) - 1))
    522           SVN_ERR(svn_ra_change_rev_prop(to_session, rev_to, key, val, subpool));
     537          SVN_ERR(svn_ra_change_rev_prop2(to_session, rev_to, key, NULL, val, subpool));
    523538#else /* !VBOX */
    524539        SVN_ERR(svn_ra_change_rev_prop(to_session, rev, key, val, subpool));
     
    542557
    543558#ifdef VBOX
    544           SVN_ERR(svn_ra_change_rev_prop(to_session, rev_to, name, NULL,
    545                                          subpool));
     559          SVN_ERR(svn_ra_change_rev_prop2(to_session, rev_to, name, NULL, NULL,
     560                                          subpool));
    546561#else /* !VBOX */
    547562          SVN_ERR(svn_ra_change_rev_prop(to_session, rev, name, NULL,
     
    827842  DX(fprintf(stderr, "init change_file_prop %s\n", name);)
    828843  DX(fprintf(stderr, "  %s\n", fb->process ? "EXPORT" : "IGNORE");)
    829   if (svn_property_kind(NULL, name) != svn_prop_regular_kind)
     844  if (svn_property_kind2(name) != svn_prop_regular_kind)
    830845    return SVN_NO_ERROR;
    831846  if (!strcmp(name, "cvs2svn:cvs-rev"))
     
    862877  DX(fprintf(stderr, "init change_dir_prop %s\n", name);)
    863878  DX(fprintf(stderr, "  %s\n", db->process ? "EXPORT" : "IGNORE");)
    864   if (svn_property_kind(NULL, name) != svn_prop_regular_kind)
     879  if (svn_property_kind2(name) != svn_prop_regular_kind)
    865880    return SVN_NO_ERROR;
    866881  if (!strcmp(name, "cvs2svn:cvs-rev"))
     
    10261041
    10271042#ifdef VBOX
    1028   SVN_ERR(svn_ra_open3(&from_session, baton->from_url, NULL, baton->callbacks,
     1043  SVN_ERR(svn_ra_open4(&from_session, NULL, baton->from_url, NULL, baton->callbacks,
    10291044                       baton, baton->config, pool));
    10301045#else /* !VBOX */
     
    10361051                                            pool));
    10371052
     1053#ifdef VBOX
     1054  SVN_ERR(svn_ra_change_rev_prop2(to_session, 0, SVNSYNC_PROP_FROM_URL, NULL,
     1055                                  svn_string_create(baton->from_url, pool),
     1056                                  pool));
     1057#else /* !VBOX */
    10381058  SVN_ERR(svn_ra_change_rev_prop(to_session, 0, SVNSYNC_PROP_FROM_URL,
    10391059                                 svn_string_create(baton->from_url, pool),
    10401060                                 pool));
     1061#endif /* !VBOX */
    10411062
    10421063#ifdef VBOX
     
    10461067#endif /* !VBOX */
    10471068
     1069#ifdef VBOX
     1070  SVN_ERR(svn_ra_change_rev_prop2(to_session, 0, SVNSYNC_PROP_FROM_UUID, NULL,
     1071                                 svn_string_create(uuid, pool), pool));
     1072#else /* !VBOX */
    10481073  SVN_ERR(svn_ra_change_rev_prop(to_session, 0, SVNSYNC_PROP_FROM_UUID,
    10491074                                 svn_string_create(uuid, pool), pool));
     1075#endif /* !VBOX */
    10501076
    10511077#ifdef VBOX
    10521078  start_rev_str = svn_string_create(apr_psprintf(pool, "%ld", baton->start_rev),
    10531079                                    pool);
    1054   SVN_ERR(svn_ra_change_rev_prop(to_session, 0, SVNSYNC_PROP_START_REV,
    1055                                  start_rev_str, pool));
    1056   SVN_ERR(svn_ra_change_rev_prop(to_session, 0, SVNSYNC_PROP_LAST_MERGED_REV,
    1057                                  start_rev_str, pool));
     1080  SVN_ERR(svn_ra_change_rev_prop2(to_session, 0, SVNSYNC_PROP_START_REV, NULL,
     1081                                  start_rev_str, pool));
     1082  SVN_ERR(svn_ra_change_rev_prop2(to_session, 0, SVNSYNC_PROP_LAST_MERGED_REV, NULL,
     1083                                  start_rev_str, pool));
    10581084  if (!baton->default_process)
    10591085    default_process = "export";
    1060   else default_process = baton->default_process;
    1061   SVN_ERR(svn_ra_change_rev_prop(to_session, 0, SVNSYNC_PROP_DEFAULT_PROCESS,
    1062                                  svn_string_create(default_process, pool),
    1063                                  pool));
     1086  else
     1087    default_process = baton->default_process;
     1088  SVN_ERR(svn_ra_change_rev_prop2(to_session, 0, SVNSYNC_PROP_DEFAULT_PROCESS, NULL,
     1089                                  svn_string_create(default_process, pool),
     1090                                  pool));
    10641091  if (baton->replace_externals)
    1065     SVN_ERR(svn_ra_change_rev_prop(to_session, 0,
    1066                                    SVNSYNC_PROP_REPLACE_EXTERNALS,
    1067                                    svn_string_create("", pool), pool));
     1092    SVN_ERR(svn_ra_change_rev_prop2(to_session, 0,
     1093                                    SVNSYNC_PROP_REPLACE_EXTERNALS, NULL,
     1094                                    svn_string_create("", pool), pool));
    10681095  if (baton->replace_license)
    1069     SVN_ERR(svn_ra_change_rev_prop(to_session, 0,
    1070                                    SVNSYNC_PROP_REPLACE_LICENSE,
    1071                                    svn_string_create("", pool), pool));
     1096    SVN_ERR(svn_ra_change_rev_prop2(to_session, 0,
     1097                                    SVNSYNC_PROP_REPLACE_LICENSE, NULL,
     1098                                    svn_string_create("", pool), pool));
    10721099#else /* !VBOX */
    10731100  SVN_ERR(svn_ra_change_rev_prop(to_session, 0, SVNSYNC_PROP_LAST_MERGED_REV,
     
    11121139                                      NULL, FALSE, pool));
    11131140
    1114     SVN_ERR(svn_ra_open3(&from_session_prop, baton->from_url, NULL,
     1141    SVN_ERR(svn_ra_open4(&from_session_prop, NULL, baton->from_url, NULL,
    11151142                         baton->callbacks, baton, baton->config, pool));
    11161143
     
    11261153
    11271154    /* Run it via an update reporter. */
    1128     SVN_ERR(svn_ra_do_update2(from_session, &reporter, &report_baton,
     1155    SVN_ERR(svn_ra_do_update3(from_session, &reporter, &report_baton,
    11291156                              baton->start_rev, "", svn_depth_infinity, FALSE,
    1130                               cancel_editor, cancel_baton, pool));
     1157                              FALSE, cancel_editor, cancel_baton, pool, pool));
    11311158    SVN_ERR(reporter->set_path(report_baton, "", baton->start_rev,
    11321159                               svn_depth_infinity, TRUE, NULL, pool));
     
    11521179  SVN_ERR(svn_opt_parse_num_args(&args, os, 2, pool));
    11531180
    1154   to_url = svn_path_canonicalize(APR_ARRAY_IDX(args, 0, const char *), pool);
    1155   from_url = svn_path_canonicalize(APR_ARRAY_IDX(args, 1, const char *), pool);
     1181  to_url = svn_uri_canonicalize(APR_ARRAY_IDX(args, 0, const char *), pool);
     1182  from_url = svn_uri_canonicalize(APR_ARRAY_IDX(args, 1, const char *), pool);
    11561183
    11571184  if (! svn_path_is_url(to_url))
     
    11621189                             _("Path '%s' is not a URL"), from_url);
    11631190
    1164   baton.to_url = svn_path_canonicalize(to_url, pool);
    1165   baton.from_url = svn_path_canonicalize(from_url, pool);
     1191  baton.to_url = to_url;
     1192  baton.from_url = from_url;
    11661193  baton.config = opt_baton->config;
    11671194#ifdef VBOX
     
    11781205
    11791206#ifdef VBOX
    1180   SVN_ERR(svn_ra_open3(&to_session, baton.to_url, NULL,
     1207  SVN_ERR(svn_ra_open4(&to_session, NULL, baton.to_url, NULL,
    11811208                       &callbacks, &baton, baton.config, pool));
    11821209#else /* !VBOX */
     
    12491276
    12501277
     1278#ifdef VBOX
    12511279static svn_revnum_t
    12521280lookup_revnum(svn_ra_session_t *to_session,
     
    13081336  SVN_ERR(open_tmp_file(&tmpfile, NULL, subpool));
    13091337  filestream = svn_stream_from_aprfile2(tmpfile, FALSE, subpool);
    1310   /* svn_ra_get_file() insists on getting a file path without leading /,
    1311    * and there is a leading / in our input parameter when copying from a
    1312    * different branch. The assertion is annoying, as continuing would work. */
    1313   if (src_path[0] == '/')
    1314     src_path++;
    1315   SVN_ERR(svn_ra_get_file(from_session, src_path, src_rev, filestream, NULL,
    1316                           &fileprops, subpool));
     1338  SVN_ERR(svn_ra_get_file(from_session, STRIP_LEADING_SLASH(src_path), src_rev,
     1339                          filestream, NULL, &fileprops, subpool));
    13171340  SVN_ERR(svn_io_file_seek(tmpfile, APR_SET, &offset, subpool));
    13181341
    13191342  SVN_ERR(apply_textdelta(file_baton, NULL, subpool, &window_handler,
    13201343                          &window_handler_baton));
    1321   svn_txdelta(&deltastream, emptystream, filestream, subpool);
     1344  svn_txdelta2(&deltastream, emptystream, filestream, FALSE, subpool);
    13221345  do
    13231346  {
     
    13781401    val_ent = (svn_dirent_t *)val;
    13791402    oppool = svn_pool_create(subpool);
    1380     from_path = svn_path_join(src_path, key, oppool);
    1381     to_path = svn_path_join(dst_path, key, oppool);
     1403    from_path = svn_relpath_join(src_path, key, oppool);
     1404    to_path = svn_relpath_join(dst_path, key, oppool);
    13821405    switch (val_ent->kind)
    13831406    {
     
    14191442  return SVN_NO_ERROR;
    14201443}
     1444#endif /* VBOX */
    14211445
    14221446/*** Editor vtable functions ***/
     
    21372161#endif /* VBOX */
    21382162  /* only regular properties can pass over libsvn_ra */
    2139   if (svn_property_kind(NULL, name) != svn_prop_regular_kind)
     2163#ifdef VBOX
     2164  if (svn_property_kind2(name) != svn_prop_regular_kind)
    21402165    return SVN_NO_ERROR;
    2141 #ifdef VBOX
    21422166  if (!strcmp(name, "cvs2svn:cvs-rev"))
    21432167    return SVN_NO_ERROR;
     
    21572181    return SVN_NO_ERROR;
    21582182  eb->changeset_live = TRUE;
    2159 #endif /* VBOX */
     2183#else /* !VBOX */
     2184  if (svn_property_kind(NULL, name) != svn_prop_regular_kind)
     2185    return SVN_NO_ERROR;
     2186#endif /* !VBOX */
    21602187
    21612188  return eb->wrapped_editor->change_file_prop(fb->wrapped_node_baton,
     
    21772204#endif /* VBOX */
    21782205  /* only regular properties can pass over libsvn_ra */
    2179   if (svn_property_kind(NULL, name) != svn_prop_regular_kind)
     2206#ifdef VBOX
     2207  if (svn_property_kind2(name) != svn_prop_regular_kind)
    21802208    return SVN_NO_ERROR;
    2181 #ifdef VBOX
    21822209  if (!strcmp(name, "cvs2svn:cvs-rev"))
    21832210    return SVN_NO_ERROR;
     
    21972224    return SVN_NO_ERROR;
    21982225  eb->changeset_live = TRUE;
    2199 #endif /* VBOX */
     2226#else /* !VBOX */
     2227  if (svn_property_kind(NULL, name) != svn_prop_regular_kind)
     2228    return SVN_NO_ERROR;
     2229#endif /* !VBOX */
    22002230
    22012231  return eb->wrapped_editor->change_dir_prop(db->wrapped_node_baton,
     
    24122442
    24132443#ifdef VBOX
    2414   SVN_ERR(svn_ra_open3(from_session, from_url->data, NULL, callbacks, baton,
     2444  SVN_ERR(svn_ra_open4(from_session, NULL, from_url->data, NULL, callbacks, baton,
    24152445                       config, pool));
    24162446#else /* !VBOX */
     
    24842514                          &replace_license_str, pool));
    24852515  replace_license = !!replace_license_str;
    2486   SVN_ERR(svn_ra_open3(&from_session_prop, from_url->data, NULL,
     2516  SVN_ERR(svn_ra_open4(&from_session_prop, NULL, from_url->data, NULL,
    24872517                       baton->callbacks, baton, baton->config, pool));
    2488   SVN_ERR(svn_ra_open3(&to_session_prop, baton->to_url, NULL,
     2518  SVN_ERR(svn_ra_open4(&to_session_prop, NULL, baton->to_url, NULL,
    24892519                       baton->callbacks, baton, baton->config, pool));
    24902520#else /* !VBOX */
     
    25702600             (i.e. non-svnsync) commits to the dest repository. */
    25712601
     2602#ifdef VBOX
     2603          SVN_ERR(svn_ra_change_rev_prop2(to_session, 0,
     2604                                          SVNSYNC_PROP_LAST_MERGED_REV, NULL,
     2605                                          last_merged_rev, pool));
     2606          SVN_ERR(svn_ra_change_rev_prop2(to_session, 0,
     2607                                          SVNSYNC_PROP_CURRENTLY_COPYING, NULL,
     2608                                          NULL, pool));
     2609#else /* !VBOX */
    25722610          SVN_ERR(svn_ra_change_rev_prop(to_session, 0,
    25732611                                         SVNSYNC_PROP_LAST_MERGED_REV,
     
    25762614                                         SVNSYNC_PROP_CURRENTLY_COPYING,
    25772615                                         NULL, pool));
     2616#endif /* !VBOX */
    25782617        }
    25792618      /* If copying > to_latest, then we just fall through to
     
    26292668         because ra_svn doesn't let you change rev props during a
    26302669         commit. */
     2670#ifdef VBOX
     2671      SVN_ERR(svn_ra_change_rev_prop2(to_session, 0,
     2672                                      SVNSYNC_PROP_CURRENTLY_COPYING, NULL,
     2673                                      svn_string_createf(subpool, "%ld",
     2674                                                         current),
     2675                                      subpool));
     2676#else /* !VBOX */
    26312677      SVN_ERR(svn_ra_change_rev_prop(to_session, 0,
    26322678                                     SVNSYNC_PROP_CURRENTLY_COPYING,
     
    26342680                                                        current),
    26352681                                     subpool));
     2682#endif /* !VBOX */
    26362683
    26372684      /* The actual copy is just a replay hooked up to a commit. */
     
    27232770
    27242771        /* Add a revision cross-reference revprop. */
    2725         SVN_ERR(svn_ra_change_rev_prop(to_session, 0,
    2726                                        apr_psprintf(subpool,
    2727                                                     SVNSYNC_PROP_REV__FMT,
    2728                                                     current),
    2729                                        svn_string_create(apr_psprintf(subpool,
    2730                                                                       "%ld",
    2731                                                                       baton->committed_rev),
    2732                                    subpool),
    2733                  subpool));
     2772        SVN_ERR(svn_ra_change_rev_prop2(to_session, 0,
     2773                                        apr_psprintf(subpool,
     2774                                                     SVNSYNC_PROP_REV__FMT,
     2775                                                     current), NULL,
     2776                                        svn_string_create(apr_psprintf(subpool,
     2777                                                                       "%ld",
     2778                                                                       baton->committed_rev),
     2779                                                          subpool),
     2780                                        subpool));
    27342781      }
    27352782      else
     
    27402787         * appears in the destination repository. */
    27412788        SVN_ERR(svn_ra_get_latest_revnum(to_session, &to_latest, subpool));
    2742         SVN_ERR(svn_ra_change_rev_prop(to_session, 0,
    2743                                        apr_psprintf(subpool,
    2744                                                     SVNSYNC_PROP_REV__FMT,
    2745                                                     current),
    2746                                        svn_string_create(apr_psprintf(subpool,
    2747                                                                       "%ld",
    2748                                                                       to_latest),
    2749                                    subpool),
    2750                  subpool));
     2789        SVN_ERR(svn_ra_change_rev_prop2(to_session, 0,
     2790                                        apr_psprintf(subpool,
     2791                                                     SVNSYNC_PROP_REV__FMT,
     2792                                                     current), NULL,
     2793                                        svn_string_create(apr_psprintf(subpool,
     2794                                                                       "%ld",
     2795                                                                       to_latest),
     2796                                                          subpool),
     2797                                        subpool));
    27512798      }
    27522799#else /* !VBOX */
     
    27562803      /* Ok, we're done, bring the last-merged-rev property up to date. */
    27572804
     2805#ifdef VBOX
     2806      SVN_ERR(svn_ra_change_rev_prop2
     2807              (to_session,
     2808               0,
     2809               SVNSYNC_PROP_LAST_MERGED_REV, NULL,
     2810               svn_string_create(apr_psprintf(subpool, "%ld", current),
     2811                                 subpool),
     2812               subpool));
     2813#else /* !VBOX */
    27582814      SVN_ERR(svn_ra_change_rev_prop
    27592815              (to_session,
     
    27632819                                 subpool),
    27642820               subpool));
     2821#endif /* !VBOX */
    27652822
    27662823      /* And finally drop the currently copying prop, since we're done
    27672824         with this revision. */
    27682825
     2826#ifdef VBOX
     2827      SVN_ERR(svn_ra_change_rev_prop2(to_session, 0,
     2828                                      SVNSYNC_PROP_CURRENTLY_COPYING, NULL,
     2829                                      NULL, subpool));
     2830#else /* !VBOX */
    27692831      SVN_ERR(svn_ra_change_rev_prop(to_session, 0,
    27702832                                     SVNSYNC_PROP_CURRENTLY_COPYING,
    27712833                                     NULL, subpool));
     2834#endif /* !VBOX */
    27722835    }
    27732836
     
    27892852  SVN_ERR(svn_opt_parse_num_args(&args, os, 1, pool));
    27902853
    2791   to_url = svn_path_canonicalize(APR_ARRAY_IDX(args, 0, const char *), pool);
     2854  to_url = svn_uri_canonicalize(APR_ARRAY_IDX(args, 0, const char *), pool);
    27922855
    27932856  if (! svn_path_is_url(to_url))
     
    28032866
    28042867#ifdef VBOX
    2805   SVN_ERR(svn_ra_open3(&to_session, to_url, NULL,
     2868  SVN_ERR(svn_ra_open4(&to_session, NULL, to_url, NULL,
    28062869                       baton.callbacks, &baton, baton.config, pool));
    28072870#else /* !VBOX */
     
    28952958  SVN_ERR(svn_opt_parse_num_args(&args, os, 2, pool));
    28962959
    2897   to_url = svn_path_canonicalize(APR_ARRAY_IDX(args, 0, const char *), pool);
     2960  to_url = svn_uri_canonicalize(APR_ARRAY_IDX(args, 0, const char *), pool);
    28982961  revision = strtol(APR_ARRAY_IDX(args, 1, const char *), &digits_end, 10);
    28992962
     
    29142977
    29152978#ifdef VBOX
    2916   SVN_ERR(svn_ra_open3(&to_session, to_url, NULL,
     2979  SVN_ERR(svn_ra_open4(&to_session, NULL, to_url, NULL,
    29172980                       baton.callbacks, &baton, baton.config, pool));
    29182981#else /* !VBOX */
     
    29603023
    29613024#ifdef VBOX
    2962   SVN_ERR(svn_opt_print_help3(os, "svnsync",
     3025  SVN_ERR(svn_opt_print_help4(os, "svnsync",
    29633026                              opt_baton ? opt_baton->version : FALSE,
    2964                               FALSE, version_footer->data, header,
     3027                              FALSE, FALSE, version_footer->data, header,
    29653028                              svnsync_cmd_table, svnsync_options, NULL,
    29663029                              NULL, pool));
     
    30303093    }
    30313094
    3032   err = svn_cmdline__getopt_init(&os, argc, argv, pool);
    3033   if (err)
    3034     return svn_cmdline_handle_exit_error(err, pool, "svnsync: ");
     3095  {
     3096    apr_status_t apr_err;
     3097    apr_err = apr_getopt_init(&os, pool, argc, argv);
     3098    if (apr_err)
     3099    {
     3100      err = svn_error_wrap_apr(apr_err, "Error initializing command line parsing");
     3101      return svn_cmdline_handle_exit_error(err, pool, "svnsync: ");
     3102    }
     3103  }
    30353104
    30363105  os->interleave = 1;
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette