ArchiveService.h
Go to the documentation of this file.
1 // Copyright (c) 2016 Digital Barriers
4 
69 #pragma once
70 
71 #include <vector>
72 #include "Timeline.h"
73 #include "ArchiveRecordingInfo.h"
74 #include "ArchiveBookmark.h"
75 #include "IEncoderListener.h"
76 #include "ArchivePlaybackSpeed.h"
77 #include "Stream.h"
78 #include "Service.h"
79 #include "ArchiveFileSource.h"
80 #include "OpResult.h"
81 
82 namespace EdgeVisDecoderSDK
83 {
84  class ArchiveServiceImpl;
85  class Encoder;
86  class ArchiveExporterService;
87  class GOPDownloadService;
88 
89  class ArchiveService : public Service
90  {
91  public:
92  DB_EDGEVIS_SDK virtual~ArchiveService();
93 
94  ArchiveService( std::weak_ptr<EncoderImpl> encoder, int32_t idleTimeoutMs = -1 );
95  ArchiveService(){}
96 
97  void Init(std::weak_ptr<EncoderImpl> encoder, int32_t idleTimeoutMs = -1);
98 
103  DB_EDGEVIS_SDK bool PlaybackAllowed() const;
104 
110  DB_EDGEVIS_SDK bool Recording() const;
111 
124  DB_EDGEVIS_SDK OpResult SetRecording( bool rec );
125 
133  DB_EDGEVIS_SDK std::wstring ArchiveType() const;
134 
142  DB_EDGEVIS_SDK bool ExternalArchiveEnabled() const;
143 
150  DB_EDGEVIS_SDK bool Exists() const;
151 
159  DB_EDGEVIS_SDK int32_t MaxQueryDays() const;
160 
168  DB_EDGEVIS_SDK int32_t MaxQueryHours() const;
169 
176  DB_EDGEVIS_SDK int32_t MaxQuerySpanHours() const;
177 
184  DB_EDGEVIS_SDK int32_t MaxQuerySpanMinutes() const;
185 
208  DB_EDGEVIS_SDK size_t QueryHours(const int64_t startTime, const int64_t endTime, Timeline *timeline);
209 
232  DB_EDGEVIS_SDK size_t QueryMinutes(const int64_t startTime, const int64_t endTime, Timeline *timeline);
233 
248  DB_EDGEVIS_SDK size_t QueryDays( Timeline* timeline );
249 
265  DB_EDGEVIS_SDK size_t QueryHours( const int64_t dayTs, Timeline* timeline);
266 
284  DB_EDGEVIS_SDK size_t QueryHours(
285  const Timeline::TimesList& days,
286  Timeline* timeline,
287  size_t count = 0,
288  size_t offset = 0
289  );
290 
306  DB_EDGEVIS_SDK size_t QueryMins( const int64_t hourTs, Timeline* timeline);
307 
325  DB_EDGEVIS_SDK size_t QueryMins(
326  const Timeline::TimesList& hours,
327  Timeline* timeline,
328  size_t count = 0,
329  size_t offset = 0
330  );
331 
332 
351  DB_EDGEVIS_SDK OpResult QueryRecordings(const int64_t startTime, const int64_t endTime, const int32_t input, ArchiveRecordingInfo &result);
352 
372  DB_EDGEVIS_SDK OpResult QueryRecordings(const int64_t startTime, const int64_t endTime, const int32_t input, const ArchiveFileSource source, ArchiveRecordingInfo &result);
373 
385  DB_EDGEVIS_SDK OpResult QueryBookmarks(std::vector<ArchiveBookmark>& bookmarks);
386 
403  DB_EDGEVIS_SDK OpResult AddBookmark(
404  const int64_t timestamp,
405  const int32_t input,
406  const std::wstring& name,
407  const std::wstring& description,
408  ArchiveBookmark& result
409  );
410 
423  DB_EDGEVIS_SDK OpResult DeleteBookmark( const ArchiveBookmark& bookmark );
424 
440  DB_EDGEVIS_SDK OpResult StartPlayback( const int64_t ts);
441 
453  DB_EDGEVIS_SDK OpResult StopPlayback();
454 
469  DB_EDGEVIS_SDK OpResult SetPlaybackSpeed( ArchivePlaybackSpeed speed );
470 
476  DB_EDGEVIS_SDK ArchivePlaybackSpeed GetPlaybackSpeed();
477 
486 
494  DB_EDGEVIS_SDK GOPDownloadService GetGOPDownloadService();
495 
504  DB_EDGEVIS_SDK bool IsArchiveInUTC() const;
505 
511  DB_EDGEVIS_SDK bool IsArchiveOwner() const;
512 
513  public:
514  // Service members
515  DB_EDGEVIS_SDK virtual OpResult Start();
516  DB_EDGEVIS_SDK virtual OpResult Stop();
517  };
518 }
DB_EDGEVIS_SDK OpResult StartPlayback(const int64_t ts)
Starts media playback from the specified timestamp.
DB_EDGEVIS_SDK OpResult SetPlaybackSpeed(ArchivePlaybackSpeed speed)
Sets the archive playback speed to the specified speed.
DB_EDGEVIS_SDK bool IsArchiveInUTC() const
Determines if the archive is recording in UTC or local time.
DB_EDGEVIS_SDK std::wstring ArchiveType() const
Gets the type of archive connected to the Encoder.
DB_EDGEVIS_SDK OpResult QueryRecordings(const int64_t startTime, const int64_t endTime, const int32_t input, ArchiveRecordingInfo &result)
Queries the archive for information on the available recordings.
Definition of the Service abstract class.
Definition: Service.h:48
DB_EDGEVIS_SDK OpResult QueryBookmarks(std::vector< ArchiveBookmark > &bookmarks)
Queries the archive for a list of bookmarks.
An ITimelineWatcher interface is used to receive notifications when an Timeline object is updated...
DB_EDGEVIS_SDK bool PlaybackAllowed() const
Determines if recorded footage can be played back or not.
ArchivePlaybackSpeed
Header file for the ArchivePlaybackSpeed enumeration.
Definition: ArchivePlaybackSpeed.h:26
DB_EDGEVIS_SDK size_t QueryHours(const int64_t startTime, const int64_t endTime, Timeline *timeline)
Queries the archive for a list of hour timestamps for which there is footage available.
DB_EDGEVIS_SDK bool Exists() const
Determines if an archive device is connected to the Encoder and configured.
ArchiveFileSource
The possible sources of an archive file.
Definition: ArchiveFileSource.h:20
DB_EDGEVIS_SDK OpResult SetRecording(bool rec)
Turns edge archive recording on or off.
DB_EDGEVIS_SDK bool Recording() const
Determines whether the archive is currently recording or not.
DB_EDGEVIS_SDK ArchiveExporterService GetExporterService()
Gets the ArchiveExporterService.
DB_EDGEVIS_SDK OpResult DeleteBookmark(const ArchiveBookmark &bookmark)
Deletes a bookmark from the list of bookmarks on the Encoder.
This contains lists of days, hours and minutes that the archive holds footage for.
Definition: Timeline.h:49
The GOP Download Service handles the download of GOPs (Group of Pictures) from the edge archive of su...
Definition: GOPDownloadService.h:48
DB_EDGEVIS_SDK OpResult AddBookmark(const int64_t timestamp, const int32_t input, const std::wstring &name, const std::wstring &description, ArchiveBookmark &result)
Adds a new bookmark to the list of bookmarks on the Encoder.
DB_EDGEVIS_SDK int32_t MaxQuerySpanMinutes() const
Returns the maximum span in minutes that can be queried by QueryMinutes(start, end).
The ArchiveExporter Service handles listing files from a remote archive device connected to an Encode...
Definition: ArchiveExporterService.h:47
DB_EDGEVIS_SDK size_t QueryMinutes(const int64_t startTime, const int64_t endTime, Timeline *timeline)
Queries the archive for a list of minutes timestamps for which there is footage available.
The Archive Service provides access to the edge archive on an Encoder.
Definition: ArchiveService.h:89
DB_EDGEVIS_SDK bool ExternalArchiveEnabled() const
Determines if the encoder is using an external archive device.
DB_EDGEVIS_SDK ArchivePlaybackSpeed GetPlaybackSpeed()
Get the speed of the archive playback.
DB_EDGEVIS_SDK size_t QueryDays(Timeline *timeline)
Queries the archive for a list of day timestamps for which there is footage available.
DB_EDGEVIS_SDK int32_t MaxQuerySpanHours() const
Returns the maximum span in hours that can be queried by QueryHours(start, end).
DB_EDGEVIS_SDK OpResult StopPlayback()
Stops archive video playback.
DB_EDGEVIS_SDK int32_t MaxQueryHours() const
Gets the maximum number of hours that can be added to a filter when querying for minutes from the arc...
DB_EDGEVIS_SDK int32_t MaxQueryDays() const
Gets the maximum number of days that can be added to a filter when querying for hours from the archiv...
The EdgeVis Decoder SDK namespace.
The ArchiveRecordingInfo class provides information on the times that the archive has recorded footag...
DB_EDGEVIS_SDK bool IsArchiveOwner() const
Determines if the caller is the archive control owner.
DB_EDGEVIS_SDK GOPDownloadService GetGOPDownloadService()
Gets the GOPDownloadService.
OpResult
Result of an operation.
Definition: OpResult.h:25
Contains the details of an Archive bookmark.
Definition: ArchiveBookmark.h:31
DB_EDGEVIS_SDK size_t QueryMins(const int64_t hourTs, Timeline *timeline)
Queries the archive for a list of minute timestamps for which there is footage available.