| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 VM_DART_API_IMPL_H_ | 5 #ifndef VM_DART_API_IMPL_H_ |
| 6 #define VM_DART_API_IMPL_H_ | 6 #define VM_DART_API_IMPL_H_ |
| 7 | 7 |
| 8 #include "vm/allocation.h" | 8 #include "vm/allocation.h" |
| 9 | 9 |
| 10 namespace dart { | 10 namespace dart { |
| 11 | 11 |
| 12 class ApiState; | 12 class ApiState; |
| 13 class LocalHandle; | 13 class LocalHandle; |
| 14 class Object; | 14 class Object; |
| 15 class PersistentHandle; | 15 class PersistentHandle; |
| 16 class RawObject; | 16 class RawObject; |
| 17 | 17 |
| 18 class Api : AllStatic { | 18 class Api : AllStatic { |
| 19 public: | 19 public: |
| 20 // Create new local handles. | 20 // Creates a new local handle. |
| 21 static Dart_Handle NewLocalHandle(const Object& object); | 21 static Dart_Handle NewLocalHandle(const Object& object); |
| 22 | 22 |
| 23 // Unwrap the raw object from the handle. | 23 // Unwraps the raw object from the handle. |
| 24 static RawObject* UnwrapHandle(Dart_Handle object); | 24 static RawObject* UnwrapHandle(Dart_Handle object); |
| 25 | 25 |
| 26 // Validate and convert the passed in handle as a local handle. | 26 // Validates and converts the passed in handle as a local handle. |
| 27 static LocalHandle* UnwrapAsLocalHandle(const ApiState& state, | 27 static LocalHandle* UnwrapAsLocalHandle(const ApiState& state, |
| 28 Dart_Handle object); | 28 Dart_Handle object); |
| 29 | 29 |
| 30 // Validate and convert the passed in handle as a persistent handle. | 30 // Validates and converts the passed in handle as a persistent handle. |
| 31 static PersistentHandle* UnwrapAsPersistentHandle(const ApiState& state, | 31 static PersistentHandle* UnwrapAsPersistentHandle(const ApiState& state, |
| 32 Dart_Handle object); | 32 Dart_Handle object); |
| 33 | 33 |
| 34 // Get the handle used to designate successful return. | 34 // Gets the handle used to designate successful return. |
| 35 static Dart_Handle Success(); | 35 static Dart_Handle Success(); |
| 36 | 36 |
| 37 // Generate a handle used to designate an error return. | 37 // Generates a handle used to designate an error return. |
| 38 static Dart_Handle Error(const char* msg); | 38 static Dart_Handle Error(const char* format, ...); |
| 39 | 39 |
| 40 // Get a handle to Null. | 40 static Dart_Handle VError(const char* format, va_list args); |
| 41 |
| 42 // Gets a handle to Null. |
| 41 static Dart_Handle Null(); | 43 static Dart_Handle Null(); |
| 42 | 44 |
| 43 // Get a handle to True. | 45 // Gets a handle to True. |
| 44 static Dart_Handle True(); | 46 static Dart_Handle True(); |
| 45 | 47 |
| 46 // Get a handle to False | 48 // Gets a handle to False |
| 47 static Dart_Handle False(); | 49 static Dart_Handle False(); |
| 48 | 50 |
| 49 // Allocate space in the local zone. | 51 // Allocates space in the local zone. |
| 50 static uword Allocate(intptr_t size); | 52 static uword Allocate(intptr_t size); |
| 51 | 53 |
| 52 // Reallocate space in the local zone. | 54 // Reallocates space in the local zone. |
| 53 static uword Reallocate(uword ptr, intptr_t old_size, intptr_t new_size); | 55 static uword Reallocate(uword ptr, intptr_t old_size, intptr_t new_size); |
| 54 }; | 56 }; |
| 55 | 57 |
| 56 } // namespace dart. | 58 } // namespace dart. |
| 57 | 59 |
| 58 #endif // VM_DART_API_IMPL_H_ | 60 #endif // VM_DART_API_IMPL_H_ |
| OLD | NEW |