Flutter Linux Embedder
fl_engine.cc File Reference

Go to the source code of this file.

Classes

struct  _FlEngine
 

Enumerations

enum  {
  SIGNAL_ON_PRE_ENGINE_RESTART ,
  SIGNAL_UPDATE_SEMANTICS ,
  LAST_SIGNAL
}
 

Functions

static void fl_engine_plugin_registry_iface_init (FlPluginRegistryInterface *iface)
 
 G_DEFINE_TYPE_WITH_CODE (FlEngine, fl_engine, G_TYPE_OBJECT, G_IMPLEMENT_INTERFACE(fl_plugin_registry_get_type(), fl_engine_plugin_registry_iface_init)) enum
 
static void parse_locale (const gchar *locale, gchar **language, gchar **territory, gchar **codeset, gchar **modifier)
 
static void view_added_cb (const FlutterAddViewResult *result)
 
static void view_removed_cb (const FlutterRemoveViewResult *result)
 
static void free_locale (FlutterLocale *locale)
 
static void setup_locales (FlEngine *self)
 
static bool create_opengl_backing_store (FlEngine *self, const FlutterBackingStoreConfig *config, FlutterBackingStore *backing_store_out)
 
static bool collect_opengl_backing_store (FlEngine *self, const FlutterBackingStore *backing_store)
 
static bool create_software_backing_store (FlEngine *self, const FlutterBackingStoreConfig *config, FlutterBackingStore *backing_store_out)
 
static bool collect_software_backing_store (FlEngine *self, const FlutterBackingStore *backing_store)
 
static bool compositor_create_backing_store_callback (const FlutterBackingStoreConfig *config, FlutterBackingStore *backing_store_out, void *user_data)
 
static bool compositor_collect_backing_store_callback (const FlutterBackingStore *backing_store, void *user_data)
 
static bool compositor_present_view_callback (const FlutterPresentViewInfo *info)
 
static void * fl_engine_gl_proc_resolver (void *user_data, const char *name)
 
static bool fl_engine_gl_make_current (void *user_data)
 
static bool fl_engine_gl_clear_current (void *user_data)
 
static uint32_t fl_engine_gl_get_fbo (void *user_data)
 
static bool fl_engine_gl_make_resource_current (void *user_data)
 
static bool fl_engine_gl_external_texture_frame_callback (void *user_data, int64_t texture_id, size_t width, size_t height, FlutterOpenGLTexture *opengl_texture)
 
static bool fl_engine_runs_task_on_current_thread (void *user_data)
 
static void fl_engine_post_task (FlutterTask task, uint64_t target_time_nanos, void *user_data)
 
static void fl_engine_platform_message_cb (const FlutterPlatformMessage *message, void *user_data)
 
static void fl_engine_update_semantics_cb (const FlutterSemanticsUpdate2 *update, void *user_data)
 
static void setup_keyboard (FlEngine *self)
 
static void fl_engine_on_pre_engine_restart_cb (void *user_data)
 
static void fl_engine_platform_message_response_cb (const uint8_t *data, size_t data_length, void *user_data)
 
static FlPluginRegistrar * fl_engine_get_registrar_for_plugin (FlPluginRegistry *registry, const gchar *name)
 
static void fl_engine_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
 
static void fl_engine_dispose (GObject *object)
 
static void fl_engine_class_init (FlEngineClass *klass)
 
static void fl_engine_init (FlEngine *self)
 
static FlEngine * fl_engine_new_full (FlDartProject *project, FlBinaryMessenger *binary_messenger)
 
FlEngine * fl_engine_for_id (int64_t id)
 
G_MODULE_EXPORT FlEngine * fl_engine_new (FlDartProject *project)
 
FlEngine * fl_engine_new_with_binary_messenger (FlBinaryMessenger *binary_messenger)
 
G_MODULE_EXPORT FlEngine * fl_engine_new_headless (FlDartProject *project)
 
FlutterRendererType fl_engine_get_renderer_type (FlEngine *self)
 
FlOpenGLManager * fl_engine_get_opengl_manager (FlEngine *self)
 
FlDisplayMonitor * fl_engine_get_display_monitor (FlEngine *self)
 
gboolean fl_engine_start (FlEngine *self, GError **error)
 
FlutterEngineProcTable * fl_engine_get_embedder_api (FlEngine *self)
 
void fl_engine_notify_display_update (FlEngine *self, const FlutterEngineDisplay *displays, size_t displays_length)
 
void fl_engine_set_implicit_view (FlEngine *self, FlRenderable *renderable)
 
FlutterViewId fl_engine_add_view (FlEngine *self, FlRenderable *renderable, size_t width, size_t height, double pixel_ratio, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data)
 
gboolean fl_engine_add_view_finish (FlEngine *self, GAsyncResult *result, GError **error)
 
FlRenderable * fl_engine_get_renderable (FlEngine *self, FlutterViewId view_id)
 
void fl_engine_remove_view (FlEngine *self, FlutterViewId view_id, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data)
 
gboolean fl_engine_remove_view_finish (FlEngine *self, GAsyncResult *result, GError **error)
 
void fl_engine_set_platform_message_handler (FlEngine *self, FlEnginePlatformMessageHandler handler, gpointer user_data, GDestroyNotify destroy_notify)
 
gboolean fl_engine_send_platform_message_response (FlEngine *self, const FlutterPlatformMessageResponseHandle *handle, GBytes *response, GError **error)
 
void fl_engine_send_platform_message (FlEngine *self, const gchar *channel, GBytes *message, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data)
 
GBytes * fl_engine_send_platform_message_finish (FlEngine *self, GAsyncResult *result, GError **error)
 
void fl_engine_send_window_metrics_event (FlEngine *self, FlutterEngineDisplayId display_id, FlutterViewId view_id, size_t width, size_t height, double pixel_ratio)
 
void fl_engine_send_mouse_pointer_event (FlEngine *self, FlutterViewId view_id, FlutterPointerPhase phase, size_t timestamp, double x, double y, FlutterPointerDeviceKind device_kind, double scroll_delta_x, double scroll_delta_y, int64_t buttons)
 
void fl_engine_send_touch_up_event (FlEngine *self, FlutterViewId view_id, size_t timestamp, double x, double y, int32_t device)
 
void fl_engine_send_touch_down_event (FlEngine *self, FlutterViewId view_id, size_t timestamp, double x, double y, int32_t device)
 
void fl_engine_send_touch_move_event (FlEngine *self, FlutterViewId view_id, size_t timestamp, double x, double y, int32_t device)
 
void fl_engine_send_touch_add_event (FlEngine *self, FlutterViewId view_id, size_t timestamp, double x, double y, int32_t device)
 
void fl_engine_send_touch_remove_event (FlEngine *self, FlutterViewId view_id, size_t timestamp, double x, double y, int32_t device)
 
void fl_engine_send_pointer_pan_zoom_event (FlEngine *self, FlutterViewId view_id, size_t timestamp, double x, double y, FlutterPointerPhase phase, double pan_x, double pan_y, double scale, double rotation)
 
static void send_key_event_cb (bool handled, void *user_data)
 
void fl_engine_send_key_event (FlEngine *self, const FlutterKeyEvent *event, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data)
 
gboolean fl_engine_send_key_event_finish (FlEngine *self, GAsyncResult *result, gboolean *handled, GError **error)
 
void fl_engine_dispatch_semantics_action (FlEngine *self, FlutterViewId view_id, uint64_t node_id, FlutterSemanticsAction action, GBytes *data)
 
gboolean fl_engine_mark_texture_frame_available (FlEngine *self, int64_t texture_id)
 
gboolean fl_engine_register_external_texture (FlEngine *self, int64_t texture_id)
 
gboolean fl_engine_unregister_external_texture (FlEngine *self, int64_t texture_id)
 
G_MODULE_EXPORT FlBinaryMessenger * fl_engine_get_binary_messenger (FlEngine *self)
 
FlTaskRunner * fl_engine_get_task_runner (FlEngine *self)
 
void fl_engine_execute_task (FlEngine *self, FlutterTask *task)
 
G_MODULE_EXPORT FlTextureRegistrar * fl_engine_get_texture_registrar (FlEngine *self)
 
void fl_engine_update_accessibility_features (FlEngine *self, int32_t flags)
 
void fl_engine_request_app_exit (FlEngine *self)
 
FlWindowingHandler * fl_engine_get_windowing_handler (FlEngine *self)
 
FlKeyboardManager * fl_engine_get_keyboard_manager (FlEngine *self)
 
FlTextInputHandler * fl_engine_get_text_input_handler (FlEngine *self)
 
FlMouseCursorHandler * fl_engine_get_mouse_cursor_handler (FlEngine *self)
 

Variables

static constexpr size_t kPlatformTaskRunnerIdentifier = 1
 
static constexpr int32_t kMousePointerDeviceId = 0
 
static constexpr int32_t kPointerPanZoomDeviceId = 1
 
static guint fl_engine_signals [LAST_SIGNAL]
 

Enumeration Type Documentation

◆ anonymous enum

anonymous enum
Enumerator
SIGNAL_ON_PRE_ENGINE_RESTART 
SIGNAL_UPDATE_SEMANTICS 
LAST_SIGNAL 

Definition at line 114 of file fl_engine.cc.

@ LAST_SIGNAL
Definition: fl_engine.cc:114
@ SIGNAL_UPDATE_SEMANTICS
Definition: fl_engine.cc:114
@ SIGNAL_ON_PRE_ENGINE_RESTART
Definition: fl_engine.cc:114

Function Documentation

◆ collect_opengl_backing_store()

static bool collect_opengl_backing_store ( FlEngine *  self,
const FlutterBackingStore *  backing_store 
)
static

Definition at line 285 of file fl_engine.cc.

287  {
288  fl_opengl_manager_make_current(self->opengl_manager);
289 
290  // OpenGL context is required when destroying #FlFramebuffer.
291  g_object_unref(backing_store->open_gl.framebuffer.user_data);
292  return true;
293 }
void fl_opengl_manager_make_current(FlOpenGLManager *self)

References fl_opengl_manager_make_current().

Referenced by compositor_collect_backing_store_callback().

◆ collect_software_backing_store()

static bool collect_software_backing_store ( FlEngine *  self,
const FlutterBackingStore *  backing_store 
)
static

Definition at line 319 of file fl_engine.cc.

321  {
322  free(const_cast<void*>(backing_store->software.allocation));
323  return true;
324 }

Referenced by compositor_collect_backing_store_callback().

◆ compositor_collect_backing_store_callback()

static bool compositor_collect_backing_store_callback ( const FlutterBackingStore *  backing_store,
void *  user_data 
)
static

Definition at line 343 of file fl_engine.cc.

345  {
346  FlEngine* self = static_cast<FlEngine*>(user_data);
347  switch (self->renderer_type) {
348  case kOpenGL:
349  return collect_opengl_backing_store(self, backing_store);
350  case kSoftware:
351  return collect_software_backing_store(self, backing_store);
352  default:
353  return false;
354  }
355 }
static bool collect_opengl_backing_store(FlEngine *self, const FlutterBackingStore *backing_store)
Definition: fl_engine.cc:285
static bool collect_software_backing_store(FlEngine *self, const FlutterBackingStore *backing_store)
Definition: fl_engine.cc:319
G_BEGIN_DECLS G_MODULE_EXPORT FlValue gpointer user_data

References collect_opengl_backing_store(), collect_software_backing_store(), and user_data.

Referenced by fl_engine_start().

◆ compositor_create_backing_store_callback()

static bool compositor_create_backing_store_callback ( const FlutterBackingStoreConfig *  config,
FlutterBackingStore *  backing_store_out,
void *  user_data 
)
static

Definition at line 327 of file fl_engine.cc.

330  {
331  FlEngine* self = static_cast<FlEngine*>(user_data);
332  switch (self->renderer_type) {
333  case kOpenGL:
334  return create_opengl_backing_store(self, config, backing_store_out);
335  case kSoftware:
336  return create_software_backing_store(self, config, backing_store_out);
337  default:
338  return false;
339  }
340 }
static bool create_opengl_backing_store(FlEngine *self, const FlutterBackingStoreConfig *config, FlutterBackingStore *backing_store_out)
Definition: fl_engine.cc:250
static bool create_software_backing_store(FlEngine *self, const FlutterBackingStoreConfig *config, FlutterBackingStore *backing_store_out)
Definition: fl_engine.cc:295

