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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
//Copyright 2017 Ryan Wick
//This file is part of Bandage
//Bandage 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.
//Bandage 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 Bandage. If not, see <http://www.gnu.org/licenses/>.
#include "load.h"
#include "commoncommandlinefunctions.h"
#include <QApplication>
int bandageLoad(QStringList arguments)
{
QTextStream out(stdout);
QTextStream err(stderr);
if (checkForHelp(arguments))
{
printLoadUsage(&out, false);
return 0;
}
if (checkForHelpAll(arguments))
{
printLoadUsage(&out, true);
return 0;
}
if (arguments.size() == 0)
{
printLoadUsage(&err, false);
return 1;
}
QString filename = arguments.at(0);
arguments.pop_front();
if (!checkIfFileExists(filename))
{
outputText("Bandage error: " + filename + " does not exist", &err);
return 1;
}
QString error = checkForInvalidLoadOptions(arguments);
if (error.length() > 0)
{
outputText("Bandage error: " + error, &err);
return 1;
}
bool drawGraph;
parseLoadOptions(arguments, &drawGraph);
MainWindow w(filename, drawGraph);
w.show();
return QApplication::exec();
}
void printLoadUsage(QTextStream * out, bool all)
{
QStringList text;
text << "Bandage load will open the Bandage GUI and immediately load the specified graph file.";
text << "";
text << "Usage: Bandage load <graph> [options]";
text << "";
text << "Positional parameters:";
text << "<graph> A graph file of any type supported by Bandage";
text << "";
text << "Options: --draw Draw graph after loading";
text << "";
getCommonHelp(&text);
if (all)
getSettingsUsage(&text);
getOnlineHelpMessage(&text);
outputText(text, out);
}
QString checkForInvalidLoadOptions(QStringList arguments)
{
checkOptionWithoutValue("--draw", &arguments);
QString error = checkForInvalidOrExcessSettings(&arguments);
if (error.length() > 0) return error;
return checkForInvalidOrExcessSettings(&arguments);
}
void parseLoadOptions(QStringList arguments, bool * drawGraph)
{
int drawIndex = arguments.indexOf("--draw");
*drawGraph = (drawIndex > -1);
parseSettings(arguments);
}
|