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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
|
/*
* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
* Copyright (C) 2012 - Scilab Enterprises - Calixte DENIZET
*
* This file must be used under the terms of the CeCILL.
* This source file is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at
* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
*
*/
#include "H5ExternalLink.hxx"
namespace org_modules_hdf5
{
std::vector<std::string *> H5ExternalLink::getLinkTargets() const
{
herr_t err;
H5L_info_t info;
char * buf = 0;
std::vector<std::string *> ret;
const char * filename = 0;
const char * obj_path = 0;
err = H5Lget_info(getParent().getH5Id(), getName().c_str(), &info, H5P_DEFAULT);
if (err < 0)
{
throw H5Exception(__LINE__, __FILE__, _("Cannot get the link info"));
}
buf = new char[info.u.val_size];
err = H5Lget_val(getParent().getH5Id(), getName().c_str(), buf, info.u.val_size, H5P_DEFAULT);
if (err < 0)
{
delete[] buf;
throw H5Exception(__LINE__, __FILE__, _("Cannot get the link target"));
}
// According to the doc the flags arg is useless
// For the future: follow the evolution of this argument.
err = H5Lunpack_elink_val(buf, info.u.val_size, 0, &filename, &obj_path);
if (err < 0)
{
delete[] buf;
throw H5Exception(__LINE__, __FILE__, _("Cannot get the link target"));
}
ret.reserve(2);
ret[0] = new std::string(filename);
ret[1] = new std::string(obj_path);
delete[] buf;
return ret;
}
std::string H5ExternalLink::getLinkType() const
{
return "external";
}
void H5ExternalLink::getAccessibleAttribute(const std::string & _name, const int pos, void * pvApiCtx) const
{
SciErr err;
std::string lower(_name);
std::transform(_name.begin(), _name.end(), lower.begin(), tolower);
if (lower == "type")
{
const std::string linkType = getLinkType();
const char * _type = linkType.c_str();
err = createMatrixOfString(pvApiCtx, pos, 1, 1, &_type);
if (err.iErr)
{
throw H5Exception(__LINE__, __FILE__, _("Cannot create a string on the stack."));
}
return;
}
else if (lower == "target")
{
const char * _target[2];
std::vector<std::string *> target = getLinkTargets();
_target[0] = (*target[0]).c_str();
_target[1] = (*target[1]).c_str();
err = createMatrixOfString(pvApiCtx, pos, 1, 2, _target);
target.erase(target.begin(), target.end());
if (err.iErr)
{
throw H5Exception(__LINE__, __FILE__, _("Cannot create a string on the stack."));
}
return;
}
H5Object::getAccessibleAttribute(_name, pos, pvApiCtx);
}
void H5ExternalLink::printLsInfo(std::ostringstream & os) const
{
std::string str(getName());
H5Object::getResizedString(str);
std::vector<std::string *> target = getLinkTargets();
os << str << "External Link {" << *target[0] << "//" << *target[1] << "}" << std::endl;
target.erase(target.begin(), target.end());
}
std::string H5ExternalLink::ls() const
{
std::ostringstream os;
printLsInfo(os);
return os.str();
}
std::string H5ExternalLink::dump(std::map<haddr_t, std::string> & alreadyVisited, const unsigned int indentLevel) const
{
std::ostringstream os;
std::vector<std::string *> target = getLinkTargets();
os << H5Object::getIndentString(indentLevel) << "EXTERNAL_LINK \"" << name << "\" {" << std::endl
<< H5Object::getIndentString(indentLevel + 1) << "TARGETFILE \"" << *target[0] << "\"" << std::endl
<< H5Object::getIndentString(indentLevel + 1) << "TARGETPATH \"" << *target[1] << "\"" << std::endl
<< H5Object::getIndentString(indentLevel) << "}" << std::endl;
target.erase(target.begin(), target.end());
return os.str();
}
std::string H5ExternalLink::toString(const unsigned int indentLevel) const
{
std::ostringstream os;
std::vector<std::string *> target = getLinkTargets();
std::string indentString = H5Object::getIndentString(indentLevel);
os << indentString << _("Filename") << ": " << getFile().getFileName() << std::endl
<< indentString << _("Link type") << ": " << getLinkType() << std::endl
<< indentString << _("Link name") << ": " << name << std::endl
<< indentString << _("Link path") << ": " << getCompletePath() << std::endl
<< indentString << _("Link target file") << ": " << *target[0] << std::endl
<< indentString << _("Link target path") << ": " << *target[1];
target.erase(target.begin(), target.end());
return os.str();
}
}
|