Flutter Engine
The Flutter Engine
typed_list.cc
Go to the documentation of this file.
1// Copyright 2013 The Flutter 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
6
7#include <cstring>
8
10
11namespace tonic {
12
13template <Dart_TypedData_Type kTypeName, typename ElemType>
15 : data_(nullptr), num_elements_(0), dart_handle_(nullptr) {}
16
17template <Dart_TypedData_Type kTypeName, typename ElemType>
19 : data_(nullptr), num_elements_(0), dart_handle_(list) {
20 if (Dart_IsNull(list))
21 return;
22
24 Dart_TypedDataAcquireData(list, &type, reinterpret_cast<void**>(&data_),
25 &num_elements_);
27 if (type != kTypeName)
28 Dart_ThrowException(ToDart("Non-genuine TypedData passed to engine."));
29}
30
31template <Dart_TypedData_Type kTypeName, typename ElemType>
34 : data_(other.data_),
35 num_elements_(other.num_elements_),
36 dart_handle_(other.dart_handle_) {
37 other.data_ = nullptr;
38 other.num_elements_ = 0;
39 other.dart_handle_ = nullptr;
40}
41
42template <Dart_TypedData_Type kTypeName, typename ElemType>
44 Release();
45}
46
47template <Dart_TypedData_Type kTypeName, typename ElemType>
49 if (data_) {
50 Dart_TypedDataReleaseData(dart_handle_);
51 data_ = nullptr;
52 num_elements_ = 0;
53 dart_handle_ = nullptr;
54 }
55}
56
57template <Dart_TypedData_Type kTypeName, typename ElemType>
61 int index,
62 Dart_Handle& exception) {
66}
67
68template <Dart_TypedData_Type kTypeName, typename ElemType>
73 val.Release(); // Must release acquired typed data before calling Dart API.
75}
76
77template <Dart_TypedData_Type kTypeName, typename ElemType>
79 const ElemType* buffer,
80 unsigned int length) {
81 const intptr_t buffer_length = static_cast<intptr_t>(length);
82 Dart_Handle array = Dart_NewTypedData(kTypeName, buffer_length);
84 {
86 void* data = nullptr;
87 intptr_t data_length = 0;
88 Dart_TypedDataAcquireData(array, &type, &data, &data_length);
89 TONIC_CHECK(type == kTypeName);
91 TONIC_CHECK(data_length == buffer_length);
92 std::memmove(data, buffer, data_length * sizeof(ElemType));
94 }
95 return array;
96}
97
98#define TONIC_TYPED_DATA_DEFINE(name, type) \
99 template class TypedList<Dart_TypedData_k##name, type>; \
100 template struct DartConverter<name##List>;
101
103
104#undef TONIC_TYPED_DATA_DEFINE
105
106} // namespace tonic
GLenum type
Dart_Handle dart_handle() const
Definition: typed_list.h:42
struct _Dart_Handle * Dart_Handle
Definition: dart_api.h:258
DART_EXPORT Dart_Handle Dart_TypedDataReleaseData(Dart_Handle object)
DART_EXPORT Dart_Handle Dart_GetNativeArgument(Dart_NativeArguments args, int index)
DART_EXPORT Dart_Handle Dart_TypedDataAcquireData(Dart_Handle object, Dart_TypedData_Type *type, void **data, intptr_t *len)
DART_EXPORT Dart_Handle Dart_ThrowException(Dart_Handle exception)
struct _Dart_NativeArguments * Dart_NativeArguments
Definition: dart_api.h:3019
Dart_TypedData_Type
Definition: dart_api.h:2612
DART_EXPORT Dart_Handle Dart_NewTypedData(Dart_TypedData_Type type, intptr_t length)
DART_EXPORT void Dart_SetReturnValue(Dart_NativeArguments args, Dart_Handle retval)
DART_EXPORT bool Dart_IsNull(Dart_Handle object)
G_BEGIN_DECLS G_MODULE_EXPORT FlValue * args
GAsyncResult * result
size_t length
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir Path to the cache directory This is different from the persistent_cache_path in embedder which is used for Skia shader cache icu native lib Path to the library file that exports the ICU data vm service The hostname IP address on which the Dart VM Service should be served If not defaults to or::depending on whether ipv6 is specified vm service A custom Dart VM Service port The default is to pick a randomly available open port disable vm Disable the Dart VM Service The Dart VM Service is never available in release mode disable vm service Disable mDNS Dart VM Service publication Bind to the IPv6 localhost address for the Dart VM Service Ignored if vm service host is set endless trace buffer
Definition: switches.h:126
Dart_Handle ToDart(const T &object)
bool CheckAndHandleError(Dart_Handle handle)
Definition: dart_error.cc:33
std::shared_ptr< const fml::Mapping > data
Definition: texture_gles.cc:63
#define TONIC_CHECK(condition)
Definition: macros.h:23
#define TONIC_DCHECK
Definition: macros.h:32
#define TONIC_TYPED_DATA_DEFINE(name, type)
Definition: typed_list.cc:98
#define TONIC_TYPED_DATA_FOREACH(F)
Definition: typed_list.h:77