2001-11-19 18:20:50 +03:00
/*
2008-01-30 17:00:02 +03:00
* Copyright ( C ) 2001 - 2004 Sistina Software , Inc . All rights reserved .
2007-08-21 00:55:30 +04:00
* Copyright ( C ) 2004 - 2007 Red Hat , Inc . All rights reserved .
2001-11-19 18:20:50 +03:00
*
2004-03-30 23:35:44 +04:00
* This file is part of LVM2 .
2001-11-19 18:20:50 +03:00
*
2004-03-30 23:35:44 +04:00
* This copyrighted material is made available to anyone wishing to use ,
* modify , copy , or redistribute it subject to the terms and conditions
2007-08-21 00:55:30 +04:00
* of the GNU Lesser General Public License v .2 .1 .
2001-11-19 18:20:50 +03:00
*
2007-08-21 00:55:30 +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-11-19 18:20:50 +03:00
*/
# include "tools.h"
2002-11-18 17:04:08 +03:00
static int vgdisplay_single ( struct cmd_context * cmd , const char * vg_name ,
2009-07-01 21:00:50 +04:00
struct volume_group * vg ,
2014-11-27 17:02:13 +03:00
struct processing_handle * handle __attribute__ ( ( unused ) ) )
2002-11-18 17:04:08 +03:00
{
2013-12-03 17:41:25 +04:00
if ( arg_count ( cmd , activevolumegroups_ARG ) & & ! lvs_in_vg_activated ( vg ) )
return ECMD_PROCESSED ;
2007-06-19 08:36:12 +04:00
vg_check_status ( vg , EXPORTED_VG ) ;
2002-11-18 17:04:08 +03:00
if ( arg_count ( cmd , colon_ARG ) ) {
vgdisplay_colons ( vg ) ;
2003-10-22 02:06:07 +04:00
return ECMD_PROCESSED ;
2002-11-18 17:04:08 +03:00
}
if ( arg_count ( cmd , short_ARG ) ) {
vgdisplay_short ( vg ) ;
2003-10-22 02:06:07 +04:00
return ECMD_PROCESSED ;
2002-11-18 17:04:08 +03:00
}
vgdisplay_full ( vg ) ; /* was vg_show */
if ( arg_count ( cmd , verbose_ARG ) ) {
vgdisplay_extents ( vg ) ;
2014-10-07 19:45:45 +04:00
process_each_lv_in_vg ( cmd , vg , NULL , NULL , 0 , NULL ,
2007-08-07 13:06:05 +04:00
( process_single_lv_fn_t ) lvdisplay_full ) ;
2002-11-18 17:04:08 +03:00
log_print ( " --- Physical volumes --- " ) ;
2014-10-07 03:34:04 +04:00
process_each_pv_in_vg ( cmd , vg , NULL ,
2007-08-07 13:06:05 +04:00
( process_single_pv_fn_t ) pvdisplay_short ) ;
2002-11-18 17:04:08 +03:00
}
2005-05-17 17:44:02 +04:00
check_current_backup ( vg ) ;
2003-10-22 02:06:07 +04:00
return ECMD_PROCESSED ;
2002-11-18 17:04:08 +03:00
}
2001-11-19 18:20:50 +03:00
2002-02-11 23:50:53 +03:00
int vgdisplay ( struct cmd_context * cmd , int argc , char * * argv )
2001-11-19 18:20:50 +03:00
{
2002-12-12 23:55:49 +03:00
if ( arg_count ( cmd , columns_ARG ) ) {
if ( arg_count ( cmd , colon_ARG ) | |
arg_count ( cmd , activevolumegroups_ARG ) | |
arg_count ( cmd , short_ARG ) ) {
log_error ( " Incompatible options selected " ) ;
return EINVALID_CMD_LINE ;
}
return vgs ( cmd , argc , argv ) ;
} else if ( arg_count ( cmd , aligned_ARG ) | |
2014-12-11 17:16:04 +03:00
arg_count ( cmd , binary_ARG ) | |
2002-12-12 23:55:49 +03:00
arg_count ( cmd , noheadings_ARG ) | |
arg_count ( cmd , options_ARG ) | |
arg_count ( cmd , separator_ARG ) | |
arg_count ( cmd , sort_ARG ) | | arg_count ( cmd , unbuffered_ARG ) ) {
log_error ( " Incompatible options selected " ) ;
return EINVALID_CMD_LINE ;
}
2002-02-12 00:00:35 +03:00
if ( arg_count ( cmd , colon_ARG ) & & arg_count ( cmd , short_ARG ) ) {
2001-11-19 18:20:50 +03:00
log_error ( " Option -c is not allowed with option -s " ) ;
return EINVALID_CMD_LINE ;
}
2002-02-12 00:00:35 +03:00
if ( argc & & arg_count ( cmd , activevolumegroups_ARG ) ) {
2001-11-19 18:20:50 +03:00
log_error ( " Option -A is not allowed with volume group names " ) ;
return EINVALID_CMD_LINE ;
}
2008-01-30 17:00:02 +03:00
/********* FIXME: Do without this - or else 2(+) passes!
Figure out longest volume group name
2001-11-19 18:20:50 +03:00
for ( c = opt ; opt < argc ; opt + + ) {
len = strlen ( argv [ opt ] ) ;
if ( len > max_len )
max_len = len ;
}
* * * * * * * * * */
2009-07-01 21:00:50 +04:00
return process_each_vg ( cmd , argc , argv , 0 , NULL ,
2008-11-07 22:02:47 +03:00
vgdisplay_single ) ;
2001-11-19 18:20:50 +03:00
2008-01-30 17:00:02 +03:00
/******** FIXME Need to count number processed
Add this to process_each_vg if arg_count ( cmd , activevolumegroups_ARG ) ?
2001-11-19 18:20:50 +03:00
if ( opt = = argc ) {
log_print ( " no " ) ;
2002-02-11 23:50:53 +03:00
if ( arg_count ( cmd , activevolumegroups_ARG ) )
2001-11-19 18:20:50 +03:00
printf ( " active " ) ;
printf ( " volume groups found \n \n " ) ;
return LVM_E_NO_VG ;
}
* * * * * * * * * * * */
}