2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-06-08 18:41:05 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2005-06-08 18:41:05 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2005-06-08 18:41:05 +04:00
|
|
|
#include "cmCommandArgumentParserHelper.h"
|
|
|
|
|
|
|
|
#include "cmSystemTools.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
|
2013-08-07 18:14:58 +04:00
|
|
|
#include "cmCommandArgumentLexer.h"
|
|
|
|
|
2005-06-08 18:41:05 +04:00
|
|
|
int cmCommandArgument_yyparse( yyscan_t yyscanner );
|
2005-06-17 23:50:08 +04:00
|
|
|
//
|
2005-06-08 18:41:05 +04:00
|
|
|
cmCommandArgumentParserHelper::cmCommandArgumentParserHelper()
|
|
|
|
{
|
2010-08-25 20:35:40 +04:00
|
|
|
this->WarnUninitialized = false;
|
2010-09-01 19:24:20 +04:00
|
|
|
this->CheckSystemVars = false;
|
2006-03-15 19:02:08 +03:00
|
|
|
this->FileLine = -1;
|
|
|
|
this->FileName = 0;
|
2007-02-09 21:44:37 +03:00
|
|
|
this->RemoveEmpty = true;
|
2006-03-15 19:02:08 +03:00
|
|
|
this->EmptyVariable[0] = 0;
|
|
|
|
strcpy(this->DCURLYVariable, "${");
|
|
|
|
strcpy(this->RCURLYVariable, "}");
|
|
|
|
strcpy(this->ATVariable, "@");
|
|
|
|
strcpy(this->DOLLARVariable, "$");
|
|
|
|
strcpy(this->LCURLYVariable, "{");
|
|
|
|
strcpy(this->BSLASHVariable, "\\");
|
2005-06-17 23:50:08 +04:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
this->NoEscapeMode = false;
|
2006-10-04 22:37:42 +04:00
|
|
|
this->ReplaceAtSyntax = false;
|
2005-06-08 18:41:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
cmCommandArgumentParserHelper::~cmCommandArgumentParserHelper()
|
|
|
|
{
|
|
|
|
this->CleanupParser();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmCommandArgumentParserHelper::SetLineFile(long line, const char* file)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->FileLine = line;
|
|
|
|
this->FileName = file;
|
2005-06-08 18:41:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
char* cmCommandArgumentParserHelper::AddString(const char* str)
|
|
|
|
{
|
|
|
|
if ( !str || !*str )
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
return this->EmptyVariable;
|
2005-06-08 18:41:05 +04:00
|
|
|
}
|
|
|
|
char* stVal = new char[strlen(str)+1];
|
|
|
|
strcpy(stVal, str);
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Variables.push_back(stVal);
|
2005-06-14 23:49:30 +04:00
|
|
|
return stVal;
|
2005-06-08 18:41:05 +04:00
|
|
|
}
|
|
|
|
|
2012-08-13 21:42:58 +04:00
|
|
|
char* cmCommandArgumentParserHelper::ExpandSpecialVariable(const char* key,
|
2006-05-10 22:15:15 +04:00
|
|
|
const char* var)
|
2005-06-08 18:41:05 +04:00
|
|
|
{
|
|
|
|
if ( !key )
|
|
|
|
{
|
|
|
|
return this->ExpandVariable(var);
|
2009-10-21 17:04:50 +04:00
|
|
|
}
|
|
|
|
if(!var)
|
|
|
|
{
|
|
|
|
return this->EmptyVariable;
|
|
|
|
}
|
2005-06-08 18:41:05 +04:00
|
|
|
if ( strcmp(key, "ENV") == 0 )
|
|
|
|
{
|
|
|
|
char *ptr = getenv(var);
|
|
|
|
if (ptr)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
if (this->EscapeQuotes)
|
2005-06-08 18:41:05 +04:00
|
|
|
{
|
|
|
|
return this->AddString(cmSystemTools::EscapeQuotes(ptr).c_str());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
return this->EmptyVariable;
|
2005-06-08 18:41:05 +04:00
|
|
|
}
|
2008-09-25 18:21:15 +04:00
|
|
|
if ( strcmp(key, "CACHE") == 0 )
|
|
|
|
{
|
|
|
|
if(const char* c = this->Makefile->GetCacheManager()->GetCacheValue(var))
|
|
|
|
{
|
|
|
|
if(this->EscapeQuotes)
|
|
|
|
{
|
|
|
|
return this->AddString(cmSystemTools::EscapeQuotes(c).c_str());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return this->AddString(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return this->EmptyVariable;
|
|
|
|
}
|
2008-09-24 16:51:19 +04:00
|
|
|
cmOStringStream e;
|
|
|
|
e << "Syntax $" << key << "{} is not supported. "
|
2008-09-25 18:21:15 +04:00
|
|
|
<< "Only ${}, $ENV{}, and $CACHE{} are allowed.";
|
2008-09-24 16:51:19 +04:00
|
|
|
this->SetError(e.str());
|
2005-06-08 18:41:05 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-06-07 00:20:02 +04:00
|
|
|
char* cmCommandArgumentParserHelper::ExpandVariable(const char* var)
|
2005-06-08 18:41:05 +04:00
|
|
|
{
|
2006-05-06 05:45:26 +04:00
|
|
|
if(!var)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2009-03-25 17:37:04 +03:00
|
|
|
if(this->FileLine >= 0 && strcmp(var, "CMAKE_CURRENT_LIST_LINE") == 0)
|
2005-06-08 18:41:05 +04:00
|
|
|
{
|
|
|
|
cmOStringStream ostr;
|
2006-03-15 19:02:08 +03:00
|
|
|
ostr << this->FileLine;
|
2005-06-08 18:41:05 +04:00
|
|
|
return this->AddString(ostr.str().c_str());
|
2010-04-13 17:21:31 +04:00
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
const char* value = this->Makefile->GetDefinition(var);
|
2007-02-09 21:44:37 +03:00
|
|
|
if(!value && !this->RemoveEmpty)
|
|
|
|
{
|
2010-07-12 23:48:51 +04:00
|
|
|
// check to see if we need to print a warning
|
|
|
|
// if strict mode is on and the variable has
|
|
|
|
// not been "cleared"/initialized with a set(foo ) call
|
2010-08-25 20:35:40 +04:00
|
|
|
if(this->WarnUninitialized && !this->Makefile->VariableInitialized(var))
|
2010-04-13 17:21:31 +04:00
|
|
|
{
|
2010-09-08 20:03:42 +04:00
|
|
|
if (this->CheckSystemVars ||
|
2010-09-16 19:49:58 +04:00
|
|
|
cmSystemTools::IsSubDirectory(this->FileName,
|
|
|
|
this->Makefile->GetHomeDirectory()) ||
|
|
|
|
cmSystemTools::IsSubDirectory(this->FileName,
|
2010-09-23 18:14:37 +04:00
|
|
|
this->Makefile->GetHomeOutputDirectory()))
|
2010-09-01 19:24:20 +04:00
|
|
|
{
|
|
|
|
cmOStringStream msg;
|
2010-12-08 00:38:25 +03:00
|
|
|
cmListFileBacktrace bt;
|
|
|
|
cmListFileContext lfc;
|
|
|
|
lfc.FilePath = this->FileName;
|
|
|
|
lfc.Line = this->FileLine;
|
|
|
|
bt.push_back(lfc);
|
|
|
|
msg << "uninitialized variable \'" << var << "\'";
|
|
|
|
this->Makefile->GetCMakeInstance()->IssueMessage(cmake::AUTHOR_WARNING,
|
|
|
|
msg.str().c_str(), bt);
|
2010-09-01 19:24:20 +04:00
|
|
|
}
|
2010-04-13 17:21:31 +04:00
|
|
|
}
|
2007-02-09 21:44:37 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
if (this->EscapeQuotes && value)
|
2005-06-08 22:18:31 +04:00
|
|
|
{
|
|
|
|
return this->AddString(cmSystemTools::EscapeQuotes(value).c_str());
|
|
|
|
}
|
2005-06-08 18:41:05 +04:00
|
|
|
return this->AddString(value);
|
|
|
|
}
|
|
|
|
|
2006-10-04 22:37:42 +04:00
|
|
|
char* cmCommandArgumentParserHelper::ExpandVariableForAt(const char* var)
|
|
|
|
{
|
|
|
|
if(this->ReplaceAtSyntax)
|
|
|
|
{
|
2007-02-09 21:44:37 +03:00
|
|
|
// try to expand the variable
|
2007-06-07 00:20:02 +04:00
|
|
|
char* ret = this->ExpandVariable(var);
|
2007-02-09 21:44:37 +03:00
|
|
|
// if the return was 0 and we want to replace empty strings
|
2012-08-13 21:42:58 +04:00
|
|
|
// then return an empty string
|
2007-02-09 21:44:37 +03:00
|
|
|
if(!ret && this->RemoveEmpty)
|
|
|
|
{
|
|
|
|
return this->AddString(ret);
|
|
|
|
}
|
|
|
|
// if the ret was not 0, then return it
|
|
|
|
if(ret)
|
|
|
|
{
|
|
|
|
return ret;
|
|
|
|
}
|
2006-10-04 22:37:42 +04:00
|
|
|
}
|
2007-02-09 21:44:37 +03:00
|
|
|
// at this point we want to put it back because of one of these cases:
|
2012-08-13 21:42:58 +04:00
|
|
|
// - this->ReplaceAtSyntax is false
|
2007-02-09 21:44:37 +03:00
|
|
|
// - this->ReplaceAtSyntax is true, but this->RemoveEmpty is false,
|
|
|
|
// and the variable was not defined
|
|
|
|
std::string ref = "@";
|
|
|
|
ref += var;
|
|
|
|
ref += "@";
|
|
|
|
return this->AddString(ref.c_str());
|
2006-10-04 22:37:42 +04:00
|
|
|
}
|
|
|
|
|
2005-06-13 18:11:44 +04:00
|
|
|
char* cmCommandArgumentParserHelper::CombineUnions(char* in1, char* in2)
|
2005-06-08 18:41:05 +04:00
|
|
|
{
|
2005-06-13 18:11:44 +04:00
|
|
|
if ( !in1 )
|
2005-06-08 18:41:05 +04:00
|
|
|
{
|
2005-06-13 18:11:44 +04:00
|
|
|
return in2;
|
2005-06-08 18:41:05 +04:00
|
|
|
}
|
2005-06-13 18:11:44 +04:00
|
|
|
else if ( !in2 )
|
2005-06-08 18:41:05 +04:00
|
|
|
{
|
2005-06-13 18:11:44 +04:00
|
|
|
return in1;
|
2005-06-08 18:41:05 +04:00
|
|
|
}
|
2006-03-30 22:49:56 +04:00
|
|
|
size_t len = strlen(in1) + strlen(in2) + 1;
|
2005-06-08 18:41:05 +04:00
|
|
|
char* out = new char [ len ];
|
2005-06-13 18:11:44 +04:00
|
|
|
strcpy(out, in1);
|
|
|
|
strcat(out, in2);
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Variables.push_back(out);
|
2005-06-14 23:49:30 +04:00
|
|
|
return out;
|
2005-06-08 18:41:05 +04:00
|
|
|
}
|
|
|
|
|
2006-05-10 22:15:15 +04:00
|
|
|
void cmCommandArgumentParserHelper::AllocateParserType
|
|
|
|
(cmCommandArgumentParserHelper::ParserType* pt,const char* str, int len)
|
2005-06-08 18:41:05 +04:00
|
|
|
{
|
|
|
|
pt->str = 0;
|
|
|
|
if ( len == 0 )
|
|
|
|
{
|
2006-07-26 19:46:22 +04:00
|
|
|
len = static_cast<int>(strlen(str));
|
2005-06-08 18:41:05 +04:00
|
|
|
}
|
|
|
|
if ( len == 0 )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
pt->str = new char[ len + 1 ];
|
|
|
|
strncpy(pt->str, str, len);
|
|
|
|
pt->str[len] = 0;
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Variables.push_back(pt->str);
|
2005-06-08 18:41:05 +04:00
|
|
|
}
|
|
|
|
|
2006-05-10 22:15:15 +04:00
|
|
|
bool cmCommandArgumentParserHelper::HandleEscapeSymbol
|
|
|
|
(cmCommandArgumentParserHelper::ParserType* pt, char symbol)
|
2005-06-17 23:50:08 +04:00
|
|
|
{
|
|
|
|
switch ( symbol )
|
|
|
|
{
|
|
|
|
case '\\':
|
|
|
|
case '"':
|
|
|
|
case ' ':
|
|
|
|
case '#':
|
|
|
|
case '(':
|
|
|
|
case ')':
|
|
|
|
case '$':
|
2006-09-28 00:14:16 +04:00
|
|
|
case '@':
|
2005-06-17 23:50:08 +04:00
|
|
|
case '^':
|
|
|
|
this->AllocateParserType(pt, &symbol, 1);
|
|
|
|
break;
|
2005-06-21 19:01:24 +04:00
|
|
|
case ';':
|
|
|
|
this->AllocateParserType(pt, "\\;", 2);
|
|
|
|
break;
|
2005-06-17 23:50:08 +04:00
|
|
|
case 't':
|
|
|
|
this->AllocateParserType(pt, "\t", 1);
|
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
this->AllocateParserType(pt, "\n", 1);
|
|
|
|
break;
|
|
|
|
case 'r':
|
|
|
|
this->AllocateParserType(pt, "\r", 1);
|
|
|
|
break;
|
|
|
|
case '0':
|
|
|
|
this->AllocateParserType(pt, "\0", 1);
|
|
|
|
break;
|
|
|
|
default:
|
2008-09-24 16:51:19 +04:00
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "Invalid escape sequence \\" << symbol;
|
|
|
|
this->SetError(e.str());
|
|
|
|
}
|
2005-06-17 23:50:08 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-06-04 23:57:33 +04:00
|
|
|
void cmCommandArgument_SetupEscapes(yyscan_t yyscanner, bool noEscapes);
|
|
|
|
|
2005-06-08 18:41:05 +04:00
|
|
|
int cmCommandArgumentParserHelper::ParseString(const char* str, int verb)
|
|
|
|
{
|
|
|
|
if ( !str)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
this->Verbose = verb;
|
|
|
|
this->InputBuffer = str;
|
|
|
|
this->InputBufferPos = 0;
|
|
|
|
this->CurrentLine = 0;
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Result = "";
|
2005-06-08 18:41:05 +04:00
|
|
|
|
|
|
|
yyscan_t yyscanner;
|
|
|
|
cmCommandArgument_yylex_init(&yyscanner);
|
|
|
|
cmCommandArgument_yyset_extra(this, yyscanner);
|
2007-06-04 23:57:33 +04:00
|
|
|
cmCommandArgument_SetupEscapes(yyscanner, this->NoEscapeMode);
|
2005-06-08 18:41:05 +04:00
|
|
|
int res = cmCommandArgument_yyparse(yyscanner);
|
|
|
|
cmCommandArgument_yylex_destroy(yyscanner);
|
|
|
|
if ( res != 0 )
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
this->CleanupParser();
|
|
|
|
|
|
|
|
if ( Verbose )
|
|
|
|
{
|
2012-08-13 21:42:58 +04:00
|
|
|
std::cerr << "Expanding [" << str << "] produced: ["
|
2006-05-10 22:15:15 +04:00
|
|
|
<< this->Result.c_str() << "]" << std::endl;
|
2005-06-08 18:41:05 +04:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmCommandArgumentParserHelper::CleanupParser()
|
|
|
|
{
|
2005-06-14 23:49:30 +04:00
|
|
|
std::vector<char*>::iterator sit;
|
2006-03-15 19:02:08 +03:00
|
|
|
for ( sit = this->Variables.begin();
|
|
|
|
sit != this->Variables.end();
|
2005-06-08 18:41:05 +04:00
|
|
|
++ sit )
|
|
|
|
{
|
|
|
|
delete [] *sit;
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Variables.erase(this->Variables.begin(), this->Variables.end());
|
2005-06-08 18:41:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int cmCommandArgumentParserHelper::LexInput(char* buf, int maxlen)
|
|
|
|
{
|
|
|
|
if ( maxlen < 1 )
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if ( this->InputBufferPos < this->InputBuffer.size() )
|
|
|
|
{
|
|
|
|
buf[0] = this->InputBuffer[ this->InputBufferPos++ ];
|
|
|
|
if ( buf[0] == '\n' )
|
|
|
|
{
|
|
|
|
this->CurrentLine ++;
|
|
|
|
}
|
|
|
|
return(1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
buf[0] = '\n';
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
}
|
2005-06-14 23:49:30 +04:00
|
|
|
|
2005-06-08 18:41:05 +04:00
|
|
|
void cmCommandArgumentParserHelper::Error(const char* str)
|
|
|
|
{
|
|
|
|
unsigned long pos = static_cast<unsigned long>(this->InputBufferPos);
|
2005-06-13 18:00:59 +04:00
|
|
|
cmOStringStream ostr;
|
|
|
|
ostr << str << " (" << pos << ")";
|
2008-09-24 16:51:19 +04:00
|
|
|
this->SetError(ostr.str());
|
2005-06-08 18:41:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmCommandArgumentParserHelper::SetMakefile(const cmMakefile* mf)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile = mf;
|
2010-08-25 20:35:40 +04:00
|
|
|
this->WarnUninitialized = mf->GetCMakeInstance()->GetWarnUninitialized();
|
2010-09-01 19:24:20 +04:00
|
|
|
this->CheckSystemVars = mf->GetCMakeInstance()->GetCheckSystemVars();
|
2005-06-08 18:41:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmCommandArgumentParserHelper::SetResult(const char* value)
|
|
|
|
{
|
|
|
|
if ( !value )
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Result = "";
|
2005-06-08 18:41:05 +04:00
|
|
|
return;
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Result = value;
|
2005-06-08 18:41:05 +04:00
|
|
|
}
|
|
|
|
|
2008-09-24 16:51:19 +04:00
|
|
|
void cmCommandArgumentParserHelper::SetError(std::string const& msg)
|
|
|
|
{
|
|
|
|
// Keep only the first error.
|
|
|
|
if(this->ErrorString.empty())
|
|
|
|
{
|
|
|
|
this->ErrorString = msg;
|
|
|
|
}
|
|
|
|
}
|