Avi Kivity
f3eade2f62
treewide: relicense to ScyllaDB-Source-Available-1.0
...
Drop the AGPL license in favor of a source-available license.
See the blog post [1] for details.
[1] https://www.scylladb.com/2024/12/18/why-were-moving-to-a-source-available-license/
2024-12-18 17:45:13 +02:00
Kefu Chai
f86a5ae87a
streaming: do not include unused headers
...
these unused includes were identified by clangd. see
https://clangd.llvm.org/guides/include-cleaner#unused-include-warning
for more details on the "Unused include" warning.
Signed-off-by: Kefu Chai <kefu.chai@scylladb.com >
Closes scylladb/scylladb#16947
2024-01-23 19:38:30 +02:00
Benny Halevy
314e45d957
streaming: define plan_id as a strong tagged_uuid type
...
Signed-off-by: Benny Halevy <bhalevy@scylladb.com >
2022-08-22 19:45:30 +03:00
Benny Halevy
c1fc0672a5
streaming: add forward declarations in stream_fwd.hh
...
To be used for defining streaming::plan_id
in the next patcvh.
Signed-off-by: Benny Halevy <bhalevy@scylladb.com >
2022-08-21 16:00:02 +03:00
Benny Halevy
257d74bb34
schema, everywhere: define and use table_id as a strong type
...
Define table_id as a distinct utils::tagged_uuid modeled after raft
tagged_id, so it can be differentiated from other uuid-class types,
in particular from table_schema_version.
Fixes #11207
Signed-off-by: Benny Halevy <bhalevy@scylladb.com >
2022-08-08 08:09:41 +03:00
Avi Kivity
fcb8d040e8
treewide: use Software Package Data Exchange (SPDX) license identifiers
...
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
2022-01-18 12:15:18 +01:00
Avi Kivity
a55b434a2b
treewide: extent copyright statements to present day
2021-06-06 19:18:49 +03:00
Avi Kivity
84be89eb3b
streaming: drop unused fields
2021-05-21 21:03:23 +03:00
Pavel Solodovnikov
2f442f28af
treewide: add const qualifiers throughout the code base
2019-11-26 02:24:49 +03:00
Pekka Enberg
38a54df863
Fix pre-ScyllaDB copyright statements
...
People keep tripping over the old copyrights and copy-pasting them to
new files. Search and replace "Cloudius Systems" with "ScyllaDB".
Message-Id: <1460013664-25966-1-git-send-email-penberg@scylladb.com >
2016-04-08 08:12:47 +03:00
Asias He
2f48d402e2
streaming: Remove unused commented code
2016-01-29 16:31:07 +08:00
Asias He
2a04e8d70e
streaming: Drop streaming/messages/incoming_file_message
...
It is not used.
2016-01-25 11:38:13 +08:00
Avi Kivity
d5cf0fb2b1
Add license notices
2015-09-20 10:43:39 +03:00
Asias He
e82bdf2995
streaming: Swith to use shared_ptr from std::shared_ptr
...
Since our shared_ptr works with incomplete types now, switch to it.
2015-07-14 20:41:14 +08:00
Asias He
14ae9e66ae
streaming: Use shared_ptr to track back to stream_session
...
I tried our lw_shared_ptr, the compiler complained endless usage of
incomplete type stream_session. I can not include stream_session.hh
everywhere due to circular dependency.
For now, I'm using std::shared_ptr which works fine.
2015-07-14 20:41:14 +08:00
Asias He
1aab3c7bb9
streaming: Drop serialization interface for {outgoing,incoming}_file_message
...
We will send mutations using the frozen_mutation verb
2015-07-09 15:52:28 +08:00
Asias He
f113b9a199
streaming: Add stream_session::receive
2015-06-26 08:31:28 +08:00
Asias He
ec945320a2
streaming: Implement virtual functions in stream_receive_task
2015-06-24 16:13:30 +08:00
Asias He
76c6139a57
streaming: Reduce dependency to stream_session in stream_receive_task
2015-06-24 16:13:30 +08:00
Asias He
d1c04ec2e3
streaming: Convert StreamReceiveTask.java to C++
2015-06-18 14:55:07 +08:00