ArchiveExporterService.h
Go to the documentation of this file.
1 // Copyright (c) 2016 Digital Barriers
4 
25 #pragma once
26 
27 #include "ArchiveFile.h"
28 #include "IArchiveExportListener.h"
29 #include <memory>
30 #include "Stream.h"
31 #include "Service.h"
32 #include "OpResult.h"
33 
34 namespace EdgeVisDecoderSDK
35 {
36  class ArchiveExporterServiceImpl;
37  class Encoder;
38  class Stream;
39 
44  typedef std::vector< ArchiveFile > ArchiveFiles;
45 
46 
47  class ArchiveExporterService : public Stream, public Service
48  {
49  private:
50  friend class ArchiveExporterServiceImpl;
51 
52  public:
54  ArchiveExporterService( std::weak_ptr<EncoderImpl> encoder, const std::wstring& name = L"", int32_t idleTimeoutMs = -1 );
55  ArchiveExporterService( const Stream& other );
56  DB_EDGEVIS_SDK virtual ~ArchiveExporterService();
57 
58  public:
63  DB_EDGEVIS_SDK void SetListener(IArchiveExportListener * listener);
64 
65 
91  DB_EDGEVIS_SDK OpResult QueryFiles(ArchiveFiles& result, const int64_t start, const int64_t end);
92 
93 
121  DB_EDGEVIS_SDK OpResult QueryFiles(ArchiveFiles& result, const int64_t start, const int64_t end, const ArchiveFileSource source, const int32_t channel);
122 
147  DB_EDGEVIS_SDK OpResult ExportFile( const std::wstring& outFilePath, const ArchiveFile& file, const std::wstring& password = L"" );
148 
154  DB_EDGEVIS_SDK void AbortExport();
155 
161  DB_EDGEVIS_SDK int32_t GetBandwidth();
162 
173  DB_EDGEVIS_SDK OpResult SetTargetBandwidth( int32_t bandwidth );
174 
183  DB_EDGEVIS_SDK int32_t GetTargetBandwidth();
184 
195  DB_EDGEVIS_SDK OpResult SetTargetBandwidthPercentage(int32_t bandwidthPercentage);
196 
203  DB_EDGEVIS_SDK int32_t GetTargetBandwidthPercentage();
204 
205  void Close();
206 
207  public:
208  // Service members
209 
228  DB_EDGEVIS_SDK virtual OpResult Start();
229 
236  DB_EDGEVIS_SDK virtual OpResult Stop();
237  };
238 }
Definition of the Service abstract class.
Definition: Service.h:48
DB_EDGEVIS_SDK void AbortExport()
Aborts the current archive download process.
DB_EDGEVIS_SDK int32_t GetTargetBandwidthPercentage()
Gets the target file download bandwidth percentage.
virtual DB_EDGEVIS_SDK OpResult Start()
Starts the archive service.
DB_EDGEVIS_SDK OpResult QueryFiles(ArchiveFiles &result, const int64_t start, const int64_t end)
Queries the remote archive to get a list of files that are available for download.
ArchiveFileSource
The possible sources of an archive file.
Definition: ArchiveFileSource.h:20
The Stream interface represent a service that is available on an Encoder.
Definition: Stream.h:50
DB_EDGEVIS_SDK OpResult SetTargetBandwidth(int32_t bandwidth)
Sets the target file download bandwidth.
DB_EDGEVIS_SDK OpResult ExportFile(const std::wstring &outFilePath, const ArchiveFile &file, const std::wstring &password=L"")
Starts a file read operation.
The ArchiveExporter Service handles listing files from a remote archive device connected to an Encode...
Definition: ArchiveExporterService.h:47
DB_EDGEVIS_SDK OpResult SetTargetBandwidthPercentage(int32_t bandwidthPercentage)
Sets the target file download bandwidth percentage.
DB_EDGEVIS_SDK int32_t GetBandwidth()
Get the measured bandwidth usage of the archive file download.
A collection of ArchiveFiles.
Definition: ArchiveExporterService.h:38
DB_EDGEVIS_SDK void SetListener(IArchiveExportListener *listener)
Set the listener for the Archive Export service.
The EdgeVis Decoder SDK namespace.
virtual DB_EDGEVIS_SDK OpResult Stop()
Stops the archive service.
A simple container class for information about a file on a remote archive device connected to an Enco...
Definition: ArchiveFile.h:35
OpResult
Result of an operation.
Definition: OpResult.h:25
DB_EDGEVIS_SDK int32_t GetTargetBandwidth()
Gets the target file download bandwidth.