Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
isolate_name_server.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
5#include "flutter/lib/ui/isolate_name_server/isolate_name_server.h"
6
7namespace flutter {
8
10
12
14 std::scoped_lock lock(mutex_);
15 return LookupIsolatePortByNameUnprotected(name);
16}
17
18Dart_Port IsolateNameServer::LookupIsolatePortByNameUnprotected(
19 const std::string& name) {
20 auto port_iterator = port_mapping_.find(name);
21 if (port_iterator != port_mapping_.end()) {
22 return port_iterator->second;
23 }
24 return ILLEGAL_PORT;
25}
26
28 const std::string& name) {
29 std::scoped_lock lock(mutex_);
30 if (LookupIsolatePortByNameUnprotected(name) != ILLEGAL_PORT) {
31 // Name is already registered.
32 return false;
33 }
34 port_mapping_[name] = port;
35 return true;
36}
37
39 std::scoped_lock lock(mutex_);
40 auto port_iterator = port_mapping_.find(name);
41 if (port_iterator == port_mapping_.end()) {
42 return false;
43 }
44 port_mapping_.erase(port_iterator);
45 return true;
46}
47
48} // namespace flutter
Dart_Port LookupIsolatePortByName(const std::string &name)
bool RemoveIsolateNameMapping(const std::string &name)
bool RegisterIsolatePortWithName(Dart_Port port, const std::string &name)
#define ILLEGAL_PORT
Definition dart_api.h:1530
int64_t Dart_Port
Definition dart_api.h:1524
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 port
Definition switches.h:87
DEF_SWITCHES_START aot vmservice shared library name
Definition switches.h:32