EncoderStatusInfo.h
Go to the documentation of this file.
1 // Copyright (c) 2016 Digital Barriers
4 
136 #pragma once
137 
138 #include "EdgeVisSDK.h"
139 
140 #include "OnvifEvent.h"
141 
142 #include <string>
143 #include <vector>
144 #include <map>
145 
146 #include "Pimpl.h"
147 
148 namespace EdgeVisDecoderSDK
149 {
150  class EncoderStatusInfoImpl;
151 
152  class EncoderStatusInfo : public EdgeVisSDKPimpl<EncoderStatusInfoImpl>
153  {
154  public:
155  DB_EDGEVIS_SDK EncoderStatusInfo();
156  EdgeVisSDKPimplWeakConstructor(EncoderStatusInfo);
157  DB_EDGEVIS_SDK virtual ~EncoderStatusInfo();
158 
166  DB_EDGEVIS_SDK std::wstring Type() const;
167 
168  void Type( const std::wstring& t );
169 
175  DB_EDGEVIS_SDK int64_t TimeStamp() const;
176 
177  void TimeStamp( const int64_t& l );
178 
184  DB_EDGEVIS_SDK std::map< std::wstring, std::wstring > Params() const;
185 
193  DB_EDGEVIS_SDK std::vector< std::wstring > ParamKeys() const;
194 
204  DB_EDGEVIS_SDK std::wstring GetParam( const std::wstring& key ) const;
205 
206  void ClearParams();
207 
208  void AddParam( const std::wstring& key, const std::wstring& val );
209 
216  DB_EDGEVIS_SDK std::wstring DisplayString() const;
217 
225  DB_EDGEVIS_SDK bool GetOnvifEvent(OnvifEvent& onvif_event) const;
226  };
227 }
DB_EDGEVIS_SDK std::wstring Type() const
Gets the type of event.
DB_EDGEVIS_SDK bool GetOnvifEvent(OnvifEvent &onvif_event) const
Convert this encoder event to an ONVIF event.
Contains information relating to Onvif Events.
Definition: OnvifEvent.h:34
DB_EDGEVIS_SDK int64_t TimeStamp() const
Gets the timestamp of the status message.
DB_EDGEVIS_SDK std::wstring DisplayString() const
Returns a display string for the event.
DB_EDGEVIS_SDK std::map< std::wstring, std::wstring > Params() const
Gets the status message&#39;s parameters.
DB_EDGEVIS_SDK std::wstring GetParam(const std::wstring &key) const
Gets a parameter value from the set of parameter key-value pairs for the status message.
The EncoderStatusInfo holds information about Encoder status events.
Definition: EncoderStatusInfo.h:152
The EdgeVis Decoder SDK namespace.
DB_EDGEVIS_SDK std::vector< std::wstring > ParamKeys() const
Gets the status message&#39;s parameter keys.