summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/utilities/util_rename.c
blob: 26b9eb8eccc62cbeec1b02d695892359eec53d84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*-
 * Copyright (c) 2014-2019 MongoDB, Inc.
 * Copyright (c) 2008-2014 WiredTiger, Inc.
 *	All rights reserved.
 *
 * See the file LICENSE for redistribution information.
 */

#include "util.h"

static int usage(void);

int
util_rename(WT_SESSION *session, int argc, char *argv[])
{
    WT_DECL_RET;
    int ch;
    char *uri, *newuri;

    uri = NULL;
    while ((ch = __wt_getopt(progname, argc, argv, "")) != EOF)
        switch (ch) {
        case '?':
        default:
            return (usage());
        }
    argc -= __wt_optind;
    argv += __wt_optind;

    /* The remaining arguments are the object uri and new name. */
    if (argc != 2)
        return (usage());
    if ((uri = util_uri(session, *argv, "table")) == NULL)
        return (1);
    newuri = argv[1];

    if ((ret = session->rename(session, uri, newuri, NULL)) != 0)
        (void)util_err(session, ret, "session.rename: %s, %s", uri, newuri);

    free(uri);
    return (ret);
}

static int
usage(void)
{
    (void)fprintf(stderr,
      "usage: %s %s "
      "rename uri newuri\n",
      progname, usage_prefix);
    return (1);
}