SecureServer.h
Go to the documentation of this file.
1 // Copyright (c) 2017 Digital Barriers
4 
53 #pragma once
54 
55 #include "Server.h"
56 
57 namespace EdgeVisDecoderSDK
58 {
59  class ServerKeyInfo;
60 
61  class SecureServer : public Server
62  {
63  public:
64 
74  DB_EDGEVIS_SDK SecureServer( const std::wstring& appName, const std::wstring& appMetadata );
75 
76  DB_EDGEVIS_SDK virtual ~SecureServer();
77 
124  DB_EDGEVIS_SDK virtual OpResult ConnectSecure(
125  const ServerAddresses& hostAddresses,
126  ServerKeyInfo keyInfo,
127  const std::wstring& username,
128  const std::wstring& password,
129  const std::wstring& new_password,
130  ServerAddresses& availableAddresses,
131  ConnectionStrategy connect_strategy,
133  );
134 
181  DB_EDGEVIS_SDK virtual OpResult ConnectSecure(
182  const ServerAddresses& hostAddresses,
183  ServerKeyInfo keyInfo,
184  const Credentials credentials,
185  ServerAddresses& availableAddresses,
186  ConnectionStrategy connect_strategy,
188  );
189 
233  DB_EDGEVIS_SDK virtual OpResult ConnectSecure(
234  const ServerAddresses& hostAddresses,
235  ServerKeyInfo keyInfo,
236  const Credentials credentials,
237  ServerAddresses& availableAddresses
238  );
239 
240 
253  DB_EDGEVIS_SDK virtual ServerInfo QueryServerInfoSecure(const ServerAddresses& hostAddresses);
254 
255 
278  DB_EDGEVIS_SDK virtual ServerKeyInfo QueryServerKeyInfo(const ServerAddresses& hostAddresses);
279 
304  DB_EDGEVIS_SDK virtual OpResult ValidateCredentialsSecure(
305  const ServerAddresses& hostAddresses,
306  ServerKeyInfo keyInfo,
307  const Credentials& credentials,
308  ServerAddresses& availableAddresses);
309 
334  DB_EDGEVIS_SDK virtual OpResult ValidateCredentialsSecure(const ServerAddresses& hostAddresses,
335  ServerKeyInfo keyInfo,
336  const std::wstring& username,
337  const std::wstring& password,
338  const std::wstring& new_password,
339  ServerAddresses& availableAddresses);
340 
347  DB_EDGEVIS_SDK void CancelQueryServerKeyInfo();
348 
349 
357  DB_EDGEVIS_SDK bool IsSecureConnection() const;
358 
359 
368  DB_EDGEVIS_SDK ServerKeyInfo GetServerKeyInfo() const;
369 
370 
379  DB_EDGEVIS_SDK ServerKeyInfo GetUpgradedServerKeyInfo() const;
380 
381  };
382 }
A SecureServer interface is used to make an encrypted connection to an EdgeVis server.
Definition: SecureServer.h:61
Holds the server credentials for the user logging in.
Definition: Credentials.h:29
Correct the image for aspect ratio.
Definition: ServerConnectInfo.h:28
ConnectionStrategy
The strategy the SDK should use to connect to a cluster of servers.
Definition: ConnectionStrategy.h:20
Holds the current status of the server.
Definition: ServerInfo.h:29
This stores server addresses that the SDK should use to connect to.
Definition: ServerAddresses.h:48
DB_EDGEVIS_SDK SecureServer(const std::wstring &appName, const std::wstring &appMetadata)
Constructor for the SecureServer object.
Holds the server encryption key information.
Definition: ServerKeyInfo.h:29
A Server interface is used to make a connection to an EdgeVis server.
Definition: Server.h:54
The EdgeVis Decoder SDK namespace.
virtual DB_EDGEVIS_SDK ServerInfo QueryServerInfoSecure(const ServerAddresses &hostAddresses)
Queries the server on a secure connection to obtain its current information.
OpResult
Result of an operation.
Definition: OpResult.h:25
ServerConnectInfo
This contains values representing configuration info for the local server object on connection...
Definition: ServerConnectInfo.h:25