2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-08-29 02:28:31 +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.
|
2001-08-29 02:28:31 +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.
|
|
|
|
============================================================================*/
|
2001-08-29 02:28:31 +04:00
|
|
|
#ifndef cmListFileCache_h
|
|
|
|
#define cmListFileCache_h
|
|
|
|
|
|
|
|
#include "cmStandardIncludes.h"
|
|
|
|
|
2015-06-04 21:00:14 +03:00
|
|
|
#include "cmState.h"
|
2014-03-13 01:59:42 +04:00
|
|
|
|
2001-08-29 02:28:31 +04:00
|
|
|
/** \class cmListFileCache
|
|
|
|
* \brief A class to cache list file contents.
|
|
|
|
*
|
|
|
|
* cmListFileCache is a class used to cache the contents of parsed
|
|
|
|
* cmake list files.
|
|
|
|
*/
|
|
|
|
|
2008-03-06 18:57:59 +03:00
|
|
|
class cmMakefile;
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2015-07-04 14:12:50 +03:00
|
|
|
struct cmCommandContext
|
|
|
|
{
|
|
|
|
std::string Name;
|
|
|
|
long Line;
|
|
|
|
cmCommandContext(): Name(), Line(0) {}
|
|
|
|
};
|
|
|
|
|
2002-12-12 02:13:33 +03:00
|
|
|
struct cmListFileArgument
|
|
|
|
{
|
2012-08-06 18:07:58 +04:00
|
|
|
enum Delimiter
|
|
|
|
{
|
|
|
|
Unquoted,
|
2013-08-06 23:58:22 +04:00
|
|
|
Quoted,
|
|
|
|
Bracket
|
2012-08-06 18:07:58 +04:00
|
|
|
};
|
2015-05-24 00:43:37 +03:00
|
|
|
cmListFileArgument(): Value(), Delim(Unquoted), Line(0) {}
|
|
|
|
cmListFileArgument(const cmListFileArgument& r)
|
|
|
|
: Value(r.Value), Delim(r.Delim), Line(r.Line) {}
|
|
|
|
cmListFileArgument(const std::string& v, Delimiter d, long line)
|
|
|
|
: Value(v), Delim(d), Line(line) {}
|
2002-12-12 02:13:33 +03:00
|
|
|
bool operator == (const cmListFileArgument& r) const
|
|
|
|
{
|
2012-08-06 18:07:58 +04:00
|
|
|
return (this->Value == r.Value) && (this->Delim == r.Delim);
|
2002-12-12 02:13:33 +03:00
|
|
|
}
|
2002-12-17 22:55:31 +03:00
|
|
|
bool operator != (const cmListFileArgument& r) const
|
|
|
|
{
|
|
|
|
return !(*this == r);
|
|
|
|
}
|
2002-12-12 02:13:33 +03:00
|
|
|
std::string Value;
|
2012-08-06 18:07:58 +04:00
|
|
|
Delimiter Delim;
|
2004-08-04 18:45:11 +04:00
|
|
|
long Line;
|
2002-12-12 02:13:33 +03:00
|
|
|
};
|
|
|
|
|
2008-03-07 16:40:36 +03:00
|
|
|
struct cmListFileContext
|
2001-08-29 02:28:31 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string Name;
|
2007-05-11 16:36:05 +04:00
|
|
|
std::string FilePath;
|
2006-03-15 19:02:08 +03:00
|
|
|
long Line;
|
2008-10-11 20:02:50 +04:00
|
|
|
cmListFileContext(): Name(), FilePath(), Line(0) {}
|
2015-07-04 14:12:50 +03:00
|
|
|
|
|
|
|
static cmListFileContext FromCommandContext(cmCommandContext const& lfcc,
|
|
|
|
std::string const& fileName)
|
|
|
|
{
|
|
|
|
cmListFileContext lfc;
|
|
|
|
lfc.FilePath = fileName;
|
|
|
|
lfc.Line = lfcc.Line;
|
|
|
|
lfc.Name = lfcc.Name;
|
|
|
|
return lfc;
|
|
|
|
}
|
2001-08-29 02:28:31 +04:00
|
|
|
};
|
|
|
|
|
2008-03-13 20:48:57 +03:00
|
|
|
std::ostream& operator<<(std::ostream&, cmListFileContext const&);
|
2015-05-18 22:44:14 +03:00
|
|
|
bool operator<(const cmListFileContext& lhs, const cmListFileContext& rhs);
|
2015-05-18 22:51:42 +03:00
|
|
|
bool operator==(cmListFileContext const& lhs, cmListFileContext const& rhs);
|
|
|
|
bool operator!=(cmListFileContext const& lhs, cmListFileContext const& rhs);
|
2008-03-13 20:48:57 +03:00
|
|
|
|
2015-07-04 14:12:50 +03:00
|
|
|
struct cmListFileFunction: public cmCommandContext
|
2008-03-07 16:40:36 +03:00
|
|
|
{
|
|
|
|
std::vector<cmListFileArgument> Arguments;
|
|
|
|
};
|
|
|
|
|
2015-05-29 23:37:59 +03:00
|
|
|
class cmListFileBacktrace
|
2014-03-13 01:59:42 +04:00
|
|
|
{
|
|
|
|
public:
|
2015-05-29 23:37:59 +03:00
|
|
|
cmListFileBacktrace(cmState::Snapshot snapshot = cmState::Snapshot(),
|
|
|
|
cmCommandContext const& cc = cmCommandContext())
|
|
|
|
: Context(cc), Snapshot(snapshot)
|
2014-03-13 01:59:42 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-07-09 23:26:51 +03:00
|
|
|
void PrintTitle(std::ostream& out) const;
|
|
|
|
void PrintCallStack(std::ostream& out) const;
|
2014-03-13 01:59:42 +04:00
|
|
|
private:
|
2015-05-29 23:37:59 +03:00
|
|
|
cmCommandContext Context;
|
2015-06-04 21:00:14 +03:00
|
|
|
cmState::Snapshot Snapshot;
|
2014-03-13 01:59:42 +04:00
|
|
|
};
|
2008-03-13 20:48:57 +03:00
|
|
|
|
2001-08-29 02:28:31 +04:00
|
|
|
struct cmListFile
|
|
|
|
{
|
2012-08-13 21:42:58 +04:00
|
|
|
bool ParseFile(const char* path,
|
2008-03-06 18:57:59 +03:00
|
|
|
bool topLevel,
|
|
|
|
cmMakefile *mf);
|
2006-03-15 19:02:08 +03:00
|
|
|
|
|
|
|
std::vector<cmListFileFunction> Functions;
|
2001-08-29 02:28:31 +04:00
|
|
|
};
|
|
|
|
|
2013-02-12 13:35:28 +04:00
|
|
|
struct cmValueWithOrigin {
|
|
|
|
cmValueWithOrigin(const std::string &value,
|
|
|
|
const cmListFileBacktrace &bt)
|
|
|
|
: Value(value), Backtrace(bt)
|
|
|
|
{}
|
|
|
|
std::string Value;
|
|
|
|
cmListFileBacktrace Backtrace;
|
|
|
|
};
|
|
|
|
|
2001-08-29 02:28:31 +04:00
|
|
|
#endif
|