1/*
2 * import-cmd.c -- Import a file or tree into the repository.
3 *
4 * ====================================================================
5 *    Licensed to the Apache Software Foundation (ASF) under one
6 *    or more contributor license agreements.  See the NOTICE file
7 *    distributed with this work for additional information
8 *    regarding copyright ownership.  The ASF licenses this file
9 *    to you under the Apache License, Version 2.0 (the
10 *    "License"); you may not use this file except in compliance
11 *    with the License.  You may obtain a copy of the License at
12 *
13 *      http://www.apache.org/licenses/LICENSE-2.0
14 *
15 *    Unless required by applicable law or agreed to in writing,
16 *    software distributed under the License is distributed on an
17 *    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
18 *    KIND, either express or implied.  See the License for the
19 *    specific language governing permissions and limitations
20 *    under the License.
21 * ====================================================================
22 */
23
24/* ==================================================================== */
25
26
27
28/*** Includes. ***/
29
30#include "svn_client.h"
31#include "svn_path.h"
32#include "svn_error.h"
33#include "cl.h"
34
35#include "svn_private_config.h"
36
37
38/*** Code. ***/
39
40/* This implements the `svn_opt_subcommand_t' interface. */
41svn_error_t *
42svn_cl__import(apr_getopt_t *os,
43               void *baton,
44               apr_pool_t *pool)
45{
46  svn_cl__opt_state_t *opt_state = ((svn_cl__cmd_baton_t *) baton)->opt_state;
47  svn_client_ctx_t *ctx = ((svn_cl__cmd_baton_t *) baton)->ctx;
48  apr_array_header_t *targets;
49  const char *path;
50  const char *url;
51
52  /* Import takes two arguments, for example
53   *
54   *   $ svn import projects/test file:///home/jrandom/repos/trunk
55   *                ^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
56   *                 (source)       (repository)
57   *
58   * or
59   *
60   *   $ svn import file:///home/jrandom/repos/some/subdir
61   *
62   * What is the nicest behavior for import, from the user's point of
63   * view?  This is a subtle question.  Seemingly intuitive answers
64   * can lead to weird situations, such never being able to create
65   * non-directories in the top-level of the repository.
66   *
67   * If 'source' is a file then the basename of 'url' is used as the
68   * filename in the repository.  If 'source' is a directory then the
69   * import happens directly in the repository target dir, creating
70   * however many new entries are necessary.  If some part of 'url'
71   * does not exist in the repository then parent directories are created
72   * as necessary.
73   *
74   * In the case where no 'source' is given '.' (the current directory)
75   * is implied.
76   *
77   * ### kff todo: review above behaviors.
78   */
79
80  SVN_ERR(svn_cl__args_to_target_array_print_reserved(&targets, os,
81                                                      opt_state->targets,
82                                                      ctx, FALSE, pool));
83
84  if (targets->nelts < 1)
85    return svn_error_create
86      (SVN_ERR_CL_INSUFFICIENT_ARGS, NULL,
87       _("Repository URL required when importing"));
88  else if (targets->nelts > 2)
89    return svn_error_create
90      (SVN_ERR_CL_ARG_PARSING_ERROR, NULL,
91       _("Too many arguments to import command"));
92  else if (targets->nelts == 1)
93    {
94      url = APR_ARRAY_IDX(targets, 0, const char *);
95      path = "";
96    }
97  else
98    {
99      path = APR_ARRAY_IDX(targets, 0, const char *);
100      url = APR_ARRAY_IDX(targets, 1, const char *);
101    }
102
103  SVN_ERR(svn_cl__check_target_is_local_path(path));
104
105  if (! svn_path_is_url(url))
106    return svn_error_createf(SVN_ERR_CL_ARG_PARSING_ERROR, NULL,
107                             _("Invalid URL '%s'"), url);
108
109  if (opt_state->depth == svn_depth_unknown)
110    opt_state->depth = svn_depth_infinity;
111
112  SVN_ERR(svn_cl__make_log_msg_baton(&(ctx->log_msg_baton3), opt_state,
113                                     NULL, ctx->config, pool));
114
115  SVN_ERR(svn_cl__cleanup_log_msg
116          (ctx->log_msg_baton3,
117           svn_client_import5(path,
118                              url,
119                              opt_state->depth,
120                              opt_state->no_ignore,
121                              opt_state->no_autoprops,
122                              opt_state->force,
123                              opt_state->revprop_table,
124                              NULL, NULL,  /* filter callback / baton */
125                              (opt_state->quiet
126                               ? NULL : svn_cl__print_commit_info),
127                              NULL,
128                              ctx,
129                              pool), pool));
130
131  return SVN_NO_ERROR;
132}
133