Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
buffer_conversions.mm
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
5#import "flutter/shell/platform/darwin/common/buffer_conversions.h"
6
7#include "flutter/fml/macros.h"
8#include "flutter/fml/platform/darwin/scoped_nsobject.h"
9
10namespace flutter {
11namespace {
12class NSDataMapping : public fml::Mapping {
13 public:
14 explicit NSDataMapping(NSData* data) : data_([data retain]) {}
15
16 size_t GetSize() const override { return [data_.get() length]; }
17
18 const uint8_t* GetMapping() const override {
19 return static_cast<const uint8_t*>([data_.get() bytes]);
20 }
21
22 bool IsDontNeedSafe() const override { return false; }
23
24 private:
26 FML_DISALLOW_COPY_AND_ASSIGN(NSDataMapping);
27};
28} // namespace
29
31 const uint8_t* bytes = static_cast<const uint8_t*>(data.bytes);
32 return fml::MallocMapping::Copy(bytes, data.length);
33}
34
36 size_t size = buffer.GetSize();
37 return [NSData dataWithBytesNoCopy:buffer.Release() length:size];
38}
39
40std::unique_ptr<fml::Mapping> ConvertNSDataToMappingPtr(NSData* data) {
41 return std::make_unique<NSDataMapping>(data);
42}
43
44NSData* CopyMappingPtrToNSData(std::unique_ptr<fml::Mapping> mapping) {
45 return [NSData dataWithBytes:mapping->GetMapping() length:mapping->GetSize()];
46}
47
48} // namespace flutter
A Mapping like NonOwnedMapping, but uses Free as its release proc.
Definition mapping.h:144
static MallocMapping Copy(const T *begin, const T *end)
Definition mapping.h:162
#define FML_DISALLOW_COPY_AND_ASSIGN(TypeName)
Definition macros.h:27
size_t length
NSData * CopyMappingPtrToNSData(std::unique_ptr< fml::Mapping > mapping)
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot data
Definition switches.h:41
fml::MallocMapping CopyNSDataToMapping(NSData *data)
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
std::unique_ptr< fml::Mapping > ConvertNSDataToMappingPtr(NSData *data)
it will be possible to load the file into Perfetto s trace viewer disable asset Prevents usage of any non test fonts unless they were explicitly Loaded via prefetched default font Indicates whether the embedding started a prefetch of the default font manager before creating the engine run In non interactive keep the shell running after the Dart script has completed enable serial On low power devices with low core running concurrent GC tasks on threads can cause them to contend with the UI thread which could potentially lead to jank This option turns off all concurrent GC activities domain network JSON encoded network policy per domain This overrides the DisallowInsecureConnections switch Embedder can specify whether to allow or disallow insecure connections at a domain level old gen heap size
Definition switches.h:259
NSData * ConvertMappingToNSData(fml::MallocMapping buffer)