summaryrefslogtreecommitdiff
path: root/lib/Support/PluginLoader.cpp
blob: 94cbec3a933327095047cc365a6d0c4f351fcbe1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//===-- PluginLoader.cpp - Implement -load command line option ------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file was developed by the LLVM research group and 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"
#include "llvm/System/DynamicLibrary.h"
#include <iostream>
#include <vector>

using namespace llvm;

static std::vector<std::string>* plugins;

void PluginLoader::operator=(const std::string &Filename) {
  std::string ErrorMessage;

  if (!plugins)
    plugins = new std::vector<std::string>();

  try {
    sys::DynamicLibrary::LoadLibraryPermanently(Filename.c_str());
    plugins->push_back(Filename);
  } catch (const std::string& errmsg) {
    if (errmsg.empty()) {
      ErrorMessage = "Unknown";
    } else {
      ErrorMessage = errmsg;
    }
  }
  if (!ErrorMessage.empty())
    std::cerr << "Error opening '" << Filename << "': " << ErrorMessage
              << "\n  -load request ignored.\n";
}

unsigned PluginLoader::getNumPlugins()
{
  if(plugins)
    return plugins->size();
  else 
    return 0;
}

std::string& PluginLoader::getPlugin(unsigned num)
{
  assert(plugins && num < plugins->size() && "Asking for an out of bounds plugin");
  return (*plugins)[num];
}