Instead of lengthy blurbs, switch to single-line, machine-readable standardized (https://spdx.dev) license identifiers. The Linux kernel switched long ago, so there is strong precedent. Three cases are handled: AGPL-only, Apache-only, and dual licensed. For the latter case, I chose (AGPL-3.0-or-later and Apache-2.0), reasoning that our changes are extensive enough to apply our license. The changes we applied mechanically with a script, except to licenses/README.md. Closes #9937
42 lines
781 B
C++
42 lines
781 B
C++
/*
|
|
*
|
|
* Modified by ScyllaDB
|
|
* Copyright (C) 2015-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: (AGPL-3.0-or-later and Apache-2.0)
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "utils/UUID.hh"
|
|
#include <ostream>
|
|
|
|
namespace streaming {
|
|
|
|
/**
|
|
* Summary of streaming.
|
|
*/
|
|
class stream_summary {
|
|
public:
|
|
using UUID = utils::UUID;
|
|
UUID cf_id;
|
|
|
|
/**
|
|
* Number of files to transfer. Can be 0 if nothing to transfer for some streaming request.
|
|
*/
|
|
int files;
|
|
long total_size;
|
|
|
|
stream_summary() = default;
|
|
stream_summary(UUID _cf_id, int _files, long _total_size)
|
|
: cf_id (_cf_id)
|
|
, files(_files)
|
|
, total_size(_total_size) {
|
|
}
|
|
friend std::ostream& operator<<(std::ostream& os, const stream_summary& r);
|
|
};
|
|
|
|
} // namespace streaming
|