| 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. | 24 // Platform-specific implementations. |
| 25 static void* LoadExtensionLibrary(const char* library_file); |
| 26 static void* ResolveSymbol(void* lib_handle, const char* symbol); |
| 27 |
| 28 private: |
| 25 static Dart_Handle LoadExtensionLibrary(const char* library_file, | 29 static Dart_Handle LoadExtensionLibrary(const char* library_file, |
| 26 void** library); | 30 void** library); |
| 27 static Dart_Handle ResolveSymbol(void* lib_handle, | 31 static Dart_Handle ResolveSymbol(void* lib_handle, |
| 28 const char* symbol, | 32 const char* symbol, |
| 29 void** init_func); | 33 void** init_func); |
| 30 | 34 |
| 31 private: | |
| 32 // The returned string must be freed. | 35 // The returned string must be freed. |
| 33 static char* Concatenate(const char** strings); | 36 static char* Concatenate(const char** strings); |
| 34 | 37 |
| 35 DISALLOW_ALLOCATION(); | 38 DISALLOW_ALLOCATION(); |
| 36 DISALLOW_IMPLICIT_CONSTRUCTORS(Extensions); | 39 DISALLOW_IMPLICIT_CONSTRUCTORS(Extensions); |
| 37 }; | 40 }; |
| 38 | 41 |
| 39 } // namespace bin | 42 } // namespace bin |
| 40 } // namespace dart | 43 } // namespace dart |
| 41 | 44 |
| 42 #endif // BIN_EXTENSIONS_H_ | 45 #endif // BIN_EXTENSIONS_H_ |
| OLD | NEW |