1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-27 18:55:19 +03:00
lvm2/tools/tools.h

174 lines
4.7 KiB
C
Raw Normal View History

2001-09-25 16:49:28 +04:00
/*
2004-03-30 23:35:44 +04:00
* Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
* Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
2001-09-25 16:49:28 +04:00
*
2004-03-30 23:35:44 +04:00
* This file is part of LVM2.
*
* This copyrighted material is made available to anyone wishing to use,
* modify, copy, or redistribute it subject to the terms and conditions
* of the GNU Lesser General Public License v.2.1.
2004-03-30 23:35:44 +04:00
*
* You should have received a copy of the GNU Lesser General Public License
2004-03-30 23:35:44 +04:00
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2001-09-25 16:49:28 +04:00
*/
#ifndef _LVM_TOOLS_H
#define _LVM_TOOLS_H
2001-09-25 16:49:28 +04:00
2002-11-18 17:04:08 +03:00
#define _GNU_SOURCE
2004-04-16 22:43:29 +04:00
#define _FILE_OFFSET_BITS 64
2002-11-18 17:04:08 +03:00
#include <configure.h>
#include <assert.h>
#include <libdevmapper.h>
#include "lvm-types.h"
2008-10-30 20:27:28 +03:00
#include "lvm-logging.h"
2002-11-18 17:04:08 +03:00
#include "activate.h"
#include "archiver.h"
#include "lvmcache.h"
2001-10-01 19:14:39 +04:00
#include "config.h"
#include "defaults.h"
2001-10-01 19:14:39 +04:00
#include "dev-cache.h"
#include "device.h"
#include "display.h"
2001-09-25 16:49:28 +04:00
#include "errors.h"
2001-10-01 23:36:06 +04:00
#include "filter.h"
2001-10-23 15:50:49 +04:00
#include "filter-composite.h"
2002-11-18 17:04:08 +03:00
#include "filter-persistent.h"
2001-10-23 15:50:49 +04:00
#include "filter-regex.h"
#include "metadata-exported.h"
#include "locking.h"
#include "lvm-exec.h"
2002-11-18 17:04:08 +03:00
#include "lvm-file.h"
#include "lvm-string.h"
2004-09-16 22:40:56 +04:00
#include "segtype.h"
2004-03-08 20:19:15 +03:00
#include "str_list.h"
#include "toolcontext.h"
2002-11-18 17:04:08 +03:00
#include "toollib.h"
2002-01-07 14:12:11 +03:00
#include <stdlib.h>
#include <unistd.h>
2002-11-18 17:04:08 +03:00
#include <ctype.h>
#include <limits.h>
2002-01-07 14:12:11 +03:00
#include <stdarg.h>
#include <sys/types.h>
2001-09-25 16:49:28 +04:00
#define CMD_LEN 256
#define MAX_ARGS 64
/* command functions */
typedef int (*command_fn) (struct cmd_context * cmd, int argc, char **argv);
2001-09-25 16:49:28 +04:00
#define xx(a, b...) int a(struct cmd_context *cmd, int argc, char **argv);
2001-09-25 16:49:28 +04:00
#include "commands.h"
#undef xx
/* define the enums for the command line switches */
enum {
#define arg(a, b, c, d, e) a ,
2001-09-25 16:49:28 +04:00
#include "args.h"
#undef arg
2001-09-25 16:49:28 +04:00
};
typedef enum {
SIGN_NONE = 0,
SIGN_PLUS = 1,
SIGN_MINUS = 2
} sign_t;
typedef enum {
PERCENT_NONE = 0,
PERCENT_VG,
PERCENT_FREE,
PERCENT_LV,
PERCENT_PVS
} percent_t;
2004-06-16 21:13:41 +04:00
enum {
CHANGE_AY = 0,
CHANGE_AN = 1,
CHANGE_AE = 2,
CHANGE_ALY = 3,
CHANGE_ALN = 4
};
#define ARG_REPEATABLE 0x00000001
2001-09-25 16:49:28 +04:00
/* a global table of possible arguments */
struct arg {
const char short_arg;
2005-04-06 17:47:41 +04:00
char _padding[7];
const char *long_arg;
2005-04-06 17:47:41 +04:00
2002-11-18 17:04:08 +03:00
int (*fn) (struct cmd_context * cmd, struct arg * a);
uint32_t flags;
unsigned count;
2001-09-25 16:49:28 +04:00
char *value;
int32_t i_value;
uint32_t ui_value;
int64_t i64_value;
uint64_t ui64_value;
sign_t sign;
percent_t percent;
void *ptr;
2001-09-25 16:49:28 +04:00
};
#define CACHE_VGMETADATA 0x00000001
/* a register of the lvm commands */
struct command {
const char *name;
const char *desc;
const char *usage;
command_fn fn;
unsigned flags;
int num_args;
int *valid_args;
};
2001-09-25 16:49:28 +04:00
void usage(const char *name);
/* the argument verify/normalise functions */
2002-11-18 17:04:08 +03:00
int yes_no_arg(struct cmd_context *cmd, struct arg *a);
2004-05-24 17:44:10 +04:00
int yes_no_excl_arg(struct cmd_context *cmd, struct arg *a);
2002-12-03 16:24:38 +03:00
int size_kb_arg(struct cmd_context *cmd, struct arg *a);
int size_mb_arg(struct cmd_context *cmd, struct arg *a);
2002-11-18 17:04:08 +03:00
int int_arg(struct cmd_context *cmd, struct arg *a);
int int_arg_with_sign(struct cmd_context *cmd, struct arg *a);
int int_arg_with_sign_and_percent(struct cmd_context *cmd, struct arg *a);
int major_arg(struct cmd_context *cmd, struct arg *a);
2002-11-18 17:04:08 +03:00
int minor_arg(struct cmd_context *cmd, struct arg *a);
int string_arg(struct cmd_context *cmd, struct arg *a);
2004-03-08 20:19:15 +03:00
int tag_arg(struct cmd_context *cmd, struct arg *a);
2002-11-18 17:04:08 +03:00
int permission_arg(struct cmd_context *cmd, struct arg *a);
int metadatatype_arg(struct cmd_context *cmd, struct arg *a);
int units_arg(struct cmd_context *cmd, struct arg *a);
int segtype_arg(struct cmd_context *cmd, struct arg *a);
int alloc_arg(struct cmd_context *cmd, struct arg *a);
int readahead_arg(struct cmd_context *cmd, struct arg *a);
2001-09-25 16:49:28 +04:00
/* we use the enums to access the switches */
unsigned int arg_count(const struct cmd_context *cmd, int a);
const char *arg_value(struct cmd_context *cmd, int a);
const char *arg_str_value(struct cmd_context *cmd, int a, const char *def);
int32_t arg_int_value(struct cmd_context *cmd, int a, const int32_t def);
uint32_t arg_uint_value(struct cmd_context *cmd, int a, const uint32_t def);
int64_t arg_int64_value(struct cmd_context *cmd, int a, const int64_t def);
uint64_t arg_uint64_value(struct cmd_context *cmd, int a, const uint64_t def);
const void *arg_ptr_value(struct cmd_context *cmd, int a, const void *def);
sign_t arg_sign_value(struct cmd_context *cmd, int a, const sign_t def);
percent_t arg_percent_value(struct cmd_context *cmd, int a, const percent_t def);
int arg_count_increment(struct cmd_context *cmd, int a);
const char *command_name(struct cmd_context *cmd);
2001-10-08 22:44:22 +04:00
int pvmove_poll(struct cmd_context *cmd, const char *pv, unsigned background);
int lvconvert_poll(struct cmd_context *cmd, const char *lv_name, unsigned background);
2001-10-06 01:39:30 +04:00
#endif