Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dCache
cta
Commits
8b62b650
Commit
8b62b650
authored
7 years ago
by
Michael Davis
Browse files
Options
Downloads
Patches
Plain Diff
[XrdSsi] Changes ParseFromString() to ParseFromArray()
Simplifies code and avoids unnecessary string copy construction
parent
35be0073
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
frontend/XrdSsiPbRequest.h
+16
-23
16 additions, 23 deletions
frontend/XrdSsiPbRequest.h
frontend/XrdSsiPbRequestProc.h
+8
-18
8 additions, 18 deletions
frontend/XrdSsiPbRequestProc.h
with
24 additions
and
41 deletions
frontend/XrdSsiPbRequest.h
+
16
−
23
View file @
8b62b650
...
...
@@ -142,33 +142,30 @@ bool XrdSsiPbRequest<RequestType, ResponseType, MetadataType, AlertType>::Proces
{
// Deserialize the metadata
const
std
::
string
metadata_str
(
metadata_buffer
,
metadata_len
);
MetadataType
metadata
;
if
(
!
metadata
.
ParseFrom
String
(
metadata_
str
))
if
(
metadata
.
ParseFrom
Array
(
metadata_
buffer
,
metadata_len
))
{
ErrorCallback
(
"metadata.ParseFromString() failed"
);
Finished
();
delete
this
;
break
;
MetadataCallback
(
metadata
);
}
MetadataCallback
(
metadata
);
// If this is a metadata-only response, there is nothing more to do
if
(
rInfo
.
rType
==
XrdSsiRespInfo
::
isNone
)
else
{
ErrorCallback
(
"metadata.ParseFromArray() failed"
);
Finished
();
delete
this
;
break
;
}
}
//
Handle response messages
//
If this is a metadata-only response, there is nothing more to do
if
(
rInfo
.
rType
==
XrdSsiRespInfo
::
isData
)
if
(
rInfo
.
rType
==
XrdSsiRespInfo
::
isNone
)
{
Finished
();
delete
this
;
break
;
}
else
// XrdSsiRespInfo::isData
{
// Allocate response buffer
...
...
@@ -197,17 +194,15 @@ XrdSsiRequest::PRD_Xeq XrdSsiPbRequest<RequestType, ResponseType, MetadataType,
// Deserialize the response
const
std
::
string
response_str
(
response_bufptr
,
response_buflen
);
ResponseType
response
;
if
(
response
.
ParseFrom
String
(
response_
str
))
if
(
response
.
ParseFrom
Array
(
response_
bufptr
,
response_buflen
))
{
ResponseCallback
(
response
);
}
else
{
ErrorCallback
(
"response.ParseFrom
String
() failed"
);
ErrorCallback
(
"response.ParseFrom
Array
() failed"
);
}
}
...
...
@@ -247,17 +242,15 @@ void XrdSsiPbRequest<RequestType, ResponseType, MetadataType, AlertType>::Alert(
// Deserialize the Alert
const
std
::
string
alert_str
(
alert_buffer
,
alert_len
);
AlertType
alert
;
if
(
alert
.
ParseFrom
String
(
alert_
str
))
if
(
alert
.
ParseFrom
Array
(
alert_
buffer
,
alert_len
))
{
AlertCallback
(
alert
);
}
else
{
ErrorCallback
(
"alert.ParseFrom
String
() failed"
);
ErrorCallback
(
"alert.ParseFrom
Array
() failed"
);
}
// Recycle the message to free memory
...
...
This diff is collapsed.
Click to expand it.
frontend/XrdSsiPbRequestProc.h
+
8
−
18
View file @
8b62b650
...
...
@@ -61,27 +61,19 @@ private:
template
<
typename
RequestType
,
typename
ResponseType
,
typename
MetadataType
,
typename
AlertType
>
void
RequestProc
<
RequestType
,
ResponseType
,
MetadataType
,
AlertType
>::
Execute
()
{
using
namespace
std
;
std
::
cerr
<<
"Execute()"
<<
std
::
endl
;
cerr
<<
"Execute()"
<<
endl
;
// Unpack the Request buffer into a string object.
//
// We need to construct this with an explicit length, as request_buffer is a binary buffer, not a
// null-terminated string.
// Deserialize the Request
int
request_len
;
const
char
*
request_buffer
=
GetRequest
(
request_len
);
const
std
::
string
request_str
(
request_buffer
,
request_len
);
// Deserialize the Request
if
(
!
m_request
.
ParseFromString
(
request_str
))
if
(
!
m_request
.
ParseFromArray
(
request_buffer
,
request_len
))
{
throw
XrdSsiException
(
"request.ParseFrom
String
() failed"
);
throw
XrdSsiException
(
"
m_
request.ParseFrom
Array
() failed"
);
}
// Release the request buffer
(optional, perhaps it is more efficient to reuse it?)
// Release the request buffer
ReleaseRequestBuffer
();
...
...
@@ -89,11 +81,11 @@ void RequestProc<RequestType, ResponseType, MetadataType, AlertType>::Execute()
ExecuteAction
();
//
Optional: s
end alerts
//
S
end alerts
ExecuteAlerts
();
//
Optional: p
repare to send metadata ahead of the response
//
P
repare to send metadata ahead of the response
ExecuteMetadata
();
...
...
@@ -133,9 +125,7 @@ void RequestProc<RequestType, ResponseType, MetadataType, AlertType>::Execute()
template
<
typename
RequestType
,
typename
ResponseType
,
typename
MetadataType
,
typename
AlertType
>
void
RequestProc
<
RequestType
,
ResponseType
,
MetadataType
,
AlertType
>::
Finished
(
XrdSsiRequest
&
rqstR
,
const
XrdSsiRespInfo
&
rInfo
,
bool
cancel
)
{
using
namespace
std
;
cerr
<<
"Finished()"
<<
endl
;
std
::
cerr
<<
"Finished()"
<<
std
::
endl
;
// Reclaim any allocated resources
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment