Mercurial > hg > orthanc-stone
view Platforms/Wasm/WasmWebService.h @ 303:ed1a4302154f am-callable-and-promise
new messages in wasm too
author | am@osimis.io |
---|---|
date | Tue, 18 Sep 2018 18:17:26 +0200 |
parents | 3897f9f28cfa |
children | 14ef1227120f |
line wrap: on
line source
#pragma once #include <Framework/Toolbox/IWebService.h> #include <Core/OrthancException.h> namespace OrthancStone { class WasmWebService : public IWebService { private: std::string baseUri_; static MessageBroker* broker_; // Private constructor => Singleton design pattern WasmWebService(MessageBroker& broker) : IWebService(broker), baseUri_("../../") // note: this is configurable from the JS code by calling WasmWebService_SetBaseUri { } public: static WasmWebService& GetInstance() { if (broker_ == NULL) { printf("WasmWebService::GetInstance(): broker not initialized\n"); throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls); } static WasmWebService instance(*broker_); return instance; } static void SetBroker(MessageBroker& broker) { broker_ = &broker; } void SetBaseUri(const std::string baseUri); virtual void GetAsync(const std::string& uri, const Headers& headers, Orthanc::IDynamicObject* payload, MessageHandler<IWebService::HttpRequestSuccessMessage>* successCallable, MessageHandler<IWebService::HttpRequestErrorMessage>* failureCallable); virtual void PostAsync(const std::string& uri, const Headers& headers, const std::string& body, Orthanc::IDynamicObject* payload, MessageHandler<IWebService::HttpRequestSuccessMessage>* successCallable, MessageHandler<IWebService::HttpRequestErrorMessage>* failureCallable); virtual void Start() { } virtual void Stop() { } }; }