2010-11-09 23:37:51 +03:00
|
|
|
#ifndef CMGRAPHVIZWRITER_H
|
|
|
|
#define CMGRAPHVIZWRITER_H
|
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
|
|
|
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
|
|
|
|
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.
|
|
|
|
============================================================================*/
|
|
|
|
#include "cmStandardIncludes.h"
|
|
|
|
#include "cmLocalGenerator.h"
|
|
|
|
#include "cmGeneratedFileStream.h"
|
2010-11-14 21:30:58 +03:00
|
|
|
#include "cmTarget.h"
|
2010-11-14 21:37:03 +03:00
|
|
|
#include <cmsys/RegularExpression.hxx>
|
2010-11-09 23:37:51 +03:00
|
|
|
|
|
|
|
|
|
|
|
/** This class implements writing files for graphviz (dot) for graphs
|
|
|
|
* representing the dependencies between the targets in the project. */
|
|
|
|
class cmGraphVizWriter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
cmGraphVizWriter(const std::vector<cmLocalGenerator*>& localGenerators);
|
|
|
|
|
|
|
|
void ReadSettings(const char* settingsFileName,
|
|
|
|
const char* fallbackSettingsFileName);
|
|
|
|
|
|
|
|
void WritePerTargetFiles(const char* fileName);
|
2011-02-06 20:34:48 +03:00
|
|
|
void WriteTargetDependersFiles(const char* fileName);
|
2010-11-09 23:37:51 +03:00
|
|
|
|
|
|
|
void WriteGlobalFile(const char* fileName);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2010-11-14 21:37:03 +03:00
|
|
|
void CollectTargetsAndLibs();
|
2010-11-09 23:37:51 +03:00
|
|
|
|
2010-11-14 21:37:03 +03:00
|
|
|
int CollectAllTargets();
|
|
|
|
|
|
|
|
int CollectAllExternalLibs(int cnt);
|
2010-11-09 23:37:51 +03:00
|
|
|
|
|
|
|
void WriteHeader(cmGeneratedFileStream& str) const;
|
|
|
|
|
|
|
|
void WriteConnections(const char* targetName,
|
|
|
|
std::set<std::string>& insertedNodes,
|
|
|
|
std::set<std::string>& insertedConnections,
|
|
|
|
cmGeneratedFileStream& str) const;
|
|
|
|
|
2011-02-06 20:34:48 +03:00
|
|
|
void WriteDependerConnections(const char* targetName,
|
|
|
|
std::set<std::string>& insertedNodes,
|
|
|
|
std::set<std::string>& insertedConnections,
|
|
|
|
cmGeneratedFileStream& str) const;
|
|
|
|
|
2010-11-09 23:37:51 +03:00
|
|
|
void WriteNode(const char* targetName, const cmTarget* target,
|
|
|
|
std::set<std::string>& insertedNodes,
|
|
|
|
cmGeneratedFileStream& str) const;
|
|
|
|
|
|
|
|
void WriteFooter(cmGeneratedFileStream& str) const;
|
|
|
|
|
2010-11-14 21:47:28 +03:00
|
|
|
bool IgnoreThisTarget(const char* name);
|
2010-11-09 23:37:51 +03:00
|
|
|
|
2010-11-14 21:30:58 +03:00
|
|
|
bool GenerateForTargetType(cmTarget::TargetType targetType) const;
|
|
|
|
|
2010-11-09 23:37:51 +03:00
|
|
|
cmStdString GraphType;
|
|
|
|
cmStdString GraphName;
|
|
|
|
cmStdString GraphHeader;
|
|
|
|
cmStdString GraphNodePrefix;
|
|
|
|
|
2010-11-14 21:30:58 +03:00
|
|
|
bool GenerateForExecutables;
|
|
|
|
bool GenerateForStaticLibs;
|
|
|
|
bool GenerateForSharedLibs;
|
|
|
|
bool GenerateForModuleLibs;
|
2011-02-05 20:43:34 +03:00
|
|
|
bool GenerateForExternals;
|
2010-11-14 21:30:58 +03:00
|
|
|
|
2011-02-05 21:09:54 +03:00
|
|
|
std::vector<cmsys::RegularExpression> TargetsToIgnoreRegex;
|
2010-11-14 21:33:12 +03:00
|
|
|
|
2010-11-09 23:37:51 +03:00
|
|
|
const std::vector<cmLocalGenerator*>& LocalGenerators;
|
|
|
|
|
|
|
|
std::map<cmStdString, const cmTarget*> TargetPtrs;
|
|
|
|
// maps from the actual target names to node names in dot:
|
|
|
|
std::map<cmStdString, cmStdString> TargetNamesNodes;
|
|
|
|
|
2010-11-14 21:37:03 +03:00
|
|
|
bool HaveTargetsAndLibs;
|
2010-11-09 23:37:51 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|