OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #include <stdio.h> | 5 #include "bin/extensions.h" |
6 #include <dlfcn.h> | 6 #include <dlfcn.h> |
7 | 7 |
8 #include "include/dart_api.h" | 8 void* Extensions::LoadExtensionLibrary(const char* library_name) { |
9 #include "platform/assert.h" | 9 const char* strings[4] = { "./lib", library_name, ".so", NULL }; |
10 #include "platform/globals.h" | 10 char* library_path = Concatenate(strings); |
11 #include "bin/extensions.h" | 11 void* lib_handle = dlopen(library_path, RTLD_LAZY); |
12 #include "bin/dartutils.h" | 12 free(library_path); |
| 13 return lib_handle; |
| 14 } |
13 | 15 |
14 Dart_Handle Extensions::LoadExtension(const char* extension_url, | 16 void* Extensions::ResolveSymbol(void* lib_handle, const char* symbol) { |
15 Dart_Handle parent_library) { | 17 void* result = dlsym(lib_handle, symbol); |
16 // TODO(whesse): Consider making loading extensions lazy, so the | 18 if (dlerror() != NULL) return NULL; |
17 // dynamic library is loaded only when first native function is called. | 19 return result; |
18 ASSERT(DartUtils::IsDartExtensionSchemeURL(extension_url)); | |
19 const char* library_name = | |
20 extension_url + strlen(DartUtils::kDartExtensionScheme); | |
21 if (strchr(library_name, '/') != NULL) { | |
22 return Dart_Error("path components not allowed in extension library name"); | |
23 } | |
24 const int buffer_length = strlen(library_name) + strlen("./lib.so") + 1; | |
25 char* library_path = new char[buffer_length]; | |
26 snprintf(library_path, buffer_length, "./lib%s.so", library_name); | |
27 | |
28 void* lib_handle = dlopen(library_path, RTLD_LAZY); | |
29 if (!lib_handle) { | |
30 delete[] library_path; | |
31 return Dart_Error("cannot find extension library"); | |
32 } | |
33 // Reuse library_path buffer for intialization function name. | |
34 char* library_init_function = library_path; | |
35 snprintf(library_init_function, buffer_length, "%s_Init", library_name); | |
36 typedef Dart_Handle (*InitFunctionType)(Dart_Handle import_map); | |
37 InitFunctionType fn = reinterpret_cast<InitFunctionType>( | |
38 dlsym(lib_handle, library_init_function)); | |
39 delete[] library_path; | |
40 char *error = dlerror(); | |
41 if (error != NULL) { | |
42 return Dart_Error(error); | |
43 } | |
44 return (*fn)(parent_library); | |
45 } | 20 } |
OLD | NEW |