1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
/*
Copyright 2013-2015 Skytechnology sp. z o.o.
This file is part of LizardFS.
LizardFS 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, version 3.
LizardFS 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 LizardFS. If not, see <http://www.gnu.org/licenses/>.
*/
#include <string>
#include "utils/configuration.h"
#include "utils/data_generator.h"
int main(int argc, char** argv) {
if (argc < 2) {
std::cerr << "Usage:" << std::endl
<< " " << argv[0] << " <file>..." << std::endl
<< "Command uses the following environment variables: " << std::endl
<< "* FILE_SIZE" << std::endl
<< "* BLOCK_SIZE" << std::endl;
return 1;
}
for (int i = 1; i < argc; ++i) {
DataGenerator::createFile(argv[i], UtilsConfiguration::fileSize());
}
return 0;
}
|