2016-01-12 20:32:19 +05:30
|
|
|
// Copyright (C) 2015 Red Hat, Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// This file is part of the thin-provisioning-tools source.
|
|
|
|
//
|
|
|
|
// thin-provisioning-tools 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 3 of
|
|
|
|
// the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// thin-provisioning-tools 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 thin-provisioning-tools. If not, see
|
|
|
|
// <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
#include <fstream>
|
|
|
|
#include <iostream>
|
|
|
|
#include <getopt.h>
|
|
|
|
#include <libgen.h>
|
|
|
|
|
2016-01-19 17:10:00 +05:30
|
|
|
#include "base/disk_units.h"
|
2016-01-20 12:28:59 +05:30
|
|
|
#include "base/grid_layout.h"
|
2016-01-19 19:41:31 +05:30
|
|
|
#include "boost/lexical_cast.hpp"
|
|
|
|
#include "boost/optional.hpp"
|
|
|
|
#include "boost/range.hpp"
|
|
|
|
#include "persistent-data/file_utils.h"
|
|
|
|
#include "thin-provisioning/commands.h"
|
2016-01-19 17:10:00 +05:30
|
|
|
#include "thin-provisioning/human_readable_format.h"
|
|
|
|
#include "thin-provisioning/metadata.h"
|
2016-01-19 19:41:31 +05:30
|
|
|
#include "thin-provisioning/metadata_dumper.h"
|
2016-01-19 17:10:00 +05:30
|
|
|
#include "thin-provisioning/xml_format.h"
|
2016-01-12 20:32:19 +05:30
|
|
|
#include "version.h"
|
|
|
|
|
2016-01-19 17:10:00 +05:30
|
|
|
using namespace base;
|
2016-01-12 20:32:19 +05:30
|
|
|
using namespace boost;
|
|
|
|
using namespace persistent_data;
|
|
|
|
using namespace std;
|
|
|
|
using namespace thin_provisioning;
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
class mapping_set {
|
|
|
|
public:
|
2016-01-20 20:15:38 +05:30
|
|
|
mapping_set()
|
|
|
|
: bits_(10240, false) {
|
2016-01-12 20:32:19 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
enum block_state {
|
|
|
|
UNMAPPED,
|
|
|
|
EXCLUSIVE,
|
|
|
|
SHARED
|
|
|
|
};
|
|
|
|
|
|
|
|
void inc(block_address b) {
|
2016-01-20 20:15:38 +05:30
|
|
|
if (get_bit(b * 2))
|
|
|
|
set_bit(b * 2 + 1, true); // shared
|
2016-01-12 20:32:19 +05:30
|
|
|
else
|
2016-01-20 20:15:38 +05:30
|
|
|
set_bit(b * 2, true); // exclusive
|
2016-01-12 20:32:19 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
block_state get_state(block_address b) const {
|
2016-01-20 20:15:38 +05:30
|
|
|
if (get_bit(b * 2)) {
|
|
|
|
if (get_bit(b * 2 + 1))
|
2016-01-12 20:32:19 +05:30
|
|
|
return SHARED;
|
|
|
|
else
|
|
|
|
return EXCLUSIVE;
|
|
|
|
} else
|
|
|
|
return UNMAPPED;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2016-01-20 20:15:38 +05:30
|
|
|
void ensure_size(block_address bit) const {
|
|
|
|
if (bit >= bits_.size()) {
|
|
|
|
unsigned new_size = bits_.size() * 2;
|
|
|
|
while (new_size < bit)
|
|
|
|
new_size *= 2;
|
|
|
|
|
|
|
|
bits_.resize(new_size, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool get_bit(block_address bit) const {
|
|
|
|
ensure_size(bit);
|
|
|
|
return bits_[bit];
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_bit(block_address bit, bool v) {
|
|
|
|
ensure_size(bit);
|
|
|
|
bits_[bit] = v;
|
|
|
|
}
|
|
|
|
|
|
|
|
mutable vector<bool> bits_;
|
2016-01-12 20:32:19 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
//------------------------------------------------
|
|
|
|
|
2016-01-19 16:46:25 +05:30
|
|
|
enum output_field {
|
|
|
|
DEV_ID,
|
|
|
|
MAPPED_BLOCKS,
|
2016-01-19 20:20:04 +05:30
|
|
|
EXCLUSIVE_BLOCKS,
|
|
|
|
SHARED_BLOCKS,
|
2016-01-19 20:13:37 +05:30
|
|
|
|
|
|
|
MAPPED_SECTORS,
|
|
|
|
EXCLUSIVE_SECTORS,
|
|
|
|
SHARED_SECTORS,
|
|
|
|
|
2016-01-19 16:46:25 +05:30
|
|
|
MAPPED,
|
|
|
|
EXCLUSIVE,
|
|
|
|
SHARED,
|
2016-01-19 20:20:04 +05:30
|
|
|
|
2016-01-19 16:46:25 +05:30
|
|
|
TRANSACTION_ID,
|
|
|
|
CREATION_TIME,
|
2016-01-19 19:46:02 +05:30
|
|
|
SNAPSHOT_TIME // make sure this is always the last one
|
2016-01-19 16:46:25 +05:30
|
|
|
};
|
|
|
|
|
2016-01-19 19:41:31 +05:30
|
|
|
char const *field_names[] = {
|
|
|
|
"DEV",
|
|
|
|
"MAPPED_BLOCKS",
|
2016-01-19 20:20:04 +05:30
|
|
|
"EXCLUSIVE_BLOCKS",
|
|
|
|
"SHARED_BLOCKS",
|
2016-01-19 20:13:37 +05:30
|
|
|
|
|
|
|
"MAPPED_SECTORS",
|
|
|
|
"EXCLUSIVE_SECTORS",
|
|
|
|
"SHARED_SECTORS",
|
|
|
|
|
2016-01-19 19:41:31 +05:30
|
|
|
"MAPPED",
|
|
|
|
"EXCLUSIVE",
|
|
|
|
"SHARED",
|
2016-01-19 20:13:37 +05:30
|
|
|
|
2016-01-19 20:00:13 +05:30
|
|
|
"TRANSACTION",
|
|
|
|
"CREATE_TIME",
|
|
|
|
"SNAP_TIME"
|
2016-01-19 19:41:31 +05:30
|
|
|
};
|
2016-01-19 19:24:15 +05:30
|
|
|
|
2016-01-19 19:41:31 +05:30
|
|
|
output_field string_to_field(string const &str) {
|
|
|
|
for (unsigned i = 0; i < size(field_names); i++)
|
|
|
|
if (str == field_names[i])
|
|
|
|
return static_cast<output_field>(i);
|
2016-01-19 19:24:15 +05:30
|
|
|
|
|
|
|
throw runtime_error("unknown field");
|
|
|
|
return DEV_ID;
|
|
|
|
}
|
|
|
|
|
2016-01-19 19:41:31 +05:30
|
|
|
string field_to_string(output_field const &f) {
|
|
|
|
return field_names[static_cast<unsigned>(f)];
|
2016-01-19 16:46:25 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void print_headers(grid_layout &out, vector<output_field> const &fields) {
|
|
|
|
vector<output_field>::const_iterator it;
|
|
|
|
for (it = fields.begin(); it != fields.end(); ++it)
|
2016-01-19 19:41:31 +05:30
|
|
|
out.field(field_to_string(*it));
|
2016-01-19 16:46:25 +05:30
|
|
|
|
|
|
|
out.new_row();
|
|
|
|
}
|
|
|
|
|
2016-01-19 19:41:31 +05:30
|
|
|
//------------------------------------------------
|
2016-01-19 16:46:25 +05:30
|
|
|
|
2016-01-12 20:32:19 +05:30
|
|
|
struct flags {
|
|
|
|
flags()
|
2016-01-19 20:26:48 +05:30
|
|
|
: use_metadata_snap(false),
|
|
|
|
headers(true) {
|
2016-01-19 16:46:25 +05:30
|
|
|
|
|
|
|
fields.push_back(DEV_ID);
|
|
|
|
fields.push_back(MAPPED);
|
|
|
|
fields.push_back(CREATION_TIME);
|
|
|
|
fields.push_back(SNAPSHOT_TIME);
|
2016-01-12 20:32:19 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
bool use_metadata_snap;
|
2016-01-19 20:26:48 +05:30
|
|
|
bool headers;
|
2016-01-19 16:46:25 +05:30
|
|
|
vector<output_field> fields;
|
2016-01-12 20:32:19 +05:30
|
|
|
};
|
|
|
|
|
2016-01-19 16:46:25 +05:30
|
|
|
//------------------------------------------------
|
|
|
|
|
2016-01-12 20:32:19 +05:30
|
|
|
class mapping_pass1 : public mapping_tree_detail::mapping_visitor {
|
|
|
|
public:
|
|
|
|
mapping_pass1(mapping_set &mappings)
|
|
|
|
: mappings_(mappings) {
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void visit(btree_path const &path, mapping_tree_detail::block_time const &bt) {
|
|
|
|
mappings_.inc(bt.block_);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
mapping_set &mappings_;
|
|
|
|
};
|
|
|
|
|
|
|
|
class mapping_pass2 : public mapping_tree_detail::mapping_visitor {
|
|
|
|
public:
|
|
|
|
mapping_pass2(mapping_set const &mappings)
|
|
|
|
: mappings_(mappings),
|
|
|
|
exclusives_(0) {
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void visit(btree_path const &path, mapping_tree_detail::block_time const &bt) {
|
|
|
|
if (mappings_.get_state(bt.block_) == mapping_set::EXCLUSIVE)
|
|
|
|
exclusives_++;
|
|
|
|
}
|
|
|
|
|
|
|
|
block_address get_exclusives() const {
|
|
|
|
return exclusives_;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
mapping_set const &mappings_;
|
|
|
|
block_address exclusives_;
|
|
|
|
};
|
|
|
|
|
|
|
|
void raise_metadata_damage() {
|
|
|
|
throw std::runtime_error("metadata contains errors (run thin_check for details).");
|
|
|
|
}
|
|
|
|
|
|
|
|
class fatal_mapping_damage : public mapping_tree_detail::damage_visitor {
|
|
|
|
public:
|
|
|
|
virtual void visit(mapping_tree_detail::missing_devices const &d) {
|
|
|
|
raise_metadata_damage();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void visit(mapping_tree_detail::missing_mappings const &d) {
|
|
|
|
raise_metadata_damage();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
void pass1(metadata::ptr md, mapping_set &mappings, uint64_t dev_id) {
|
|
|
|
dev_tree::key k = {dev_id};
|
|
|
|
optional<uint64_t> dev_root = md->mappings_top_level_->lookup(k);
|
|
|
|
|
|
|
|
if (!dev_root)
|
|
|
|
throw runtime_error("couldn't find mapping tree root");
|
|
|
|
|
|
|
|
single_mapping_tree dev_mappings(*md->tm_, *dev_root,
|
|
|
|
mapping_tree_detail::block_traits::ref_counter(md->tm_->get_sm()));
|
|
|
|
|
|
|
|
mapping_pass1 pass1(mappings);
|
|
|
|
fatal_mapping_damage dv;
|
|
|
|
walk_mapping_tree(dev_mappings, pass1, dv);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
block_address count_exclusives(metadata::ptr md, mapping_set const &mappings, uint64_t dev_id) {
|
|
|
|
dev_tree::key k = {dev_id};
|
|
|
|
optional<uint64_t> dev_root = md->mappings_top_level_->lookup(k);
|
|
|
|
|
|
|
|
if (!dev_root)
|
|
|
|
throw runtime_error("couldn't find mapping tree root");
|
|
|
|
|
|
|
|
single_mapping_tree dev_mappings(*md->tm_, *dev_root,
|
|
|
|
mapping_tree_detail::block_traits::ref_counter(md->tm_->get_sm()));
|
|
|
|
|
|
|
|
mapping_pass2 pass2(mappings);
|
|
|
|
fatal_mapping_damage dv;
|
|
|
|
walk_mapping_tree(dev_mappings, pass2, dv);
|
|
|
|
return pass2.get_exclusives();
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------
|
|
|
|
|
|
|
|
typedef map<block_address, device_tree_detail::device_details> dd_map;
|
|
|
|
|
|
|
|
class details_extractor : public device_tree_detail::device_visitor {
|
|
|
|
public:
|
|
|
|
void visit(block_address dev_id, device_tree_detail::device_details const &dd) {
|
|
|
|
dd_.insert(make_pair(dev_id, dd));
|
|
|
|
}
|
|
|
|
|
|
|
|
dd_map const &get_details() const {
|
|
|
|
return dd_;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
dd_map dd_;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct fatal_details_damage : public device_tree_detail::damage_visitor {
|
|
|
|
void visit(device_tree_detail::missing_devices const &d) {
|
|
|
|
raise_metadata_damage();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
device_tree_detail::damage_visitor::ptr details_damage_policy() {
|
|
|
|
typedef device_tree_detail::damage_visitor::ptr dvp;
|
|
|
|
return dvp(new fatal_details_damage());
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------
|
|
|
|
|
2016-01-19 21:20:15 +05:30
|
|
|
bool pass1_needed(vector<output_field> const &fields) {
|
|
|
|
vector<output_field>::const_iterator it;
|
|
|
|
for (it = fields.begin(); it != fields.end(); ++it) {
|
|
|
|
if (*it == EXCLUSIVE_BLOCKS ||
|
|
|
|
*it == SHARED_BLOCKS ||
|
|
|
|
*it == EXCLUSIVE_SECTORS ||
|
|
|
|
*it == SHARED_SECTORS ||
|
|
|
|
*it == EXCLUSIVE ||
|
|
|
|
*it == SHARED)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-01-19 16:46:25 +05:30
|
|
|
void ls_(string const &path, ostream &out, struct flags &flags) {
|
|
|
|
grid_layout grid;
|
2016-01-12 20:32:19 +05:30
|
|
|
|
2016-01-20 20:15:38 +05:30
|
|
|
block_manager<>::ptr bm(open_bm(path, block_manager<>::READ_ONLY,
|
|
|
|
!flags.use_metadata_snap));
|
2016-01-19 16:46:25 +05:30
|
|
|
metadata::ptr md;
|
2016-01-12 20:32:19 +05:30
|
|
|
|
2016-01-19 16:46:25 +05:30
|
|
|
if (flags.use_metadata_snap)
|
|
|
|
md.reset(new metadata(bm, optional<block_address>()));
|
|
|
|
else
|
|
|
|
md.reset(new metadata(bm));
|
2016-01-12 20:32:19 +05:30
|
|
|
|
2016-01-19 20:13:37 +05:30
|
|
|
block_address block_size = md->sb_.data_block_size_;
|
|
|
|
|
2016-01-19 16:46:25 +05:30
|
|
|
details_extractor de;
|
|
|
|
device_tree_detail::damage_visitor::ptr dd_policy(details_damage_policy());
|
|
|
|
walk_device_tree(*md->details_, de, *dd_policy);
|
2016-01-12 20:32:19 +05:30
|
|
|
|
2016-01-20 20:15:38 +05:30
|
|
|
mapping_set mappings;
|
2016-01-19 16:46:25 +05:30
|
|
|
dd_map::const_iterator it;
|
2016-01-19 21:20:15 +05:30
|
|
|
dd_map const &map = de.get_details();
|
|
|
|
|
|
|
|
bool some_exclusive_fields = pass1_needed(flags.fields);
|
|
|
|
if (some_exclusive_fields) {
|
|
|
|
for (it = map.begin(); it != map.end(); ++it)
|
|
|
|
pass1(md, mappings, it->first);
|
|
|
|
}
|
2016-01-19 16:46:25 +05:30
|
|
|
|
2016-01-19 20:26:48 +05:30
|
|
|
if (flags.headers)
|
|
|
|
print_headers(grid, flags.fields);
|
2016-01-19 16:46:25 +05:30
|
|
|
|
|
|
|
for (it = map.begin(); it != map.end(); ++it) {
|
|
|
|
vector<output_field>::const_iterator f;
|
|
|
|
|
2016-01-19 21:20:15 +05:30
|
|
|
block_address exclusive = 0;
|
|
|
|
|
|
|
|
if (some_exclusive_fields)
|
|
|
|
exclusive = count_exclusives(md, mappings, it->first);
|
2016-01-19 16:46:25 +05:30
|
|
|
|
|
|
|
for (f = flags.fields.begin(); f != flags.fields.end(); ++f) {
|
|
|
|
switch (*f) {
|
|
|
|
case DEV_ID:
|
|
|
|
grid.field(it->first);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MAPPED_BLOCKS:
|
|
|
|
grid.field(it->second.mapped_blocks_);
|
|
|
|
break;
|
|
|
|
|
2016-01-19 20:20:04 +05:30
|
|
|
case EXCLUSIVE_BLOCKS:
|
2016-01-19 21:20:15 +05:30
|
|
|
grid.field(exclusive);
|
2016-01-19 16:46:25 +05:30
|
|
|
break;
|
|
|
|
|
2016-01-19 20:20:04 +05:30
|
|
|
case SHARED_BLOCKS:
|
2016-01-19 21:20:15 +05:30
|
|
|
grid.field(it->second.mapped_blocks_ - exclusive);
|
2016-01-19 16:46:25 +05:30
|
|
|
break;
|
|
|
|
|
2016-01-19 20:13:37 +05:30
|
|
|
case MAPPED_SECTORS:
|
|
|
|
grid.field(it->second.mapped_blocks_ * block_size);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EXCLUSIVE_SECTORS:
|
2016-01-19 21:20:15 +05:30
|
|
|
grid.field(exclusive * block_size);
|
2016-01-19 20:13:37 +05:30
|
|
|
break;
|
|
|
|
|
|
|
|
case SHARED_SECTORS:
|
2016-01-19 21:20:15 +05:30
|
|
|
grid.field((it->second.mapped_blocks_ - exclusive) * block_size);
|
2016-01-19 20:13:37 +05:30
|
|
|
break;
|
|
|
|
|
|
|
|
|
2016-01-19 16:46:25 +05:30
|
|
|
case MAPPED:
|
|
|
|
grid.field(
|
2016-01-19 20:13:37 +05:30
|
|
|
format_disk_unit(it->second.mapped_blocks_ * block_size,
|
|
|
|
UNIT_SECTOR));
|
2016-01-19 16:46:25 +05:30
|
|
|
break;
|
|
|
|
|
|
|
|
case EXCLUSIVE:
|
|
|
|
grid.field(
|
2016-01-19 21:20:15 +05:30
|
|
|
format_disk_unit(exclusive * block_size,
|
2016-01-19 16:46:25 +05:30
|
|
|
UNIT_SECTOR));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SHARED:
|
|
|
|
grid.field(
|
2016-01-19 21:20:15 +05:30
|
|
|
format_disk_unit((it->second.mapped_blocks_ - exclusive) *
|
2016-01-19 20:13:37 +05:30
|
|
|
block_size, UNIT_SECTOR));
|
2016-01-19 16:46:25 +05:30
|
|
|
break;
|
|
|
|
|
|
|
|
case TRANSACTION_ID:
|
|
|
|
grid.field(it->second.transaction_id_);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CREATION_TIME:
|
|
|
|
grid.field(it->second.creation_time_);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SNAPSHOT_TIME:
|
|
|
|
grid.field(it->second.snapshotted_time_);
|
|
|
|
}
|
2016-01-12 20:32:19 +05:30
|
|
|
}
|
2016-01-19 16:46:25 +05:30
|
|
|
grid.new_row();
|
|
|
|
}
|
|
|
|
|
|
|
|
grid.render(out);
|
|
|
|
}
|
|
|
|
|
|
|
|
int ls(string const &path, ostream &out, struct flags &flags) {
|
|
|
|
try {
|
|
|
|
ls_(path, out, flags);
|
2016-01-12 20:32:19 +05:30
|
|
|
|
|
|
|
} catch (std::exception &e) {
|
|
|
|
cerr << e.what() << endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
thin_ls_cmd::thin_ls_cmd()
|
|
|
|
: command("thin_ls")
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
thin_ls_cmd::usage(std::ostream &out) const
|
|
|
|
{
|
2016-01-20 18:55:09 +05:30
|
|
|
out << "Usage: " << get_name() << " [options] {metadata device}\n"
|
2016-01-19 19:10:36 +05:30
|
|
|
<< "Options:\n"
|
|
|
|
<< " {-h|--help}\n"
|
|
|
|
<< " {-m|--metadata-snap}\n"
|
2016-01-19 20:26:48 +05:30
|
|
|
<< " {--no-headers}\n"
|
2016-01-19 19:10:36 +05:30
|
|
|
<< " {-o|--format <fields>}\n"
|
|
|
|
<< " {-V|--version}\n\n"
|
2016-01-19 19:46:02 +05:30
|
|
|
<< "where <fields> is a comma separated list from:\n";
|
|
|
|
|
2016-01-20 18:55:09 +05:30
|
|
|
for (unsigned i = 0; i <= static_cast<unsigned>(SNAPSHOT_TIME); i++)
|
2016-01-19 19:46:02 +05:30
|
|
|
out << " " << field_to_string(static_cast<output_field>(i)) << "\n";
|
2016-01-19 19:10:36 +05:30
|
|
|
}
|
|
|
|
|
2016-01-19 19:24:15 +05:30
|
|
|
vector<output_field> parse_fields(string const &str)
|
|
|
|
{
|
2016-01-19 19:10:36 +05:30
|
|
|
vector<output_field> fields;
|
|
|
|
stringstream in(str);
|
|
|
|
string item;
|
|
|
|
|
|
|
|
while (getline(in, item, ','))
|
2016-01-19 19:24:15 +05:30
|
|
|
fields.push_back(string_to_field(item));
|
2016-01-19 19:10:36 +05:30
|
|
|
|
|
|
|
return fields;
|
2016-01-12 20:32:19 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
thin_ls_cmd::run(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int c;
|
|
|
|
struct flags flags;
|
2016-01-20 12:29:55 +05:30
|
|
|
const char shortopts[] = "ho:m::V";
|
2016-01-12 20:32:19 +05:30
|
|
|
|
|
|
|
const struct option longopts[] = {
|
|
|
|
{ "help", no_argument, NULL, 'h'},
|
|
|
|
{ "metadata-snap", no_argument, NULL, 'm' },
|
|
|
|
{ "version", no_argument, NULL, 'V'},
|
2016-01-19 19:10:36 +05:30
|
|
|
{ "format", required_argument, NULL, 'o' },
|
2016-01-19 20:26:48 +05:30
|
|
|
{ "no-headers", no_argument, NULL, 1 },
|
2016-01-12 20:32:19 +05:30
|
|
|
{ NULL, no_argument, NULL, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
while ((c = getopt_long(argc, argv, shortopts, longopts, NULL)) != -1) {
|
|
|
|
switch(c) {
|
|
|
|
case 'h':
|
|
|
|
usage(cout);
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case 'm':
|
|
|
|
flags.use_metadata_snap = true;
|
|
|
|
break;
|
|
|
|
|
2016-01-19 19:10:36 +05:30
|
|
|
case 'o':
|
|
|
|
flags.fields = parse_fields(optarg);
|
|
|
|
break;
|
|
|
|
|
2016-01-12 20:32:19 +05:30
|
|
|
case 'V':
|
|
|
|
cout << THIN_PROVISIONING_TOOLS_VERSION << endl;
|
|
|
|
return 0;
|
|
|
|
|
2016-01-19 20:26:48 +05:30
|
|
|
case 1:
|
|
|
|
flags.headers = false;
|
|
|
|
break;
|
|
|
|
|
2016-01-12 20:32:19 +05:30
|
|
|
default:
|
|
|
|
usage(cerr);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc == optind) {
|
|
|
|
cerr << "No input file provided." << endl;
|
|
|
|
usage(cerr);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-01-19 16:46:25 +05:30
|
|
|
return ls(argv[optind], cout, flags);
|
2016-01-12 20:32:19 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|