blob: 39221c15cbc4dc38673683a2d1ed1c82d756b857 [file] [log] [blame]
evan@chromium.orgda642ae2009-04-21 09:56:07 +09001// Copyright (c) 2009 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "base/native_library.h"
6
7#include <dlfcn.h>
8
9#include "base/file_path.h"
10#include "base/logging.h"
jcampan@chromium.orgd9e2be82009-06-06 07:18:09 +090011#include "base/string_util.h"
evan@chromium.orgda642ae2009-04-21 09:56:07 +090012
13namespace base {
14
15// static
16NativeLibrary LoadNativeLibrary(const FilePath& library_path) {
evan@chromium.org96611482009-05-19 00:54:50 +090017 void* dl = dlopen(library_path.value().c_str(), RTLD_LAZY|RTLD_DEEPBIND);
evan@chromium.orgda642ae2009-04-21 09:56:07 +090018 if (!dl)
19 NOTREACHED() << "dlopen failed: " << dlerror();
20
21 return dl;
22}
23
24// static
25void UnloadNativeLibrary(NativeLibrary library) {
26 int ret = dlclose(library);
27 if (ret < 0)
28 NOTREACHED() << "dlclose failed: " << dlerror();
29}
30
31// static
32void* GetFunctionPointerFromNativeLibrary(NativeLibrary library,
jcampan@chromium.orgd9e2be82009-06-06 07:18:09 +090033 const char* name) {
evan@chromium.orgda642ae2009-04-21 09:56:07 +090034 return dlsym(library, name);
35}
36
jcampan@chromium.orgd9e2be82009-06-06 07:18:09 +090037// static
38string16 GetNativeLibraryName(const string16& name) {
39 return ASCIIToUTF16("lib") + name + ASCIIToUTF16(".so");
40}
41
evan@chromium.orgda642ae2009-04-21 09:56:07 +090042} // namespace base