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
f6ab3a82
Commit
f6ab3a82
authored
7 years ago
by
Michael Davis
Browse files
Options
Downloads
Patches
Plain Diff
[ssi_af_ls] Implements client-side callback
parent
44b7c5bc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
cmdline/CtaAdminCmd.cpp
+31
-0
31 additions, 0 deletions
cmdline/CtaAdminCmd.cpp
xroot_plugins/XrdCtaArchiveFileLs.hpp
+5
-5
5 additions, 5 deletions
xroot_plugins/XrdCtaArchiveFileLs.hpp
xroot_ssi_pb/XrdSsiPbIStreamBuffer.hpp
+0
-37
0 additions, 37 deletions
xroot_ssi_pb/XrdSsiPbIStreamBuffer.hpp
with
36 additions
and
42 deletions
cmdline/CtaAdminCmd.cpp
+
31
−
0
View file @
f6ab3a82
...
...
@@ -44,6 +44,37 @@ void RequestCallback<cta::xrd::Alert>::operator()(const cta::xrd::Alert &alert)
OutputJsonString
(
std
::
cout
,
&
alert
);
}
/*!
* Data/Stream callback.
*
* Defines how incoming records from the stream should be handled
*/
template
<
>
void
IStreamBuffer
<
cta
::
xrd
::
Data
>::
DataCallback
(
cta
::
xrd
::
Data
record
)
{
const
cta
::
admin
::
ArchiveFileLsItem
&
af_ls_item
=
record
.
af_ls_item
();
OutputJsonString
(
std
::
cout
,
&
af_ls_item
);
std
::
cout
<<
std
::
setfill
(
' '
)
<<
std
::
setw
(
7
)
<<
std
::
right
<<
af_ls_item
.
af
().
archive_file_id
()
<<
' '
<<
std
::
setfill
(
' '
)
<<
std
::
setw
(
7
)
<<
std
::
right
<<
af_ls_item
.
copy_nb
()
<<
' '
<<
std
::
setfill
(
' '
)
<<
std
::
setw
(
7
)
<<
std
::
right
<<
af_ls_item
.
tf
().
vid
()
<<
' '
<<
std
::
setfill
(
' '
)
<<
std
::
setw
(
7
)
<<
std
::
right
<<
af_ls_item
.
tf
().
f_seq
()
<<
' '
<<
std
::
setfill
(
' '
)
<<
std
::
setw
(
8
)
<<
std
::
right
<<
af_ls_item
.
tf
().
block_id
()
<<
' '
<<
std
::
setfill
(
' '
)
<<
std
::
setw
(
8
)
<<
std
::
right
<<
af_ls_item
.
af
().
disk_instance
()
<<
' '
<<
std
::
setfill
(
' '
)
<<
std
::
setw
(
7
)
<<
std
::
right
<<
af_ls_item
.
af
().
disk_file_id
()
<<
' '
<<
std
::
setfill
(
' '
)
<<
std
::
setw
(
12
)
<<
std
::
right
<<
af_ls_item
.
af
().
file_size
()
<<
' '
<<
std
::
setfill
(
' '
)
<<
std
::
setw
(
13
)
<<
std
::
right
<<
af_ls_item
.
af
().
cs
().
type
()
<<
' '
<<
std
::
setfill
(
' '
)
<<
std
::
setw
(
14
)
<<
std
::
right
<<
af_ls_item
.
af
().
cs
().
value
()
<<
' '
<<
std
::
setfill
(
' '
)
<<
std
::
setw
(
13
)
<<
std
::
right
<<
af_ls_item
.
af
().
storage_class
()
<<
' '
<<
std
::
setfill
(
' '
)
<<
std
::
setw
(
8
)
<<
std
::
right
<<
af_ls_item
.
af
().
df
().
owner
()
<<
' '
<<
std
::
setfill
(
' '
)
<<
std
::
setw
(
8
)
<<
std
::
right
<<
af_ls_item
.
af
().
df
().
group
()
<<
' '
<<
std
::
setfill
(
' '
)
<<
std
::
setw
(
13
)
<<
std
::
right
<<
af_ls_item
.
af
().
creation_time
()
<<
' '
<<
af_ls_item
.
af
().
df
().
path
()
<<
std
::
endl
;
}
}
// namespace XrdSsiPb
...
...
This diff is collapsed.
Click to expand it.
xroot_plugins/XrdCtaArchiveFileLs.hpp
+
5
−
5
View file @
f6ab3a82
...
...
@@ -70,13 +70,13 @@ tmp_num_items = 0;
}
// Get the next item and pass it back to the caller
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
);
cta
::
xrd
::
Data
record
;
record
.
mutable_af_ls_item
()
->
mutable_af
()
->
set_disk_instance
(
"Hello"
);
record
.
mutable_af_ls_item
()
->
mutable_af
()
->
set_disk_file_id
(
"World"
);
record
.
mutable_af_ls_item
()
->
set_copy_nb
(
++
tmp_num_items
);
XrdSsiPb
::
OStreamBuffer
*
streambuf
=
new
XrdSsiPb
::
OStreamBuffer
();
dlen
=
streambuf
->
serialize
(
item
);
dlen
=
streambuf
->
serialize
(
record
);
std
::
cerr
<<
"Returning buffer with "
<<
dlen
<<
" bytes of data."
<<
std
::
endl
;
...
...
This diff is collapsed.
Click to expand it.
xroot_ssi_pb/XrdSsiPbIStreamBuffer.hpp
+
0
−
37
View file @
f6ab3a82
...
...
@@ -196,42 +196,5 @@ std::cout << "[POP_RECORD] Saving split of 4+" << buf_len << " bytes" << std::en
}
}
#if 0
/*!
* Data callback.
*
* Defines how Data/Stream messages should be handled
*/
template<>
void XrdSsiPbRequestType::DataCallback(XrdSsiRequest::PRD_Xeq &post_process, char *response_bufptr, int response_buflen)
{
IStreamBuffer istream;
istream.push(response_bufptr, response_buflen);
google::protobuf::io::CodedInputStream coded_stream(reinterpret_cast<const uint8_t*>(response_bufptr), response_buflen);
//OutputJsonString(std::cout, &line_item);
std::cout << std::setfill(' ') << std::setw(7) << std::right << line_item.af().archive_file_id() << ' '
<< std::setfill(' ') << std::setw(7) << std::right << line_item.copy_nb() << ' '
<< std::setfill(' ') << std::setw(7) << std::right << line_item.tf().vid() << ' '
<< std::setfill(' ') << std::setw(7) << std::right << line_item.tf().f_seq() << ' '
<< std::setfill(' ') << std::setw(8) << std::right << line_item.tf().block_id() << ' '
<< std::setfill(' ') << std::setw(8) << std::right << line_item.af().disk_instance() << ' '
<< std::setfill(' ') << std::setw(7) << std::right << line_item.af().disk_file_id() << ' '
<< std::setfill(' ') << std::setw(12) << std::right << line_item.af().file_size() << ' '
<< std::setfill(' ') << std::setw(13) << std::right << line_item.af().cs().type() << ' '
<< std::setfill(' ') << std::setw(14) << std::right << line_item.af().cs().value() << ' '
<< std::setfill(' ') << std::setw(13) << std::right << line_item.af().storage_class() << ' '
<< std::setfill(' ') << std::setw(8) << std::right << line_item.af().df().owner() << ' '
<< std::setfill(' ') << std::setw(8) << std::right << line_item.af().df().group() << ' '
<< std::setfill(' ') << std::setw(13) << std::right << line_item.af().creation_time() << ' '
<< line_item.af().df().path() << std::endl;
}
#endif
}
// namespace XrdSsiPb
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