1251881Speter/*
2251881Speter * unlock-cmd.c -- Unlock a working copy path.
3251881Speter *
4251881Speter * ====================================================================
5251881Speter *    Licensed to the Apache Software Foundation (ASF) under one
6251881Speter *    or more contributor license agreements.  See the NOTICE file
7251881Speter *    distributed with this work for additional information
8251881Speter *    regarding copyright ownership.  The ASF licenses this file
9251881Speter *    to you under the Apache License, Version 2.0 (the
10251881Speter *    "License"); you may not use this file except in compliance
11251881Speter *    with the License.  You may obtain a copy of the License at
12251881Speter *
13251881Speter *      http://www.apache.org/licenses/LICENSE-2.0
14251881Speter *
15251881Speter *    Unless required by applicable law or agreed to in writing,
16251881Speter *    software distributed under the License is distributed on an
17251881Speter *    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
18251881Speter *    KIND, either express or implied.  See the License for the
19251881Speter *    specific language governing permissions and limitations
20251881Speter *    under the License.
21251881Speter * ====================================================================
22251881Speter */
23251881Speter
24251881Speter/* ==================================================================== */
25251881Speter
26251881Speter
27251881Speter
28251881Speter/*** Includes. ***/
29251881Speter
30251881Speter#include "svn_path.h"
31251881Speter#include "svn_pools.h"
32251881Speter#include "svn_client.h"
33251881Speter#include "svn_error_codes.h"
34251881Speter#include "svn_error.h"
35251881Speter#include "svn_cmdline.h"
36251881Speter#include "cl.h"
37251881Speter#include "svn_private_config.h"
38251881Speter
39251881Speter
40251881Speter/*** Code. ***/
41251881Speter
42251881Speter
43251881Speter/* This implements the `svn_opt_subcommand_t' interface. */
44251881Spetersvn_error_t *
45251881Spetersvn_cl__unlock(apr_getopt_t *os,
46251881Speter               void *baton,
47251881Speter               apr_pool_t *scratch_pool)
48251881Speter{
49251881Speter  svn_cl__opt_state_t *opt_state = ((svn_cl__cmd_baton_t *) baton)->opt_state;
50251881Speter  svn_client_ctx_t *ctx = ((svn_cl__cmd_baton_t *) baton)->ctx;
51251881Speter  apr_array_header_t *targets;
52251881Speter
53251881Speter  SVN_ERR(svn_cl__args_to_target_array_print_reserved(&targets, os,
54251881Speter                                                      opt_state->targets,
55251881Speter                                                      ctx, FALSE,
56251881Speter                                                      scratch_pool));
57251881Speter
58251881Speter  /* We don't support unlock on directories, so "." is not relevant. */
59251881Speter  if (! targets->nelts)
60251881Speter    return svn_error_create(SVN_ERR_CL_INSUFFICIENT_ARGS, 0, NULL);
61251881Speter
62251881Speter  SVN_ERR(svn_cl__eat_peg_revisions(&targets, targets, scratch_pool));
63251881Speter
64251881Speter  SVN_ERR(svn_cl__assert_homogeneous_target_type(targets));
65251881Speter
66251881Speter  return svn_error_trace(
67251881Speter    svn_client_unlock(targets, opt_state->force, ctx, scratch_pool));
68251881Speter}
69