2004-08-19 21:17:53 +00:00
|
|
|
//===- Configuration.h - Configuration Data Mgmt ----------------*- C++ -*-===//
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2004-08-13 20:21:22 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:44:31 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2004-08-13 20:21:22 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file declares the LLVMC_ConfigDataProvider class which implements the
|
|
|
|
// generation of ConfigData objects for the CompilerDriver.
|
|
|
|
//
|
2006-05-29 18:52:05 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-08-13 20:21:22 +00:00
|
|
|
#ifndef LLVM_TOOLS_LLVMC_CONFIGDATA_H
|
|
|
|
#define LLVM_TOOLS_LLVMC_CONFIGDATA_H
|
|
|
|
|
2008-02-20 11:28:26 +00:00
|
|
|
#include "llvm/ADT/StringMap.h"
|
2004-08-13 20:21:22 +00:00
|
|
|
#include "CompilerDriver.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
/// This class provides the high level interface to the LLVM Compiler Driver.
|
|
|
|
/// The driver's purpose is to make it easier for compiler writers and users
|
|
|
|
/// of LLVM to utilize the compiler toolkits and LLVM toolset by learning only
|
|
|
|
/// the interface of one program (llvmc).
|
2005-04-22 00:00:37 +00:00
|
|
|
///
|
2004-08-13 20:21:22 +00:00
|
|
|
/// @see llvmc.cpp
|
|
|
|
/// @brief The interface to the LLVM Compiler Driver.
|
|
|
|
class LLVMC_ConfigDataProvider : public CompilerDriver::ConfigDataProvider {
|
|
|
|
/// @name Constructor
|
|
|
|
/// @{
|
|
|
|
public:
|
|
|
|
virtual ~LLVMC_ConfigDataProvider();
|
|
|
|
|
|
|
|
/// @name Methods
|
|
|
|
/// @{
|
|
|
|
public:
|
|
|
|
/// @brief Provide the configuration data to the CompilerDriver.
|
2005-04-22 00:00:37 +00:00
|
|
|
virtual CompilerDriver::ConfigData*
|
2004-08-13 20:21:22 +00:00
|
|
|
ProvideConfigData(const std::string& filetype);
|
|
|
|
|
|
|
|
/// @brief Allow the configuration directory to be set
|
2005-04-22 00:00:37 +00:00
|
|
|
virtual void setConfigDir(const sys::Path& dirName) {
|
|
|
|
configDir = dirName;
|
2004-08-29 19:26:56 +00:00
|
|
|
}
|
2004-08-13 20:21:22 +00:00
|
|
|
|
2004-08-14 09:37:15 +00:00
|
|
|
private:
|
|
|
|
CompilerDriver::ConfigData* ReadConfigData(const std::string& ftype);
|
|
|
|
|
2004-08-13 20:21:22 +00:00
|
|
|
/// @}
|
|
|
|
/// @name Data
|
|
|
|
/// @{
|
|
|
|
private:
|
|
|
|
/// @brief This type is used internally to hold the configuration data.
|
2008-02-20 11:28:26 +00:00
|
|
|
typedef StringMap<CompilerDriver::ConfigData*> ConfigDataMap;
|
2004-08-13 20:21:22 +00:00
|
|
|
ConfigDataMap Configurations; ///< The cache of configurations
|
2004-08-29 19:26:56 +00:00
|
|
|
sys::Path configDir;
|
2004-08-13 20:21:22 +00:00
|
|
|
/// @}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|