You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
clang format apply
This commit is contained in:
@ -31,130 +31,117 @@ using namespace RebuildExtentMap;
|
||||
|
||||
static void usage(const string& pname)
|
||||
{
|
||||
std::cout << "usage: " << pname << " [-vdhs]" << std::endl;
|
||||
std::cout
|
||||
<< "rebuilds the extent map from the contents of the database file "
|
||||
"system."
|
||||
<< std::endl;
|
||||
std::cout
|
||||
<< " -v display verbose progress information. More v's, more debug"
|
||||
<< std::endl;
|
||||
std::cout << " -d display what would be done--don't do it" << std::endl;
|
||||
std::cout << " -h display this help text" << std::endl;
|
||||
std::cout << " -s show extent map and quit" << std::endl;
|
||||
std::cout << "usage: " << pname << " [-vdhs]" << std::endl;
|
||||
std::cout << "rebuilds the extent map from the contents of the database file "
|
||||
"system."
|
||||
<< std::endl;
|
||||
std::cout << " -v display verbose progress information. More v's, more debug" << std::endl;
|
||||
std::cout << " -d display what would be done--don't do it" << std::endl;
|
||||
std::cout << " -h display this help text" << std::endl;
|
||||
std::cout << " -s show extent map and quit" << std::endl;
|
||||
}
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
int32_t option;
|
||||
std::string pname(argv[0]);
|
||||
bool showExtentMap = false;
|
||||
bool verbose = false;
|
||||
bool display = false;
|
||||
int32_t option;
|
||||
std::string pname(argv[0]);
|
||||
bool showExtentMap = false;
|
||||
bool verbose = false;
|
||||
bool display = false;
|
||||
|
||||
while ((option = getopt(argc, argv, "vdhs")) != EOF)
|
||||
while ((option = getopt(argc, argv, "vdhs")) != EOF)
|
||||
{
|
||||
switch (option)
|
||||
{
|
||||
switch (option)
|
||||
{
|
||||
case 'v':
|
||||
verbose = true;
|
||||
break;
|
||||
case 'v': verbose = true; break;
|
||||
|
||||
case 'd':
|
||||
display = true;
|
||||
break;
|
||||
case 'd': display = true; break;
|
||||
|
||||
case 's':
|
||||
showExtentMap = true;
|
||||
break;
|
||||
case 's': showExtentMap = true; break;
|
||||
|
||||
case 'h':
|
||||
case '?':
|
||||
default:
|
||||
usage(pname);
|
||||
return (option == 'h' ? 0 : 1);
|
||||
break;
|
||||
}
|
||||
case 'h':
|
||||
case '?':
|
||||
default:
|
||||
usage(pname);
|
||||
return (option == 'h' ? 0 : 1);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
EMReBuilder emReBuilder(verbose, display);
|
||||
// Just show EM and quit.
|
||||
if (showExtentMap)
|
||||
{
|
||||
emReBuilder.showExtentMap();
|
||||
return 0;
|
||||
}
|
||||
|
||||
// MCOL-4685
|
||||
std::cout << "The launch of mcsRebuildEM tool must be sanctioned by MariaDB support. "
|
||||
<< std::endl;
|
||||
std::cout << "Requirement: all DBRoots must be on this node. " << std::endl;
|
||||
std::cout << "Do you want to continue Y/N? ";
|
||||
std::string confirmation;
|
||||
cin >> confirmation;
|
||||
if (confirmation.size() == 0)
|
||||
return 0;
|
||||
|
||||
boost::algorithm::to_lower(confirmation);
|
||||
if (!(confirmation == "y" || confirmation == "yes"))
|
||||
return 0;
|
||||
|
||||
auto* config = config::Config::makeConfig();
|
||||
|
||||
// Check for storage type.
|
||||
const auto DBRootStorageType = config->getConfig("Installation", "DBRootStorageType");
|
||||
if (DBRootStorageType != "internal")
|
||||
{
|
||||
std::cout << "Only internal DBRootStorageType is supported, provided: " << DBRootStorageType
|
||||
<< std::endl;
|
||||
return 0;
|
||||
}
|
||||
|
||||
const auto BRMSavesEM =
|
||||
config->getConfig("SystemConfig", "DBRMRoot") + "_em";
|
||||
// Check for `BRM_saves_em` file presents.
|
||||
// TODO: Should we add force option to remove file?
|
||||
if (boost::filesystem::exists(BRMSavesEM))
|
||||
{
|
||||
std::cout << BRMSavesEM << " file exists. " << std::endl;
|
||||
std::cout << "Please note: this tool is only suitable in situations "
|
||||
"where there is no `BRM_saves_em` file. "
|
||||
<< std::endl;
|
||||
std::cout << "If `BRM_saves_em` "
|
||||
"exists extent map will be restored from it. "
|
||||
<< std::endl;
|
||||
std::cout << "Exiting. " << std::endl;
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Initialize system extents from the binary blob.
|
||||
auto rc = emReBuilder.initializeSystemExtents();
|
||||
if (rc == -1)
|
||||
{
|
||||
std::cerr << "Cannot initialize system extents from binary blob." << std::endl;
|
||||
std::cerr << "Exiting. " << std::endl;
|
||||
return 1;
|
||||
}
|
||||
|
||||
// Make config from default path.
|
||||
std::string count = config->getConfig("SystemConfig", "DBRootCount");
|
||||
// Read the number of DBRoots.
|
||||
uint32_t dbRootCount = config->uFromText(count);
|
||||
|
||||
// Iterate over DBRoots starting from the first one.
|
||||
for (uint32_t dbRootNumber = 1; dbRootNumber <= dbRootCount;
|
||||
++dbRootNumber)
|
||||
{
|
||||
std::string dbRootName = "DBRoot" + std::to_string(dbRootNumber);
|
||||
auto dbRootPath = config->getConfig("SystemConfig", dbRootName);
|
||||
emReBuilder.setDBRoot(dbRootNumber);
|
||||
emReBuilder.collectExtents(dbRootPath.c_str());
|
||||
emReBuilder.rebuildExtentMap();
|
||||
emReBuilder.clear();
|
||||
}
|
||||
|
||||
// Save restored extent map.
|
||||
emReBuilder.getEM().save(BRMSavesEM);
|
||||
std::cout << "Completed." << std::endl;
|
||||
EMReBuilder emReBuilder(verbose, display);
|
||||
// Just show EM and quit.
|
||||
if (showExtentMap)
|
||||
{
|
||||
emReBuilder.showExtentMap();
|
||||
return 0;
|
||||
}
|
||||
|
||||
// MCOL-4685
|
||||
std::cout << "The launch of mcsRebuildEM tool must be sanctioned by MariaDB support. " << std::endl;
|
||||
std::cout << "Requirement: all DBRoots must be on this node. " << std::endl;
|
||||
std::cout << "Do you want to continue Y/N? ";
|
||||
std::string confirmation;
|
||||
cin >> confirmation;
|
||||
if (confirmation.size() == 0)
|
||||
return 0;
|
||||
|
||||
boost::algorithm::to_lower(confirmation);
|
||||
if (!(confirmation == "y" || confirmation == "yes"))
|
||||
return 0;
|
||||
|
||||
auto* config = config::Config::makeConfig();
|
||||
|
||||
// Check for storage type.
|
||||
const auto DBRootStorageType = config->getConfig("Installation", "DBRootStorageType");
|
||||
if (DBRootStorageType != "internal")
|
||||
{
|
||||
std::cout << "Only internal DBRootStorageType is supported, provided: " << DBRootStorageType << std::endl;
|
||||
return 0;
|
||||
}
|
||||
|
||||
const auto BRMSavesEM = config->getConfig("SystemConfig", "DBRMRoot") + "_em";
|
||||
// Check for `BRM_saves_em` file presents.
|
||||
// TODO: Should we add force option to remove file?
|
||||
if (boost::filesystem::exists(BRMSavesEM))
|
||||
{
|
||||
std::cout << BRMSavesEM << " file exists. " << std::endl;
|
||||
std::cout << "Please note: this tool is only suitable in situations "
|
||||
"where there is no `BRM_saves_em` file. "
|
||||
<< std::endl;
|
||||
std::cout << "If `BRM_saves_em` "
|
||||
"exists extent map will be restored from it. "
|
||||
<< std::endl;
|
||||
std::cout << "Exiting. " << std::endl;
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Initialize system extents from the binary blob.
|
||||
auto rc = emReBuilder.initializeSystemExtents();
|
||||
if (rc == -1)
|
||||
{
|
||||
std::cerr << "Cannot initialize system extents from binary blob." << std::endl;
|
||||
std::cerr << "Exiting. " << std::endl;
|
||||
return 1;
|
||||
}
|
||||
|
||||
// Make config from default path.
|
||||
std::string count = config->getConfig("SystemConfig", "DBRootCount");
|
||||
// Read the number of DBRoots.
|
||||
uint32_t dbRootCount = config->uFromText(count);
|
||||
|
||||
// Iterate over DBRoots starting from the first one.
|
||||
for (uint32_t dbRootNumber = 1; dbRootNumber <= dbRootCount; ++dbRootNumber)
|
||||
{
|
||||
std::string dbRootName = "DBRoot" + std::to_string(dbRootNumber);
|
||||
auto dbRootPath = config->getConfig("SystemConfig", dbRootName);
|
||||
emReBuilder.setDBRoot(dbRootNumber);
|
||||
emReBuilder.collectExtents(dbRootPath.c_str());
|
||||
emReBuilder.rebuildExtentMap();
|
||||
emReBuilder.clear();
|
||||
}
|
||||
|
||||
// Save restored extent map.
|
||||
emReBuilder.getEM().save(BRMSavesEM);
|
||||
std::cout << "Completed." << std::endl;
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user