2001-10-29 21:23:35 +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"
2002-02-11 23:50:53 +03:00
static int lvscan_single ( struct cmd_context * cmd , struct logical_volume * lv ) ;
2001-10-29 21:23:35 +03:00
2002-02-11 23:50:53 +03:00
int lvscan ( struct cmd_context * cmd , int argc , char * * argv )
2001-10-29 21:23:35 +03:00
{
if ( argc ) {
log_error ( " No additional command line arguments allowed " ) ;
return EINVALID_CMD_LINE ;
}
2002-04-15 20:27:39 +04:00
return process_each_lv ( cmd , argc , argv , LCK_VG_READ , & lvscan_single ) ;
2001-10-29 21:23:35 +03:00
/*********** FIXME Count! Add private struct to process_each*
2002-03-11 22:02:28 +03:00
* if ( ! lv_total )
* log_print ( " no logical volumes found " ) ;
* else {
* log_print
* ( " %d logical volumes with %s total in %d volume group%s " ,
* lv_total , ( dummy =
* display_size ( lv_capacity_total / 2 , SIZE_SHORT ) ) ,
* vg_total , vg_total = = 1 ? " " : " s " ) ;
* dbg_free ( dummy ) ;
* dummy = NULL ;
* if ( lv_active > 0 )
* printf ( " %d active " , lv_active ) ;
* if ( lv_active > 0 & & lv_total - lv_active > 0 )
* printf ( " / " ) ;
* if ( lv_total - lv_active > 0 )
* printf ( " %d inactive " , lv_total - lv_active ) ;
* printf ( " logical volumes \n " ) ;
* }
2001-10-29 21:23:35 +03:00
* * * * * * * * * * * * */
}
2002-02-11 23:50:53 +03:00
static int lvscan_single ( struct cmd_context * cmd , struct logical_volume * lv )
2001-10-29 21:23:35 +03:00
{
2002-03-11 22:02:28 +03:00
struct dm_info info ;
2001-10-29 21:23:35 +03:00
int lv_total = 0 ;
ulong lv_capacity_total = 0 ;
char * dummy ;
const char * active_str , * snapshot_str ;
2002-01-11 02:21:07 +03:00
/* FIXME Add -D arg to skip this! */
2002-03-11 22:02:28 +03:00
if ( lv_info ( lv , & info ) & & info . exists )
2001-11-14 21:38:07 +03:00
active_str = " ACTIVE " ;
2002-03-11 22:02:28 +03:00
else
2001-11-14 21:38:07 +03:00
active_str = " inactive " ;
2001-10-29 21:23:35 +03:00
2002-02-20 22:04:55 +03:00
if ( lv_is_origin ( lv ) )
2001-11-14 21:38:07 +03:00
snapshot_str = " Original " ;
2002-02-20 22:04:55 +03:00
else if ( lv_is_cow ( lv ) )
2001-11-14 21:38:07 +03:00
snapshot_str = " Snapshot " ;
else
snapshot_str = " " ;
2001-10-29 21:23:35 +03:00
/********** FIXME Snapshot
if ( lv - > status & SNAPSHOT )
dummy =
display_size ( lv - > lv_remap_end *
lv - > lv_chunk_size / 2 ,
SIZE_SHORT ) ;
else
* * * * * * * * * * */
2001-11-14 21:38:07 +03:00
dummy = display_size ( lv - > size / 2 , SIZE_SHORT ) ;
2001-10-29 21:23:35 +03:00
2001-11-14 21:38:07 +03:00
log_print ( " %s%s '%s%s/%s' [%s]%s%s " , active_str , snapshot_str ,
2002-02-11 23:50:53 +03:00
cmd - > dev_dir , lv - > vg - > name , lv - > name , dummy ,
2001-11-14 21:38:07 +03:00
( lv - > status & ALLOC_STRICT ) ? " strict " : " " ,
( lv - > status & ALLOC_CONTIGUOUS ) ? " contiguous " : " " ) ;
2001-10-29 21:23:35 +03:00
2001-11-14 21:38:07 +03:00
dbg_free ( dummy ) ;
2001-10-29 21:23:35 +03:00
2001-11-14 21:38:07 +03:00
/* FIXME sprintf? */
2002-02-12 00:00:35 +03:00
2001-11-28 16:45:50 +03:00
/*********** FIXME Handle segments?
2001-11-27 16:42:37 +03:00
if ( lv - > segments [ 0 ] - > stripes > 1 & & ! ( lv - > status & SNAPSHOT ) )
log_print ( " striped[%u] " , lv - > segments [ 0 ] - > stripes ) ;
2001-11-28 16:45:50 +03:00
* * * * * * * * * * * * * * * */
2001-10-29 21:23:35 +03:00
/******** FIXME Device number display & Snapshot
2002-02-11 23:50:53 +03:00
if ( arg_count ( cmd , blockdevice_ARG ) )
2001-10-29 21:23:35 +03:00
printf ( " %d:%d " ,
MAJOR ( lv - > lv_dev ) ,
MINOR ( lv - > lv_dev ) ) ;
else
if ( lv - > status & SNAPSHOT )
printf ( " of %s " , lv - > lv_snapshot_org - > name ) ;
* * * * * * * * * * * * * * * * */
2001-11-14 21:38:07 +03:00
lv_total + + ;
2001-10-29 21:23:35 +03:00
/******** FIXME Snapshot
if ( lv - > status & SNAPSHOT )
lv_capacity_total + =
lv - > lv_remap_end * lv - > lv_chunk_size
else
* * * * * * * */
2001-11-14 21:38:07 +03:00
lv_capacity_total + = lv - > size ;
2001-10-29 21:23:35 +03:00
return 0 ;
}