References create_opengl_backing_store(), create_software_backing_store(), and user_data.

Referenced by fl_engine_start().

◆ compositor_present_view_callback()

static bool compositor_present_view_callback ( const FlutterPresentViewInfo *  info)
static

Definition at line 358 of file fl_engine.cc.

359  {
360  FlEngine* self = static_cast<FlEngine*>(info->user_data);
361 
362  GWeakRef* ref = static_cast<GWeakRef*>(g_hash_table_lookup(
363  self->renderables_by_view_id, GINT_TO_POINTER(info->view_id)));
364  if (ref == nullptr) {
365  return true;
366  }
367  g_autoptr(FlRenderable) renderable = FL_RENDERABLE(g_weak_ref_get(ref));
368  if (renderable == nullptr) {
369  return true;
370  }
371 
372  fl_renderable_present_layers(renderable, info->layers, info->layers_count);
373  return true;
374 }
void fl_renderable_present_layers(FlRenderable *self, const FlutterLayer **layers, size_t layers_count)

References fl_renderable_present_layers().

Referenced by fl_engine_start().

◆ create_opengl_backing_store()

static bool create_opengl_backing_store ( FlEngine *  self,
const FlutterBackingStoreConfig *  config,
FlutterBackingStore *  backing_store_out 
)
static

Definition at line 250 of file fl_engine.cc.

253  {
254  fl_opengl_manager_make_current(self->opengl_manager);
255 
256  GLint sized_format = GL_RGBA8;
257  GLint general_format = GL_RGBA;
258  if (epoxy_has_gl_extension("GL_EXT_texture_format_BGRA8888")) {
259  sized_format = GL_BGRA8_EXT;
260  general_format = GL_BGRA_EXT;
261  }
262 
263  FlFramebuffer* framebuffer = fl_framebuffer_new(
264  general_format, config->size.width, config->size.height);
265  if (!framebuffer) {
266  g_warning("Failed to create backing store");
267  return false;
268  }
269 
270  backing_store_out->type = kFlutterBackingStoreTypeOpenGL;
271  backing_store_out->open_gl.type = kFlutterOpenGLTargetTypeFramebuffer;
272  backing_store_out->open_gl.framebuffer.user_data = framebuffer;
273  backing_store_out->open_gl.framebuffer.name =
274  fl_framebuffer_get_id(framebuffer);
275  backing_store_out->open_gl.framebuffer.target = sized_format;
276  backing_store_out->open_gl.framebuffer.destruction_callback = [](void* p) {
277  // Backing store destroyed in fl_compositor_opengl_collect_backing_store(),
278  // set on FlutterCompositor.collect_backing_store_callback during engine
279  // start.
280  };
281 
282  return true;
283 }
GLuint fl_framebuffer_get_id(FlFramebuffer *self)
FlFramebuffer * fl_framebuffer_new(GLint format, size_t width, size_t height)

References fl_framebuffer_get_id(), fl_framebuffer_new(), and fl_opengl_manager_make_current().

Referenced by compositor_create_backing_store_callback().

◆ create_software_backing_store()

static bool create_software_backing_store ( FlEngine *  self,
const FlutterBackingStoreConfig *  config,
FlutterBackingStore *  backing_store_out 
)
static

Definition at line 295 of file fl_engine.cc.

298  {
299  size_t allocation_length = config->size.width * config->size.height * 4;
300  uint8_t* allocation = static_cast<uint8_t*>(malloc(allocation_length));
301  if (allocation == nullptr) {
302  return false;
303  }
304 
305  backing_store_out->type = kFlutterBackingStoreTypeSoftware;
306  backing_store_out->software.allocation = allocation;
307  backing_store_out->software.height = config->size.height;
308  backing_store_out->software.row_bytes = config->size.width * 4;
309  backing_store_out->software.user_data = nullptr;
310  backing_store_out->software.destruction_callback = [](void* p) {
311  // Backing store destroyed in
312  // fl_compositor_software_collect_backing_store(), set on
313  // FlutterCompositor.collect_backing_store_callback during engine start.
314  };
315 
316  return true;
317 }

Referenced by compositor_create_backing_store_callback().

◆ fl_engine_add_view()

FlutterViewId fl_engine_add_view ( FlEngine *  engine,
FlRenderable *  renderable,
size_t  width,
size_t  height,
double  pixel_ratio,
GCancellable *  cancellable,
GAsyncReadyCallback  callback,
gpointer  user_data 
)

fl_engine_add_view: @engine: an #FlEngine. @renderable: the object that will render this view. @width: width of view in pixels. @height: height of view in pixels. @pixel_ratio: scale factor for view. @cancellable: (allow-none): a #GCancellable or NULL. @callback: (scope async): a #GAsyncReadyCallback to call when the view is added. @user_data: (closure): user data to pass to @callback.

Asynchronously add a new view. The returned view ID should not be used until this function completes.

Returns: the ID for the view.

Definition at line 882 of file fl_engine.cc.

889  {
890  g_return_val_if_fail(FL_IS_ENGINE(self), -1);
891 
892  g_autoptr(GTask) task = g_task_new(self, cancellable, callback, user_data);
893 
894  FlutterViewId view_id = self->next_view_id;
895  self->next_view_id++;
896 
897  GWeakRef* ref = g_new(GWeakRef, 1);
898  g_weak_ref_init(ref, G_OBJECT(renderable));
899  g_hash_table_insert(self->renderables_by_view_id, GINT_TO_POINTER(view_id),
900  ref);
901 
902  // We don't know which display this view will open on, so set to zero and this
903  // will be updated in a following FlutterWindowMetricsEvent
904  FlutterEngineDisplayId display_id = 0;
905 
906  FlutterWindowMetricsEvent metrics = {};
907  metrics.struct_size = sizeof(FlutterWindowMetricsEvent);
908  metrics.width = width;
909  metrics.height = height;
910  metrics.pixel_ratio = pixel_ratio;
911  metrics.display_id = display_id;
912  metrics.view_id = view_id;
913  FlutterAddViewInfo info;
914  info.struct_size = sizeof(FlutterAddViewInfo);
915  info.view_id = view_id;
916  info.view_metrics = &metrics;
917  info.user_data = g_object_ref(task);
918  info.add_view_callback = view_added_cb;
919  FlutterEngineResult result = self->embedder_api.AddView(self->engine, &info);
920  if (result != kSuccess) {
921  g_task_return_new_error(task, fl_engine_error_quark(),
922  FL_ENGINE_ERROR_FAILED, "AddView returned %d",
923  result);
924  // This would have been done in the callback, but that won't occur now.
925  g_object_unref(task);
926  }
927 
928  return view_id;
929 }
static void view_added_cb(const FlutterAddViewResult *result)
Definition: fl_engine.cc:171
GQuark fl_engine_error_quark(void) G_GNUC_CONST
@ FL_ENGINE_ERROR_FAILED
const uint8_t uint32_t uint32_t * height
const uint8_t uint32_t * width
G_BEGIN_DECLS FlutterViewId view_id

References FL_ENGINE_ERROR_FAILED, fl_engine_error_quark(), height, user_data, view_added_cb(), view_id, and width.

Referenced by fl_view_new_for_engine(), and TEST().

◆ fl_engine_add_view_finish()

gboolean fl_engine_add_view_finish ( FlEngine *  engine,
GAsyncResult *  result,
GError **  error 
)

fl_engine_add_view_finish: @engine: an #FlEngine.

Returns
: a #GAsyncResult. @error: (allow-none): #GError location to store the error occurring, or NULL to ignore.

Completes request started with fl_engine_add_view().

Returns: TRUE on success.

Definition at line 931 of file fl_engine.cc.

933  {
934  g_return_val_if_fail(FL_IS_ENGINE(self), FALSE);
935  return g_task_propagate_boolean(G_TASK(result), error);
936 }
const uint8_t uint32_t uint32_t GError ** error

References error.

Referenced by add_view_cb(), add_view_engine_error_cb(), add_view_error_cb(), and view_added_cb().

◆ fl_engine_class_init()

static void fl_engine_class_init ( FlEngineClass *  klass)
static

Definition at line 603 of file fl_engine.cc.

603  {
604  G_OBJECT_CLASS(klass)->dispose = fl_engine_dispose;
605  G_OBJECT_CLASS(klass)->set_property = fl_engine_set_property;
606 
607  g_object_class_install_property(
608  G_OBJECT_CLASS(klass), PROP_BINARY_MESSENGER,
609  g_param_spec_object(
610  "binary-messenger", "messenger", "Binary messenger",
611  fl_binary_messenger_get_type(),
612  static_cast<GParamFlags>(G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY |
613  G_PARAM_STATIC_STRINGS)));
614 
616  "on-pre-engine-restart", fl_engine_get_type(), G_SIGNAL_RUN_LAST, 0,
617  nullptr, nullptr, nullptr, G_TYPE_NONE, 0);
619  "update-semantics", fl_engine_get_type(), G_SIGNAL_RUN_LAST, 0, nullptr,
620  nullptr, nullptr, G_TYPE_NONE, 1, G_TYPE_POINTER);
621 }
static void fl_engine_dispose(GObject *object)
Definition: fl_engine.cc:562
static guint fl_engine_signals[LAST_SIGNAL]
Definition: fl_engine.cc:116
static void fl_engine_set_property(GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
Definition: fl_engine.cc:546

References fl_engine_dispose(), fl_engine_set_property(), fl_engine_signals, SIGNAL_ON_PRE_ENGINE_RESTART, and SIGNAL_UPDATE_SEMANTICS.

◆ fl_engine_dispatch_semantics_action()

void fl_engine_dispatch_semantics_action ( FlEngine *  engine,
FlutterViewId  view_id,
uint64_t  node_id,
FlutterSemanticsAction  action,
GBytes *  data 
)

fl_engine_dispatch_semantics_action: @engine: an #FlEngine. @view_id: the view that the event occured on. @node_id: the semantics action identifier. @action: the action being dispatched. @data: (allow-none): data associated with the action.

Definition at line 1364 of file fl_engine.cc.

1368  {
1369  g_return_if_fail(FL_IS_ENGINE(self));
1370 
1371  if (self->engine == nullptr) {
1372  return;
1373  }
1374 
1375  const uint8_t* action_data = nullptr;
1376  size_t action_data_length = 0;
1377  if (data != nullptr) {
1378  action_data = static_cast<const uint8_t*>(
1379  g_bytes_get_data(data, &action_data_length));
1380  }
1381 
1382  FlutterSendSemanticsActionInfo info;
1383  info.struct_size = sizeof(FlutterSendSemanticsActionInfo);
1384  info.view_id = view_id;
1385  info.node_id = node_id;
1386  info.action = action;
1387  info.data = action_data;
1388  info.data_length = action_data_length;
1389  self->embedder_api.SendSemanticsAction(self->engine, &info);
1390 }
FlutterSemanticsAction action

References action, and view_id.

Referenced by fl_accessible_node_perform_action_impl(), and TEST().

◆ fl_engine_dispose()

static void fl_engine_dispose ( GObject *  object)
static

Definition at line 562 of file fl_engine.cc.

562  {
563  FlEngine* self = FL_ENGINE(object);
564 
565  if (self->engine != nullptr) {
566  self->embedder_api.Shutdown(self->engine);
567  self->engine = nullptr;
568  }
569 
570  if (self->aot_data != nullptr) {
571  self->embedder_api.CollectAOTData(self->aot_data);
572  self->aot_data = nullptr;
573  }
574 
575  fl_binary_messenger_shutdown(self->binary_messenger);
576  fl_texture_registrar_shutdown(self->texture_registrar);
577 
578  g_clear_object(&self->project);
579  g_clear_object(&self->display_monitor);
580  g_clear_object(&self->opengl_manager);
581  g_clear_object(&self->texture_registrar);
582  g_clear_object(&self->binary_messenger);
583  g_clear_object(&self->settings_handler);
584  g_clear_object(&self->platform_handler);
585  g_clear_object(&self->windowing_handler);
586  g_clear_object(&self->keyboard_manager);
587  g_clear_object(&self->text_input_handler);
588  g_clear_object(&self->keyboard_handler);
589  g_clear_object(&self->mouse_cursor_handler);
590  g_clear_object(&self->task_runner);
591  g_clear_pointer(&self->renderables_by_view_id, g_hash_table_unref);
592 
593  if (self->platform_message_handler_destroy_notify) {
594  self->platform_message_handler_destroy_notify(
595  self->platform_message_handler_data);
596  }
597  self->platform_message_handler_data = nullptr;
598  self->platform_message_handler_destroy_notify = nullptr;
599 
600  G_OBJECT_CLASS(fl_engine_parent_class)->dispose(object);
601 }
void fl_binary_messenger_shutdown(FlBinaryMessenger *self)
void fl_texture_registrar_shutdown(FlTextureRegistrar *self)

References fl_binary_messenger_shutdown(), and fl_texture_registrar_shutdown().

Referenced by fl_engine_class_init().

◆ fl_engine_execute_task()

void fl_engine_execute_task ( FlEngine *  engine,
FlutterTask *  task 
)

fl_engine_execute_task: @engine: an #FlEngine. @task: a #FlutterTask to execute.

Executes given Flutter task.

Definition at line 1424 of file fl_engine.cc.

1424  {
1425  g_return_if_fail(FL_IS_ENGINE(self));
1426  self->embedder_api.RunTask(self->engine, task);
1427 }

Referenced by fl_task_runner_process_expired_tasks_locked().

◆ fl_engine_for_id()

FlEngine* fl_engine_for_id ( int64_t  handle)

fl_engine_for_id: @handle: an engine identifier obtained through PlatformDispatcher.instance.engineId.

Returns Flutter engine associated with the identifier. The identifier must be valid and for a running engine otherwise the behavior is undefined. Must be called from the main thread.

Returns: a #FlEngine or NULL.

Definition at line 685 of file fl_engine.cc.

685  {
686  void* engine = reinterpret_cast<void*>(id);
687  g_return_val_if_fail(FL_IS_ENGINE(engine), nullptr);
688  return FL_ENGINE(engine);
689 }
int64_t id

References id.

Referenced by TEST().

◆ fl_engine_get_binary_messenger()

G_MODULE_EXPORT FlBinaryMessenger* fl_engine_get_binary_messenger ( FlEngine *  engine)

fl_engine_get_binary_messenger: @engine: an #FlEngine.

Gets the messenger to communicate with this engine.

Returns: an #FlBinaryMessenger.

Definition at line 1413 of file fl_engine.cc.

1414  {
1415  g_return_val_if_fail(FL_IS_ENGINE(self), nullptr);
1416  return self->binary_messenger;
1417 }

Referenced by fl_keyboard_manager_new(), fl_settings_handler_new(), fl_view_get_registrar_for_plugin(), fl_windowing_handler_new(), realize_cb(), and TEST().

◆ fl_engine_get_display_monitor()

FlDisplayMonitor* fl_engine_get_display_monitor ( FlEngine *  engine)

fl_engine_get_display_monitor: @engine: an #FlEngine.

Gets the display monitor used by this engine.

Returns: an #FlDisplayMonitor.

Definition at line 715 of file fl_engine.cc.

715  {
716  g_return_val_if_fail(FL_IS_ENGINE(self), nullptr);
717  return self->display_monitor;
718 }

Referenced by handle_geometry_changed(), and TEST().

◆ fl_engine_get_embedder_api()

FlutterEngineProcTable* fl_engine_get_embedder_api ( FlEngine *  engine)

fl_engine_get_embedder_api: @engine: an #FlEngine.

Gets the embedder API proc table, allowing modificiations for unit testing.

Returns: a mutable pointer to the embedder API proc table.

Definition at line 858 of file fl_engine.cc.

858  {
859  return &(self->embedder_api);
860 }

Referenced by TEST().

◆ fl_engine_get_keyboard_manager()

FlKeyboardManager* fl_engine_get_keyboard_manager ( FlEngine *  engine)

fl_engine_get_keyboard_manager: @engine: an #FlEngine.

Gets the keyboard manager used by this engine.

Returns: an #FlKeyboardManager.

Definition at line 1456 of file fl_engine.cc.

1456  {
1457  g_return_val_if_fail(FL_IS_ENGINE(self), nullptr);
1458  return self->keyboard_manager;
1459 }

Referenced by handle_key_event(), sync_modifier_if_needed(), and TEST().

◆ fl_engine_get_mouse_cursor_handler()

FlMouseCursorHandler* fl_engine_get_mouse_cursor_handler ( FlEngine *  engine)

fl_engine_get_mouse_cursor_handler: @engine: an #FlEngine.

Gets the mouse cursor handler used by this engine.

Returns: an #FlMouseCursorHandler.

Definition at line 1466 of file fl_engine.cc.

1466  {
1467  g_return_val_if_fail(FL_IS_ENGINE(self), nullptr);
1468  return self->mouse_cursor_handler;
1469 }

Referenced by cursor_changed_cb(), fl_view_dispose(), setup_cursor(), and TEST().

◆ fl_engine_get_opengl_manager()

FlOpenGLManager* fl_engine_get_opengl_manager ( FlEngine *  engine)

fl_engine_get_opengl_manager: @engine: an #FlEngine.

Gets the OpenGL manager used by this engine.

Returns: an #FlOpenGLManager.

Definition at line 710 of file fl_engine.cc.

710  {
711  g_return_val_if_fail(FL_IS_ENGINE(self), nullptr);
712  return self->opengl_manager;
713 }

Referenced by create_context_cb(), fl_compositor_opengl_new(), realize_cb(), and unrealize_cb().

◆ fl_engine_get_registrar_for_plugin()

static FlPluginRegistrar* fl_engine_get_registrar_for_plugin ( FlPluginRegistry *  registry,
const gchar *  name 
)
static

Definition at line 532 of file fl_engine.cc.

534  {
535  FlEngine* self = FL_ENGINE(registry);
536 
537  return fl_plugin_registrar_new(nullptr, self->binary_messenger,
538  self->texture_registrar);
539 }
FlPluginRegistrar * fl_plugin_registrar_new(FlView *view, FlBinaryMessenger *messenger, FlTextureRegistrar *texture_registrar)

References fl_plugin_registrar_new().

Referenced by fl_engine_plugin_registry_iface_init().

◆ fl_engine_get_renderable()

FlRenderable* fl_engine_get_renderable ( FlEngine *  engine,
FlutterViewId  view_id 
)

fl_engine_get_renderable: @engine: an #FlEngine. @view_id: ID to check.

Gets the renderable associated with the give view ID.

Returns: (transfer full): a reference to an #FlRenderable or NULL if none for this ID.

Definition at line 938 of file fl_engine.cc.

938  {
939  g_return_val_if_fail(FL_IS_ENGINE(self), nullptr);
940 
941  GWeakRef* ref = static_cast<GWeakRef*>(g_hash_table_lookup(
942  self->renderables_by_view_id, GINT_TO_POINTER(view_id)));
943  return FL_RENDERABLE(g_weak_ref_get(ref));
944 }

References view_id.

◆ fl_engine_get_renderer_type()

FlutterRendererType fl_engine_get_renderer_type ( FlEngine *  engine)

fl_engine_get_renderer_type: @engine: an #FlEngine.

Gets the rendering type used by this engine.

Returns: type of rendering used.

Definition at line 705 of file fl_engine.cc.

705  {
706  g_return_val_if_fail(FL_IS_ENGINE(self), static_cast<FlutterRendererType>(0));
707  return self->renderer_type;
708 }

Referenced by realize_cb(), and setup_engine().

◆ fl_engine_get_task_runner()

FlTaskRunner* fl_engine_get_task_runner ( FlEngine *  engine)

fl_engine_get_task_runner: @engine: an #FlEngine.

Returns
: a #FlTaskRunner.

Returns: task runner responsible for scheduling Flutter tasks.

Definition at line 1419 of file fl_engine.cc.

1419  {
1420  g_return_val_if_fail(FL_IS_ENGINE(self), nullptr);
1421  return self->task_runner;
1422 }

Referenced by fl_compositor_opengl_present_layers(), fl_compositor_opengl_unblock_main_thread(), fl_compositor_opengl_wait_for_frame(), and TEST().

◆ fl_engine_get_text_input_handler()

FlTextInputHandler* fl_engine_get_text_input_handler ( FlEngine *  engine)

fl_engine_get_text_input_handler: @engine: an #FlEngine.

Gets the text input handler used by this engine.

Returns: an #FlTextInputHandler.

Definition at line 1461 of file fl_engine.cc.

1461  {
1462  g_return_val_if_fail(FL_IS_ENGINE(self), nullptr);
1463  return self->text_input_handler;
1464 }

Referenced by fl_view_focus_in_event(), and handle_key_event().

◆ fl_engine_get_texture_registrar()

G_MODULE_EXPORT FlTextureRegistrar* fl_engine_get_texture_registrar ( FlEngine *  engine)

fl_engine_get_texture_registrar: @engine: an #FlEngine.

Gets the texture registrar for registering textures.

Returns: an #FlTextureRegistrar.

Definition at line 1429 of file fl_engine.cc.

1430  {
1431  g_return_val_if_fail(FL_IS_ENGINE(self), nullptr);
1432  return self->texture_registrar;
1433 }

Referenced by fl_view_get_registrar_for_plugin().

◆ fl_engine_get_windowing_handler()

FlWindowingHandler* fl_engine_get_windowing_handler ( FlEngine *  engine)

fl_engine_get_windowing_handler: @engine: an #FlEngine.

Gets the windowing handler used by this engine.

Returns: an #FlWindowingHandler.

Definition at line 1451 of file fl_engine.cc.

1451  {
1452  g_return_val_if_fail(FL_IS_ENGINE(self), nullptr);
1453  return self->windowing_handler;
1454 }

Referenced by fl_application_activate(), and TEST().

◆ fl_engine_gl_clear_current()

static bool fl_engine_gl_clear_current ( void *  user_data)
static

Definition at line 388 of file fl_engine.cc.

388  {
389  FlEngine* self = static_cast<FlEngine*>(user_data);
390  fl_opengl_manager_clear_current(self->opengl_manager);
391  return true;
392 }
void fl_opengl_manager_clear_current(FlOpenGLManager *self)

References fl_opengl_manager_clear_current(), and user_data.

Referenced by fl_engine_start().

◆ fl_engine_gl_external_texture_frame_callback()

static bool fl_engine_gl_external_texture_frame_callback ( void *  user_data,
int64_t  texture_id,
size_t  width,
size_t  height,
FlutterOpenGLTexture *  opengl_texture 
)
static

Definition at line 406 of file fl_engine.cc.

411  {
412  FlEngine* self = static_cast<FlEngine*>(user_data);
413  if (!self->texture_registrar) {
414  return false;
415  }
416 
417  FlTexture* texture =
418  fl_texture_registrar_lookup_texture(self->texture_registrar, texture_id);
419  if (texture == nullptr) {
420  g_warning("Unable to find texture %" G_GINT64_FORMAT, texture_id);
421  return false;
422  }
423 
424  gboolean result;
425  g_autoptr(GError) error = nullptr;
426  if (FL_IS_TEXTURE_GL(texture)) {
427  result = fl_texture_gl_populate(FL_TEXTURE_GL(texture), width, height,
428  opengl_texture, &error);
429  } else if (FL_IS_PIXEL_BUFFER_TEXTURE(texture)) {
430  result =
431  fl_pixel_buffer_texture_populate(FL_PIXEL_BUFFER_TEXTURE(texture),
432  width, height, opengl_texture, &error);
433  } else {
434  g_warning("Unsupported texture type %" G_GINT64_FORMAT, texture_id);
435  return false;
436  }
437 
438  if (!result) {
439  g_warning("%s", error->message);
440  return false;
441  }
442 
443  return true;
444 }
gboolean fl_pixel_buffer_texture_populate(FlPixelBufferTexture *texture, uint32_t width, uint32_t height, FlutterOpenGLTexture *opengl_texture, GError **error)
gboolean fl_texture_gl_populate(FlTextureGL *self, uint32_t width, uint32_t height, FlutterOpenGLTexture *opengl_texture, GError **error)
FlTexture * fl_texture_registrar_lookup_texture(FlTextureRegistrar *self, int64_t texture_id)
int64_t texture_id

References error, fl_pixel_buffer_texture_populate(), fl_texture_gl_populate(), fl_texture_registrar_lookup_texture(), height, texture_id, user_data, and width.

Referenced by fl_engine_start().

◆ fl_engine_gl_get_fbo()

static uint32_t fl_engine_gl_get_fbo ( void *  user_data)
static

Definition at line 394 of file fl_engine.cc.

394  {
395  // There is only one frame buffer object - always return that.
396  return 0;
397 }

Referenced by fl_engine_start().

◆ fl_engine_gl_make_current()

static bool fl_engine_gl_make_current ( void *  user_data)
static

Definition at line 382 of file fl_engine.cc.

382  {
383  FlEngine* self = static_cast<FlEngine*>(user_data);
384  fl_opengl_manager_make_current(self->opengl_manager);
385  return true;
386 }

References fl_opengl_manager_make_current(), and user_data.

Referenced by fl_engine_start().

◆ fl_engine_gl_make_resource_current()

static bool fl_engine_gl_make_resource_current ( void *  user_data)
static

Definition at line 399 of file fl_engine.cc.

399  {
400  FlEngine* self = static_cast<FlEngine*>(user_data);
401  fl_opengl_manager_make_resource_current(self->opengl_manager);
402  return true;
403 }
void fl_opengl_manager_make_resource_current(FlOpenGLManager *self)

References fl_opengl_manager_make_resource_current(), and user_data.

Referenced by fl_engine_start().

◆ fl_engine_gl_proc_resolver()

static void* fl_engine_gl_proc_resolver ( void *  user_data,
const char *  name 
)
static

Definition at line 378 of file fl_engine.cc.

378  {
379  return reinterpret_cast<void*>(eglGetProcAddress(name));
380 }

Referenced by fl_engine_start().

◆ fl_engine_init()

static void fl_engine_init ( FlEngine *  self)
static

Definition at line 623 of file fl_engine.cc.

623  {
624  self->thread = g_thread_self();
625 
626  self->embedder_api.struct_size = sizeof(FlutterEngineProcTable);
627  if (FlutterEngineGetProcAddresses(&self->embedder_api) != kSuccess) {
628  g_warning("Failed get get engine function pointers");
629  }
630 
631  self->opengl_manager = fl_opengl_manager_new();
632 
633  self->display_monitor =
634  fl_display_monitor_new(self, gdk_display_get_default());
635  self->task_runner = fl_task_runner_new(self);
636 
637  // Implicit view is 0, so start at 1.
638  self->next_view_id = 1;
639  self->renderables_by_view_id = g_hash_table_new_full(
640  g_direct_hash, g_direct_equal, nullptr, [](gpointer value) {
641  GWeakRef* ref = static_cast<GWeakRef*>(value);
642  g_weak_ref_clear(ref);
643  free(ref);
644  });
645 
646  self->texture_registrar = fl_texture_registrar_new(self);
647 }
FlDisplayMonitor * fl_display_monitor_new(FlEngine *engine, GdkDisplay *display)
FlOpenGLManager * fl_opengl_manager_new()
uint8_t value
FlTaskRunner * fl_task_runner_new(FlEngine *engine)
FlTextureRegistrar * fl_texture_registrar_new(FlEngine *engine)

References fl_display_monitor_new(), fl_opengl_manager_new(), fl_task_runner_new(), fl_texture_registrar_new(), and value.

◆ fl_engine_mark_texture_frame_available()

gboolean fl_engine_mark_texture_frame_available ( FlEngine *  engine,
int64_t  texture_id 
)

fl_engine_mark_texture_frame_available: @engine: an #FlEngine. @texture_id: the identifier of the texture whose frame has been updated.

Tells the Flutter engine that a new texture frame is available for the given texture.

Returns: TRUE on success.

Definition at line 1392 of file fl_engine.cc.

1393  {
1394  g_return_val_if_fail(FL_IS_ENGINE(self), FALSE);
1395  return self->embedder_api.MarkExternalTextureFrameAvailable(
1396  self->engine, texture_id) == kSuccess;
1397 }

References texture_id.

Referenced by mark_texture_frame_available().

◆ fl_engine_new()

G_MODULE_EXPORT FlEngine* fl_engine_new ( FlDartProject *  project)

FlEngine:

#FlEngine is an object that contains a running Flutter engine. fl_engine_new: @project: an #FlDartProject.

Creates new Flutter engine.

Returns: a new #FlEngine.

Definition at line 691 of file fl_engine.cc.

691  {
692  return fl_engine_new_full(project, nullptr);
693 }
static FlEngine * fl_engine_new_full(FlDartProject *project, FlBinaryMessenger *binary_messenger)
Definition: fl_engine.cc:649

References fl_engine_new_full().

Referenced by fl_engine_new_headless(), fl_view_new(), and TEST().

◆ fl_engine_new_full()

static FlEngine* fl_engine_new_full ( FlDartProject *  project,
FlBinaryMessenger *  binary_messenger 
)
static

Definition at line 649 of file fl_engine.cc.

650  {
651  g_return_val_if_fail(FL_IS_DART_PROJECT(project), nullptr);
652 
653  FlEngine* self = FL_ENGINE(g_object_new(fl_engine_get_type(), nullptr));
654 
655  self->project = FL_DART_PROJECT(g_object_ref(project));
656  const gchar* renderer = g_getenv("FLUTTER_LINUX_RENDERER");
657  if (g_strcmp0(renderer, "software") == 0) {
658  self->renderer_type = kSoftware;
659  g_warning(
660  "Using the software renderer. Not all features are supported. This is "
661  "not recommended.\n"
662  "\n"
663  "To switch back to the default renderer, unset the "
664  "FLUTTER_LINUX_RENDERER environment variable.");
665  } else {
666  if (renderer != nullptr && strcmp(renderer, "opengl") != 0) {
667  g_warning("Unknown renderer type '%s', defaulting to opengl", renderer);
668  }
669  self->renderer_type = kOpenGL;
670  }
671  if (binary_messenger != nullptr) {
672  self->binary_messenger =
673  FL_BINARY_MESSENGER(g_object_ref(binary_messenger));
674  } else {
675  self->binary_messenger = fl_binary_messenger_new(self);
676  }
677  self->keyboard_manager = fl_keyboard_manager_new(self);
678  self->mouse_cursor_handler =
679  fl_mouse_cursor_handler_new(self->binary_messenger);
680  self->windowing_handler = fl_windowing_handler_new(self);
681 
682  return self;
683 }
FlBinaryMessenger * fl_binary_messenger_new(FlEngine *engine)
FlKeyboardManager * fl_keyboard_manager_new(FlEngine *engine)
FlMouseCursorHandler * fl_mouse_cursor_handler_new(FlBinaryMessenger *messenger)
FlWindowingHandler * fl_windowing_handler_new(FlEngine *engine)

References fl_binary_messenger_new(), fl_keyboard_manager_new(), fl_mouse_cursor_handler_new(), and fl_windowing_handler_new().

Referenced by fl_engine_new(), and fl_engine_new_with_binary_messenger().

◆ fl_engine_new_headless()

G_MODULE_EXPORT FlEngine* fl_engine_new_headless ( FlDartProject *  project)

fl_engine_new_headless: @project: an #FlDartProject.

Creates new Flutter engine running in headless mode.

Returns: a new #FlEngine.

Definition at line 701 of file fl_engine.cc.

701  {
702  return fl_engine_new(project);
703 }
G_MODULE_EXPORT FlEngine * fl_engine_new(FlDartProject *project)
Definition: fl_engine.cc:691

References fl_engine_new().

◆ fl_engine_new_with_binary_messenger()

FlEngine* fl_engine_new_with_binary_messenger ( FlBinaryMessenger *  binary_messenger)

fl_engine_new_with_binary_messenger: @binary_messenger: an #FlBinaryMessenger.

Creates a new engine with a custom binary messenger. Used for testing.

Returns: a new #FlEngine.

Definition at line 695 of file fl_engine.cc.

696  {
697  g_autoptr(FlDartProject) project = fl_dart_project_new();
698  return fl_engine_new_full(project, binary_messenger);
699 }
G_MODULE_EXPORT FlDartProject * fl_dart_project_new()

References fl_dart_project_new(), and fl_engine_new_full().

Referenced by TEST().

◆ fl_engine_notify_display_update()

void fl_engine_notify_display_update ( FlEngine *  engine,
const FlutterEngineDisplay *  displays,
size_t  displays_length 
)

fl_engine_notify_display_update: @engine: an #FlEngine. @displays: displays present on the system. @displays_length: length of @displays.

Notify the current displays that are in the system.

Definition at line 862 of file fl_engine.cc.

864  {
865  g_return_if_fail(FL_IS_ENGINE(self));
866 
867  FlutterEngineResult result = self->embedder_api.NotifyDisplayUpdate(
868  self->engine, kFlutterEngineDisplaysUpdateTypeStartup, displays,
869  displays_length);
870  if (result != kSuccess) {
871  g_warning("Failed to notify display update to Flutter engine: %d", result);
872  }
873 }

Referenced by notify_display_update(), and TEST().

◆ fl_engine_on_pre_engine_restart_cb()

static void fl_engine_on_pre_engine_restart_cb ( void *  user_data)
static

Definition at line 513 of file fl_engine.cc.

513  {
514  FlEngine* self = FL_ENGINE(user_data);
515 
516  setup_keyboard(self);
517 
519 }
g_signal_emit(self, fl_application_signals[SIGNAL_CREATE_WINDOW], 0, view, &window)
static void setup_keyboard(FlEngine *self)
Definition: fl_engine.cc:489

References fl_engine_signals, g_signal_emit(), setup_keyboard(), SIGNAL_ON_PRE_ENGINE_RESTART, and user_data.

Referenced by fl_engine_start().

◆ fl_engine_platform_message_cb()

static void fl_engine_platform_message_cb ( const FlutterPlatformMessage *  message,
void *  user_data 
)
static

Definition at line 462 of file fl_engine.cc.

463  {
464  FlEngine* self = FL_ENGINE(user_data);
465 
466  gboolean handled = FALSE;
467  if (self->platform_message_handler != nullptr) {
468  g_autoptr(GBytes) data =
469  g_bytes_new(message->message, message->message_size);
470  handled = self->platform_message_handler(
471  self, message->channel, data, message->response_handle,
472  self->platform_message_handler_data);
473  }
474 
475  if (!handled) {
476  fl_engine_send_platform_message_response(self, message->response_handle,
477  nullptr, nullptr);
478  }
479 }
gboolean fl_engine_send_platform_message_response(FlEngine *self, const FlutterPlatformMessageResponseHandle *handle, GBytes *response, GError **error)
Definition: fl_engine.cc:999

References fl_engine_send_platform_message_response(), and user_data.

Referenced by fl_engine_start().

◆ fl_engine_platform_message_response_cb()

static void fl_engine_platform_message_response_cb ( const uint8_t *  data,
size_t  data_length,
void *  user_data 
)
static

Definition at line 523 of file fl_engine.cc.

525  {
526  g_autoptr(GTask) task = G_TASK(user_data);
527  g_task_return_pointer(task, g_bytes_new(data, data_length),
528  reinterpret_cast<GDestroyNotify>(g_bytes_unref));
529 }

References user_data.

Referenced by fl_engine_send_platform_message().

◆ fl_engine_plugin_registry_iface_init()

static void fl_engine_plugin_registry_iface_init ( FlPluginRegistryInterface *  iface)
static

Definition at line 541 of file fl_engine.cc.

542  {
543  iface->get_registrar_for_plugin = fl_engine_get_registrar_for_plugin;
544 }
static FlPluginRegistrar * fl_engine_get_registrar_for_plugin(FlPluginRegistry *registry, const gchar *name)
Definition: fl_engine.cc:532

References fl_engine_get_registrar_for_plugin().

◆ fl_engine_post_task()

static void fl_engine_post_task ( FlutterTask  task,
uint64_t  target_time_nanos,
void *  user_data 
)
static

Definition at line 453 of file fl_engine.cc.

455  {
456  FlEngine* self = static_cast<FlEngine*>(user_data);
457 
458  fl_task_runner_post_flutter_task(self->task_runner, task, target_time_nanos);
459 }
void fl_task_runner_post_flutter_task(FlTaskRunner *self, FlutterTask task, uint64_t target_time_nanos)

References fl_task_runner_post_flutter_task(), and user_data.

Referenced by fl_engine_start().

◆ fl_engine_register_external_texture()

gboolean fl_engine_register_external_texture ( FlEngine *  engine,
int64_t  texture_id 
)

fl_engine_register_external_texture: @engine: an #FlEngine. @texture_id: the identifier of the texture that is available.

Tells the Flutter engine that a new external texture is available.

Returns: TRUE on success.

Definition at line 1399 of file fl_engine.cc.

1400  {
1401  g_return_val_if_fail(FL_IS_ENGINE(self), FALSE);
1402  return self->embedder_api.RegisterExternalTexture(self->engine, texture_id) ==
1403  kSuccess;
1404 }

References texture_id.

Referenced by register_texture().

◆ fl_engine_remove_view()

void fl_engine_remove_view ( FlEngine *  engine,
FlutterViewId  view_id,
GCancellable *  cancellable,
GAsyncReadyCallback  callback,
gpointer  user_data 
)

fl_engine_remove_view: @engine: an #FlEngine. @view_id: ID to remove. @cancellable: (allow-none): a #GCancellable or NULL. @callback: (scope async): a #GAsyncReadyCallback to call when the view is added. @user_data: (closure): user data to pass to @callback.

Removes a view previously added with fl_engine_add_view().

Definition at line 946 of file fl_engine.cc.

950  {
951  g_return_if_fail(FL_IS_ENGINE(self));
952 
953  g_hash_table_remove(self->renderables_by_view_id, GINT_TO_POINTER(view_id));
954 
955  g_autoptr(GTask) task = g_task_new(self, cancellable, callback, user_data);
956 
957  FlutterRemoveViewInfo info;
958  info.struct_size = sizeof(FlutterRemoveViewInfo);
959  info.view_id = view_id;
960  info.user_data = g_object_ref(task);
961  info.remove_view_callback = view_removed_cb;
962  FlutterEngineResult result =
963  self->embedder_api.RemoveView(self->engine, &info);
964  if (result != kSuccess) {
965  g_task_return_new_error(task, fl_engine_error_quark(),
966  FL_ENGINE_ERROR_FAILED, "RemoveView returned %d",
967  result);
968  // This would have been done in the callback, but that won't occur now.
969  g_object_unref(task);
970  }
971 }
static void view_removed_cb(const FlutterRemoveViewResult *result)
Definition: fl_engine.cc:182

References FL_ENGINE_ERROR_FAILED, fl_engine_error_quark(), user_data, view_id, and view_removed_cb().

Referenced by fl_view_dispose(), and TEST().

◆ fl_engine_remove_view_finish()

gboolean fl_engine_remove_view_finish ( FlEngine *  engine,
GAsyncResult *  result,
GError **  error 
)

fl_engine_remove_view_finish: @engine: an #FlEngine.

Returns
: a #GAsyncResult. @error: (allow-none): #GError location to store the error occurring, or NULL to ignore.

Completes request started with fl_engine_remove_view().

Returns: TRUE on succcess.

Definition at line 973 of file fl_engine.cc.

975  {
976  g_return_val_if_fail(FL_IS_ENGINE(self), FALSE);
977  return g_task_propagate_boolean(G_TASK(result), error);
978 }

References error.

Referenced by remove_view_cb(), remove_view_engine_error_cb(), and remove_view_error_cb().

◆ fl_engine_request_app_exit()

void fl_engine_request_app_exit ( FlEngine *  engine)

fl_engine_request_app_exit: @engine: an #FlEngine.

Request the application exits.

Definition at line 1446 of file fl_engine.cc.

1446  {
1447  g_return_if_fail(FL_IS_ENGINE(self));
1448  fl_platform_handler_request_app_exit(self->platform_handler);
1449 }
void fl_platform_handler_request_app_exit(FlPlatformHandler *self)

References fl_platform_handler_request_app_exit().

Referenced by window_delete_event_cb().

◆ fl_engine_runs_task_on_current_thread()

static bool fl_engine_runs_task_on_current_thread ( void *  user_data)
static

Definition at line 447 of file fl_engine.cc.

447  {
448  FlEngine* self = static_cast<FlEngine*>(user_data);
449  return self->thread == g_thread_self();
450 }

References user_data.

Referenced by fl_engine_start().

◆ fl_engine_send_key_event()

void fl_engine_send_key_event ( FlEngine *  engine,
const FlutterKeyEvent *  event,
GCancellable *  cancellable,
GAsyncReadyCallback  callback,
gpointer  user_data 
)

fl_engine_send_key_event: @engine: an #FlEngine. @event: key event to send. @cancellable: (allow-none): a #GCancellable or NULL. @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied. @user_data: (closure): user data to pass to @callback.

Send a key event to the engine.

Definition at line 1324 of file fl_engine.cc.

1328  {
1329  g_return_if_fail(FL_IS_ENGINE(self));
1330 
1331  g_autoptr(GTask) task = g_task_new(self, cancellable, callback, user_data);
1332 
1333  if (self->engine == nullptr) {
1334  g_task_return_new_error(task, fl_engine_error_quark(),
1335  FL_ENGINE_ERROR_FAILED, "No engine");
1336  return;
1337  }
1338 
1339  if (self->embedder_api.SendKeyEvent(self->engine, event, send_key_event_cb,
1340  g_object_ref(task)) != kSuccess) {
1341  g_task_return_new_error(task, fl_engine_error_quark(),
1342  FL_ENGINE_ERROR_FAILED, "Failed to send key event");
1343  g_object_unref(task);
1344  }
1345 }
static void send_key_event_cb(bool handled, void *user_data)
Definition: fl_engine.cc:1317

References FL_ENGINE_ERROR_FAILED, fl_engine_error_quark(), send_key_event_cb(), and user_data.

Referenced by fl_key_embedder_responder_handle_event(), fl_key_embedder_responder_handle_event_impl(), synthesize_simple_event(), and TEST().

◆ fl_engine_send_key_event_finish()

gboolean fl_engine_send_key_event_finish ( FlEngine *  engine,
GAsyncResult *  result,
gboolean *  handled,
GError **  error 
)

fl_engine_send_key_event_finish: @engine: an #FlEngine.

Returns
: a #GAsyncResult. @handled: location to write if this event was handled by the engine. @error: (allow-none): #GError location to store the error occurring, or NULL to ignore.

Completes request started with fl_engine_send_key_event().

Returns: TRUE on success.

Definition at line 1347 of file fl_engine.cc.

1350  {
1351  g_return_val_if_fail(FL_IS_ENGINE(self), FALSE);
1352  g_return_val_if_fail(g_task_is_valid(result, self), FALSE);
1353 
1354  g_autofree gboolean* return_value =
1355  static_cast<gboolean*>(g_task_propagate_pointer(G_TASK(result), error));
1356  if (return_value == nullptr) {
1357  return FALSE;
1358  }
1359 
1360  *handled = *return_value;
1361  return TRUE;
1362 }

References error, and TRUE.

Referenced by TEST().

◆ fl_engine_send_mouse_pointer_event()

void fl_engine_send_mouse_pointer_event ( FlEngine *  engine,
FlutterViewId  view_id,
FlutterPointerPhase  phase,
size_t  timestamp,
double  x,
double  y,
FlutterPointerDeviceKind  device_kind,
double  scroll_delta_x,
double  scroll_delta_y,
int64_t  buttons 
)

fl_engine_send_mouse_pointer_event: @engine: an #FlEngine. @view_id: the view that the event occured on. @phase: mouse phase. @timestamp: time when event occurred in microseconds. @x: x location of mouse cursor. @y: y location of mouse cursor. @device_kind: kind of pointing device. @scroll_delta_x: x offset of scroll. @scroll_delta_y: y offset of scroll. @buttons: buttons that are pressed.

Sends a mouse pointer event to the engine.

Definition at line 1121 of file fl_engine.cc.

1130  {
1131  g_return_if_fail(FL_IS_ENGINE(self));
1132 
1133  if (self->engine == nullptr) {
1134  return;
1135  }
1136 
1137  FlutterPointerEvent fl_event = {};
1138  fl_event.struct_size = sizeof(fl_event);
1139  fl_event.phase = phase;
1140  fl_event.timestamp = timestamp;
1141  fl_event.x = x;
1142  fl_event.y = y;
1143  if (scroll_delta_x != 0 || scroll_delta_y != 0) {
1144  fl_event.signal_kind = kFlutterPointerSignalKindScroll;
1145  }
1146  fl_event.scroll_delta_x = scroll_delta_x;
1147  fl_event.scroll_delta_y = scroll_delta_y;
1148  fl_event.device_kind = device_kind;
1149  fl_event.buttons = buttons;
1150  fl_event.device = kMousePointerDeviceId;
1151  fl_event.view_id = view_id;
1152  self->embedder_api.SendPointerEvent(self->engine, &fl_event, 1);
1153 }
static constexpr int32_t kMousePointerDeviceId
Definition: fl_engine.cc:36

References kMousePointerDeviceId, and view_id.

Referenced by ensure_pointer_added(), fl_pointer_manager_handle_button_press(), fl_pointer_manager_handle_button_release(), fl_pointer_manager_handle_leave(), fl_pointer_manager_handle_motion(), fl_scrolling_manager_handle_scroll_event(), and TEST().

◆ fl_engine_send_platform_message()

void fl_engine_send_platform_message ( FlEngine *  engine,
const gchar *  channel,
GBytes *  message,
GCancellable *  cancellable,
GAsyncReadyCallback  callback,
gpointer  user_data 
)

fl_engine_send_platform_message: @engine: an #FlEngine. @channel: channel to send to. @message: (allow-none): message buffer to send or NULL for an empty message @cancellable: (allow-none): a #GCancellable or NULL. @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied. @user_data: (closure): user data to pass to @callback.

Asynchronously sends a platform message.

Definition at line 1031 of file fl_engine.cc.

1036  {
1037  g_return_if_fail(FL_IS_ENGINE(self));
1038 
1039  GTask* task = nullptr;
1040  FlutterPlatformMessageResponseHandle* response_handle = nullptr;
1041  if (callback != nullptr) {
1042  task = g_task_new(self, cancellable, callback, user_data);
1043 
1044  if (self->engine == nullptr) {
1045  g_task_return_new_error(task, fl_engine_error_quark(),
1046  FL_ENGINE_ERROR_FAILED, "No engine to send to");
1047  return;
1048  }
1049 
1050  FlutterEngineResult result =
1051  self->embedder_api.PlatformMessageCreateResponseHandle(
1052  self->engine, fl_engine_platform_message_response_cb, task,
1053  &response_handle);
1054  if (result != kSuccess) {
1055  g_task_return_new_error(task, fl_engine_error_quark(),
1057  "Failed to create response handle");
1058  g_object_unref(task);
1059  return;
1060  }
1061  } else if (self->engine == nullptr) {
1062  return;
1063  }
1064 
1065  FlutterPlatformMessage fl_message = {};
1066  fl_message.struct_size = sizeof(fl_message);
1067  fl_message.channel = channel;
1068  fl_message.message =
1069  message != nullptr
1070  ? static_cast<const uint8_t*>(g_bytes_get_data(message, nullptr))
1071  : nullptr;
1072  fl_message.message_size = message != nullptr ? g_bytes_get_size(message) : 0;
1073  fl_message.response_handle = response_handle;
1074  FlutterEngineResult result =
1075  self->embedder_api.SendPlatformMessage(self->engine, &fl_message);
1076 
1077  if (result != kSuccess && task != nullptr) {
1078  g_task_return_new_error(task, fl_engine_error_quark(),
1080  "Failed to send platform messages");
1081  g_object_unref(task);
1082  }
1083 
1084  if (response_handle != nullptr) {
1085  self->embedder_api.PlatformMessageReleaseResponseHandle(self->engine,
1086  response_handle);
1087  }
1088 }
static void fl_engine_platform_message_response_cb(const uint8_t *data, size_t data_length, void *user_data)
Definition: fl_engine.cc:523

References FL_ENGINE_ERROR_FAILED, fl_engine_error_quark(), fl_engine_platform_message_response_cb(), and user_data.

Referenced by send_on_channel(), and TEST().

◆ fl_engine_send_platform_message_finish()

GBytes* fl_engine_send_platform_message_finish ( FlEngine *  engine,
GAsyncResult *  result,
GError **  error 
)

fl_engine_send_platform_message_finish: @engine: an #FlEngine.

Returns
: a #GAsyncResult. @error: (allow-none): #GError location to store the error occurring, or NULL to ignore.

Completes request started with fl_engine_send_platform_message().

Returns: message response on success or NULL on error.

Definition at line 1090 of file fl_engine.cc.

1092  {
1093  g_return_val_if_fail(FL_IS_ENGINE(self), FALSE);
1094  g_return_val_if_fail(g_task_is_valid(result, self), FALSE);
1095 
1096  return static_cast<GBytes*>(g_task_propagate_pointer(G_TASK(result), error));
1097 }

References error.

Referenced by send_on_channel_finish().

◆ fl_engine_send_platform_message_response()

gboolean fl_engine_send_platform_message_response ( FlEngine *  engine,
const FlutterPlatformMessageResponseHandle *  handle,
GBytes *  response,
GError **  error 
)

fl_engine_send_platform_message_response: @engine: an #FlEngine. @handle: handle that was provided in FlEnginePlatformMessageHandler. @response: (allow-none): response to send or NULL for an empty response. @error: (allow-none): #GError location to store the error occurring, or NULL to ignore.

Responds to a platform message.

Returns: TRUE on success.

Definition at line 999 of file fl_engine.cc.

1003  {
1004  g_return_val_if_fail(FL_IS_ENGINE(self), FALSE);
1005  g_return_val_if_fail(handle != nullptr, FALSE);
1006 
1007  if (self->engine == nullptr) {
1009  "No engine to send response to");
1010  return FALSE;
1011  }
1012 
1013  gsize data_length = 0;
1014  const uint8_t* data = nullptr;
1015  if (response != nullptr) {
1016  data =
1017  static_cast<const uint8_t*>(g_bytes_get_data(response, &data_length));
1018  }
1019  FlutterEngineResult result = self->embedder_api.SendPlatformMessageResponse(
1020  self->engine, handle, data, data_length);
1021 
1022  if (result != kSuccess) {
1024  "Failed to send platform message response");
1025  return FALSE;
1026  }
1027 
1028  return TRUE;
1029 }

