This commit is contained in:
John Smith
2022-01-29 13:18:28 -05:00
parent 0c6aa6d439
commit 681c65b68c
3 changed files with 91 additions and 85 deletions

View File

@@ -14,68 +14,74 @@
#include <memory>
#include <sstream>
namespace {
namespace
{
class VeilidPlugin : public flutter::Plugin {
public:
static void RegisterWithRegistrar(flutter::PluginRegistrarWindows *registrar);
class VeilidPlugin : public flutter::Plugin
{
public:
static void RegisterWithRegistrar(flutter::PluginRegistrarWindows *registrar);
VeilidPlugin();
VeilidPlugin();
virtual ~VeilidPlugin();
virtual ~VeilidPlugin();
private:
// Called when a method is called on this plugin's channel from Dart.
void HandleMethodCall(
const flutter::MethodCall<flutter::EncodableValue> &method_call,
std::unique_ptr<flutter::MethodResult<flutter::EncodableValue>> result);
};
private:
// Called when a method is called on this plugin's channel from Dart.
void HandleMethodCall(
const flutter::MethodCall<flutter::EncodableValue> &method_call,
std::unique_ptr<flutter::MethodResult<flutter::EncodableValue>> result);
};
// static
void VeilidPlugin::RegisterWithRegistrar(
flutter::PluginRegistrarWindows *registrar) {
auto channel =
std::make_unique<flutter::MethodChannel<flutter::EncodableValue>>(
registrar->messenger(), "veilid",
&flutter::StandardMethodCodec::GetInstance());
// static
void VeilidPlugin::RegisterWithRegistrar(
flutter::PluginRegistrarWindows *registrar)
{
auto channel =
std::make_unique<flutter::MethodChannel<flutter::EncodableValue>>(
registrar->messenger(), "veilid",
&flutter::StandardMethodCodec::GetInstance());
auto plugin = std::make_unique<VeilidPlugin>();
auto plugin = std::make_unique<VeilidPlugin>();
channel->SetMethodCallHandler(
[plugin_pointer = plugin.get()](const auto &call, auto result) {
plugin_pointer->HandleMethodCall(call, std::move(result));
});
channel->SetMethodCallHandler(
[plugin_pointer = plugin.get()](const auto &call, auto result)
{
plugin_pointer->HandleMethodCall(call, std::move(result));
});
registrar->AddPlugin(std::move(plugin));
}
VeilidPlugin::VeilidPlugin() {}
VeilidPlugin::~VeilidPlugin() {}
void VeilidPlugin::HandleMethodCall(
const flutter::MethodCall<flutter::EncodableValue> &method_call,
std::unique_ptr<flutter::MethodResult<flutter::EncodableValue>> result) {
if (method_call.method_name().compare("getPlatformVersion") == 0) {
std::ostringstream version_stream;
version_stream << "Windows ";
if (IsWindows10OrGreater()) {
version_stream << "10+";
} else if (IsWindows8OrGreater()) {
version_stream << "8";
} else if (IsWindows7OrGreater()) {
version_stream << "7";
}
result->Success(flutter::EncodableValue(version_stream.str()));
} else {
result->NotImplemented();
registrar->AddPlugin(std::move(plugin));
}
}
} // namespace
VeilidPlugin::VeilidPlugin() {}
VeilidPlugin::~VeilidPlugin() {}
void VeilidPlugin::HandleMethodCall(
const flutter::MethodCall<flutter::EncodableValue> &method_call,
std::unique_ptr<flutter::MethodResult<flutter::EncodableValue>> result)
{
// if (method_call.method_name().compare("getPlatformVersion") == 0) {
// std::ostringstream version_stream;
// version_stream << "Windows ";
// if (IsWindows10OrGreater()) {
// version_stream << "10+";
// } else if (IsWindows8OrGreater()) {
// version_stream << "8";
// } else if (IsWindows7OrGreater()) {
// version_stream << "7";
// }
// result->Success(flutter::EncodableValue(version_stream.str()));
// } else {
result->NotImplemented();
// }
}
} // namespace
void VeilidPluginRegisterWithRegistrar(
FlutterDesktopPluginRegistrarRef registrar) {
FlutterDesktopPluginRegistrarRef registrar)
{
VeilidPlugin::RegisterWithRegistrar(
flutter::PluginRegistrarManager::GetInstance()
->GetRegistrar<flutter::PluginRegistrarWindows>(registrar));