forked from AmbaPant/mantid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCatalogDownloadDataFiles.h
82 lines (74 loc) · 2.98 KB
/
CatalogDownloadDataFiles.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2010 ISIS Rutherford Appleton Laboratory UKRI,
// NScD Oak Ridge National Laboratory, European Spallation Source,
// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
// SPDX - License - Identifier: GPL - 3.0 +
#pragma once
//----------------------------------------------------------------------
// Includes
//----------------------------------------------------------------------
#include "MantidAPI/Algorithm.h"
#include "MantidICat/DllConfig.h"
namespace Mantid {
namespace ICat {
/**
CatalogDownloadDataFiles is responsible for downloading datafiles from a
catalog.
Required Properties:
<UL>
<LI> Filenames - List of files to download </LI>
<LI> InputWorkspace - The name of the workspace whioch stored the last
investigation search results </LI>
<LI> FileLocations - List of files with location which is downloaded </LI>
</UL>
@author Sofia Antony, ISIS Rutherford Appleton Laboratory
@date 07/07/2010
*/
class MANTID_ICAT_DLL CatalogDownloadDataFiles : public API::Algorithm {
public:
/// Constructor
CatalogDownloadDataFiles() : API::Algorithm(), m_prog(0.0) {}
/// Destructor
~CatalogDownloadDataFiles() override {}
/// Algorithm's name for identification overriding a virtual method
const std::string name() const override { return "CatalogDownloadDataFiles"; }
/// Summary of algorithms purpose.
const std::string summary() const override {
return "Downloads datafiles from the archives based on the ID of a "
"datafile.";
}
/// Algorithm's version for identification overriding a virtual method
int version() const override { return 1; }
const std::vector<std::string> seeAlso() const override {
return {"DownloadFile", "CatalogGetDataFiles", "CatalogLogin"};
}
/// Algorithm's category for identification overriding a virtual method
const std::string category() const override { return "DataHandling\\Catalog"; }
/** This method is used for unit testing purpose.
* as the Poco::Net library httpget throws an exception when the nd server n/w
* is slow
* I'm testing the download from mantid server.
* as the download method I've written is private I can't access that in unit
* testing.
* so adding this public method to call the private download method and
* testing.
*/
std::string testDownload(const std::string &URL, const std::string &fileName);
private:
/// Overwrites Algorithm method.
void init() override;
/// Overwrites Algorithm method
void exec() override;
/// True if the extension of the file is a datafile.
bool isDataFile(const std::string &fileName);
/// Saves the downloaded file to disc
std::string saveFiletoDisk(std::istream &rs, const std::string &fileName);
/// Saves downloaded file to local disk
std::string doDownloadandSavetoLocalDrive(const std::string &URL, const std::string &fileName);
private:
/// progress indicator
double m_prog;
};
} // namespace ICat
} // namespace Mantid