References error, FL_ENGINE_ERROR_FAILED, fl_engine_error_quark(), and TRUE.

Referenced by fl_engine_platform_message_cb(), send_response(), and TEST().

◆ fl_engine_send_pointer_pan_zoom_event()

void fl_engine_send_pointer_pan_zoom_event ( FlEngine *  engine,
FlutterViewId  view_id,
size_t  timestamp,
double  x,
double  y,
FlutterPointerPhase  phase,
double  pan_x,
double  pan_y,
double  scale,
double  rotation 
)

fl_engine_send_pointer_pan_zoom_event: @engine: an #FlEngine. @view_id: the view that the event occured on. @timestamp: time when event occurred in microseconds. @x: x location of mouse cursor. @y: y location of mouse cursor. @phase: mouse phase. @pan_x: x offset of the pan/zoom in pixels. @pan_y: y offset of the pan/zoom in pixels. @scale: scale of the pan/zoom. @rotation: rotation of the pan/zoom in radians.

Sends a pan/zoom pointer event to the engine.

Definition at line 1285 of file fl_engine.cc.

1294  {
1295  g_return_if_fail(FL_IS_ENGINE(self));
1296 
1297  if (self->engine == nullptr) {
1298  return;
1299  }
1300 
1301  FlutterPointerEvent fl_event = {};
1302  fl_event.struct_size = sizeof(fl_event);
1303  fl_event.timestamp = timestamp;
1304  fl_event.x = x;
1305  fl_event.y = y;
1306  fl_event.phase = phase;
1307  fl_event.pan_x = pan_x;
1308  fl_event.pan_y = pan_y;
1309  fl_event.scale = scale;
1310  fl_event.rotation = rotation;
1311  fl_event.device = kPointerPanZoomDeviceId;
1312  fl_event.device_kind = kFlutterPointerDeviceKindTrackpad;
1313  fl_event.view_id = view_id;
1314  self->embedder_api.SendPointerEvent(self->engine, &fl_event, 1);
1315 }
static constexpr int32_t kPointerPanZoomDeviceId
Definition: fl_engine.cc:37

