2009-06-02 17:52:33 +00:00
|
|
|
//===-- PluginLoader.cpp - Implement -load command line option ------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the -load <plugin> command line option handler.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#define DONT_GET_PLUGIN_LOADER_OPTION
|
|
|
|
#include "llvm/Support/PluginLoader.h"
|
2011-02-20 12:57:14 +00:00
|
|
|
#include "llvm/Support/DynamicLibrary.h"
|
2013-04-08 18:41:23 +00:00
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2011-02-20 12:57:14 +00:00
|
|
|
#include "llvm/Support/Mutex.h"
|
2013-04-08 18:41:23 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2009-06-02 17:52:33 +00:00
|
|
|
#include <vector>
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
static ManagedStatic<std::vector<std::string> > Plugins;
|
2009-06-23 14:50:01 +00:00
|
|
|
static ManagedStatic<sys::SmartMutex<true> > PluginsLock;
|
2009-06-02 17:52:33 +00:00
|
|
|
|
|
|
|
void PluginLoader::operator=(const std::string &Filename) {
|
2009-10-14 17:57:32 +00:00
|
|
|
sys::SmartScopedLock<true> Lock(*PluginsLock);
|
2009-06-02 17:52:33 +00:00
|
|
|
std::string Error;
|
|
|
|
if (sys::DynamicLibrary::LoadLibraryPermanently(Filename.c_str(), &Error)) {
|
2009-10-14 17:57:32 +00:00
|
|
|
errs() << "Error opening '" << Filename << "': " << Error
|
|
|
|
<< "\n -load request ignored.\n";
|
2009-06-02 17:52:33 +00:00
|
|
|
} else {
|
|
|
|
Plugins->push_back(Filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned PluginLoader::getNumPlugins() {
|
2009-10-14 17:57:32 +00:00
|
|
|
sys::SmartScopedLock<true> Lock(*PluginsLock);
|
2009-06-02 17:52:33 +00:00
|
|
|
return Plugins.isConstructed() ? Plugins->size() : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string &PluginLoader::getPlugin(unsigned num) {
|
2009-10-14 17:57:32 +00:00
|
|
|
sys::SmartScopedLock<true> Lock(*PluginsLock);
|
2009-06-02 17:52:33 +00:00
|
|
|
assert(Plugins.isConstructed() && num < Plugins->size() &&
|
|
|
|
"Asking for an out of bounds plugin");
|
|
|
|
return (*Plugins)[num];
|
|
|
|
}
|