2002-12-12 23:55:49 +03:00
/*
* Copyright ( C ) 2001 Sistina Software
*
* LVM is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 2 , or ( at your option )
* any later version .
*
* LVM is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with LVM ; see the file COPYING . If not , write to
* the Free Software Foundation , 59 Temple Place - Suite 330 ,
* Boston , MA 02111 - 1307 , USA .
*
*/
# include "tools.h"
# include "report.h"
static int _vgs_single ( struct cmd_context * cmd , const char * vg_name ,
struct volume_group * vg , int consistent , void * handle )
{
if ( ! vg ) {
log_error ( " Volume group %s not found " , vg_name ) ;
return ECMD_FAILED ;
}
if ( ! report_object ( handle , vg , NULL , NULL , NULL ) )
return ECMD_FAILED ;
return 0 ;
}
static int _lvs_single ( struct cmd_context * cmd , struct logical_volume * lv ,
void * handle )
{
if ( ! report_object ( handle , lv - > vg , lv , NULL , NULL ) )
return ECMD_FAILED ;
return 0 ;
}
static int _segs_single ( struct cmd_context * cmd , struct lv_segment * seg ,
void * handle )
{
if ( ! report_object ( handle , seg - > lv - > vg , seg - > lv , NULL , seg ) )
return ECMD_FAILED ;
return 0 ;
}
static int _lvsegs_single ( struct cmd_context * cmd , struct logical_volume * lv ,
void * handle )
{
return process_each_segment_in_lv ( cmd , lv , handle , _segs_single ) ;
}
static int _pvs_single ( struct cmd_context * cmd , struct volume_group * vg ,
struct physical_volume * pv , void * handle )
{
int consistent = 0 ;
if ( ! lock_vol ( cmd , pv - > vg_name , LCK_VG_READ ) ) {
log_error ( " Can't lock %s: skipping " , pv - > vg_name ) ;
return 0 ;
}
2003-03-24 21:22:48 +03:00
if ( ! ( vg = vg_read ( cmd , pv - > vg_name , & consistent ) ) ) {
log_error ( " Can't read %s: skipping " , pv - > vg_name ) ;
unlock_vg ( cmd , pv - > vg_name ) ;
return 0 ;
}
2002-12-12 23:55:49 +03:00
if ( ! report_object ( handle , vg , NULL , pv , NULL ) )
return ECMD_FAILED ;
unlock_vg ( cmd , pv - > vg_name ) ;
return 0 ;
}
static int _report ( struct cmd_context * cmd , int argc , char * * argv ,
report_type_t report_type )
{
void * report_handle ;
2002-12-20 02:25:55 +03:00
const char * opts ;
char * str ;
const char * keys = NULL , * options = NULL , * separator ;
2002-12-12 23:55:49 +03:00
int aligned , buffered , headings ;
aligned = find_config_int ( cmd - > cf - > root , " report/aligned " , ' / ' ,
DEFAULT_REP_ALIGNED ) ;
buffered = find_config_int ( cmd - > cf - > root , " report/buffered " , ' / ' ,
DEFAULT_REP_BUFFERED ) ;
headings = find_config_int ( cmd - > cf - > root , " report/headings " , ' / ' ,
DEFAULT_REP_HEADINGS ) ;
separator = find_config_str ( cmd - > cf - > root , " report/separator " , ' / ' ,
DEFAULT_REP_SEPARATOR ) ;
switch ( report_type ) {
case LVS :
keys = find_config_str ( cmd - > cf - > root , " report/lvs_sort " , ' / ' ,
DEFAULT_LVS_SORT ) ;
if ( ! arg_count ( cmd , verbose_ARG ) )
options = find_config_str ( cmd - > cf - > root ,
" report/lvs_cols " , ' / ' ,
DEFAULT_LVS_COLS ) ;
else
options = find_config_str ( cmd - > cf - > root ,
" report/lvs_cols_verbose " ,
' / ' , DEFAULT_LVS_COLS_VERB ) ;
break ;
case VGS :
keys = find_config_str ( cmd - > cf - > root , " report/vgs_sort " , ' / ' ,
DEFAULT_VGS_SORT ) ;
if ( ! arg_count ( cmd , verbose_ARG ) )
options = find_config_str ( cmd - > cf - > root ,
" report/vgs_cols " , ' / ' ,
DEFAULT_VGS_COLS ) ;
else
options = find_config_str ( cmd - > cf - > root ,
" report/vgs_cols_verbose " ,
' / ' , DEFAULT_VGS_COLS_VERB ) ;
break ;
case PVS :
keys = find_config_str ( cmd - > cf - > root , " report/pvs_sort " , ' / ' ,
DEFAULT_PVS_SORT ) ;
if ( ! arg_count ( cmd , verbose_ARG ) )
options = find_config_str ( cmd - > cf - > root ,
" report/pvs_cols " , ' / ' ,
DEFAULT_PVS_COLS ) ;
else
options = find_config_str ( cmd - > cf - > root ,
" report/pvs_cols_verbose " ,
' / ' , DEFAULT_PVS_COLS_VERB ) ;
break ;
case SEGS :
keys = find_config_str ( cmd - > cf - > root , " report/segs_sort " , ' / ' ,
DEFAULT_SEGS_SORT ) ;
if ( ! arg_count ( cmd , verbose_ARG ) )
options = find_config_str ( cmd - > cf - > root ,
" report/segs_cols " , ' / ' ,
DEFAULT_SEGS_COLS ) ;
else
options = find_config_str ( cmd - > cf - > root ,
" report/segs_cols_verbose " ,
' / ' , DEFAULT_SEGS_COLS_VERB ) ;
break ;
}
/* If -o supplied use it, else use default for report_type */
if ( arg_count ( cmd , options_ARG ) ) {
opts = arg_str_value ( cmd , options_ARG , " " ) ;
if ( ! opts | | ! * opts ) {
log_error ( " Invalid options string: %s " , opts ) ;
return 0 ;
}
if ( * opts = = ' + ' ) {
2002-12-20 02:25:55 +03:00
str = pool_alloc ( cmd - > mem ,
strlen ( options ) + strlen ( opts ) + 1 ) ;
2002-12-12 23:55:49 +03:00
strcpy ( str , options ) ;
2002-12-20 02:25:55 +03:00
strcat ( str , " , " ) ;
strcat ( str , opts + 1 ) ;
2002-12-12 23:55:49 +03:00
options = str ;
} else
options = opts ;
}
/* -O overrides default sort settings */
if ( arg_count ( cmd , sort_ARG ) )
keys = arg_str_value ( cmd , sort_ARG , " " ) ;
if ( arg_count ( cmd , separator_ARG ) )
separator = arg_str_value ( cmd , separator_ARG , " " ) ;
if ( arg_count ( cmd , separator_ARG ) )
aligned = 0 ;
if ( arg_count ( cmd , aligned_ARG ) )
aligned = 1 ;
if ( arg_count ( cmd , unbuffered_ARG ) & & ! arg_count ( cmd , sort_ARG ) )
buffered = 0 ;
if ( arg_count ( cmd , noheadings_ARG ) )
headings = 0 ;
if ( ! ( report_handle = report_init ( cmd , options , keys , & report_type ,
separator , aligned , buffered ,
headings ) ) )
return 0 ;
switch ( report_type ) {
case LVS :
process_each_lv ( cmd , argc , argv , LCK_VG_READ , report_handle ,
& _lvs_single ) ;
break ;
case VGS :
process_each_vg ( cmd , argc , argv , LCK_VG_READ , 0 , report_handle ,
& _vgs_single ) ;
break ;
case PVS :
process_each_pv ( cmd , argc , argv , NULL , report_handle ,
& _pvs_single ) ;
break ;
case SEGS :
process_each_lv ( cmd , argc , argv , LCK_VG_READ , report_handle ,
& _lvsegs_single ) ;
break ;
}
report_output ( report_handle ) ;
report_free ( report_handle ) ;
return ECMD_PROCESSED ;
}
int lvs ( struct cmd_context * cmd , int argc , char * * argv )
{
report_type_t type ;
if ( arg_count ( cmd , segments_ARG ) )
type = SEGS ;
else
type = LVS ;
return _report ( cmd , argc , argv , type ) ;
}
int vgs ( struct cmd_context * cmd , int argc , char * * argv )
{
return _report ( cmd , argc , argv , VGS ) ;
}
int pvs ( struct cmd_context * cmd , int argc , char * * argv )
{
return _report ( cmd , argc , argv , PVS ) ;
}