References kPointerPanZoomDeviceId, and view_id.

Referenced by fl_scrolling_manager_handle_rotation_begin(), fl_scrolling_manager_handle_rotation_end(), fl_scrolling_manager_handle_rotation_update(), fl_scrolling_manager_handle_scroll_event(), fl_scrolling_manager_handle_zoom_begin(), fl_scrolling_manager_handle_zoom_end(), fl_scrolling_manager_handle_zoom_update(), and TEST().

◆ fl_engine_send_touch_add_event()

void fl_engine_send_touch_add_event ( FlEngine *  engine,
FlutterViewId  view_id,
size_t  timestamp,
double  x,
double  y,
int32_t  device 
)

fl_engine_send_touch_add_event: @engine: an #FlEngine. @view_id: the view that the event occured on. @timestamp: time when event occurred in microseconds. @x: x location of mouse cursor. @y: y location of mouse cursor. @device: device id.

Sends a touch add event to the engine.

Definition at line 1233 of file fl_engine.cc.

1238  {
1239  g_return_if_fail(FL_IS_ENGINE(self));
1240 
1241  if (self->engine == nullptr) {
1242  return;
1243  }
1244 
1245  FlutterPointerEvent event;
1246  event.timestamp = timestamp;
1247  event.x = x;
1248  event.y = y;
1249  event.device_kind = kFlutterPointerDeviceKindTouch;
1250  event.device = device;
1251  event.buttons = 0;
1252  event.view_id = view_id;
1253  event.phase = FlutterPointerPhase::kAdd;
1254  event.struct_size = sizeof(event);
1255 
1256  self->embedder_api.SendPointerEvent(self->engine, &event, 1);
1257 }

