1 #ifndef ROSE_COMMANDLINE_UTILITY_H
2 #define ROSE_COMMANDLINE_UTILITY_H
7 #define Rose_STL_Container std::vector
32 ROSE_UTIL_API Rose_STL_Container<std::string>
generateOptionList (
const Rose_STL_Container<std::string> & argList, std::string inputPrefix );
41 ROSE_UTIL_API Rose_STL_Container<std::string>
generateOptionWithNameParameterList ( Rose_STL_Container<std::string> & argList, std::string inputPrefix, std::string newPrefix =
"");
43 extern Rose_STL_Container<std::string> extraCppSourceFileSuffixes;
51 ROSE_UTIL_API
bool isOption ( std::vector<std::string> & argv, std::string optionPrefix, std::string Option,
bool removeOption );
55 ROSE_UTIL_API
bool isOptionWithParameter ( std::vector<std::string> & argv, std::string optionPrefix, std::string Option,
int & optionParameter,
bool removeOption );
58 ROSE_UTIL_API
bool isOptionWithParameter ( std::vector<std::string> & argv, std::string optionPrefix, std::string Option,
float & optionParameter,
bool removeOption );
61 ROSE_DLL_API
bool isOptionWithParameter ( std::vector<std::string> & argv, std::string optionPrefix, std::string Option, std::string & optionParameter,
bool removeOption );
64 ROSE_UTIL_API
void addListToCommandLine ( std::vector<std::string> & argv , std::string prefix, Rose_STL_Container<std::string> argList );
66 ROSE_UTIL_API
void removeArgs ( std::vector<std::string> & argv, std::string prefix );
70 ROSE_UTIL_API
void removeAllFileNamesExcept ( std::vector<std::string> & argv, Rose_STL_Container<std::string> filenameList, std::string exceptFilename );
73 ROSE_UTIL_API std::string
generateStringFromArgList ( Rose_STL_Container<std::string> argList,
bool skipInitialEntry,
bool skipSourceFiles );
76 ROSE_DLL_API Rose_STL_Container<std::string>
generateSourceFilenames ( Rose_STL_Container<std::string> argList,
bool binaryMode );
81 ROSE_UTIL_API
void addCppSourceFileSuffix (
const std::string &suffix );
83 ROSE_UTIL_API
bool isSourceFilename ( std::string name );
85 ROSE_UTIL_API
bool isObjectFilename ( std::string name );
86 ROSE_DLL_API
bool isExecutableFilename ( std::string name );
89 ROSE_DLL_API
bool isValidFileWithExecutableFileSuffixes ( std::string name );
91 ROSE_UTIL_API
bool isCFileNameSuffix (
const std::string & suffix );
94 ROSE_UTIL_API
bool isUPCFileNameSuffix (
const std::string & suffix );
96 ROSE_UTIL_API
bool isCppFileNameSuffix (
const std::string & suffix );
99 ROSE_UTIL_API
bool isFortranFileNameSuffix (
const std::string & suffix );
103 ROSE_UTIL_API
bool isFortranFileNameSuffixRequiringCPP (
const std::string & suffix );
106 ROSE_UTIL_API
bool isFortran77FileNameSuffix (
const std::string & suffix );
107 ROSE_UTIL_API
bool isFortran90FileNameSuffix (
const std::string & suffix );
108 ROSE_UTIL_API
bool isFortran95FileNameSuffix (
const std::string & suffix );
109 ROSE_UTIL_API
bool isFortran2003FileNameSuffix (
const std::string & suffix );
110 ROSE_UTIL_API
bool isFortran2008FileNameSuffix (
const std::string & suffix );
113 ROSE_UTIL_API
bool isCoArrayFortranFileNameSuffix (
const std::string & suffix );
116 ROSE_UTIL_API
bool isCudaFileNameSuffix (
const std::string & suffix );
118 ROSE_UTIL_API
bool isOpenCLFileNameSuffix (
const std::string & suffix );
120 ROSE_UTIL_API
void initSourceFileSuffixList();
121 static Rose_STL_Container<std::string> validSourceFileSuffixes;
123 ROSE_UTIL_API
void initObjectFileSuffixList();
124 static Rose_STL_Container<std::string> validObjectFileSuffixes;
126 ROSE_DLL_API
void initExecutableFileSuffixList();
127 static Rose_STL_Container<std::string> validExecutableFileSuffixes;
130 ROSE_DLL_API
bool isOptionTakingSecondParameter( std::string argument );
131 ROSE_DLL_API
bool isOptionTakingThirdParameter ( std::string argument );
139 ROSE_DLL_API std::string
140 findRoseSupportPathFromSource(
const std::string& sourceTreeLocation,
141 const std::string& installTreeLocation);
148 ROSE_DLL_API std::string
149 findRoseSupportPathFromBuild(
const std::string& buildTreeLocation,
150 const std::string& installTreeLocation);
160 roseInstallPrefix(std::string& result);