2002-12-12 23:55:49 +03:00
/*
2004-03-30 23:35:44 +04:00
* Copyright ( C ) 2002 - 2004 Sistina Software , Inc . All rights reserved .
2009-02-09 12:45:49 +03:00
* Copyright ( C ) 2004 - 2009 Red Hat , Inc . All rights reserved .
2002-12-12 23:55:49 +03:00
*
2004-03-30 23:35:44 +04:00
* This file is part of LVM2 .
2002-12-12 23:55:49 +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 .
2002-12-12 23:55:49 +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
2002-12-12 23:55:49 +03:00
*/
# ifndef _LVM_REPORT_H
# define _LVM_REPORT_H
2007-07-18 19:38:58 +04:00
# include "metadata-exported.h"
2013-07-29 21:07:11 +04:00
# include "label.h"
2014-07-02 11:45:53 +04:00
# include "activate.h"
2002-12-12 23:55:49 +03:00
2009-02-09 12:45:49 +03:00
typedef enum {
2013-09-18 04:09:15 +04:00
LVS = 1 ,
2014-07-02 11:45:53 +04:00
LVSINFO = 2 ,
2014-10-21 14:01:57 +04:00
LVSSTATUS = 4 ,
2015-01-20 18:02:48 +03:00
LVSINFOSTATUS = 8 ,
PVS = 16 ,
VGS = 32 ,
SEGS = 64 ,
SEGSSTATUS = 128 ,
PVSEGS = 256 ,
LABEL = 512 ,
DEVTYPES = 1024
2009-02-09 12:45:49 +03:00
} report_type_t ;
2002-12-12 23:55:49 +03:00
2014-11-27 17:02:13 +03:00
/*
* The " struct selection_handle " is used only for selection
* of items that should be processed further ( not for display ! ) .
*
* It consists of selection reporting handle " selection_rh "
* used for the selection itself ( not for display on output ! ) .
* The items are reported directly in memory to a buffer and
* then compared against selection criteria . Once we know the
* result of the selection , the buffer is dropped !
*
* The " orig_report_type " is the original requested report type .
* The " report_type " is the reporting type actually used which
* also counts with report types of the fields used in selection
* criteria .
*
* The " selected " variable is used for propagating the result
* of the selection .
*/
struct selection_handle {
struct dm_report * selection_rh ;
report_type_t orig_report_type ;
report_type_t report_type ;
int selected ;
} ;
2002-12-12 23:55:49 +03:00
struct field ;
struct report_handle ;
typedef int ( * field_report_fn ) ( struct report_handle * dh , struct field * field ,
const void * data ) ;
void * report_init ( struct cmd_context * cmd , const char * format , const char * keys ,
report_type_t * report_type , const char * separator ,
2008-06-25 01:21:04 +04:00
int aligned , int buffered , int headings , int field_prefixes ,
2014-05-29 11:38:59 +04:00
int quoted , int columns_as_rows , const char * selection ) ;
2014-12-02 15:14:12 +03:00
void * report_init_for_selection ( struct cmd_context * cmd , report_type_t * report_type ,
const char * selection ) ;
2002-12-12 23:55:49 +03:00
void report_free ( void * handle ) ;
2014-12-02 15:14:12 +03:00
int report_object ( void * handle , int selection_only , const struct volume_group * vg ,
2015-01-14 12:31:24 +03:00
const struct logical_volume * lv , const struct physical_volume * pv ,
const struct lv_segment * seg , const struct pv_segment * pvseg ,
2015-01-20 15:16:41 +03:00
const struct lv_with_info_and_seg_status * lvdm ,
2015-01-14 12:31:24 +03:00
const struct label * label ) ;
2013-09-18 04:09:15 +04:00
int report_devtypes ( void * handle ) ;
2002-12-12 23:55:49 +03:00
int report_output ( void * handle ) ;
# endif