-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdisk_info.cpp
67 lines (55 loc) · 1.58 KB
/
disk_info.cpp
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
#if defined(USE_TWINCAT_ROUTER)
#include "TC1000_AdsClient.h"
#else
#include "GenericAdsClient.h"
#endif
#include "disk_mgmt.h"
#include "ads_error.h"
#include "ads_exception.h"
#include <iostream>
#include <iomanip>
#include <optional>
#include <vector>
int main() {
//static const AmsNetId remoteNetId{ 5, 80, 201, 232, 1, 1 };
static const AmsNetId remoteNetId{ 192, 168, 1, 122, 1, 1 };
//static const AmsNetId remoteNetId{ 5, 69, 55, 236, 1, 1 };
#if defined(USE_TWINCAT_ROUTER)
auto adsClient = std::shared_ptr<BasicADS>(new TC1000AdsClient(remoteNetId));
#else
static const char remoteIpV4[] = "192.168.1.98";
auto adsClient = std::shared_ptr<BasicADS>(new GenericAdsClient(remoteNetId, remoteIpV4));
#endif
std::optional<DeviceManager::DiskMgmt> disk_mgmt;
try {
disk_mgmt.emplace(*adsClient);
}
catch (const DeviceManager::AdsException& ex) {
std::cout << ex.what() << std::endl;
exit(-1);
}
if (!disk_mgmt) {
std::cerr << "Module not available on target" << std::endl;
return -1;
}
int32_t error = 0;
std::vector<std::string> driveLetters;
error = disk_mgmt->getDriveLetters(driveLetters);
handleError(error);
std::vector<std::string> volumeLabels;
error = disk_mgmt->getVolumeLabels(volumeLabels);
handleError(error);
std::vector<std::string> fileSystems;
error = disk_mgmt->getFileSystems(fileSystems);
handleError(error);
for (int i = 0; i < volumeLabels.size(); i++)
{
std::cout << "Volume [" << i << "] - " <<
driveLetters[i] <<
" - " << std::right << std::setw(18) <<
volumeLabels[i] <<
" - " <<
fileSystems[i] <<
std::endl;
}
}