References view_id.

Referenced by ensure_touch_added().

◆ fl_engine_send_touch_down_event()

void fl_engine_send_touch_down_event ( FlEngine *  engine,
FlutterViewId  view_id,
size_t  timestamp,
double  x,
double  y,
int32_t  device 
)

fl_engine_send_touch_down_event: @engine: an #FlEngine. @view_id: the view that the event occured on. @timestamp: time when event occurred in microseconds. @x: x location of mouse cursor. @y: y location of mouse cursor. @device: device id.

Sends a touch down event to the engine.

Definition at line 1181 of file fl_engine.cc.

1186  {
1187  g_return_if_fail(FL_IS_ENGINE(self));
1188 
1189  if (self->engine == nullptr) {
1190  return;
1191  }
1192 
1193  FlutterPointerEvent event;
1194  event.timestamp = timestamp;
1195  event.x = x;
1196  event.y = y;
1197  event.device_kind = kFlutterPointerDeviceKindTouch;
1198  event.device = device;
1199  event.buttons = FlutterPointerMouseButtons::kFlutterPointerButtonMousePrimary;
1200  event.view_id = view_id;
1201  event.phase = FlutterPointerPhase::kDown;
1202  event.struct_size = sizeof(event);
1203 
1204  self->embedder_api.SendPointerEvent(self->engine, &event, 1);
1205 }

References view_id.

Referenced by fl_touch_manager_handle_touch_event().

◆ fl_engine_send_touch_move_event()

void fl_engine_send_touch_move_event ( FlEngine *  engine,
FlutterViewId  view_id,
size_t  timestamp,
double  x,
double  y,
int32_t  device 
)

fl_engine_send_touch_move_event: @engine: an #FlEngine. @view_id: the view that the event occured on. @timestamp: time when event occurred in microseconds. @x: x location of mouse cursor. @y: y location of mouse cursor. @device: device id.

Sends a touch move event to the engine.

Definition at line 1207 of file fl_engine.cc.

1212  {
1213  g_return_if_fail(FL_IS_ENGINE(self));
1214 
1215  if (self->engine == nullptr) {
1216  return;
1217  }
1218 
1219  FlutterPointerEvent event;
1220  event.timestamp = timestamp;
1221  event.x = x;
1222  event.y = y;
1223  event.device_kind = kFlutterPointerDeviceKindTouch;
1224  event.device = device;
1225  event.buttons = FlutterPointerMouseButtons::kFlutterPointerButtonMousePrimary;
1226  event.view_id = view_id;
1227  event.phase = FlutterPointerPhase::kMove;
1228  event.struct_size = sizeof(event);
1229 
1230  self->embedder_api.SendPointerEvent(self->engine, &event, 1);
1231 }

References view_id.

Referenced by fl_touch_manager_handle_touch_event().

◆ fl_engine_send_touch_remove_event()

void fl_engine_send_touch_remove_event ( FlEngine *  engine,
FlutterViewId  view_id,
size_t  timestamp,
double  x,
double  y,
int32_t  device 
)

fl_engine_send_touch_remove_event: @engine: an #FlEngine. @view_id: the view that the event occured on. @timestamp: time when event occurred in microseconds. @x: x location of mouse cursor. @y: y location of mouse cursor. @device: device id.

Sends a touch remove event to the engine.

Definition at line 1259 of file fl_engine.cc.

1264  {
1265  g_return_if_fail(FL_IS_ENGINE(self));
1266 
1267  if (self->engine == nullptr) {
1268  return;
1269  }
1270 
1271  FlutterPointerEvent event;
1272  event.timestamp = timestamp;
1273  event.x = x;
1274  event.y = y;
1275  event.device_kind = kFlutterPointerDeviceKindTouch;
1276  event.device = device;
1277  event.buttons = 0;
1278  event.view_id = view_id;
1279  event.phase = FlutterPointerPhase::kRemove;
1280  event.struct_size = sizeof(event);
1281 
1282  self->embedder_api.SendPointerEvent(self->engine, &event, 1);
1283 }

References view_id.

Referenced by fl_touch_manager_handle_touch_event().

◆ fl_engine_send_touch_up_event()

void fl_engine_send_touch_up_event ( FlEngine *  engine,
FlutterViewId  view_id,
size_t  timestamp,
double  x,
double  y,
int32_t  device 
)

fl_engine_send_touch_up_event: @engine: an #FlEngine. @view_id: the view that the event occured on. @timestamp: time when event occurred in microseconds. @x: x location of mouse cursor. @y: y location of mouse cursor. @device: device id.

Sends a touch up event to the engine.

Definition at line 1155 of file fl_engine.cc.

1160  {
1161  g_return_if_fail(FL_IS_ENGINE(self));
1162 
1163  if (self->engine == nullptr) {
1164  return;
1165  }
1166 
1167  FlutterPointerEvent event;
1168  event.timestamp = timestamp;
1169  event.x = x;
1170  event.y = y;
1171  event.device_kind = kFlutterPointerDeviceKindTouch;
1172  event.device = device;
1173  event.buttons = 0;
1174  event.view_id = view_id;
1175  event.phase = FlutterPointerPhase::kUp;
1176  event.struct_size = sizeof(event);
1177 
1178  self->embedder_api.SendPointerEvent(self->engine, &event, 1);
1179 }

References view_id.

Referenced by fl_touch_manager_handle_touch_event().

◆ fl_engine_send_window_metrics_event()

void fl_engine_send_window_metrics_event ( FlEngine *  engine,
FlutterEngineDisplayId  display_id,
FlutterViewId  view_id,
size_t  width,
size_t  height,
double  pixel_ratio 
)

fl_engine_send_window_metrics_event: @engine: an #FlEngine. @display_id: the display this view is rendering on. @view_id: the view that the event occured on. @width: width of the window in pixels. @height: height of the window in pixels. @pixel_ratio: scale factor for window.

Sends a window metrics event to the engine.

Definition at line 1099 of file fl_engine.cc.

