64 lines
1.9 KiB
C++
64 lines
1.9 KiB
C++
#include <iostream>
|
|
#include <cstring>
|
|
#include <fstream>
|
|
#include <string>
|
|
|
|
#include "../release_utils.h"
|
|
|
|
using namespace std;
|
|
|
|
void printRepoName(string manifest_file, string start_with, string prefix, string endfix) {
|
|
|
|
ifstream fin(manifest_file.data());
|
|
string tempStr;
|
|
while (getline(fin, tempStr)) {
|
|
string result;
|
|
// line filter, only change project line
|
|
if (HasKeyWordInString(tempStr, "<" + start_with)) {
|
|
//find, convert str and write
|
|
string node_name;
|
|
//find 'name' in string line
|
|
if (FindKeyName(tempStr, "name=\"", "\"", &node_name)) {
|
|
cout << prefix << node_name << endfix << endl;
|
|
} else {
|
|
cout << "your manifest file missing path & name, please check!";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
string file_name, prefix = "", endfix = "";
|
|
string start_with = "project";
|
|
if (argc == 1) goto FAIL_PRINT;
|
|
|
|
// Parse flags, all of which start with '-'
|
|
for (int i = 1; i < argc; ++i) {
|
|
const size_t len = strlen(argv[i]);
|
|
const char *s = argv[i];
|
|
if (s[0] != '-') {
|
|
continue; // On to the positional arguments.
|
|
}
|
|
string the_rest = argv[i+1];
|
|
if (s[1] == 'i') {
|
|
file_name = the_rest;
|
|
} else if (strcmp(s, "--start_with") == 0) {
|
|
start_with = the_rest;
|
|
} else if (strcmp(s, "--prefix") == 0) {
|
|
prefix = the_rest;
|
|
} else if (strcmp(s, "--endfix") == 0) {
|
|
endfix = the_rest;
|
|
} else {
|
|
goto FAIL_PRINT;
|
|
}
|
|
}
|
|
printRepoName(file_name, start_with, prefix, endfix);
|
|
return 0;
|
|
|
|
FAIL_PRINT:
|
|
cout << "Invalid argument!" << endl;
|
|
cout << "use -i manifest_file.xml --start_with \"remove-project\" --prefix \"@android\" --endfix \"@end\" " << endl;
|
|
return -1;
|
|
}
|