]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - contrib/subversion/subversion/svn/add-cmd.c
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / contrib / subversion / subversion / svn / add-cmd.c
1 /*
2  * add-cmd.c -- Subversion add/unadd commands
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 \f
28 /*** Includes. ***/
29 #define APR_WANT_STDIO
30 #include <apr_want.h>
31
32 #include "svn_path.h"
33 #include "svn_client.h"
34 #include "svn_error.h"
35 #include "svn_pools.h"
36 #include "cl.h"
37
38 #include "svn_private_config.h"
39
40 \f
41 /*** Code. ***/
42
43 /* This implements the `svn_opt_subcommand_t' interface. */
44 svn_error_t *
45 svn_cl__add(apr_getopt_t *os,
46             void *baton,
47             apr_pool_t *pool)
48 {
49   svn_cl__opt_state_t *opt_state = ((svn_cl__cmd_baton_t *) baton)->opt_state;
50   svn_client_ctx_t *ctx = ((svn_cl__cmd_baton_t *) baton)->ctx;
51   apr_array_header_t *targets;
52   int i;
53   apr_pool_t *iterpool;
54   apr_array_header_t *errors = apr_array_make(pool, 0, sizeof(apr_status_t));
55
56   SVN_ERR(svn_cl__args_to_target_array_print_reserved(&targets, os,
57                                                       opt_state->targets,
58                                                       ctx, FALSE, pool));
59
60   if (! targets->nelts)
61     return svn_error_create(SVN_ERR_CL_INSUFFICIENT_ARGS, 0, NULL);
62
63   if (opt_state->depth == svn_depth_unknown)
64     opt_state->depth = svn_depth_infinity;
65
66   SVN_ERR(svn_cl__eat_peg_revisions(&targets, targets, pool));
67
68   SVN_ERR(svn_cl__check_targets_are_local_paths(targets));
69
70   iterpool = svn_pool_create(pool);
71   for (i = 0; i < targets->nelts; i++)
72     {
73       const char *target = APR_ARRAY_IDX(targets, i, const char *);
74
75       svn_pool_clear(iterpool);
76       SVN_ERR(svn_cl__check_cancel(ctx->cancel_baton));
77       SVN_ERR(svn_cl__try
78               (svn_client_add5(target,
79                                opt_state->depth,
80                                opt_state->force, opt_state->no_ignore,
81                                opt_state->no_autoprops, opt_state->parents,
82                                ctx, iterpool),
83                errors, opt_state->quiet,
84                SVN_ERR_ENTRY_EXISTS,
85                SVN_ERR_WC_PATH_NOT_FOUND,
86                SVN_NO_ERROR));
87     }
88
89   svn_pool_destroy(iterpool);
90
91   if (errors->nelts > 0)
92     {
93       svn_error_t *err;
94
95       err = svn_error_create(SVN_ERR_ILLEGAL_TARGET, NULL, NULL);
96       for (i = 0; i < errors->nelts; i++)
97         {
98           apr_status_t status = APR_ARRAY_IDX(errors, i, apr_status_t);
99           if (status == SVN_ERR_WC_PATH_NOT_FOUND)
100             err = svn_error_quick_wrap(err,
101                                        _("Could not add all targets because "
102                                          "some targets don't exist"));
103           else if (status == SVN_ERR_ENTRY_EXISTS)
104             err = svn_error_quick_wrap(err,
105                                        _("Could not add all targets because "
106                                          "some targets are already versioned"));
107         }
108
109       return svn_error_trace(err);
110     }
111
112   return SVN_NO_ERROR;
113 }