annotate Platforms/Wasm/WasmPlatformApplicationAdapter.h @ 508:7105a0bad250 bgo-commands-codegen

- Added HandleSerializedMessage to IStoneApplication (empty impl) - Split UpdateWebApplication with "WithString" and "WithSerializedMessage" variants - Due to the modules in TS, globals are now unallowed and the callbacks from C++ to JS are stored in the "window" instance - Split UpdateStoneApplicationStatusFromCpp with "WithString" and "WithSerializedMessage" variants - Split NotifyStatusUpdateFromCppToWeb with "WithString" and "WithSerializedMessage" variants - SendMessageToStoneApplication (C++ global) has been split into SendSerializedMessageToStoneApplication and SendCommandToStoneApplication - In WasmPlatformApplicationAdapter: HandleMessageFromWeb becomes HandleCommandFromWeb - In WasmPlatformApplicationAdapter: added HandleSerializedMessageFromWeb - stonegentool now handles the "json" primitive type (used, a.o., in the VSOL "EditInstance" message) - Fixed indentation and added json serialization overloads in the stonegentool templates - Added test of the json primitive type to testWasmIntegrated (in Resources/CodeGeneration) - Adapted testWasmIntegrated (in Resources/CodeGeneration) to the changes above
author Benjamin Golinvaux <bgo@osimis.io>
date Wed, 06 Mar 2019 10:14:59 +0100
parents be2660b6e40a
children 79bb0a02d1cc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
307
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
1 #pragma once
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
2
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
3 #include <string>
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
4 #include <Framework/Messages/IObserver.h>
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
5 #include <Applications/IStoneApplication.h>
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
6
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
7 namespace OrthancStone
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
8 {
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
9 class WasmPlatformApplicationAdapter : public IObserver
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
10 {
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
11 IStoneApplication& application_;
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
12 public:
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
13 WasmPlatformApplicationAdapter(MessageBroker& broker, IStoneApplication& application);
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
14
508
7105a0bad250 - Added HandleSerializedMessage to IStoneApplication (empty impl)
Benjamin Golinvaux <bgo@osimis.io>
parents: 307
diff changeset
15 virtual void HandleSerializedMessageFromWeb(std::string& output, const std::string& input);
7105a0bad250 - Added HandleSerializedMessage to IStoneApplication (empty impl)
Benjamin Golinvaux <bgo@osimis.io>
parents: 307
diff changeset
16 virtual void HandleCommandFromWeb(std::string& output, const std::string& input);
7105a0bad250 - Added HandleSerializedMessage to IStoneApplication (empty impl)
Benjamin Golinvaux <bgo@osimis.io>
parents: 307
diff changeset
17 virtual void NotifyStatusUpdateFromCppToWebWithString(const std::string& statusUpdateMessage);
7105a0bad250 - Added HandleSerializedMessage to IStoneApplication (empty impl)
Benjamin Golinvaux <bgo@osimis.io>
parents: 307
diff changeset
18 virtual void NotifyStatusUpdateFromCppToWebWithSerializedMessage(const std::string& statusUpdateMessage);
307
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
19 };
be2660b6e40a wip: commands + status update
am@osimis.io
parents:
diff changeset
20 }