Encoder.h
Go to the documentation of this file.
1 // Copyright (c) 2016 Digital Barriers
4 
23 #pragma once
24 
25 #include "EdgeVisSDK.h"
26 #include "IAsset.h"
27 #include "Stream.h"
28 #include "StreamTypes.h"
29 #include "Camera.h"
30 #include "EncoderStatusInfo.h"
31 #include "EncoderInfo.h"
32 #include "SensorInfo.h"
33 #include "FeatureInfo.h"
34 #include "EncoderCapabilities.h"
35 #include "OpResult.h"
36 #include "DeepSleepManager.h"
37 
38 #include <vector>
39 
40 namespace EdgeVisDecoderSDK
41 {
42  class EncoderImpl;
43  class Server;
44  class Stream;
45  class MediaStream;
46  class AnalyticsStream;
47  class EncoderSettings;
48  class IEncoderListener;
49  class AlarmManagement;
50  class PTZStream;
51  class PassThruStream;
52  class Service;
53  class ArchiveService;
54  class FullResService;
55  class EncoderEvents;
56  class SecureConnectProxyService;
57 
58  class Encoder : public IAsset, public EdgeVisSDKPimpl<EncoderImpl>
59  {
60  private:
61  friend class EncoderImpl;
62 
63  public:
64  DB_EDGEVIS_SDK Encoder();
65  EdgeVisSDKPimplWeakConstructor(Encoder);
66  DB_EDGEVIS_SDK virtual ~Encoder();
67 
73  DB_EDGEVIS_SDK virtual Server GetServer() const;
74 
83  DB_EDGEVIS_SDK bool IsConnectedToServer() const;
84 
92  DB_EDGEVIS_SDK std::wstring TimezoneID() const;
93 
105  DB_EDGEVIS_SDK std::wstring Location() const;
106 
113  DB_EDGEVIS_SDK int32_t MaxBandwidth() const;
114 
121  DB_EDGEVIS_SDK int32_t MinBandwidth() const;
122 
128  DB_EDGEVIS_SDK std::wstring OS() const;
129 
139  DB_EDGEVIS_SDK int64_t LastConnectDisconnectTime() const;
140 
150  DB_EDGEVIS_SDK int64_t DeepSleepWakeTime() const;
151 
159  DB_EDGEVIS_SDK int64_t DeepSleepNextCheckInTime() const;
160 
166  DB_EDGEVIS_SDK int64_t ResumeSleepTime() const;
167 
176  DB_EDGEVIS_SDK EncoderInfo GetEncoderInfo();
177 
182  typedef std::vector< Stream > StreamsList;
183 
191  DB_EDGEVIS_SDK StreamsList GetStreams() const;
192 
201  DB_EDGEVIS_SDK MediaStream GetMediaStream() const;
202 
210  DB_EDGEVIS_SDK AnalyticsStream GetAnalyticsStream() const;
211 
220  DB_EDGEVIS_SDK PTZStream GetPTZStream() const;
221 
231  DB_EDGEVIS_SDK PassThruStream GetPassThruStream() const;
232 
239  DB_EDGEVIS_SDK ArchiveService GetArchiveService() const;
240 
247  DB_EDGEVIS_SDK FullResService GetFullResService() const;
248 
256 
265  DB_EDGEVIS_SDK Stream GetStream( const std::wstring& name ) const;
266 
275  DB_EDGEVIS_SDK Stream GetStream( StreamType type ) const;
276 
285  DB_EDGEVIS_SDK EncoderSettings Settings() const;
286 
291  typedef std::vector< Camera > CameraList;
292 
307  DB_EDGEVIS_SDK OpResult Cameras(CameraList & result, bool include_virtual = true) const;
308 
324  DB_EDGEVIS_SDK OpResult GetCamera( Camera & result, int32_t inputId ) const;
325 
339  DB_EDGEVIS_SDK OpResult GetCurrentCamera(Camera & result) const;
340 
347  DB_EDGEVIS_SDK int32_t SensorColour() const;
348 
357  DB_EDGEVIS_SDK OpResult SetSensorColour(int32_t rgb);
358 
367  DB_EDGEVIS_SDK std::vector< SensorInfo > Sensors() const;
368 
379  DB_EDGEVIS_SDK OpResult SetSensor( std::wstring sensor_id, const std::wstring& friendly_name, const double lat, const double lon );
380 
392  DB_EDGEVIS_SDK OpResult SetSensor(std::wstring sensor_id, const std::wstring & friendly_name, const double lat, const double lon, const SensorModel model);
393 
400  DB_EDGEVIS_SDK OpResult RemoveSensor( std::wstring sensor_id );
401 
407  DB_EDGEVIS_SDK OpResult RemoveAllSensors();
408 
415  DB_EDGEVIS_SDK void RegisterListener( IEncoderListener* listener );
416 
423  DB_EDGEVIS_SDK void UnregisterListener( IEncoderListener* listener );
424 
453  DB_EDGEVIS_SDK OpResult QueryStatus(
454  std::vector< EncoderStatusInfo >& result,
455  const std::wstring typeFilter = L"",
456  bool all = false,
457  int64_t startTime = 0,
458  int64_t endTime = 0
459  );
460 
498  DB_EDGEVIS_SDK OpResult QueryEvents(
499  EncoderEvents & result,
500  const std::wstring typeFilter = L"",
501  int64_t startTime = 0,
502  int64_t endTime = 0
503  );
504 
519  DB_EDGEVIS_SDK OpResult QueryFeatures(std::vector< FeatureInfo >& result);
520 
530  DB_EDGEVIS_SDK bool GetFeature(std::wstring featureName, FeatureInfo& feature);
531 
542  DB_EDGEVIS_SDK bool HasFeatureAvailable(std::wstring featureName, int32_t timeout = 0);
543 
551  DB_EDGEVIS_SDK int32_t GetFeatureLicenceCount(std::wstring featureName);
552 
559  DB_EDGEVIS_SDK int32_t MaxLicencedHeight();
560 
567  DB_EDGEVIS_SDK int32_t MinLicencedFrameStep();
568 
575  DB_EDGEVIS_SDK int32_t MaxSupportedHeight();
576 
605  DB_EDGEVIS_SDK OpResult QueryDeepSleepTime(int64_t& wakeTime);
606 
642  DB_EDGEVIS_SDK OpResult SetDeepSleepTime( const int64_t newTime );
643 
644 
654  DB_EDGEVIS_SDK OpResult SetResumeSleepTime( const int64_t newTime );
655 
683  DB_EDGEVIS_SDK OpResult PostponeDeepSleep( int32_t timeMins );
684 
689  DB_EDGEVIS_SDK void RequestKeyFrame();
690 
691 
692  public:
693  //
694  // IAsset members
695  //
696 
703  DB_EDGEVIS_SDK virtual std::wstring Name() const;
704 
710  DB_EDGEVIS_SDK virtual std::wstring QualifiedName() const;
711 
718  DB_EDGEVIS_SDK virtual std::wstring UniqueID() const;
719 
727  DB_EDGEVIS_SDK virtual std::wstring DeviceID() const;
728 
735  DB_EDGEVIS_SDK virtual std::wstring Version() const;
736 
743  DB_EDGEVIS_SDK virtual std::wstring Domain() const;
744 
751  DB_EDGEVIS_SDK virtual std::wstring Groups() const;
752 
753  public:
754 
765  DB_EDGEVIS_SDK bool CheckEncoderVersion( int32_t majorVer ) const;
766 
789  DB_EDGEVIS_SDK OpResult CheckEncoderVersionEx( const std::wstring& model );
790 
791 
800  DB_EDGEVIS_SDK std::wstring GetManagerURL();
801 
807  DB_EDGEVIS_SDK int64_t GetTotalBytesSent();
808 
814  DB_EDGEVIS_SDK int64_t GetTotalBytesReceived();
815 
819  DB_EDGEVIS_SDK void ResetDataUsageStats();
820 
821 
828  DB_EDGEVIS_SDK OpResult QueryEncoderCapabilities(EncoderCapabilities & capabilities);
829 
838  DB_EDGEVIS_SDK std::wstring GetCAMSRuleManagerURL();
839 
845  DB_EDGEVIS_SDK OpResult Reboot();
846 
852  DB_EDGEVIS_SDK DeepSleepManager GetDeepSleepManager() const;
853 
859  DB_EDGEVIS_SDK int32_t GetStreamIndex() const;
860  };
861 }
DB_EDGEVIS_SDK SecureConnectProxyService GetSecureConnectProxyService() const
Gets a pointer to the SecureConnectProxyService service object.
DB_EDGEVIS_SDK int32_t MaxBandwidth() const
Gets the Encoder&#39;s video stream maximum bandwidth.
DB_EDGEVIS_SDK OpResult SetResumeSleepTime(const int64_t newTime)
Sets the time that the encoder will return to sleep.
DB_EDGEVIS_SDK std::wstring Location() const
Gets the Encoder&#39;s GPS location.
DB_EDGEVIS_SDK MediaStream GetMediaStream() const
Looks for the video stream in the list of streams for the Encoder and returns a pointer to it...
DB_EDGEVIS_SDK OpResult RemoveSensor(std::wstring sensor_id)
Removes a sensor from the encoder.
Contains information relating to the Encoder.
Definition: EncoderInfo.h:21
DB_EDGEVIS_SDK void RequestKeyFrame()
Requests that a keyframe is inserted into the media stream.
DB_EDGEVIS_SDK int32_t MaxLicencedHeight()
Returns the max available height for the video frame that the licence allows.
DB_EDGEVIS_SDK OpResult SetSensor(std::wstring sensor_id, const std::wstring &friendly_name, const double lat, const double lon)
Sets a sensor that is connected to the encoder.
An Asset is a tangible asset on the system such as an Encoder or a Server.
Definition: IAsset.h:25
DB_EDGEVIS_SDK OpResult GetCurrentCamera(Camera &result) const
Gets the Camera object representing the currently active input on the Encoder.
DB_EDGEVIS_SDK FullResService GetFullResService() const
Gets a pointer to the FullResService service object.
DB_EDGEVIS_SDK OpResult Cameras(CameraList &result, bool include_virtual=true) const
Gets the Camera objects for the cameras connected to the Encoder&#39;s inputs.
DB_EDGEVIS_SDK OpResult SetDeepSleepTime(const int64_t newTime)
Sets the Deep Sleep wake time for the Encoder.
DB_EDGEVIS_SDK bool CheckEncoderVersion(int32_t majorVer) const
Checks the Encoder version number is equal to or greater than the specified version number...
DB_EDGEVIS_SDK std::vector< SensorInfo > Sensors() const
Gets the SensorData objects for the alarm sensors connected to the Encoder.
A MediaStream is a Stream class that provides additional methods and properties specific to the Media...
Definition: MediaStream.h:37
Access to the Full Resolution capability on encoders that support it.
Definition: FullResService.h:51
DB_EDGEVIS_SDK OpResult QueryDeepSleepTime(int64_t &wakeTime)
Queries the deep sleep time for the Encoder.
DB_EDGEVIS_SDK EncoderInfo GetEncoderInfo()
Gets the extended Encoder Information.
DB_EDGEVIS_SDK int64_t GetTotalBytesSent()
Returns the current total number of bytes sent on this encoder.
The interface for the Encoder asset.
Definition: IEncoderListener.h:39
DB_EDGEVIS_SDK std::wstring GetCAMSRuleManagerURL()
Construct a valid URL for use with a browser component to access the encoder&#39;s CAMS Rules Manager pag...
virtual DB_EDGEVIS_SDK std::wstring QualifiedName() const
Gets the qualified name of the Encoder, potentially including any prefixes.
DB_EDGEVIS_SDK void UnregisterListener(IEncoderListener *listener)
Removes the specified listener from the set of listeners to be notified about Encoder events...
DB_EDGEVIS_SDK OpResult GetCamera(Camera &result, int32_t inputId) const
Gets the Camera object representing the specified camera input on the Encoder.
DB_EDGEVIS_SDK EncoderSettings Settings() const
Obtains the Encoder&#39;s settings object.
DB_EDGEVIS_SDK DeepSleepManager GetDeepSleepManager() const
Retrieve a pointer to the Deep Sleep Manager singleton.
DB_EDGEVIS_SDK PassThruStream GetPassThruStream() const
Looks for the serial pass-thru stream in the list of streams for the Encoder and returns a pointer to...
DB_EDGEVIS_SDK int64_t DeepSleepNextCheckInTime() const
Gets the Encoder&#39;s deep sleep check-in time.
DB_EDGEVIS_SDK AnalyticsStream GetAnalyticsStream() const
Looks for the analytics stream in the list of streams for the Encoder and returns a pointer to it...
A DeepSleepManager interface is used to manage and facilitate the Deep Sleep feature on an Encoder...
Definition: DeepSleepManager.h:32
DB_EDGEVIS_SDK std::wstring TimezoneID() const
Gets the Encoder&#39;s timezone ID.
A Camera interface represents a camera connected to an Encoder.
Definition: Camera.h:29
virtual DB_EDGEVIS_SDK std::wstring UniqueID() const
Gets the Encoder&#39;s unique identifier.
DB_EDGEVIS_SDK bool HasFeatureAvailable(std::wstring featureName, int32_t timeout=0)
Helper method to determine if a feature is available for use.
virtual DB_EDGEVIS_SDK std::wstring Version() const
Gets the Encoder&#39;s firmware version.
DB_EDGEVIS_SDK ArchiveService GetArchiveService() const
Gets a pointer to the ArchiveService service object.
DB_EDGEVIS_SDK int32_t MinBandwidth() const
Gets the Encoder&#39;s video stream minimum bandwidth.
The PTZStream is used to send movement commands to a PTZ camera.
Definition: PTZStream.h:32
DB_EDGEVIS_SDK OpResult RemoveAllSensors()
Removes all the sensor from the encoder.
The Stream interface represent a service that is available on an Encoder.
Definition: Stream.h:50
virtual DB_EDGEVIS_SDK std::wstring DeviceID() const
Gets the unique identifier of the Encoder&#39;s parent device.
DB_EDGEVIS_SDK int32_t GetStreamIndex() const
Determine the stream index for this Encoder on the parent Device.
SensorModel
The sensor model.
Definition: SensorInfoTypes.h:46
DB_EDGEVIS_SDK int64_t LastConnectDisconnectTime() const
Gets the time the Encoder last connected to or disconnected from the server.
DB_EDGEVIS_SDK PTZStream GetPTZStream() const
Looks for the PTZ (telemetry) stream in the list of streams for the Encoder and returns a pointer to ...
DB_EDGEVIS_SDK OpResult PostponeDeepSleep(int32_t timeMins)
Postpones a deep sleep that is scheduled on an Encoder by a number of minutes.
std::vector< Stream > StreamsList
A collection of Stream data.
Definition: Encoder.h:182
This object sends data to a port on an Encoder.
Definition: PassThruStream.h:44
DB_EDGEVIS_SDK int64_t DeepSleepWakeTime() const
Gets the Encoder&#39;s deep sleep wake time.
DB_EDGEVIS_SDK int32_t SensorColour() const
Gets the colour of the sensors on this encoder.
virtual DB_EDGEVIS_SDK Server GetServer() const
Gets the Server object that the Encoder is connected to.
The EncoderSettings interface provides access to an Encoder&#39;s configuration, connection profile and c...
Definition: EncoderSettings.h:93
The Archive Service provides access to the edge archive on an Encoder.
Definition: ArchiveService.h:89
std::vector< Camera > CameraList
A collection of Camera objects.
Definition: Encoder.h:291
An Encoder interface represents an Encoder that is managed by the server.
Definition: Encoder.h:58
DB_EDGEVIS_SDK int32_t MinLicencedFrameStep()
Returns the minimum frame step (i.e maximum rame rate) that the licence allows.
DB_EDGEVIS_SDK int32_t GetFeatureLicenceCount(std::wstring featureName)
Retrieve the licence count for a feature.
DB_EDGEVIS_SDK OpResult QueryFeatures(std::vector< FeatureInfo > &result)
Queries the features available for the Encoder.
Describes the availability of an Encoder feature.
Definition: FeatureInfo.h:23
DB_EDGEVIS_SDK OpResult SetSensorColour(int32_t rgb)
Sets the colour of the sensors on this encoder.
DB_EDGEVIS_SDK bool IsConnectedToServer() const
Determines if the Encoder object was known to be connected to the Server when this Encoder object was...
virtual DB_EDGEVIS_SDK std::wstring Domain() const
Gets the server domain that the encoder belongs to.
virtual DB_EDGEVIS_SDK std::wstring Name() const
Gets the name of the Encoder.
DB_EDGEVIS_SDK Stream GetStream(const std::wstring &name) const
Gets the Stream object with the specified name.
DB_EDGEVIS_SDK void RegisterListener(IEncoderListener *listener)
Registers the specified listener to be notified when an event associated with the Encoder is fired...
DB_EDGEVIS_SDK StreamsList GetStreams() const
Gets a list of Streams that are available on the Encoder.
StreamType
Defines the type of stream.
Definition: StreamTypes.h:16
A Server interface is used to make a connection to an EdgeVis server.
Definition: Server.h:54
DB_EDGEVIS_SDK int64_t ResumeSleepTime() const
Gets the time that the encoder will enter sleep.
DB_EDGEVIS_SDK OpResult QueryStatus(std::vector< EncoderStatusInfo > &result, const std::wstring typeFilter=L"", bool all=false, int64_t startTime=0, int64_t endTime=0)
Sends a query to the Encoder to obtain Encoder status information.
DB_EDGEVIS_SDK OpResult QueryEvents(EncoderEvents &result, const std::wstring typeFilter=L"", int64_t startTime=0, int64_t endTime=0)
Queries historical Encoder events held on the Server.
The EdgeVis Decoder SDK namespace.
DB_EDGEVIS_SDK std::wstring OS() const
Gets the Encoder&#39;s OS information.
virtual DB_EDGEVIS_SDK std::wstring Groups() const
Gets the list of encoder groups that the encoder belongs to.
DB_EDGEVIS_SDK bool GetFeature(std::wstring featureName, FeatureInfo &feature)
Retrieve the FeatureInfo for a particular feature.
DB_EDGEVIS_SDK void ResetDataUsageStats()
Resets the count of the total number of bytes sent and received for this encoder. ...
The AnalyticsStream is used to receive ONVIF M Analytics XML from a camera connected to an encoder...
Definition: AnalyticsStream.h:34
DB_EDGEVIS_SDK std::wstring GetManagerURL()
Construct a valid URL for use with a browser component to access the encoder&#39;s Manager page...
DB_EDGEVIS_SDK int64_t GetTotalBytesReceived()
Returns the current total number of bytes received on this encoder.
Creates a secure connect service to the remote encoder.
Definition: SecureConnectProxyService.h:35
OpResult
Result of an operation.
Definition: OpResult.h:25
DB_EDGEVIS_SDK int32_t MaxSupportedHeight()
Returns the max available height for the video frame that the encoder supports.
DB_EDGEVIS_SDK OpResult CheckEncoderVersionEx(const std::wstring &model)
Uses ComponentInfoData to perform a more specific Encoder version check.
DB_EDGEVIS_SDK OpResult Reboot()
Reboot the encoder.
DB_EDGEVIS_SDK OpResult QueryEncoderCapabilities(EncoderCapabilities &capabilities)
Queries the server to obtain the encoder capabilities.