1104  {
1105  g_return_if_fail(FL_IS_ENGINE(self));
1106 
1107  if (self->engine == nullptr) {
1108  return;
1109  }
1110 
1111  FlutterWindowMetricsEvent event = {};
1112  event.struct_size = sizeof(FlutterWindowMetricsEvent);
1113  event.width = width;
1114  event.height = height;
1115  event.pixel_ratio = pixel_ratio;
1116  event.display_id = display_id;
1117  event.view_id = view_id;
1118  self->embedder_api.SendWindowMetricsEvent(self->engine, &event);
1119 }

References height, view_id, and width.

Referenced by handle_geometry_changed(), and TEST().

◆ fl_engine_set_implicit_view()

void fl_engine_set_implicit_view ( FlEngine *  engine,
FlRenderable *  renderable 
)

fl_engine_set_implicit_view: @engine: an #FlEngine. @renderable: the object that will render the implicit view.

Sets the object to render the implicit view.

Definition at line 875 of file fl_engine.cc.

875  {
876  GWeakRef* ref = g_new(GWeakRef, 1);
877  g_weak_ref_init(ref, G_OBJECT(renderable));
878  g_hash_table_insert(self->renderables_by_view_id,
879  GINT_TO_POINTER(flutter::kFlutterImplicitViewId), ref);
880 }

Referenced by fl_view_new(), and TEST().

◆ fl_engine_set_platform_message_handler()

void fl_engine_set_platform_message_handler ( FlEngine *  engine,
FlEnginePlatformMessageHandler  handler,
gpointer  user_data,
GDestroyNotify  destroy_notify 
)

fl_engine_set_platform_message_handler: @engine: an #FlEngine. @handler: function to call when a platform message is received. @user_data: (closure): user data to pass to @handler. @destroy_notify: (allow-none): a function which gets called to free @user_data, or NULL.

Registers the function called when a platform message is received. Call fl_engine_send_platform_message_response() with the response to this message. Ownership of #FlutterPlatformMessageResponseHandle is transferred to the caller, and the message must be responded to avoid memory leaks.

Definition at line 980 of file fl_engine.cc.

984  {
985  g_return_if_fail(FL_IS_ENGINE(self));
986  g_return_if_fail(handler != nullptr);
987 
988  if (self->platform_message_handler_destroy_notify) {
989  self->platform_message_handler_destroy_notify(
990  self->platform_message_handler_data);
991  }
992 
993  self->platform_message_handler = handler;
994  self->platform_message_handler_data = user_data;
995  self->platform_message_handler_destroy_notify = destroy_notify;
996 }

References user_data.

Referenced by fl_binary_messenger_new().

◆ fl_engine_set_property()

static void fl_engine_set_property ( GObject *  object,
guint  prop_id,
const GValue *  value,
GParamSpec *  pspec 
)
static

Definition at line 546 of file fl_engine.cc.

549  {
550  FlEngine* self = FL_ENGINE(object);
551  switch (prop_id) {
552  case PROP_BINARY_MESSENGER:
553  g_set_object(&self->binary_messenger,
554  FL_BINARY_MESSENGER(g_value_get_object(value)));
555  break;
556  default:
557  G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
558  break;
559  }
560 }
guint prop_id
guint const GValue GParamSpec * pspec

References prop_id, pspec, and value.

Referenced by fl_engine_class_init().

◆ fl_engine_start()

gboolean fl_engine_start ( FlEngine *  engine,
GError **  error 
)

fl_engine_start: @engine: an #FlEngine. @error: (allow-none): #GError location to store the error occurring, or NULL to ignore.

Starts the Flutter engine.

Returns: TRUE on success.

Definition at line 720 of file fl_engine.cc.

720  {
721  g_return_val_if_fail(FL_IS_ENGINE(self), FALSE);
722 
723  FlutterRendererConfig config = {};
724  config.type = self->renderer_type;
725  switch (config.type) {
726  case kSoftware:
727  config.software.struct_size = sizeof(FlutterSoftwareRendererConfig);
728  // No action required, as this is handled in
729  // compositor_present_view_callback.
730  config.software.surface_present_callback =
731  [](void* user_data, const void* allocation, size_t row_bytes,
732  size_t height) { return true; };
733  break;
734  case kOpenGL:
735  config.open_gl.struct_size = sizeof(FlutterOpenGLRendererConfig);
736  config.open_gl.gl_proc_resolver = fl_engine_gl_proc_resolver;
737  config.open_gl.make_current = fl_engine_gl_make_current;
738  config.open_gl.clear_current = fl_engine_gl_clear_current;
739  config.open_gl.fbo_callback = fl_engine_gl_get_fbo;
740  // No action required, as this is handled in
741  // compositor_present_view_callback.
742  config.open_gl.present = [](void* user_data) { return true; };
743  config.open_gl.make_resource_current = fl_engine_gl_make_resource_current;
744  config.open_gl.gl_external_texture_frame_callback =
746  break;
747  case kMetal:
748  case kVulkan:
749  default:
751  "Unsupported renderer type");
752  return FALSE;
753  }
754 
755  FlutterTaskRunnerDescription platform_task_runner = {};
756  platform_task_runner.struct_size = sizeof(FlutterTaskRunnerDescription);
757  platform_task_runner.user_data = self;
758  platform_task_runner.runs_task_on_current_thread_callback =
760  platform_task_runner.post_task_callback = fl_engine_post_task;
761  platform_task_runner.identifier = kPlatformTaskRunnerIdentifier;
762 
763  FlutterCustomTaskRunners custom_task_runners = {};
764  custom_task_runners.struct_size = sizeof(FlutterCustomTaskRunners);
765  custom_task_runners.platform_task_runner = &platform_task_runner;
766 
767  if (fl_dart_project_get_ui_thread_policy(self->project) ==
769  custom_task_runners.ui_task_runner = &platform_task_runner;
770  }
771 
772  g_autoptr(GPtrArray) command_line_args =
773  g_ptr_array_new_with_free_func(g_free);
774  g_ptr_array_insert(command_line_args, 0, g_strdup("flutter"));
775  for (const auto& env_switch : flutter::GetSwitchesFromEnvironment()) {
776  g_ptr_array_add(command_line_args, g_strdup(env_switch.c_str()));
777  }
778 
779  gchar** dart_entrypoint_args =
781 
782  FlutterProjectArgs args = {};
783  args.struct_size = sizeof(FlutterProjectArgs);
784  args.assets_path = fl_dart_project_get_assets_path(self->project);
785  args.icu_data_path = fl_dart_project_get_icu_data_path(self->project);
786  args.command_line_argc = command_line_args->len;
787  args.command_line_argv =
788  reinterpret_cast<const char* const*>(command_line_args->pdata);
789  args.platform_message_callback = fl_engine_platform_message_cb;
790  args.update_semantics_callback2 = fl_engine_update_semantics_cb;
791  args.custom_task_runners = &custom_task_runners;
792  args.shutdown_dart_vm_when_done = true;
793  args.on_pre_engine_restart_callback = fl_engine_on_pre_engine_restart_cb;
794  args.dart_entrypoint_argc =
795  dart_entrypoint_args != nullptr ? g_strv_length(dart_entrypoint_args) : 0;
796  args.dart_entrypoint_argv =
797  reinterpret_cast<const char* const*>(dart_entrypoint_args);
798  args.engine_id = reinterpret_cast<int64_t>(self);
799 
800  FlutterCompositor compositor = {};
801  compositor.struct_size = sizeof(FlutterCompositor);
802  compositor.user_data = self;
803  compositor.create_backing_store_callback =
805  compositor.collect_backing_store_callback =
807  compositor.present_view_callback = compositor_present_view_callback;
808  args.compositor = &compositor;
809 
810  if (self->embedder_api.RunsAOTCompiledDartCode()) {
811  FlutterEngineAOTDataSource source = {};
812  source.type = kFlutterEngineAOTDataSourceTypeElfPath;
813  source.elf_path = fl_dart_project_get_aot_library_path(self->project);
814  if (self->embedder_api.CreateAOTData(&source, &self->aot_data) !=
815  kSuccess) {
817  "Failed to create AOT data");
818  return FALSE;
819  }
820  args.aot_data = self->aot_data;
821  }
822 
823  FlutterEngineResult result = self->embedder_api.Initialize(
824  FLUTTER_ENGINE_VERSION, &config, &args, self, &self->engine);
825  if (result != kSuccess) {
827  "Failed to initialize Flutter engine");
828  return FALSE;
829  }
830 
831  result = self->embedder_api.RunInitialized(self->engine);
832  if (result != kSuccess) {
834  "Failed to run Flutter engine");
835  return FALSE;
836  }
837 
838  setup_locales(self);
839 
840  g_autoptr(FlSettings) settings = fl_settings_new();
841  self->settings_handler = fl_settings_handler_new(self);
842  fl_settings_handler_start(self->settings_handler, settings);
843 
844  self->platform_handler = fl_platform_handler_new(self->binary_messenger);
845 
846  setup_keyboard(self);
847 
848  result = self->embedder_api.UpdateSemanticsEnabled(self->engine, TRUE);
849  if (result != kSuccess) {
850  g_warning("Failed to enable accessibility features on Flutter engine");
851  }
852 
853  fl_display_monitor_start(self->display_monitor);
854 
855  return TRUE;
856 }
G_MODULE_EXPORT const gchar * fl_dart_project_get_aot_library_path(FlDartProject *self)
G_MODULE_EXPORT gchar ** fl_dart_project_get_dart_entrypoint_arguments(FlDartProject *self)
G_MODULE_EXPORT const gchar * fl_dart_project_get_icu_data_path(FlDartProject *self)
G_MODULE_EXPORT const gchar * fl_dart_project_get_assets_path(FlDartProject *self)
G_MODULE_EXPORT FlUIThreadPolicy fl_dart_project_get_ui_thread_policy(FlDartProject *project)
@ FL_UI_THREAD_POLICY_RUN_ON_PLATFORM_THREAD
void fl_display_monitor_start(FlDisplayMonitor *self)
static bool fl_engine_gl_external_texture_frame_callback(void *user_data, int64_t texture_id, size_t width, size_t height, FlutterOpenGLTexture *opengl_texture)
Definition: fl_engine.cc:406
static bool fl_engine_runs_task_on_current_thread(void *user_data)
Definition: fl_engine.cc:447
static void fl_engine_on_pre_engine_restart_cb(void *user_data)
Definition: fl_engine.cc:513
static bool compositor_create_backing_store_callback(const FlutterBackingStoreConfig *config, FlutterBackingStore *backing_store_out, void *user_data)
Definition: fl_engine.cc:327
static bool fl_engine_gl_make_current(void *user_data)
Definition: fl_engine.cc:382
static bool compositor_present_view_callback(const FlutterPresentViewInfo *info)
Definition: fl_engine.cc:358
static bool compositor_collect_backing_store_callback(const FlutterBackingStore *backing_store, void *user_data)
Definition: fl_engine.cc:343
static void fl_engine_post_task(FlutterTask task, uint64_t target_time_nanos, void *user_data)
Definition: fl_engine.cc:453
static uint32_t fl_engine_gl_get_fbo(void *user_data)
Definition: fl_engine.cc:394
static void * fl_engine_gl_proc_resolver(void *user_data, const char *name)
Definition: fl_engine.cc:378
static void setup_locales(FlEngine *self)
Definition: fl_engine.cc:200
static void fl_engine_update_semantics_cb(const FlutterSemanticsUpdate2 *update, void *user_data)
Definition: fl_engine.cc:482
static bool fl_engine_gl_make_resource_current(void *user_data)
Definition: fl_engine.cc:399
static void fl_engine_platform_message_cb(const FlutterPlatformMessage *message, void *user_data)
Definition: fl_engine.cc:462
static constexpr size_t kPlatformTaskRunnerIdentifier
Definition: fl_engine.cc:32
static bool fl_engine_gl_clear_current(void *user_data)
Definition: fl_engine.cc:388
G_BEGIN_DECLS G_MODULE_EXPORT FlValue * args
FlPlatformHandler * fl_platform_handler_new(FlBinaryMessenger *messenger)
FlSettings * fl_settings_new()
Definition: fl_settings.cc:55
void fl_settings_handler_start(FlSettingsHandler *self, FlSettings *settings)
FlSettingsHandler * fl_settings_handler_new(FlEngine *engine)
std::vector< std::string > GetSwitchesFromEnvironment()

References args, compositor_collect_backing_store_callback(), compositor_create_backing_store_callback(), compositor_present_view_callback(), error, fl_dart_project_get_aot_library_path(), fl_dart_project_get_assets_path(), fl_dart_project_get_dart_entrypoint_arguments(), fl_dart_project_get_icu_data_path(), fl_dart_project_get_ui_thread_policy(), fl_display_monitor_start(), FL_ENGINE_ERROR_FAILED, fl_engine_error_quark(), fl_engine_gl_clear_current(), fl_engine_gl_external_texture_frame_callback(), fl_engine_gl_get_fbo(), fl_engine_gl_make_current(), fl_engine_gl_make_resource_current(), fl_engine_gl_proc_resolver(), fl_engine_on_pre_engine_restart_cb(), fl_engine_platform_message_cb(), fl_engine_post_task(), fl_engine_runs_task_on_current_thread(), fl_engine_update_semantics_cb(), fl_platform_handler_new(), fl_settings_handler_new(), fl_settings_handler_start(), fl_settings_new(), FL_UI_THREAD_POLICY_RUN_ON_PLATFORM_THREAD, flutter::GetSwitchesFromEnvironment(), height, kPlatformTaskRunnerIdentifier, setup_keyboard(), setup_locales(), TRUE, and user_data.

Referenced by realize_cb(), and TEST().

◆ fl_engine_unregister_external_texture()

gboolean fl_engine_unregister_external_texture ( FlEngine *  engine,
int64_t  texture_id 
)

fl_engine_unregister_external_texture: @engine: an #FlEngine. @texture_id: the identifier of the texture that is not available anymore.

Tells the Flutter engine that an existing external texture is not available anymore.

Returns: TRUE on success.

Definition at line 1406 of file fl_engine.cc.

1407  {
1408  g_return_val_if_fail(FL_IS_ENGINE(self), FALSE);
1409  return self->embedder_api.UnregisterExternalTexture(self->engine,
1410  texture_id) == kSuccess;
1411 }

References texture_id.

Referenced by unregister_texture().

◆ fl_engine_update_accessibility_features()

void fl_engine_update_accessibility_features ( FlEngine *  engine,
int32_t  flags 
)

fl_engine_update_accessibility_features: @engine: an #FlEngine. @flags: the features to enable in the accessibility tree.

Tells the Flutter engine to update the flags on the accessibility tree.

Definition at line 1435 of file fl_engine.cc.

1435  {
1436  g_return_if_fail(FL_IS_ENGINE(self));
1437 
1438  if (self->engine == nullptr) {
1439  return;
1440  }
1441 
1442  self->embedder_api.UpdateAccessibilityFeatures(
1443  self->engine, static_cast<FlutterAccessibilityFeature>(flags));
1444 }

Referenced by update_settings().

◆ fl_engine_update_semantics_cb()

static void fl_engine_update_semantics_cb ( const FlutterSemanticsUpdate2 *  update,
void *  user_data 
)
static

Definition at line 482 of file fl_engine.cc.

483  {
484  FlEngine* self = FL_ENGINE(user_data);
485 
487 }

References fl_engine_signals, g_signal_emit(), SIGNAL_UPDATE_SEMANTICS, and user_data.

Referenced by fl_engine_start().

◆ free_locale()

static void free_locale ( FlutterLocale *  locale)
static

Definition at line 193 of file fl_engine.cc.

193  {
194  free(const_cast<gchar*>(locale->language_code));
195  free(const_cast<gchar*>(locale->country_code));
196  free(locale);
197 }

Referenced by setup_locales().

◆ G_DEFINE_TYPE_WITH_CODE()

G_DEFINE_TYPE_WITH_CODE ( FlEngine  ,
fl_engine  ,
G_TYPE_OBJECT  ,
G_IMPLEMENT_INTERFACE(fl_plugin_registry_get_type(), fl_engine_plugin_registry_iface_init  
)

Definition at line 118 of file fl_engine.cc.

125  { PROP_0, PROP_BINARY_MESSENGER, PROP_LAST };
@ PROP_LAST
@ PROP_0

References PROP_0, and PROP_LAST.

◆ parse_locale()

static void parse_locale ( const gchar *  locale,
gchar **  language,
gchar **  territory,
gchar **  codeset,
gchar **  modifier 
)
static

Definition at line 128 of file fl_engine.cc.

132  {
133  gchar* l = g_strdup(locale);
134 
135  // Locales are in the form "language[_territory][.codeset][@modifier]"
136  gchar* match = strrchr(l, '@');
137  if (match != nullptr) {
138  if (modifier != nullptr) {
139  *modifier = g_strdup(match + 1);
140  }
141  *match = '\0';
142  } else if (modifier != nullptr) {
143  *modifier = nullptr;
144  }
145 
146  match = strrchr(l, '.');
147  if (match != nullptr) {
148  if (codeset != nullptr) {
149  *codeset = g_strdup(match + 1);
150  }
151  *match = '\0';
152  } else if (codeset != nullptr) {
153  *codeset = nullptr;
154  }
155 
156  match = strrchr(l, '_');
157  if (match != nullptr) {
158  if (territory != nullptr) {
159  *territory = g_strdup(match + 1);
160  }
161  *match = '\0';
162  } else if (territory != nullptr) {
163  *territory = nullptr;
164  }
165 
166  if (language != nullptr) {
167  *language = l;
168  }
169 }

Referenced by setup_locales().

◆ send_key_event_cb()

static void send_key_event_cb ( bool  handled,
void *  user_data 
)
static

Definition at line 1317 of file fl_engine.cc.

1317  {
1318  g_autoptr(GTask) task = G_TASK(user_data);
1319  gboolean* return_value = g_new0(gboolean, 1);
1320  *return_value = handled;
1321  g_task_return_pointer(task, return_value, g_free);
1322 }

References user_data.

Referenced by fl_engine_send_key_event().

◆ setup_keyboard()

static void setup_keyboard ( FlEngine *  self)
static

Definition at line 489 of file fl_engine.cc.

489  {
490  g_clear_object(&self->keyboard_manager);
491  self->keyboard_manager = fl_keyboard_manager_new(self);
492 
493  g_clear_object(&self->keyboard_handler);
494  self->keyboard_handler =
495  fl_keyboard_handler_new(self->binary_messenger, self->keyboard_manager);
496 
497  GtkWidget* widget =
498  self->text_input_handler != nullptr
499  ? fl_text_input_handler_get_widget(self->text_input_handler)
500  : nullptr;
501  g_clear_object(&self->text_input_handler);
502  self->text_input_handler = fl_text_input_handler_new(self->binary_messenger);
503  if (widget != nullptr) {
504  fl_text_input_handler_set_widget(self->text_input_handler, widget);
505  }
506 }
FlKeyboardHandler * fl_keyboard_handler_new(FlBinaryMessenger *messenger, FlKeyboardManager *keyboard_manager)
FlTextInputHandler * fl_text_input_handler_new(FlBinaryMessenger *messenger)
void fl_text_input_handler_set_widget(FlTextInputHandler *self, GtkWidget *widget)
GtkWidget * fl_text_input_handler_get_widget(FlTextInputHandler *self)

References fl_keyboard_handler_new(), fl_keyboard_manager_new(), fl_text_input_handler_get_widget(), fl_text_input_handler_new(), and fl_text_input_handler_set_widget().

Referenced by fl_engine_on_pre_engine_restart_cb(), and fl_engine_start().

◆ setup_locales()

static void setup_locales ( FlEngine *  self)
static

Definition at line 200 of file fl_engine.cc.

200  {
201  const gchar* const* languages = g_get_language_names();
202  g_autoptr(GPtrArray) locales_array = g_ptr_array_new_with_free_func(
203  reinterpret_cast<GDestroyNotify>(free_locale));
204  for (int i = 0; languages[i] != nullptr; i++) {
205  g_autofree gchar* locale_string = g_strstrip(g_strdup(languages[i]));
206 
207  // Ignore empty locales, caused by settings like `LANGUAGE=pt_BR:`
208  if (strcmp(locale_string, "") == 0) {
209  continue;
210  }
211 
212  g_autofree gchar* language = nullptr;
213  g_autofree gchar* territory = nullptr;
214  parse_locale(locale_string, &language, &territory, nullptr, nullptr);
215 
216  // Ignore duplicate locales, caused by settings like `LANGUAGE=C` (returns
217  // two "C") or `LANGUAGE=en:en`
218  gboolean has_locale = FALSE;
219  for (guint j = 0; !has_locale && j < locales_array->len; j++) {
220  FlutterLocale* locale =
221  reinterpret_cast<FlutterLocale*>(g_ptr_array_index(locales_array, j));
222  has_locale = g_strcmp0(locale->language_code, language) == 0 &&
223  g_strcmp0(locale->country_code, territory) == 0;
224  }
225  if (has_locale) {
226  continue;
227  }
228 
229  FlutterLocale* locale =
230  static_cast<FlutterLocale*>(g_malloc0(sizeof(FlutterLocale)));
231  g_ptr_array_add(locales_array, locale);
232  locale->struct_size = sizeof(FlutterLocale);
233  locale->language_code =
234  reinterpret_cast<const gchar*>(g_steal_pointer(&language));
235  locale->country_code =
236  reinterpret_cast<const gchar*>(g_steal_pointer(&territory));
237  locale->script_code = nullptr;
238  locale->variant_code = nullptr;
239  }
240  FlutterLocale** locales =
241  reinterpret_cast<FlutterLocale**>(locales_array->pdata);
242  FlutterEngineResult result = self->embedder_api.UpdateLocales(
243  self->engine, const_cast<const FlutterLocale**>(locales),
244  locales_array->len);
245  if (result != kSuccess) {
246  g_warning("Failed to set up Flutter locales");
247  }
248 }
static void parse_locale(const gchar *locale, gchar **language, gchar **territory, gchar **codeset, gchar **modifier)
Definition: fl_engine.cc:128
static void free_locale(FlutterLocale *locale)
Definition: fl_engine.cc:193

References free_locale(), i, and parse_locale().

Referenced by fl_engine_start().

◆ view_added_cb()

static void view_added_cb ( const FlutterAddViewResult *  result)
static

Definition at line 171 of file fl_engine.cc.

171  {
172  g_autoptr(GTask) task = G_TASK(result->user_data);
173 
174  if (result->added) {
175  g_task_return_boolean(task, TRUE);
176  } else {
177  g_task_return_new_error(task, fl_engine_error_quark(),
178  FL_ENGINE_ERROR_FAILED, "Failed to add view");
179  }
180 }

References FL_ENGINE_ERROR_FAILED, fl_engine_error_quark(), and TRUE.

Referenced by fl_engine_add_view().

◆ view_removed_cb()

static void view_removed_cb ( const FlutterRemoveViewResult *  result)
static

Definition at line 182 of file fl_engine.cc.

182  {
183  g_autoptr(GTask) task = G_TASK(result->user_data);
184 
185  if (result->removed) {
186  g_task_return_boolean(task, TRUE);
187  } else {
188  g_task_return_new_error(task, fl_engine_error_quark(),
189  FL_ENGINE_ERROR_FAILED, "Failed to remove view");
190  }
191 }

References FL_ENGINE_ERROR_FAILED, fl_engine_error_quark(), and TRUE.

Referenced by fl_engine_remove_view().

Variable Documentation

◆ fl_engine_signals

guint fl_engine_signals[LAST_SIGNAL]
static

◆ kMousePointerDeviceId

constexpr int32_t kMousePointerDeviceId = 0
staticconstexpr

Definition at line 36 of file fl_engine.cc.

Referenced by fl_engine_send_mouse_pointer_event().

◆ kPlatformTaskRunnerIdentifier

constexpr size_t kPlatformTaskRunnerIdentifier = 1
staticconstexpr

Definition at line 32 of file fl_engine.cc.

Referenced by fl_engine_start().

◆ kPointerPanZoomDeviceId

constexpr int32_t kPointerPanZoomDeviceId = 1
staticconstexpr

Definition at line 37 of file fl_engine.cc.

Referenced by fl_engine_send_pointer_pan_zoom_event().