]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/subversion/subversion/svn/cleanup-cmd.c
Update svn-1.9.7 to 1.10.0.
[FreeBSD/FreeBSD.git] / contrib / subversion / subversion / svn / cleanup-cmd.c
1 /*
2  * cleanup-cmd.c -- Subversion cleanup command
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
30 #include "svn_client.h"
31 #include "svn_path.h"
32 #include "svn_pools.h"
33 #include "svn_error.h"
34 #include "cl.h"
35
36 #include "svn_private_config.h"
37
38 \f
39 /*** Code. ***/
40
41 /* This implements the `svn_opt_subcommand_t' interface. */
42 svn_error_t *
43 svn_cl__cleanup(apr_getopt_t *os,
44                 void *baton,
45                 apr_pool_t *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   apr_array_header_t *targets;
50   apr_pool_t *iterpool;
51   int i;
52
53   SVN_ERR(svn_cl__args_to_target_array_print_reserved(&targets, os,
54                                                       opt_state->targets,
55                                                       ctx, FALSE, pool));
56
57   /* Add "." if user passed 0 arguments */
58   svn_opt_push_implicit_dot_target(targets, pool);
59
60   SVN_ERR(svn_cl__check_targets_are_local_paths(targets));
61
62   SVN_ERR(svn_cl__eat_peg_revisions(&targets, targets, pool));
63
64   iterpool = svn_pool_create(pool);
65   for (i = 0; i < targets->nelts; i++)
66     {
67       const char *target = APR_ARRAY_IDX(targets, i, const char *);
68       const char *target_abspath;
69
70       svn_pool_clear(iterpool);
71       SVN_ERR(svn_cl__check_cancel(ctx->cancel_baton));
72
73       SVN_ERR(svn_dirent_get_absolute(&target_abspath, target, iterpool));
74
75       if (opt_state->remove_unversioned || opt_state->remove_ignored ||
76           opt_state->vacuum_pristines)
77         {
78           svn_error_t *err = svn_client_vacuum(target_abspath,
79                                                opt_state->remove_unversioned,
80                                                opt_state->remove_ignored,
81                                                TRUE /* fix_timestamps */,
82                                                opt_state->vacuum_pristines,
83                                                opt_state->include_externals,
84                                                ctx, iterpool);
85
86           if (err && err->apr_err == SVN_ERR_WC_LOCKED)
87             err = svn_error_create(SVN_ERR_WC_LOCKED, err,
88                                      _("Working copy locked; if no other "
89                                        "Subversion client is currently "
90                                        "using the working copy, try running "
91                                        "'svn cleanup' without the "
92                                        "--remove-unversioned and "
93                                        "--remove-ignored options first."));
94           else if (err && err->apr_err == SVN_ERR_WC_NOT_WORKING_COPY)
95             err = svn_error_create(SVN_ERR_CL_ARG_PARSING_ERROR, err,
96                                      _("Cannot remove unversioned or ignored "
97                                        "items from something that is not a "
98                                        "working copy"));
99
100           SVN_ERR(err);
101         }
102       else
103         {
104           svn_error_t *err = svn_client_cleanup2(target_abspath,
105                                                  TRUE /* break_locks */,
106                                                  TRUE /* fix_timestamps */,
107                                                  TRUE /* clear_dav_cache */,
108                                                  TRUE /* vacuum_pristines */,
109                                                  opt_state->include_externals,
110                                                  ctx, iterpool);
111
112           if (err && err->apr_err == SVN_ERR_WC_LOCKED)
113             {
114               const char *wcroot_abspath;
115               svn_error_t *err2;
116
117               err2 = svn_client_get_wc_root(&wcroot_abspath, target_abspath,
118                                             ctx, iterpool, iterpool);
119               if (err2)
120                 err =  svn_error_compose_create(err, err2);
121               else
122                 err = svn_error_createf(SVN_ERR_WC_LOCKED, err,
123                                         _("Working copy locked; try running "
124                                           "'svn cleanup' on the root of the "
125                                           "working copy ('%s') instead."),
126                                           svn_dirent_local_style(wcroot_abspath,
127                                                                  iterpool));
128             }
129           SVN_ERR(err);
130         }
131     }
132
133   svn_pool_destroy(iterpool);
134   return SVN_NO_ERROR;
135 }