Skip to content
Snippets Groups Projects
Commit 8b62b650 authored by Michael Davis's avatar Michael Davis
Browse files

[XrdSsi] Changes ParseFromString() to ParseFromArray()

Simplifies code and avoids unnecessary string copy construction
parent 35be0073
No related branches found
No related tags found
No related merge requests found
......@@ -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.ParseFromString(metadata_str))
if(metadata.ParseFromArray(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.ParseFromString(response_str))
if(response.ParseFromArray(response_bufptr, response_buflen))
{
ResponseCallback(response);
}
else
{
ErrorCallback("response.ParseFromString() failed");
ErrorCallback("response.ParseFromArray() 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.ParseFromString(alert_str))
if(alert.ParseFromArray(alert_buffer, alert_len))
{
AlertCallback(alert);
}
else
{
ErrorCallback("alert.ParseFromString() failed");
ErrorCallback("alert.ParseFromArray() failed");
}
// Recycle the message to free memory
......
......@@ -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.ParseFromString() failed");
throw XrdSsiException("m_request.ParseFromArray() 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: send alerts
// Send alerts
ExecuteAlerts();
// Optional: prepare to send metadata ahead of the response
// Prepare 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
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment