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
9181eec1
Commit
9181eec1
authored
7 years ago
by
Michael Davis
Browse files
Options
Downloads
Patches
Plain Diff
Serializes and sends response from XrdSsi server
parent
0ceb8b40
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/TestSsiRequestProc.cpp
+20
-0
20 additions, 0 deletions
frontend/TestSsiRequestProc.cpp
frontend/TestSsiRequestProc.h
+6
-4
6 additions, 4 deletions
frontend/TestSsiRequestProc.h
with
26 additions
and
4 deletions
frontend/TestSsiRequestProc.cpp
+
20
−
0
View file @
9181eec1
...
...
@@ -7,6 +7,26 @@
// This is for specialized private methods called by RequestProc::Execute to handle actions, alerts
// and metadata
template
<
>
void
RequestProc
<
xrdssi
::
test
::
Request
,
xrdssi
::
test
::
Result
>::
ExecuteAction
()
{
// Output message in Json format (for debugging)
std
::
cerr
<<
"Received message:"
<<
std
::
endl
;
std
::
cerr
<<
xrdssi
::
test
::
MessageToJsonString
(
request
);
// Set reply
response
.
set_result_code
(
0
);
response
.
mutable_response
()
->
set_message_text
(
"This is the reply to "
+
*
request
.
mutable_message_text
());
// Output message in Json format (for debugging)
std
::
cerr
<<
"Sending response:"
<<
std
::
endl
;
std
::
cerr
<<
xrdssi
::
test
::
MessageToJsonString
(
response
);
}
template
<
>
void
RequestProc
<
xrdssi
::
test
::
Request
,
xrdssi
::
test
::
Result
>::
ExecuteMetadata
()
{
...
...
This diff is collapsed.
Click to expand it.
frontend/TestSsiRequestProc.h
+
6
−
4
View file @
9181eec1
...
...
@@ -29,9 +29,11 @@ public:
virtual
void
Finished
(
XrdSsiRequest
&
rqstR
,
const
XrdSsiRespInfo
&
rInfo
,
bool
cancel
=
false
)
override
;
private
:
void
ExecuteAction
()
{}
void
ExecuteAlerts
()
{}
void
ExecuteMetadata
()
{}
// These methods should be specialized according to the needs of each <RequestType, ResponseType> pair
void
ExecuteAction
()
{
std
::
cerr
<<
"Called default ExecuteAction()"
<<
std
::
endl
;
}
void
ExecuteAlerts
()
{
std
::
cerr
<<
"Called default ExecuteAlerts()"
<<
std
::
endl
;
}
void
ExecuteMetadata
()
{
std
::
cerr
<<
"Called default ExecuteMetadata()"
<<
std
::
endl
;
}
RequestType
request
;
ResponseType
response
;
...
...
@@ -62,7 +64,7 @@ void RequestProc<RequestType, ResponseType>::Execute()
throw
XrdSsiException
(
"ParseFromString() failed"
);
}
// Release the request buffer (optional, perhaps it is more efficient to reuse it)
// Release the request buffer (optional, perhaps it is more efficient to reuse it
?
)
ReleaseRequestBuffer
();
...
...
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