Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
804c0fd4
Commit
804c0fd4
authored
Mar 01, 2016
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Wb syntax check in directory volume for equal address or volumeid for nodes in the same bus
parent
86a72c4d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
104 additions
and
4 deletions
+104
-4
wb/lib/wb/src/wb_lfu.cpp
wb/lib/wb/src/wb_lfu.cpp
+104
-4
No files found.
wb/lib/wb/src/wb_lfu.cpp
View file @
804c0fd4
...
@@ -103,6 +103,9 @@ public:
...
@@ -103,6 +103,9 @@ public:
pwr_tEnum
connection
;
pwr_tEnum
connection
;
pwr_tFloat32
qcom_min_resend_time
;
pwr_tFloat32
qcom_min_resend_time
;
pwr_tFloat32
qcom_max_resend_time
;
pwr_tFloat32
qcom_max_resend_time
;
pwr_tUInt32
qcom_export_buf_quota
;
pwr_tFloat32
qcom_ack_delay
;
pwr_tUInt32
qcom_segment_size
;
};
};
...
@@ -1557,6 +1560,27 @@ pwr_tStatus lfu_SaveDirectoryVolume(
...
@@ -1557,6 +1560,27 @@ pwr_tStatus lfu_SaveDirectoryVolume(
a
.
value
(
&
nc
.
qcom_max_resend_time
);
a
.
value
(
&
nc
.
qcom_max_resend_time
);
if
(
!
a
)
return
sts
;
if
(
!
a
)
return
sts
;
// Get attribute QComExportBufSize
a
=
sp
->
attribute
(
nodeo
.
oid
(),
"RtBody"
,
"QComExportBufQuota"
);
if
(
!
a
)
return
a
.
sts
();
a
.
value
(
&
nc
.
qcom_export_buf_quota
);
if
(
!
a
)
return
sts
;
// Get attribute QComAckDelay
a
=
sp
->
attribute
(
nodeo
.
oid
(),
"RtBody"
,
"QComAckDelay"
);
if
(
!
a
)
return
a
.
sts
();
a
.
value
(
&
nc
.
qcom_ack_delay
);
if
(
!
a
)
return
sts
;
// Get attribute QComSegmentSize
a
=
sp
->
attribute
(
nodeo
.
oid
(),
"RtBody"
,
"QComSegmentSize"
);
if
(
!
a
)
return
a
.
sts
();
a
.
value
(
&
nc
.
qcom_segment_size
);
if
(
!
a
)
return
sts
;
if
(
!
strcmp
(
nc
.
nodename
,
""
))
{
if
(
!
strcmp
(
nc
.
nodename
,
""
))
{
char
msg
[
200
];
char
msg
[
200
];
sprintf
(
msg
,
"Error in NodeConfig object '%s', NodeName is missing
\n
"
,
sprintf
(
msg
,
"Error in NodeConfig object '%s', NodeName is missing
\n
"
,
...
@@ -1659,6 +1683,29 @@ pwr_tStatus lfu_SaveDirectoryVolume(
...
@@ -1659,6 +1683,29 @@ pwr_tStatus lfu_SaveDirectoryVolume(
a
.
value
(
&
nc
.
qcom_max_resend_time
);
a
.
value
(
&
nc
.
qcom_max_resend_time
);
if
(
!
a
)
return
sts
;
if
(
!
a
)
return
sts
;
// Get attribute QComExportBufSize
a
=
sp
->
attribute
(
nodeo
.
oid
(),
"RtBody"
,
"QComExportBufQuota"
);
if
(
!
a
)
return
a
.
sts
();
a
.
value
(
&
nc
.
qcom_export_buf_quota
);
if
(
!
a
)
return
sts
;
// Get attribute QComAckDelay
a
=
sp
->
attribute
(
nodeo
.
oid
(),
"RtBody"
,
"QComAckDelay"
);
if
(
!
a
)
return
a
.
sts
();
a
.
value
(
&
nc
.
qcom_ack_delay
);
if
(
!
a
)
return
sts
;
if
(
nodeo
.
cid
()
==
pwr_cClass_SevNodeConfig
)
{
// Get attribute QComSegmentSize
a
=
sp
->
attribute
(
nodeo
.
oid
(),
"RtBody"
,
"QComSegmentSize"
);
if
(
!
a
)
return
a
.
sts
();
a
.
value
(
&
nc
.
qcom_segment_size
);
if
(
!
a
)
return
sts
;
}
/* Check that the name is in the global volume list */
/* Check that the name is in the global volume list */
found
=
0
;
found
=
0
;
volumelist_ptr
=
volumelist
;
volumelist_ptr
=
volumelist
;
...
@@ -1699,6 +1746,43 @@ pwr_tStatus lfu_SaveDirectoryVolume(
...
@@ -1699,6 +1746,43 @@ pwr_tStatus lfu_SaveDirectoryVolume(
default:
;
default:
;
}
}
}
}
// Node config syntax check
for
(
int
i
=
0
;
i
<
(
int
)
nodevect
.
size
();
i
++
)
{
for
(
int
j
=
i
+
1
;
j
<
(
int
)
nodevect
.
size
();
j
++
)
{
if
(
nodevect
[
i
].
vid
==
nodevect
[
j
].
vid
)
{
char
msg
[
200
];
pwr_tOName
oname1
,
oname2
;
sts
=
ldh_ObjidToName
(
ldhses
,
nodevect
[
i
].
oid
,
ldh_eName_Hierarchy
,
oname1
,
sizeof
(
oname1
),
&
size
);
if
(
EVEN
(
sts
))
return
sts
;
sts
=
ldh_ObjidToName
(
ldhses
,
nodevect
[
j
].
oid
,
ldh_eName_Hierarchy
,
oname2
,
sizeof
(
oname2
),
&
size
);
if
(
EVEN
(
sts
))
return
sts
;
sprintf
(
msg
,
"Error in node '%s' and '%s', Volume is equal
\n
"
,
oname1
,
oname2
);
MsgWindow
::
message
(
'E'
,
msg
,
msgw_ePop_Default
);
syntax_error
=
1
;
}
if
(
strcmp
(
nodevect
[
i
].
address
,
nodevect
[
j
].
address
)
==
0
)
{
char
msg
[
200
];
pwr_tOName
oname1
,
oname2
;
sts
=
ldh_ObjidToName
(
ldhses
,
nodevect
[
i
].
oid
,
ldh_eName_Hierarchy
,
oname1
,
sizeof
(
oname1
),
&
size
);
if
(
EVEN
(
sts
))
return
sts
;
sts
=
ldh_ObjidToName
(
ldhses
,
nodevect
[
j
].
oid
,
ldh_eName_Hierarchy
,
oname2
,
sizeof
(
oname2
),
&
size
);
if
(
EVEN
(
sts
))
return
sts
;
sprintf
(
msg
,
"Error in node '%s' and '%s', Address is equal
\n
"
,
oname1
,
oname2
);
MsgWindow
::
message
(
'E'
,
msg
,
msgw_ePop_Default
);
syntax_error
=
1
;
}
}
}
// Print file
// Print file
for
(
wb_object
nodeo
=
buso
.
first
();
nodeo
;
nodeo
=
nodeo
.
after
())
{
for
(
wb_object
nodeo
=
buso
.
first
();
nodeo
;
nodeo
=
nodeo
.
after
())
{
...
@@ -1735,10 +1819,11 @@ pwr_tStatus lfu_SaveDirectoryVolume(
...
@@ -1735,10 +1819,11 @@ pwr_tStatus lfu_SaveDirectoryVolume(
if
(
qcom_auto_dis
==
pwr_eYesNoEnum_Yes
&&
i
!=
idx
)
if
(
qcom_auto_dis
==
pwr_eYesNoEnum_Yes
&&
i
!=
idx
)
continue
;
continue
;
fprintf
(
fp
,
"%s %s %s %d %d %d %d
\n
"
,
nc
.
nodename
,
fprintf
(
fp
,
"%s %s %s %d %d %d %d
%d %f %d
\n
"
,
nc
.
nodename
,
cdh_VolumeIdToString
(
NULL
,
nc
.
vid
,
0
,
0
),
nc
.
address
,
nc
.
port
,
cdh_VolumeIdToString
(
NULL
,
nc
.
vid
,
0
,
0
),
nc
.
address
,
nc
.
port
,
nc
.
connection
,
int
(
nc
.
qcom_min_resend_time
*
1000
),
nc
.
connection
,
int
(
nc
.
qcom_min_resend_time
*
1000
),
int
(
nc
.
qcom_max_resend_time
*
1000
));
int
(
nc
.
qcom_max_resend_time
*
1000
),
nc
.
qcom_export_buf_quota
,
nc
.
qcom_ack_delay
,
nc
.
qcom_segment_size
);
}
}
// Add specific FriendNodes for the node
// Add specific FriendNodes for the node
...
@@ -1799,6 +1884,20 @@ pwr_tStatus lfu_SaveDirectoryVolume(
...
@@ -1799,6 +1884,20 @@ pwr_tStatus lfu_SaveDirectoryVolume(
a
.
value
(
&
nc
.
qcom_max_resend_time
);
a
.
value
(
&
nc
.
qcom_max_resend_time
);
if
(
!
a
)
return
sts
;
if
(
!
a
)
return
sts
;
// Get attribute QComExportBufSize
a
=
sp
->
attribute
(
nodeo
.
oid
(),
"RtBody"
,
"QComExportBufQuota"
);
if
(
!
a
)
return
a
.
sts
();
a
.
value
(
&
nc
.
qcom_export_buf_quota
);
if
(
!
a
)
return
sts
;
// Get attribute QComAckDelay
a
=
sp
->
attribute
(
nodeo
.
oid
(),
"RtBody"
,
"QComAckDelay"
);
if
(
!
a
)
return
a
.
sts
();
a
.
value
(
&
nc
.
qcom_ack_delay
);
if
(
!
a
)
return
sts
;
/* Check that the name is in the global volume list */
/* Check that the name is in the global volume list */
found
=
0
;
found
=
0
;
volumelist_ptr
=
volumelist
;
volumelist_ptr
=
volumelist
;
...
@@ -1818,10 +1917,11 @@ pwr_tStatus lfu_SaveDirectoryVolume(
...
@@ -1818,10 +1917,11 @@ pwr_tStatus lfu_SaveDirectoryVolume(
syntax_error
=
1
;
syntax_error
=
1
;
}
}
fprintf
(
fp
,
"%s %s %s %d %d %d %d
\n
"
,
nc
.
nodename
,
fprintf
(
fp
,
"%s %s %s %d %d %d %d
%d %f %d
\n
"
,
nc
.
nodename
,
cdh_VolumeIdToString
(
NULL
,
nc
.
vid
,
0
,
0
),
nc
.
address
,
nc
.
port
,
cdh_VolumeIdToString
(
NULL
,
nc
.
vid
,
0
,
0
),
nc
.
address
,
nc
.
port
,
nc
.
connection
,
(
int
)(
nc
.
qcom_min_resend_time
*
1000
),
nc
.
connection
,
(
int
)(
nc
.
qcom_min_resend_time
*
1000
),
(
int
)(
nc
.
qcom_max_resend_time
*
1000
));
(
int
)(
nc
.
qcom_max_resend_time
*
1000
),
nc
.
qcom_export_buf_quota
,
nc
.
qcom_ack_delay
,
nc
.
qcom_segment_size
);
break
;
break
;
}
}
default:
;
default:
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment