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
63aa0c65
Commit
63aa0c65
authored
7 years ago
by
Michael Davis
Browse files
Options
Downloads
Patches
Plain Diff
[ssi_af_ls] Consumes protocol buffers one-at-a-time from a byte stream
parent
61608166
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
cmdline/CtaAdminCmd.cpp
+43
-1
43 additions, 1 deletion
cmdline/CtaAdminCmd.cpp
xroot_plugins/XrdCtaArchiveFileLs.hpp
+2
-2
2 additions, 2 deletions
xroot_plugins/XrdCtaArchiveFileLs.hpp
with
45 additions
and
3 deletions
cmdline/CtaAdminCmd.cpp
+
43
−
1
View file @
63aa0c65
...
...
@@ -25,6 +25,8 @@
#include
"CtaAdminCmd.hpp"
#include
"XrdSsiPbDebug.hpp"
// Move to generic headers
#include
<google/protobuf/io/zero_copy_stream_impl_lite.h>
// Define XRootD SSI Alert message callback
...
...
@@ -52,9 +54,48 @@ void RequestCallback<cta::xrd::Alert>::operator()(const cta::xrd::Alert &alert)
template
<
>
void
XrdSsiPbRequestType
::
DataCallback
(
XrdSsiRequest
::
PRD_Xeq
&
post_process
,
char
*
response_bufptr
,
int
response_buflen
)
{
google
::
protobuf
::
io
::
ArrayInputStream
raw_stream
(
response_bufptr
,
response_buflen
);
//google::protobuf::io::CodedInputStream coded_stream(&raw_stream);
// coded_in->ReadVarint32(&n);
// cout << "#" << n << endl;
//
// std::string s;
//
// for (uint32_t i = 0; i < n; ++i)
// {
// uint32_t msgSize;
// coded_in->ReadVarint32(&msgSize);
//
// if ((msgSize > 0) &&
// (coded_in->ReadString(&s, msgSize)))
// {
//
// Person p;
// p.ParseFromString(s);
//
// cout << "ID: " << p.id() << endl;
// cout << "name: " << p.name() << endl;
// cout << "gendre: " << gendres[p.gendre()-1] << endl;
// if (p.has_email())
// {
// cout << "e-mail: " << p.email() << endl;
// }
//
// cout << endl;
// }
// }
//
// delete coded_in;
// delete raw_in;
cta
::
admin
::
ArchiveFileLsItem
item
;
item
.
ParseFromArray
(
response_bufptr
,
response_buflen
);
for
(
int
i
=
0
;
i
<
10
;
++
i
)
{
item
.
ParseFromBoundedZeroCopyStream
(
&
raw_stream
,
18
);
OutputJsonString
(
std
::
cout
,
&
item
);
std
::
cout
<<
std
::
setfill
(
' '
)
<<
std
::
setw
(
7
)
<<
std
::
right
<<
item
.
af
().
archive_file_id
()
<<
' '
<<
std
::
setfill
(
' '
)
<<
std
::
setw
(
7
)
<<
std
::
right
<<
item
.
copy_nb
()
<<
' '
...
...
@@ -71,6 +112,7 @@ void XrdSsiPbRequestType::DataCallback(XrdSsiRequest::PRD_Xeq &post_process, cha
<<
std
::
setfill
(
' '
)
<<
std
::
setw
(
8
)
<<
std
::
right
<<
item
.
af
().
df
().
group
()
<<
' '
<<
std
::
setfill
(
' '
)
<<
std
::
setw
(
13
)
<<
std
::
right
<<
item
.
af
().
creation_time
()
<<
' '
<<
item
.
af
().
df
().
path
()
<<
std
::
endl
;
}
}
...
...
This diff is collapsed.
Click to expand it.
xroot_plugins/XrdCtaArchiveFileLs.hpp
+
2
−
2
View file @
63aa0c65
...
...
@@ -153,7 +153,7 @@ tmp_num_items = 0;
#ifdef XRDSSI_DEBUG
std
::
cerr
<<
"[DEBUG] ArchiveFileLsStream::GetBuff(): XrdSsi buffer fill request ("
<<
dlen
<<
" bytes)"
<<
std
::
endl
;
#endif
if
(
tmp_num_items
>
=
10
)
if
(
tmp_num_items
>
9
)
{
// Nothing more to send, close the stream
last
=
true
;
...
...
@@ -164,7 +164,7 @@ tmp_num_items = 0;
cta
::
admin
::
ArchiveFileLsItem
item
;
item
.
mutable_af
()
->
set_disk_instance
(
"Hello"
);
item
.
mutable_af
()
->
set_disk_file_id
(
"World"
);
item
.
set_copy_nb
(
tmp_num_items
++
);
item
.
set_copy_nb
(
++
tmp_num_items
);
std
::
string
bufstr
;
item
.
SerializeToString
(
&
bufstr
);
...
...
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