forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fl_platform_channel.cc
347 lines (288 loc) · 13.3 KB
/
fl_platform_channel.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "flutter/shell/platform/linux/fl_platform_channel.h"
#include <cstring>
#include "flutter/shell/platform/linux/public/flutter_linux/fl_json_method_codec.h"
#include "flutter/shell/platform/linux/public/flutter_linux/fl_method_channel.h"
static constexpr char kChannelName[] = "flutter/platform";
static constexpr char kBadArgumentsError[] = "Bad Arguments";
static constexpr char kGetClipboardDataMethod[] = "Clipboard.getData";
static constexpr char kSetClipboardDataMethod[] = "Clipboard.setData";
static constexpr char kClipboardHasStringsMethod[] = "Clipboard.hasStrings";
static constexpr char kExitApplicationMethod[] = "System.exitApplication";
static constexpr char kRequestAppExitMethod[] = "System.requestAppExit";
static constexpr char kInitializationCompleteMethod[] =
"System.initializationComplete";
static constexpr char kPlaySoundMethod[] = "SystemSound.play";
static constexpr char kSystemNavigatorPopMethod[] = "SystemNavigator.pop";
static constexpr char kTextKey[] = "text";
static constexpr char kValueKey[] = "value";
static constexpr char kExitTypeKey[] = "type";
static constexpr char kExitTypeCancelable[] = "cancelable";
static constexpr char kExitTypeRequired[] = "required";
static constexpr char kExitResponseKey[] = "response";
static constexpr char kExitResponseCancel[] = "cancel";
static constexpr char kExitResponseExit[] = "exit";
struct _FlPlatformChannel {
GObject parent_instance;
FlMethodChannel* channel;
// Handlers for incoming method calls.
FlPlatformChannelVTable* vtable;
// User data to pass to method call handlers.
gpointer user_data;
};
G_DEFINE_TYPE(FlPlatformChannel, fl_platform_channel, G_TYPE_OBJECT)
static FlMethodResponse* clipboard_set_data(FlPlatformChannel* self,
FlMethodCall* method_call) {
FlValue* args = fl_method_call_get_args(method_call);
if (fl_value_get_type(args) != FL_VALUE_TYPE_MAP) {
return FL_METHOD_RESPONSE(fl_method_error_response_new(
kBadArgumentsError, "Argument map missing or malformed", nullptr));
}
FlValue* text_value = fl_value_lookup_string(args, kTextKey);
if (text_value == nullptr ||
fl_value_get_type(text_value) != FL_VALUE_TYPE_STRING) {
return FL_METHOD_RESPONSE(fl_method_error_response_new(
kBadArgumentsError, "Missing clipboard text", nullptr));
}
const gchar* text = fl_value_get_string(text_value);
return self->vtable->clipboard_set_data(method_call, text, self->user_data);
}
static FlMethodResponse* clipboard_get_data(FlPlatformChannel* self,
FlMethodCall* method_call) {
FlValue* args = fl_method_call_get_args(method_call);
if (fl_value_get_type(args) != FL_VALUE_TYPE_STRING) {
return FL_METHOD_RESPONSE(fl_method_error_response_new(
kBadArgumentsError, "Expected string", nullptr));
}
const gchar* format = fl_value_get_string(args);
return self->vtable->clipboard_get_data(method_call, format, self->user_data);
}
static FlMethodResponse* clipboard_has_strings(FlPlatformChannel* self,
FlMethodCall* method_call) {
return self->vtable->clipboard_has_strings(method_call, self->user_data);
}
// Get the exit response from a System.requestAppExit method call.
FlPlatformChannelExitResponse get_exit_response(FlMethodResponse* response) {
if (response == nullptr) {
return FL_PLATFORM_CHANNEL_EXIT_RESPONSE_EXIT;
}
g_autoptr(GError) error = nullptr;
FlValue* result = fl_method_response_get_result(response, &error);
if (result == nullptr) {
g_warning("Error returned from System.requestAppExit: %s", error->message);
return FL_PLATFORM_CHANNEL_EXIT_RESPONSE_EXIT;
}
if (fl_value_get_type(result) != FL_VALUE_TYPE_MAP) {
g_warning("System.requestAppExit result argument map missing or malformed");
return FL_PLATFORM_CHANNEL_EXIT_RESPONSE_EXIT;
}
FlValue* response_value = fl_value_lookup_string(result, kExitResponseKey);
if (fl_value_get_type(response_value) != FL_VALUE_TYPE_STRING) {
g_warning("Invalid response from System.requestAppExit");
return FL_PLATFORM_CHANNEL_EXIT_RESPONSE_EXIT;
}
const char* response_string = fl_value_get_string(response_value);
if (strcmp(response_string, kExitResponseCancel) == 0) {
return FL_PLATFORM_CHANNEL_EXIT_RESPONSE_CANCEL;
} else if (strcmp(response_string, kExitResponseExit) == 0) {
return FL_PLATFORM_CHANNEL_EXIT_RESPONSE_EXIT;
}
// If something went wrong, then just exit.
return FL_PLATFORM_CHANNEL_EXIT_RESPONSE_EXIT;
}
static FlMethodResponse* system_exit_application(FlPlatformChannel* self,
FlMethodCall* method_call) {
FlValue* args = fl_method_call_get_args(method_call);
if (fl_value_get_type(args) != FL_VALUE_TYPE_MAP) {
return FL_METHOD_RESPONSE(fl_method_error_response_new(
kBadArgumentsError, "Argument map missing or malformed", nullptr));
}
FlValue* type_value = fl_value_lookup_string(args, kExitTypeKey);
if (type_value == nullptr ||
fl_value_get_type(type_value) != FL_VALUE_TYPE_STRING) {
return FL_METHOD_RESPONSE(fl_method_error_response_new(
kBadArgumentsError, "Missing type argument", nullptr));
}
const char* type_string = fl_value_get_string(type_value);
FlPlatformChannelExitType type;
if (strcmp(type_string, kExitTypeCancelable) == 0) {
type = FL_PLATFORM_CHANNEL_EXIT_TYPE_CANCELABLE;
} else if (strcmp(type_string, kExitTypeRequired) == 0) {
type = FL_PLATFORM_CHANNEL_EXIT_TYPE_REQUIRED;
} else {
return FL_METHOD_RESPONSE(fl_method_error_response_new(
kBadArgumentsError, "Invalid exit type", nullptr));
}
return self->vtable->system_exit_application(method_call, type,
self->user_data);
}
static FlMethodResponse* system_initialization_complete(
FlPlatformChannel* self) {
self->vtable->system_initialization_complete(self->user_data);
return FL_METHOD_RESPONSE(fl_method_success_response_new(nullptr));
}
static FlMethodResponse* system_sound_play(FlPlatformChannel* self,
FlValue* args) {
if (fl_value_get_type(args) != FL_VALUE_TYPE_STRING) {
return FL_METHOD_RESPONSE(fl_method_error_response_new(
kBadArgumentsError, "Expected string", nullptr));
}
const gchar* type = fl_value_get_string(args);
self->vtable->system_sound_play(type, self->user_data);
return FL_METHOD_RESPONSE(fl_method_success_response_new(nullptr));
}
static FlMethodResponse* system_navigator_pop(FlPlatformChannel* self) {
self->vtable->system_navigator_pop(self->user_data);
return FL_METHOD_RESPONSE(fl_method_success_response_new(nullptr));
}
static void method_call_cb(FlMethodChannel* channel,
FlMethodCall* method_call,
gpointer user_data) {
FlPlatformChannel* self = FL_PLATFORM_CHANNEL(user_data);
const gchar* method = fl_method_call_get_name(method_call);
FlValue* args = fl_method_call_get_args(method_call);
g_autoptr(FlMethodResponse) response = nullptr;
if (strcmp(method, kSetClipboardDataMethod) == 0) {
response = clipboard_set_data(self, method_call);
} else if (strcmp(method, kGetClipboardDataMethod) == 0) {
response = clipboard_get_data(self, method_call);
} else if (strcmp(method, kClipboardHasStringsMethod) == 0) {
response = clipboard_has_strings(self, method_call);
} else if (strcmp(method, kExitApplicationMethod) == 0) {
response = system_exit_application(self, method_call);
} else if (strcmp(method, kInitializationCompleteMethod) == 0) {
response = system_initialization_complete(self);
} else if (strcmp(method, kPlaySoundMethod) == 0) {
response = system_sound_play(self, args);
} else if (strcmp(method, kSystemNavigatorPopMethod) == 0) {
response = system_navigator_pop(self);
} else {
response = FL_METHOD_RESPONSE(fl_method_not_implemented_response_new());
}
if (response != nullptr) {
g_autoptr(GError) error = nullptr;
if (!fl_method_call_respond(method_call, response, &error)) {
g_warning("Failed to send method call response: %s", error->message);
}
}
}
static void fl_platform_channel_dispose(GObject* object) {
FlPlatformChannel* self = FL_PLATFORM_CHANNEL(object);
g_clear_object(&self->channel);
G_OBJECT_CLASS(fl_platform_channel_parent_class)->dispose(object);
}
static void fl_platform_channel_class_init(FlPlatformChannelClass* klass) {
G_OBJECT_CLASS(klass)->dispose = fl_platform_channel_dispose;
}
static void fl_platform_channel_init(FlPlatformChannel* self) {}
FlPlatformChannel* fl_platform_channel_new(FlBinaryMessenger* messenger,
FlPlatformChannelVTable* vtable,
gpointer user_data) {
g_return_val_if_fail(FL_IS_BINARY_MESSENGER(messenger), nullptr);
g_return_val_if_fail(vtable != nullptr, nullptr);
FlPlatformChannel* self = FL_PLATFORM_CHANNEL(
g_object_new(fl_platform_channel_get_type(), nullptr));
self->vtable = vtable;
self->user_data = user_data;
g_autoptr(FlJsonMethodCodec) codec = fl_json_method_codec_new();
self->channel =
fl_method_channel_new(messenger, kChannelName, FL_METHOD_CODEC(codec));
fl_method_channel_set_method_call_handler(self->channel, method_call_cb, self,
nullptr);
return self;
}
void fl_platform_channel_system_request_app_exit(FlPlatformChannel* self,
FlPlatformChannelExitType type,
GCancellable* cancellable,
GAsyncReadyCallback callback,
gpointer user_data) {
g_return_if_fail(FL_IS_PLATFORM_CHANNEL(self));
g_autoptr(FlValue) args = fl_value_new_map();
const gchar* type_string;
switch (type) {
case FL_PLATFORM_CHANNEL_EXIT_TYPE_CANCELABLE:
type_string = kExitTypeCancelable;
break;
case FL_PLATFORM_CHANNEL_EXIT_TYPE_REQUIRED:
type_string = kExitTypeRequired;
break;
default:
g_assert_not_reached();
}
fl_value_set_string_take(args, kExitTypeKey,
fl_value_new_string(type_string));
fl_method_channel_invoke_method(self->channel, kRequestAppExitMethod, args,
cancellable, callback, user_data);
}
gboolean fl_platform_channel_system_request_app_exit_finish(
GObject* object,
GAsyncResult* result,
FlPlatformChannelExitResponse* exit_response,
GError** error) {
g_autoptr(FlMethodResponse) response = fl_method_channel_invoke_method_finish(
FL_METHOD_CHANNEL(object), result, error);
if (response == nullptr) {
return FALSE;
}
*exit_response = get_exit_response(response);
return TRUE;
}
void fl_platform_channel_respond_clipboard_get_data(FlMethodCall* method_call,
const gchar* text) {
g_autoptr(FlValue) result = nullptr;
if (text != nullptr) {
result = fl_value_new_map();
fl_value_set_string_take(result, kTextKey, fl_value_new_string(text));
}
g_autoptr(FlMethodResponse) response =
FL_METHOD_RESPONSE(fl_method_success_response_new(result));
g_autoptr(GError) error = nullptr;
if (!fl_method_call_respond(method_call, response, &error)) {
g_warning("Failed to send response to %s: %s", kGetClipboardDataMethod,
error->message);
}
}
void fl_platform_channel_respond_clipboard_has_strings(
FlMethodCall* method_call,
gboolean has_strings) {
g_autoptr(FlValue) result = fl_value_new_map();
fl_value_set_string_take(result, kValueKey, fl_value_new_bool(has_strings));
g_autoptr(FlMethodResponse) response =
FL_METHOD_RESPONSE(fl_method_success_response_new(result));
g_autoptr(GError) error = nullptr;
if (!fl_method_call_respond(method_call, response, &error)) {
g_warning("Failed to send response to %s: %s", kClipboardHasStringsMethod,
error->message);
}
}
void fl_platform_channel_respond_system_exit_application(
FlMethodCall* method_call,
FlPlatformChannelExitResponse exit_response) {
g_autoptr(FlMethodResponse) response =
fl_platform_channel_make_system_request_app_exit_response(exit_response);
g_autoptr(GError) error = nullptr;
if (!fl_method_call_respond(method_call, response, &error)) {
g_warning("Failed to send response to System.exitApplication: %s",
error->message);
}
}
FlMethodResponse* fl_platform_channel_make_system_request_app_exit_response(
FlPlatformChannelExitResponse exit_response) {
g_autoptr(FlValue) exit_result = fl_value_new_map();
const gchar* exit_response_string;
switch (exit_response) {
case FL_PLATFORM_CHANNEL_EXIT_RESPONSE_CANCEL:
exit_response_string = kExitResponseCancel;
break;
case FL_PLATFORM_CHANNEL_EXIT_RESPONSE_EXIT:
exit_response_string = kExitResponseExit;
break;
default:
g_assert_not_reached();
}
fl_value_set_string_take(exit_result, kExitResponseKey,
fl_value_new_string(exit_response_string));
return FL_METHOD_RESPONSE(fl_method_success_response_new(exit_result));
}