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

[ssi_af_ls] Implements client-side callback

parent 44b7c5bc
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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;
......
......@@ -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
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