Server.h
Go to the documentation of this file.
1 // Copyright (c) 2016 Digital Barriers
4 
25 #pragma once
26 
27 #include "OpResult.h"
28 #include "EdgeVisSDK.h"
29 #include "ServerConnectInfo.h"
30 #include "Device.h"
31 #include "Encoder.h"
32 #include "Pimpl.h"
33 #include "ConnectionStrategy.h"
34 #include "ServerAddresses.h"
35 #include "Credentials.h"
36 #include "ClientSecurityPolicy.h"
37 #include "LoggingLevel.h"
38 
39 namespace EdgeVisDecoderSDK
40 {
41  typedef EdgeVisSDKCore::ServerAddresses ServerAddresses;
42 
43  class ServerImpl;
44  class PasswordResetInfo;
45  class ServerInfo;
46  class Stream;
47  class IServerListener;
48  class IServerEventListener;
49  class CamsRuleManager;
50  class CamsNotificationManager;
51  class UserNotificationPreferences;
52  class MFALoginResponse;
53 
54  class Server : public EdgeVisSDKPimpl<ServerImpl>
55  {
56  public:
57 
58  DB_EDGEVIS_SDK Server();
59 
67  DB_EDGEVIS_SDK Server( const std::wstring& appName, const std::wstring& appMetadata );
68 
69  EdgeVisSDKPimplWeakConstructor(Server);
70 
71  DB_EDGEVIS_SDK virtual ~Server();
72 
78  DB_EDGEVIS_SDK static std::wstring ClientVersion();
79 
93  DB_EDGEVIS_SDK void SetClusterInfoCachingEnabled(bool enabled);
94 
126  DB_EDGEVIS_SDK OpResult Connect(
127  const ServerAddresses& hostAddresses,
128  const std::wstring& username,
129  const std::wstring& password,
130  const std::wstring& new_password,
131  ServerAddresses& availableAddresses,
132  ConnectionStrategy connect_strategy,
134  );
135 
170  DB_EDGEVIS_SDK OpResult Connect(
171  const ServerAddresses& hostAddresses,
172  const Credentials credentials,
173  ServerAddresses& availableAddresses,
174  ConnectionStrategy connect_strategy,
176  );
177 
209  DB_EDGEVIS_SDK OpResult Connect(
210  const ServerAddresses& hostAddresses,
211  const Credentials credentials,
212  ServerAddresses& availableAddresses
213  );
214 
222  DB_EDGEVIS_SDK PasswordResetInfo GetPasswordResetInfo() const;
223 
231  DB_EDGEVIS_SDK MFALoginResponse GetMFALoginResponse() const;
232 
239  DB_EDGEVIS_SDK std::wstring GetDevicePassword() const;
240 
246  DB_EDGEVIS_SDK bool HasCams() const;
247 
254  DB_EDGEVIS_SDK bool SupportsClientCamsRuleBuilder() const;
255 
271  DB_EDGEVIS_SDK ServerInfo QueryServerInfo( const ServerAddresses& hostAddresses );
272 
304  DB_EDGEVIS_SDK OpResult ValidateCredentials(
305  const ServerAddresses& hostAddresses,
306  const Credentials& credentials,
307  ServerAddresses& availableAddresses);
308 
344  DB_EDGEVIS_SDK OpResult ValidateCredentials( const ServerAddresses& hostAddresses,
345  const std::wstring& username,
346  const std::wstring& password,
347  const std::wstring& new_password,
348  ServerAddresses& availableAddresses);
349 
354  DB_EDGEVIS_SDK void CancelQueryServerInfo();
355 
360  DB_EDGEVIS_SDK void CancelValidateCredentials();
361 
370 
376  DB_EDGEVIS_SDK int32_t GetAvailableLicenses() const;
377 
382  DB_EDGEVIS_SDK void Disconnect();
383 
389  DB_EDGEVIS_SDK bool IsConnected() const;
390 
396  DB_EDGEVIS_SDK ServerInfo GetServerInfo() const;
397 
416  DB_EDGEVIS_SDK OpResult QueryEncoders(std::vector<Encoder> &result);
417 
437  DB_EDGEVIS_SDK OpResult GetEncoders(std::vector<Encoder> &result);
438 
457  DB_EDGEVIS_SDK OpResult QueryEncoder( Encoder &result, const std::wstring& name );
458 
470  DB_EDGEVIS_SDK OpResult GetDevices(std::vector<Device>& result) const;
471 
485  DB_EDGEVIS_SDK OpResult GetEncodersForDeviceUUID(const std::wstring& deviceUUID, std::vector<Encoder>& result) const;
486 
500  DB_EDGEVIS_SDK OpResult GetDeviceForEncoderUUID(const std::wstring& encoderUUID, Device& result);
501 
508  DB_EDGEVIS_SDK void RegisterListener( IServerListener* listener );
509 
516  DB_EDGEVIS_SDK void UnregisterListener( IServerListener* listener );
517 
524  DB_EDGEVIS_SDK void RegisterEventListener(IServerEventListener* listener);
525 
532  DB_EDGEVIS_SDK void UnregisterEventListener(IServerEventListener* listener);
533 
553  DB_EDGEVIS_SDK Device GetDevice(const std::wstring& name) const;
554 
574  DB_EDGEVIS_SDK Device GetDeviceByUUID(const std::wstring& uuid) const;
575 
594  DB_EDGEVIS_SDK Encoder GetEncoder( const std::wstring& name ) const;
595 
614  DB_EDGEVIS_SDK Encoder GetEncoderByUUID(const std::wstring& uuid) const;
615 
622  DB_EDGEVIS_SDK std::wstring Name() const;
623 
630  DB_EDGEVIS_SDK std::wstring Version() const;
631 
640  DB_EDGEVIS_SDK std::wstring UniqueID() const;
641 
653  DB_EDGEVIS_SDK bool IsAtLeastVersion(int32_t major, int32_t minor, int32_t build) const;
654 
661  DB_EDGEVIS_SDK bool SupportsUserConfig();
662 
673  DB_EDGEVIS_SDK OpResult GetUserConfig(UserNotificationPreferences& user_config);
674 
696  DB_EDGEVIS_SDK OpResult SetUserConfig(UserNotificationPreferences& user_config);
697 
705  DB_EDGEVIS_SDK bool SupportsEncoderManagerURLs() const;
706 
713  DB_EDGEVIS_SDK bool SupportsCamsTemplates() const;
714 
722  DB_EDGEVIS_SDK std::wstring GetWebAPIToken() const;
723 
729  DB_EDGEVIS_SDK std::wstring UserName() const;
730 
738  DB_EDGEVIS_SDK std::wstring UserAccountName() const;
739 
747  DB_EDGEVIS_SDK int64_t GetServerClockOffset() const;
748 
754  DB_EDGEVIS_SDK int64_t GetTotalBytesSent();
755 
761  DB_EDGEVIS_SDK int64_t GetTotalBytesReceived();
762 
766  DB_EDGEVIS_SDK void ResetDataUsageStats();
767 
774  DB_EDGEVIS_SDK bool SupportsClientSecurityPolicy() const;
775 
783 
794  DB_EDGEVIS_SDK OpResult GetClientSecurityPolicy(ClientSecurityPolicy& policy);
795 
810  DB_EDGEVIS_SDK void SetLoggingLevel(EdgeVisSDKCore::LoggingLevel level, const std::wstring& log_location);
811 
818  DB_EDGEVIS_SDK bool SupportsStreamProfiles() const;
819  };
820 }
DB_EDGEVIS_SDK std::wstring Name() const
Returns the name of friendly name of the server currently connected to If not connected this will ret...
DB_EDGEVIS_SDK std::wstring Version() const
Returns the name of version number of the server currently connected to If not connected this will re...
DB_EDGEVIS_SDK MFALoginResponse GetMFALoginResponse() const
Retrieve the multiple factor login response.
DB_EDGEVIS_SDK PasswordResetInfo GetPasswordResetInfo() const
If a users password must be reset then the limitation for the password can be retrieved and used to e...
The interface for receiving CAMS notification events from the Server.
Definition: IServerEventListener.h:37
DB_EDGEVIS_SDK std::wstring UserAccountName() const
Returns the name of the account name for the current user.
DB_EDGEVIS_SDK bool SupportsUserConfig()
Returns if the server supports user config using the GetUserConfig and SetUserConfig methods...
DB_EDGEVIS_SDK void SetLoggingLevel(EdgeVisSDKCore::LoggingLevel level, const std::wstring &log_location)
Set the logging level and log file location.
DB_EDGEVIS_SDK void SetClusterInfoCachingEnabled(bool enabled)
Enables or disables automatic caching of the server cluster token in a file managed by the SDK...
DB_EDGEVIS_SDK std::wstring GetWebAPIToken() const
Retrieve a new web API token from the Server for the currently logged in user.
DB_EDGEVIS_SDK std::wstring UniqueID() const
Returns the name of Unique ID of the server currently connected to.
DB_EDGEVIS_SDK OpResult GetClientSecurityPolicy(ClientSecurityPolicy &policy)
Gets the cached Client Security Policy object.
DB_EDGEVIS_SDK OpResult GetDeviceForEncoderUUID(const std::wstring &encoderUUID, Device &result)
Returns the parent Device for an Encoder UUID.
A class representing the current user&#39;s CAMS notification preferences.
Definition: UserNotificationPreferences.h:31
DB_EDGEVIS_SDK Device GetDeviceByUUID(const std::wstring &uuid) const
Returns the Device object with the specified UUID.
DB_EDGEVIS_SDK ServerInfo GetServerInfo() const
Returns the current ServerInfo for the connected server.
DB_EDGEVIS_SDK Encoder GetEncoder(const std::wstring &name) const
Returns the Encoder object with the specified name.
DB_EDGEVIS_SDK void Disconnect()
Disconnects the session from the Server.
DB_EDGEVIS_SDK void RegisterEventListener(IServerEventListener *listener)
Registers the specified listener to be notified when a CAMS notification associated with the Server h...
DB_EDGEVIS_SDK bool IsAtLeastVersion(int32_t major, int32_t minor, int32_t build) const
Will check that the server is at least a certain version number.
DB_EDGEVIS_SDK OpResult GetEncodersForDeviceUUID(const std::wstring &deviceUUID, std::vector< Encoder > &result) const
Returns a list of Encoders available for a particular Device using its UUID.
Describes the client security policy set at the server.
Definition: ClientSecurityPolicy.h:27
A Device represents a physical device that may provide one or more Encoder instances.
Definition: Device.h:32
DB_EDGEVIS_SDK bool IsConnected() const
Determines of the Server session is currently connected.
Holds the server credentials for the user logging in.
Definition: Credentials.h:29
DB_EDGEVIS_SDK std::wstring UserName() const
Returns the name of the current user.
DB_EDGEVIS_SDK OpResult SetUserConfig(UserNotificationPreferences &user_config)
Update the current user&#39;s notification preferences on the server.
Correct the image for aspect ratio.
Definition: ServerConnectInfo.h:28
DB_EDGEVIS_SDK CamsNotificationManager GetCamsNotificationManager()
Retrieve the CAMS notification manager for this server.
DB_EDGEVIS_SDK Encoder GetEncoderByUUID(const std::wstring &uuid) const
Returns the Encoder object with the specified UUID.
static DB_EDGEVIS_SDK std::wstring ClientVersion()
Returns the version of the SDK.
DB_EDGEVIS_SDK void RegisterListener(IServerListener *listener)
Registers the specified listener to be notified when an event associated with the Server happens...
DB_EDGEVIS_SDK int64_t GetTotalBytesSent()
Returns the current total number of bytes sent on this server.
DB_EDGEVIS_SDK OpResult QueryEncoder(Encoder &result, const std::wstring &name)
Sends a query to the server to obtain information about an encoder that the user has access to...
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
DB_EDGEVIS_SDK void CancelValidateCredentials()
Cancels the query for the Validate Credentials.
DB_EDGEVIS_SDK OpResult GetDevices(std::vector< Device > &result) const
Returns a list of all available Devices.
DB_EDGEVIS_SDK Device GetDevice(const std::wstring &name) const
Returns the Device object with the specified name.
DB_EDGEVIS_SDK int32_t GetAvailableLicenses() const
Returns the number of available licenses on the system.
DB_EDGEVIS_SDK bool SupportsClientCamsRuleBuilder() const
Check if this server supports CAMS rule builder in client applications.
DB_EDGEVIS_SDK void UnregisterListener(IServerListener *listener)
Removes the specified listener from the set of listeners to be notified about Server.
This stores server addresses that the SDK should use to connect to.
Definition: ServerAddresses.h:48
An Encoder interface represents an Encoder that is managed by the server.
Definition: Encoder.h:58
DB_EDGEVIS_SDK ServerInfo QueryServerInfo(const ServerAddresses &hostAddresses)
Queries the server to obtain its current information.
DB_EDGEVIS_SDK int64_t GetTotalBytesReceived()
Returns the current total number of bytes received on this server.
DB_EDGEVIS_SDK bool SupportsEncoderManagerURLs() const
Returns if the server supports encoder manager URLs obtained using the Encoder::GetManagerURL method...
Describes the details required for resetting a users password.
Definition: PasswordResetInfo.h:29
DB_EDGEVIS_SDK void ResetDataUsageStats()
Resets the count of the total number of bytes sent and received for this server.
DB_EDGEVIS_SDK void UnregisterEventListener(IServerEventListener *listener)
Removes the specified listener from the set of listeners to be notified about Server CAMS notificatio...
DB_EDGEVIS_SDK bool SupportsStreamProfiles() const
Returns if the server supports the new stream profile configuration API for encoders.
DB_EDGEVIS_SDK int64_t GetServerClockOffset() const
Returns difference in the clock timestamps between the server clock and the clock on the client machi...
A Server interface is used to make a connection to an EdgeVis server.
Definition: Server.h:54
DB_EDGEVIS_SDK OpResult QueryClientSecurityPolicy(ClientSecurityPolicy &policy)
Queries the server to obtain the client security policy for the current user.
DB_EDGEVIS_SDK bool SupportsCamsTemplates() const
Returns if the server supports template fields in CAMS rules.
The EdgeVis Decoder SDK namespace.
LoggingLevel
Contains the available logging levels.
Definition: LoggingLevel.h:19
DB_EDGEVIS_SDK bool HasCams() const
Check if this server supports CAMS notifications.
DB_EDGEVIS_SDK bool SupportsClientSecurityPolicy() const
Returns if the server supports client security policies.
DB_EDGEVIS_SDK OpResult ValidateCredentials(const ServerAddresses &hostAddresses, const Credentials &credentials, ServerAddresses &availableAddresses)
Test that the supplied credentials are valid for the given server.
DB_EDGEVIS_SDK OpResult Connect(const ServerAddresses &hostAddresses, const std::wstring &username, const std::wstring &password, const std::wstring &new_password, ServerAddresses &availableAddresses, ConnectionStrategy connect_strategy, ServerConnectInfo flags=SCI_ASPECT_CORRECT)
Connects to an EdgeVis server.
DB_EDGEVIS_SDK void CancelQueryServerInfo()
Cancels the query for the ServerInfo.
DB_EDGEVIS_SDK std::wstring GetDevicePassword() const
Retrieve a device password to use when logging in.
Holds the result of a time based one time passcode (OTP) login attempt.
Definition: MFALoginResponse.h:32
DB_EDGEVIS_SDK OpResult GetUserConfig(UserNotificationPreferences &user_config)
Retrieve the current user&#39;s notification preferences from the server.
The CamsNotificationManager facilitates interactions with CAMS notifications stored at the server...
Definition: CamsNotificationManager.h:32
DB_EDGEVIS_SDK OpResult QueryEncoders(std::vector< Encoder > &result)
Sends a query to the server to find all the Encoders that the currently connected user has permission...
DB_EDGEVIS_SDK OpResult GetEncoders(std::vector< Encoder > &result)
Returns a list of all available Encoders.
OpResult
Result of an operation.
Definition: OpResult.h:25
The interface for the Server.
Definition: IServerListener.h:42
ServerConnectInfo
This contains values representing configuration info for the local server object on connection...
Definition: ServerConnectInfo.h:25