2000-08-29 23:26:29 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: Insight Segmentation & Registration Toolkit
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2001-04-27 16:01:17 +04:00
|
|
|
Copyright (c) 2001 Insight Consortium
|
|
|
|
All rights reserved.
|
2000-08-29 23:26:29 +04:00
|
|
|
|
2001-04-27 16:01:17 +04:00
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
2000-08-29 23:26:29 +04:00
|
|
|
|
2001-04-27 16:01:17 +04:00
|
|
|
* Redistributions of source code must retain the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer.
|
|
|
|
|
|
|
|
* Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer in the documentation
|
|
|
|
and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
* The name of the Insight Consortium, nor the names of any consortium members,
|
|
|
|
nor of any contributors, may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
* Modified source versions must be plainly marked as such, and must not be
|
|
|
|
misrepresented as being the original software.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS ``AS IS''
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR
|
|
|
|
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2000-08-29 23:26:29 +04:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#ifndef cmMakeDepend_h
|
|
|
|
#define cmMakeDepend_h
|
|
|
|
|
|
|
|
#include "cmMakefile.h"
|
2001-04-25 00:49:12 +04:00
|
|
|
#include "cmSourceFile.h"
|
2000-08-29 23:26:29 +04:00
|
|
|
#include "cmRegularExpression.h"
|
2001-01-05 19:41:20 +03:00
|
|
|
#include "cmStandardIncludes.h"
|
2000-08-29 23:26:29 +04:00
|
|
|
|
2001-01-11 22:47:38 +03:00
|
|
|
/** \class cmDependInformation
|
|
|
|
* \brief Store dependency information for a single source file.
|
|
|
|
*
|
|
|
|
* This structure stores the depend information for a single source file.
|
|
|
|
*/
|
2000-08-29 23:26:29 +04:00
|
|
|
struct cmDependInformation
|
|
|
|
{
|
2001-01-11 22:47:38 +03:00
|
|
|
/**
|
|
|
|
* Construct with dependency generation marked not done; instance
|
|
|
|
* not placed in cmMakefile's list.
|
|
|
|
*/
|
2000-08-29 23:26:29 +04:00
|
|
|
cmDependInformation()
|
|
|
|
{
|
2001-01-11 22:47:38 +03:00
|
|
|
m_DependDone = false;
|
2001-04-11 22:59:02 +04:00
|
|
|
m_ClassFileIndex = 0;
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
2001-01-11 22:47:38 +03:00
|
|
|
|
|
|
|
/**
|
2001-04-16 20:31:56 +04:00
|
|
|
* A set of indices into the m_DependInformation array of cmMakeDepend.
|
2001-01-11 22:47:38 +03:00
|
|
|
* The index represents the files that this file depends on.
|
2001-04-16 20:31:56 +04:00
|
|
|
* This must be a "set" to keep indices unique.
|
2001-01-11 22:47:38 +03:00
|
|
|
*/
|
2001-04-16 20:31:56 +04:00
|
|
|
typedef std::set<int> IndexSet;
|
|
|
|
IndexSet m_IndexSet;
|
2000-08-29 23:26:29 +04:00
|
|
|
|
2001-01-11 22:47:38 +03:00
|
|
|
/**
|
|
|
|
* Full path to this file.
|
|
|
|
*/
|
2000-08-29 23:26:29 +04:00
|
|
|
std::string m_FullPath;
|
|
|
|
|
2001-01-11 22:47:38 +03:00
|
|
|
/**
|
|
|
|
* Name that the include directive uses.
|
|
|
|
*/
|
2000-08-29 23:26:29 +04:00
|
|
|
std::string m_IncludeName;
|
|
|
|
|
2001-01-11 22:47:38 +03:00
|
|
|
/**
|
|
|
|
* The index into the cmMakefile::m_Classes list.
|
2001-04-11 22:59:02 +04:00
|
|
|
* The index value of 0 indicates that it is not in the list.
|
2001-01-11 22:47:38 +03:00
|
|
|
*/
|
2001-04-25 00:49:12 +04:00
|
|
|
cmSourceFile *m_ClassFileIndex;
|
2000-08-29 23:26:29 +04:00
|
|
|
|
2001-01-11 22:47:38 +03:00
|
|
|
/**
|
|
|
|
* This flag indicates whether dependency checking has been
|
|
|
|
* performed for this file.
|
|
|
|
*/
|
2000-08-29 23:26:29 +04:00
|
|
|
bool m_DependDone;
|
|
|
|
|
2001-01-11 22:47:38 +03:00
|
|
|
/**
|
|
|
|
* This method adds the dependencies of another file to this one.
|
|
|
|
*/
|
2000-08-29 23:26:29 +04:00
|
|
|
void MergeInfo(cmDependInformation*);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// cmMakeDepend is used to generate dependancy information for
|
|
|
|
// the classes in a makefile
|
|
|
|
class cmMakeDepend
|
|
|
|
{
|
|
|
|
public:
|
2001-01-11 22:47:38 +03:00
|
|
|
/**
|
|
|
|
* Construct the object with verbose turned off.
|
|
|
|
*/
|
2000-08-29 23:26:29 +04:00
|
|
|
cmMakeDepend();
|
2001-01-11 22:47:38 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Destructor.
|
|
|
|
*/
|
2000-08-29 23:26:29 +04:00
|
|
|
~cmMakeDepend();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the makefile that is used as a source of classes.
|
|
|
|
*/
|
|
|
|
void SetMakefile(cmMakefile* makefile);
|
2001-01-11 22:47:38 +03:00
|
|
|
|
2000-08-29 23:26:29 +04:00
|
|
|
/**
|
|
|
|
* Generate the depend information
|
|
|
|
*/
|
|
|
|
void DoDepends();
|
2001-01-11 22:47:38 +03:00
|
|
|
|
2000-08-29 23:26:29 +04:00
|
|
|
/**
|
2001-01-11 22:47:38 +03:00
|
|
|
* Add a directory to the search path for include files.
|
2000-08-29 23:26:29 +04:00
|
|
|
*/
|
|
|
|
void AddSearchPath(const char*);
|
2001-01-11 22:47:38 +03:00
|
|
|
|
2000-08-29 23:26:29 +04:00
|
|
|
private:
|
2001-01-11 22:47:38 +03:00
|
|
|
/**
|
|
|
|
* Add a source file to the search path.
|
|
|
|
*/
|
2000-08-29 23:26:29 +04:00
|
|
|
void AddFileToSearchPath(const char* filepath);
|
2001-01-11 22:47:38 +03:00
|
|
|
|
2000-08-29 23:26:29 +04:00
|
|
|
/**
|
|
|
|
* Find the index into the m_DependInformation array
|
2001-01-11 22:47:38 +03:00
|
|
|
* that matches the given m_IncludeName.
|
2000-08-29 23:26:29 +04:00
|
|
|
*/
|
|
|
|
int FindInformation(const char* includeName);
|
2001-01-11 22:47:38 +03:00
|
|
|
|
2000-08-29 23:26:29 +04:00
|
|
|
/**
|
2001-01-11 22:47:38 +03:00
|
|
|
* Compute the depend information for this class.
|
2000-08-29 23:26:29 +04:00
|
|
|
*/
|
|
|
|
void Depend(cmDependInformation* info);
|
2001-01-11 22:47:38 +03:00
|
|
|
|
2001-03-09 00:12:16 +03:00
|
|
|
/**
|
|
|
|
* Compute the depend information for this class.
|
|
|
|
*/
|
|
|
|
void DependWalk(cmDependInformation* info, const char* file);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a dependency. Possibly walk it for more dependencies.
|
|
|
|
*/
|
|
|
|
void AddDependency(cmDependInformation* info, const char* file);
|
|
|
|
|
2000-08-29 23:26:29 +04:00
|
|
|
/**
|
|
|
|
* Find the full path name for the given file name.
|
2001-01-11 22:47:38 +03:00
|
|
|
* This uses the include directories.
|
2000-08-29 23:26:29 +04:00
|
|
|
*/
|
|
|
|
std::string FullPath(const char*);
|
2001-01-11 22:47:38 +03:00
|
|
|
|
2000-08-29 23:26:29 +04:00
|
|
|
cmMakefile* m_Makefile;
|
|
|
|
bool m_Verbose;
|
|
|
|
cmRegularExpression m_IncludeFileRegularExpression;
|
|
|
|
typedef std::vector<cmDependInformation*> DependArray;
|
|
|
|
DependArray m_DependInformation;
|
|
|
|
std::vector<std::string> m_IncludeDirectories;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|