X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=stream.cpp;h=42edee95aae01176e94c3a63ab47704a95b19a36;hp=322391ef5c2158dfc04c440301a11b9cc4e792fb;hb=e05f9f880fb97c3510546a60d57b5da0b0752591;hpb=195dc469133d0daed6ac69cdef373dc8dade9637 diff --git a/stream.cpp b/stream.cpp index 322391e..42edee9 100644 --- a/stream.cpp +++ b/stream.cpp @@ -1,22 +1,30 @@ -#include -#include +#include #include -#include +#include +#include +#include +#include +#include #include #include +#include "log.h" +#include "metacube2.h" +#include "state.pb.h" #include "stream.h" #include "util.h" -#include "state.pb.h" using namespace std; -Stream::Stream(const string &stream_id, size_t backlog_size) - : stream_id(stream_id), +Stream::Stream(const string &url, size_t backlog_size, Encoding encoding) + : url(url), + encoding(encoding), data_fd(make_tempfile("")), backlog_size(backlog_size), bytes_received(0), - mark_pool(NULL) + last_suitable_starting_point(-1), + mark_pool(NULL), + queued_data_last_starting_point(-1) { if (data_fd == -1) { exit(1); @@ -26,50 +34,246 @@ Stream::Stream(const string &stream_id, size_t backlog_size) Stream::~Stream() { if (data_fd != -1) { - int ret; - do { - ret = close(data_fd); - } while (ret == -1 && errno == EINTR); - if (ret == -1) { - perror("close"); - } + safe_close(data_fd); } } -Stream::Stream(const StreamProto &serialized) - : stream_id(serialized.stream_id()), - header(serialized.header()), - data_fd(make_tempfile(serialized.data())), +Stream::Stream(const StreamProto &serialized, int data_fd) + : url(serialized.url()), + http_header(serialized.http_header()), + stream_header(serialized.stream_header()), + encoding(Stream::STREAM_ENCODING_RAW), // Will be changed later. + data_fd(data_fd), backlog_size(serialized.backlog_size()), bytes_received(serialized.bytes_received()), - mark_pool(NULL) + mark_pool(NULL), + queued_data_last_starting_point(-1) { if (data_fd == -1) { exit(1); } + + // Split old-style headers into HTTP and video headers. + if (!serialized.header().empty()) { + string header = serialized.header(); + size_t split = header.find("\r\n\r\n"); + if (split == string::npos) { + http_header = header; + stream_header = ""; + } else { + http_header = header.substr(0, split + 2); // Split off the second \r\n. + stream_header = header.substr(split, string::npos); + } + } + + // Older versions did not set last_suitable_starting_point. + if (serialized.has_last_suitable_starting_point()) { + last_suitable_starting_point = serialized.last_suitable_starting_point(); + } else { + last_suitable_starting_point = bytes_received; + } } StreamProto Stream::serialize() { StreamProto serialized; - serialized.set_header(header); - if (!read_tempfile(data_fd, serialized.mutable_data())) { // Closes data_fd. - exit(1); - } + serialized.set_http_header(http_header); + serialized.set_stream_header(stream_header); + serialized.add_data_fds(data_fd); serialized.set_backlog_size(backlog_size); serialized.set_bytes_received(bytes_received); - serialized.set_stream_id(stream_id); + serialized.set_last_suitable_starting_point(last_suitable_starting_point); + serialized.set_url(url); data_fd = -1; return serialized; } + +void Stream::set_backlog_size(size_t new_size) +{ + if (backlog_size == new_size) { + return; + } + + string existing_data; + if (!read_tempfile_and_close(data_fd, &existing_data)) { + exit(1); + } + + // Unwrap the data so it's no longer circular. + if (bytes_received <= backlog_size) { + existing_data.resize(bytes_received); + } else { + size_t pos = bytes_received % backlog_size; + existing_data = existing_data.substr(pos, string::npos) + + existing_data.substr(0, pos); + } + + // See if we need to discard data. + if (new_size < existing_data.size()) { + size_t to_discard = existing_data.size() - new_size; + existing_data = existing_data.substr(to_discard, string::npos); + } + + // Create a new, empty data file. + data_fd = make_tempfile(""); + if (data_fd == -1) { + exit(1); + } + backlog_size = new_size; + + // Now cheat a bit by rewinding, and adding all the old data back. + bytes_received -= existing_data.size(); + iovec iov; + iov.iov_base = const_cast(existing_data.data()); + iov.iov_len = existing_data.size(); + + vector iovs; + iovs.push_back(iov); + add_data_raw(iovs); +} void Stream::put_client_to_sleep(Client *client) { sleeping_clients.push_back(client); } -void Stream::wake_up_all_clients() +// Return a new set of iovecs that contains only the first bytes of . +vector collect_iovecs(const vector &data, size_t bytes_wanted) +{ + vector ret; + size_t max_iovecs = std::min(data.size(), IOV_MAX); + for (size_t i = 0; i < max_iovecs && bytes_wanted > 0; ++i) { + if (data[i].iov_len <= bytes_wanted) { + // Consume the entire iovec. + ret.push_back(data[i]); + bytes_wanted -= data[i].iov_len; + } else { + // Take only parts of this iovec. + iovec iov; + iov.iov_base = data[i].iov_base; + iov.iov_len = bytes_wanted; + ret.push_back(iov); + bytes_wanted = 0; + } + } + return ret; +} + +// Return a new set of iovecs that contains all of except the first bytes. +vector remove_iovecs(const vector &data, size_t bytes_wanted) { + vector ret; + size_t i; + for (i = 0; i < data.size() && bytes_wanted > 0; ++i) { + if (data[i].iov_len <= bytes_wanted) { + // Consume the entire iovec. + bytes_wanted -= data[i].iov_len; + } else { + // Take only parts of this iovec. + iovec iov; + iov.iov_base = reinterpret_cast(data[i].iov_base) + bytes_wanted; + iov.iov_len = data[i].iov_len - bytes_wanted; + ret.push_back(iov); + bytes_wanted = 0; + } + } + + // Add the rest of the iovecs unchanged. + ret.insert(ret.end(), data.begin() + i, data.end()); + return ret; +} + +void Stream::add_data_raw(const vector &orig_data) +{ + vector data = orig_data; + while (!data.empty()) { + size_t pos = bytes_received % backlog_size; + + // Collect as many iovecs as we can before we hit the point + // where the circular buffer wraps around. + vector to_write = collect_iovecs(data, backlog_size - pos); + ssize_t ret; + do { + ret = pwritev(data_fd, to_write.data(), to_write.size(), pos); + } while (ret == -1 && errno == EINTR); + + if (ret == -1) { + log_perror("pwritev"); + // Dazed and confused, but trying to continue... + return; + } + bytes_received += ret; + + // Remove the data that was actually written from the set of iovecs. + data = remove_iovecs(data, ret); + } +} + +void Stream::add_data_deferred(const char *data, size_t bytes, StreamStartSuitability suitable_for_stream_start) +{ + assert(suitable_for_stream_start == SUITABLE_FOR_STREAM_START || + suitable_for_stream_start == NOT_SUITABLE_FOR_STREAM_START); + if (suitable_for_stream_start == SUITABLE_FOR_STREAM_START) { + queued_data_last_starting_point = queued_data.size(); + } + + if (encoding == Stream::STREAM_ENCODING_METACUBE) { + // Add a Metacube block header before the data. + metacube2_block_header hdr; + memcpy(hdr.sync, METACUBE2_SYNC, sizeof(hdr.sync)); + hdr.size = htonl(bytes); + hdr.flags = htons(0); + if (suitable_for_stream_start == NOT_SUITABLE_FOR_STREAM_START) { + hdr.flags |= htons(METACUBE_FLAGS_NOT_SUITABLE_FOR_STREAM_START); + } + hdr.csum = htons(metacube2_compute_crc(&hdr)); + + iovec iov; + iov.iov_base = new char[bytes + sizeof(hdr)]; + iov.iov_len = bytes + sizeof(hdr); + + memcpy(iov.iov_base, &hdr, sizeof(hdr)); + memcpy(reinterpret_cast(iov.iov_base) + sizeof(hdr), data, bytes); + + queued_data.push_back(iov); + } else if (encoding == Stream::STREAM_ENCODING_RAW) { + // Just add the data itself. + iovec iov; + iov.iov_base = new char[bytes]; + memcpy(iov.iov_base, data, bytes); + iov.iov_len = bytes; + + queued_data.push_back(iov); + } else { + assert(false); + } +} + +void Stream::process_queued_data() +{ + if (queued_data.empty()) { + return; + } + + // Update the last suitable starting point for the stream, + // if the queued data contains such a starting point. + assert(queued_data_last_starting_point < ssize_t(queued_data.size())); + if (queued_data_last_starting_point >= 0) { + last_suitable_starting_point = bytes_received; + for (int i = 0; i < queued_data_last_starting_point; ++i) { + last_suitable_starting_point += queued_data[i].iov_len; + } + } + + add_data_raw(queued_data); + for (size_t i = 0; i < queued_data.size(); ++i) { + char *data = reinterpret_cast(queued_data[i].iov_base); + delete[] data; + } + queued_data.clear(); + queued_data_last_starting_point = -1; + + // We have more data, so wake up all clients. if (to_process.empty()) { swap(sleeping_clients, to_process); } else {