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 #ifndef BIN_EXTENSIONS_H_ | 5 #ifndef BIN_EXTENSIONS_H_ |
6 #define BIN_EXTENSIONS_H_ | 6 #define BIN_EXTENSIONS_H_ |
7 | 7 |
8 #include "include/dart_api.h" | 8 #include "include/dart_api.h" |
9 #include "platform/globals.h" | 9 #include "platform/globals.h" |
10 | 10 |
11 | 11 |
12 namespace dart { | 12 namespace dart { |
13 namespace bin { | 13 namespace bin { |
14 | 14 |
15 class Extensions { | 15 class Extensions { |
16 public: | 16 public: |
17 // TODO(whesse): Make extension load from a relative path relative to | 17 // TODO(whesse): Make extension load from a relative path relative to |
18 // the library it is in. Currently loads from current working directory. | 18 // the library it is in. Currently loads from current working directory. |
19 static Dart_Handle LoadExtension(const char* extension_directory, | 19 static Dart_Handle LoadExtension(const char* extension_directory, |
20 const char* extension_filename, | 20 const char* extension_filename, |
21 const char* extension_name, | 21 const char* extension_name, |
22 Dart_Handle parent_library); | 22 Dart_Handle parent_library); |
23 | 23 |
| 24 // Platform-specific implementations. |
| 25 static void* LoadExtensionLibrary(const char* library_file); |
| 26 static void* ResolveSymbol(void* lib_handle, const char* symbol); |
| 27 |
24 private: | 28 private: |
25 // The returned string must be freed. | 29 // The returned string must be freed. |
26 static char* Concatenate(const char** strings); | 30 static char* Concatenate(const char** strings); |
27 | 31 |
28 // Platform-specific implementations. | |
29 static void* LoadExtensionLibrary(const char* library_file); | |
30 static void* ResolveSymbol(void* lib_handle, const char* symbol); | |
31 | |
32 DISALLOW_ALLOCATION(); | 32 DISALLOW_ALLOCATION(); |
33 DISALLOW_IMPLICIT_CONSTRUCTORS(Extensions); | 33 DISALLOW_IMPLICIT_CONSTRUCTORS(Extensions); |
34 }; | 34 }; |
35 | 35 |
36 } // namespace bin | 36 } // namespace bin |
37 } // namespace dart | 37 } // namespace dart |
38 | 38 |
39 #endif // BIN_EXTENSIONS_H_ | 39 #endif // BIN_EXTENSIONS_H_ |
OLD | NEW |