blob: d14941332f0fab69a5b305af9ff03b154e58a1d7 [file] [log] [blame]
[email protected]f38e25f2009-04-21 00:56:071// 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"
[email protected]108c2a12009-06-05 22:18:0911#include "base/string_util.h"
[email protected]f38e25f2009-04-21 00:56:0712
13namespace base {
14
15// static
16NativeLibrary LoadNativeLibrary(const FilePath& library_path) {
[email protected]d0001a5d2009-05-18 15:54:5017 void* dl = dlopen(library_path.value().c_str(), RTLD_LAZY|RTLD_DEEPBIND);
[email protected]6dd64352009-06-29 23:36:2218 if (!dl) {
19 LOG(ERROR) << "dlopen failed when trying to open " << library_path.value()
20 << ": " << dlerror();
21 }
[email protected]f38e25f2009-04-21 00:56:0722
23 return dl;
24}
25
26// static
27void UnloadNativeLibrary(NativeLibrary library) {
28 int ret = dlclose(library);
29 if (ret < 0)
30 NOTREACHED() << "dlclose failed: " << dlerror();
31}
32
33// static
34void* GetFunctionPointerFromNativeLibrary(NativeLibrary library,
[email protected]108c2a12009-06-05 22:18:0935 const char* name) {
[email protected]f38e25f2009-04-21 00:56:0736 return dlsym(library, name);
37}
38
[email protected]108c2a12009-06-05 22:18:0939// static
40string16 GetNativeLibraryName(const string16& name) {
41 return ASCIIToUTF16("lib") + name + ASCIIToUTF16(".so");
42}
43
[email protected]f38e25f2009-04-21 00:56:0744} // namespace base