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
|
/*
* 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 "H5SoftLink.hxx"
namespace org_modules_hdf5
{
std::string H5SoftLink::getLinkValue() const
{
herr_t err;
H5L_info_t info;
char * buf = 0;
std::string ret;
err = H5Lget_info(getParent().getH5Id(), name.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(), name.c_str(), static_cast<void *>(buf), info.u.val_size, H5P_DEFAULT);
if (err < 0)
{
throw H5Exception(__LINE__, __FILE__, _("Cannot get the link target"));
}
ret = std::string(buf);
delete[] buf;
return ret;
}
std::string H5SoftLink::getLinkType() const
{
return "soft";
}
void H5SoftLink::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 std::string linkValue = getLinkValue();
const char * _target = linkValue.c_str();
err = createMatrixOfString(pvApiCtx, pos, 1, 1, &_target);
if (err.iErr)
{
throw H5Exception(__LINE__, __FILE__, _("Cannot create a string on the stack."));
}
return;
}
H5Object::getAccessibleAttribute(_name, pos, pvApiCtx);
}
std::string H5SoftLink::dump(std::map<haddr_t, std::string> & alreadyVisited, const unsigned int indentLevel) const
{
std::ostringstream os;
os << H5Object::getIndentString(indentLevel) << "SOFTLINK \"" << name << "\" {" << std::endl
<< H5Object::getIndentString(indentLevel + 1) << "LINKTARGET \"" << getLinkValue() << "\"" << std::endl
<< H5Object::getIndentString(indentLevel) << "}" << std::endl;
return os.str();
}
void H5SoftLink::printLsInfo(std::ostringstream & os) const
{
std::string str(getName());
H5Object::getResizedString(str);
os << str << "Soft Link {" << getLinkValue() << "}" << std::endl;
}
std::string H5SoftLink::ls() const
{
std::ostringstream os;
printLsInfo(os);
return os.str();
}
std::string H5SoftLink::toString(const unsigned int indentLevel) const
{
std::ostringstream os;
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") << ": " << getLinkValue() << std::endl;
return os.str();
}
}
|