union_ad_ssgf/linux/union_ad_ssgf_plugin.cc
2024-10-15 15:31:53 +08:00

77 lines
2.6 KiB
C++

#include "include/union_ad_ssgf/union_ad_ssgf_plugin.h"
#include <flutter_linux/flutter_linux.h>
#include <gtk/gtk.h>
#include <sys/utsname.h>
#include <cstring>
#include "union_ad_ssgf_plugin_private.h"
#define UNION_AD_SSGF_PLUGIN(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), union_ad_ssgf_plugin_get_type(), \
UnionAdSsgfPlugin))
struct _UnionAdSsgfPlugin {
GObject parent_instance;
};
G_DEFINE_TYPE(UnionAdSsgfPlugin, union_ad_ssgf_plugin, g_object_get_type())
// Called when a method call is received from Flutter.
static void union_ad_ssgf_plugin_handle_method_call(
UnionAdSsgfPlugin* self,
FlMethodCall* method_call) {
g_autoptr(FlMethodResponse) response = nullptr;
const gchar* method = fl_method_call_get_name(method_call);
if (strcmp(method, "getPlatformVersion") == 0) {
response = get_platform_version();
} else {
response = FL_METHOD_RESPONSE(fl_method_not_implemented_response_new());
}
fl_method_call_respond(method_call, response, nullptr);
}
FlMethodResponse* get_platform_version() {
struct utsname uname_data = {};
uname(&uname_data);
g_autofree gchar *version = g_strdup_printf("Linux %s", uname_data.version);
g_autoptr(FlValue) result = fl_value_new_string(version);
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
}
static void union_ad_ssgf_plugin_dispose(GObject* object) {
G_OBJECT_CLASS(union_ad_ssgf_plugin_parent_class)->dispose(object);
}
static void union_ad_ssgf_plugin_class_init(UnionAdSsgfPluginClass* klass) {
G_OBJECT_CLASS(klass)->dispose = union_ad_ssgf_plugin_dispose;
}
static void union_ad_ssgf_plugin_init(UnionAdSsgfPlugin* self) {}
static void method_call_cb(FlMethodChannel* channel, FlMethodCall* method_call,
gpointer user_data) {
UnionAdSsgfPlugin* plugin = UNION_AD_SSGF_PLUGIN(user_data);
union_ad_ssgf_plugin_handle_method_call(plugin, method_call);
}
void union_ad_ssgf_plugin_register_with_registrar(FlPluginRegistrar* registrar) {
UnionAdSsgfPlugin* plugin = UNION_AD_SSGF_PLUGIN(
g_object_new(union_ad_ssgf_plugin_get_type(), nullptr));
g_autoptr(FlStandardMethodCodec) codec = fl_standard_method_codec_new();
g_autoptr(FlMethodChannel) channel =
fl_method_channel_new(fl_plugin_registrar_get_messenger(registrar),
"union_ad_ssgf",
FL_METHOD_CODEC(codec));
fl_method_channel_set_method_call_handler(channel, method_call_cb,
g_object_ref(plugin),
g_object_unref);
g_object_unref(plugin);
}