1/*
2 * upgrade-cmd.c -- Upgrade a working copy.
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_pools.h"
31#include "svn_client.h"
32#include "svn_error_codes.h"
33#include "svn_error.h"
34#include "svn_path.h"
35#include "cl.h"
36#include "svn_private_config.h"
37
38
39/*** Code. ***/
40
41
42/* This implements the `svn_opt_subcommand_t' interface. */
43svn_error_t *
44svn_cl__upgrade(apr_getopt_t *os,
45                void *baton,
46                apr_pool_t *scratch_pool)
47{
48  svn_cl__opt_state_t *opt_state = ((svn_cl__cmd_baton_t *) baton)->opt_state;
49  svn_client_ctx_t *ctx = ((svn_cl__cmd_baton_t *) baton)->ctx;
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
59  /* Add "." if user passed 0 arguments */
60  svn_opt_push_implicit_dot_target(targets, scratch_pool);
61
62  SVN_ERR(svn_cl__eat_peg_revisions(&targets, targets, scratch_pool));
63
64  SVN_ERR(svn_cl__check_targets_are_local_paths(targets));
65
66  iterpool = svn_pool_create(scratch_pool);
67  for (i = 0; i < targets->nelts; i++)
68    {
69      const char *target = APR_ARRAY_IDX(targets, i, const char *);
70
71      svn_pool_clear(iterpool);
72      SVN_ERR(svn_cl__check_cancel(ctx->cancel_baton));
73      SVN_ERR(svn_client_upgrade(target, ctx, scratch_pool));
74    }
75  svn_pool_destroy(iterpool);
76
77  return SVN_NO_ERROR;
78}
79