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
|
#ifndef __COMMAND_PARSER_H__
#define __COMMAND_PARSER_H__
/*LICENSE_START*/
/*
* Copyright (C) 2014 Washington University School of Medicine
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
/*LICENSE_END*/
#include "OperationParameters.h"
#include "AbstractOperation.h"
#include "CommandOperation.h"
#include "ProgramParameters.h"
#include "CommandException.h"
#include "ProgramParametersException.h"
#include "CaretPointer.h"
#include <vector>
#include <set>
namespace caret {
class CommandParser : public CommandOperation
{
int m_minIndent, m_maxIndent, m_indentIncrement, m_maxWidth;
bool m_doProvenance, m_ciftiScale, m_volumeScale;
double m_ciftiMin, m_ciftiMax, m_volumeMin, m_volumeMax;
int16_t m_ciftiDType, m_volumeDType;
std::map<AString, const CiftiParameter*> m_inputCiftiOnDiskMap;
CaretPointer<AutoOperationInterface> m_autoOper;
struct OutputAssoc
{//how the output is stored is up to the parser, in the GUI it should load into memory without writing to disk
AString m_fileName;
AbstractParameter* m_param;
};
struct CompletionInfo
{
bool complete, found;//found is only used for options
AString completionHints;//only valid when hasNext returns false during the component
CompletionInfo() { complete = false; found = false; }
};
void parseComponent(ParameterComponent* myComponent, ProgramParameters& parameters, std::vector<OutputAssoc>& outAssociation, bool debug = false);
bool parseOption(const AString& mySwitch, ParameterComponent* myComponent, ProgramParameters& parameters, std::vector<OutputAssoc>& outAssociation, bool debug);
void parseRemainingOptions(ParameterComponent* myAlgParams, ProgramParameters& parameters, std::vector<OutputAssoc>& outAssociation, bool debug);
void provenanceAfterOperation(const std::vector<OutputAssoc>& outAssociation, ProvenanceHelper& provHelp);
void checkOnDiskOutputCollision(const std::vector<OutputAssoc>& outAssociation);//ensures on-disk inputs aren't used as on-disk outputs, keeping outputs in-memory when needed
void writeOutput(const std::vector<OutputAssoc>& outAssociation);
AString getIndentString(int desired);
void addHelpComponent(AString& info, ParameterComponent* myComponent, int curIndent);
void addHelpOptions(AString& info, ParameterComponent* myAlgParams, int curIndent);
void addHelpProse(AString& info, OperationParameters* myAlgParams, int curIndent);
void addComponentDescriptions(AString& info, ParameterComponent* myComponent, int curIndent);
void addOptionDescriptions(AString& info, ParameterComponent* myComponent, int curIndent);
AString formatString(const AString& in, int curIndent, bool addIndent);
CompletionInfo completionComponent(ParameterComponent* myComponent, ProgramParameters& parameters, const bool& useExtGlob);
CompletionInfo completionOption(const AString& mySwitch, ParameterComponent* myComponent, ProgramParameters& parameters, const bool& useExtGlob);
AString completionOptionHints(ParameterComponent* myComponent, const bool& useExtGlob);
CompletionInfo completionRemainingOptions(ParameterComponent* myComponent, ProgramParameters& parameters, const bool& useExtGlob);
public:
CommandParser(AutoOperationInterface* myAutoOper);
void disableProvenance();
void executeOperation(ProgramParameters& parameters);
void showParsedOperation(ProgramParameters& parameters);
AString doCompletion(ProgramParameters& parameters, const bool& useExtGlob);
AString getHelpInformation(const AString& programName);
std::vector<AString> getCompatibilitySwitches() const;
bool takesParameters();
};
};
#endif //__COMMAND_PARSER_H__
|