~svn/ubuntu/oneiric/subversion/ppa

« back to all changes in this revision

Viewing changes to subversion/svn/export-cmd.c

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2006-12-13 17:57:16 UTC
  • mfrom: (1.1.6 upstream) (0.1.3 etch)
  • Revision ID: james.westby@ubuntu.com-20061213175716-2ysv6z4w5dpa2r2f
Tags: 1.4.2dfsg1-2ubuntu1
* Merge with Debian unstable; remaining changes:
  - Create pot file on build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * export-cmd.c -- Subversion export command
 
3
 *
 
4
 * ====================================================================
 
5
 * Copyright (c) 2000-2004 CollabNet.  All rights reserved.
 
6
 *
 
7
 * This software is licensed as described in the file COPYING, which
 
8
 * you should have received as part of this distribution.  The terms
 
9
 * are also available at http://subversion.tigris.org/license-1.html.
 
10
 * If newer versions of this license are posted there, you may use a
 
11
 * newer version instead, at your option.
 
12
 *
 
13
 * This software consists of voluntary contributions made by many
 
14
 * individuals.  For exact contribution history, see the revision
 
15
 * history and logs, available at http://subversion.tigris.org/.
 
16
 * ====================================================================
 
17
 */
 
18
 
 
19
/* ==================================================================== */
 
20
 
 
21
 
 
22
 
 
23
/*** Includes. ***/
 
24
 
 
25
#include "svn_client.h"
 
26
#include "svn_error.h"
 
27
#include "svn_path.h"
 
28
#include "cl.h"
 
29
 
 
30
#include "svn_private_config.h"
 
31
 
 
32
 
 
33
/*** Code. ***/
 
34
 
 
35
/* This implements the `svn_opt_subcommand_t' interface. */
 
36
svn_error_t *
 
37
svn_cl__export(apr_getopt_t *os,
 
38
               void *baton,
 
39
               apr_pool_t *pool)
 
40
{
 
41
  svn_cl__opt_state_t *opt_state = ((svn_cl__cmd_baton_t *) baton)->opt_state;
 
42
  svn_client_ctx_t *ctx = ((svn_cl__cmd_baton_t *) baton)->ctx;
 
43
  const char *from, *to;
 
44
  apr_array_header_t *targets;
 
45
  svn_error_t *err;
 
46
  svn_opt_revision_t peg_revision;
 
47
  const char *truefrom;
 
48
 
 
49
  SVN_ERR(svn_opt_args_to_target_array2(&targets, os, 
 
50
                                        opt_state->targets, pool));
 
51
 
 
52
  /* We want exactly 1 or 2 targets for this subcommand. */
 
53
  if (targets->nelts < 1)
 
54
    return svn_error_create(SVN_ERR_CL_INSUFFICIENT_ARGS, 0, NULL);
 
55
  if (targets->nelts > 2)
 
56
    return svn_error_create(SVN_ERR_CL_ARG_PARSING_ERROR, 0, NULL);
 
57
  
 
58
  /* The first target is the `from' path. */
 
59
  from = ((const char **) (targets->elts))[0];
 
60
 
 
61
  /* Get the peg revision if present. */
 
62
  SVN_ERR(svn_opt_parse_path(&peg_revision, &truefrom, from, pool));
 
63
 
 
64
  /* If only one target was given, split off the basename to use as
 
65
     the `to' path.  Else, a `to' path was supplied. */
 
66
  if (targets->nelts == 1) 
 
67
    to = svn_path_uri_decode(svn_path_basename(truefrom, pool), pool);
 
68
  else
 
69
    to = ((const char **) (targets->elts))[1];
 
70
 
 
71
  if (! opt_state->quiet)
 
72
    svn_cl__get_notifier(&ctx->notify_func2, &ctx->notify_baton2, FALSE, TRUE,
 
73
                         FALSE, pool);
 
74
 
 
75
  /* Do the export. */
 
76
  err = svn_client_export3(NULL, truefrom, to, &peg_revision,
 
77
                           &(opt_state->start_revision),
 
78
                           opt_state->force, opt_state->ignore_externals,
 
79
                           opt_state->nonrecursive ? FALSE : TRUE, 
 
80
                           opt_state->native_eol, ctx,
 
81
                           pool);
 
82
  if (err && err->apr_err == SVN_ERR_WC_OBSTRUCTED_UPDATE && !opt_state->force)
 
83
    SVN_ERR_W(err,
 
84
              _("Destination directory exists; please remove "
 
85
                "the directory or use --force to overwrite"));
 
86
  else
 
87
    SVN_ERR(err);
 
88
 
 
89
  return SVN_NO_ERROR;
 
90
}