]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/subversion/subversion/svn/resolved-cmd.c
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / subversion / subversion / svn / resolved-cmd.c
1 /*
2  * resolved-cmd.c -- Subversion resolved subcommand
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 #include "svn_path.h"
30 #include "svn_client.h"
31 #include "svn_error.h"
32 #include "svn_pools.h"
33 #include "cl.h"
34
35 #include "svn_private_config.h"
36
37
38 \f
39 /*** Code. ***/
40
41 /* This implements the `svn_opt_subcommand_t' interface. */
42 svn_error_t *
43 svn_cl__resolved(apr_getopt_t *os,
44                  void *baton,
45                  apr_pool_t *scratch_pool)
46 {
47   svn_cl__opt_state_t *opt_state = ((svn_cl__cmd_baton_t *) baton)->opt_state;
48   svn_client_ctx_t *ctx = ((svn_cl__cmd_baton_t *) baton)->ctx;
49   svn_error_t *err;
50   apr_array_header_t *targets;
51   apr_pool_t *iterpool;
52   int i;
53
54   SVN_ERR(svn_cl__args_to_target_array_print_reserved(&targets, os,
55                                                       opt_state->targets,
56                                                       ctx, FALSE,
57                                                       scratch_pool));
58   if (! targets->nelts)
59     return svn_error_create(SVN_ERR_CL_INSUFFICIENT_ARGS, 0, NULL);
60
61   if (opt_state->depth == svn_depth_unknown)
62     opt_state->depth = svn_depth_empty;
63
64   SVN_ERR(svn_cl__eat_peg_revisions(&targets, targets, scratch_pool));
65
66   SVN_ERR(svn_cl__check_targets_are_local_paths(targets));
67
68   iterpool = svn_pool_create(scratch_pool);
69   for (i = 0; i < targets->nelts; i++)
70     {
71       const char *target = APR_ARRAY_IDX(targets, i, const char *);
72       svn_pool_clear(iterpool);
73       SVN_ERR(svn_cl__check_cancel(ctx->cancel_baton));
74       err = svn_client_resolve(target,
75                                opt_state->depth,
76                                svn_wc_conflict_choose_merged,
77                                ctx,
78                                iterpool);
79       if (err)
80         {
81           svn_handle_warning2(stderr, err, "svn: ");
82           svn_error_clear(err);
83         }
84     }
85   svn_pool_destroy(iterpool);
86
87   return SVN_NO_ERROR;
88 }