summaryrefslogtreecommitdiff
path: root/support/lib/Support/PluginLoader.cpp
blob: 76c5e8197df4bbd00294760026fb18aa1138ca30 (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
//===-- PluginLoader.cpp - Implement -load command line option ------------===//
//
// This file implements the -load <plugin> command line option processor.  When
// linked into a program, this new command line option is available that allows
// users to load shared objects into the running program.
//
// Note that there are no symbols exported by the .o file generated for this
// .cpp file.  Because of this, a program must link against support.o instead of
// support.a: otherwise this translation unit will not be included.
//
//===----------------------------------------------------------------------===//

#include "Support/CommandLine.h"
#include "Config/dlfcn.h"
#include "Config/link.h"
#include <iostream>

namespace {
  struct PluginLoader {
    void operator=(const std::string &Filename) {
      if (dlopen(Filename.c_str(), RTLD_NOW|RTLD_GLOBAL) == 0)
        std::cerr << "Error opening '" << Filename << "': " << dlerror()
                  << "\n  -load request ignored.\n";
    }
  };
}

// This causes operator= above to be invoked for every -load option.
static cl::opt<PluginLoader, false, cl::parser<std::string> >
LoadOpt("load", cl::ZeroOrMore, cl::value_desc("plugin.so"),
        cl::desc("Load the specified plugin"));