]> git.sesse.net Git - cubemap/commitdiff
Support deserialization of most state (curl input is not really good yet).
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 7 Apr 2013 11:10:03 +0000 (13:10 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 7 Apr 2013 11:10:03 +0000 (13:10 +0200)
cubemap.cpp
input.cpp
server.cpp
server.h
state.proto

index 5ef003640ff1cc5780c6cd79c43687324193fcc6..ed615a876574a8334757bd226529f58814e3ef70 100644 (file)
@@ -105,16 +105,113 @@ void *acceptor_thread_run(void *arg)
        }
 }
 
+// Serialize the given state to a file descriptor, and return the (still open)
+// descriptor.
+int make_tempfile(const CubemapStateProto &state)
+{
+       char tmpl[] = "/tmp/cubemapstate.XXXXXX";
+       int state_fd = mkstemp(tmpl);
+       if (state_fd == -1) {
+               perror("mkstemp");
+               exit(1);
+       }
+
+       string serialized;
+       state.SerializeToString(&serialized);
+
+       const char *ptr = serialized.data();
+       size_t to_write = serialized.size();
+       while (to_write > 0) {
+               ssize_t ret = write(state_fd, ptr, to_write);
+               if (ret == -1) {
+                       perror("write");
+                       exit(1);
+               }
+
+               ptr += ret;
+               to_write -= ret;
+       }
+
+       return state_fd;
+}
+
+// Read the state back from the file descriptor made by make_tempfile,
+// and close it.
+CubemapStateProto read_tempfile(int state_fd)
+{
+       if (lseek(state_fd, 0, SEEK_SET) == -1) {
+               perror("lseek");
+               exit(1);
+       }
+
+       string serialized;
+       char buf[4096];
+       for ( ;; ) {
+               ssize_t ret = read(state_fd, buf, sizeof(buf));
+               if (ret == -1) {
+                       perror("read");
+                       exit(1);
+               }
+               if (ret == 0) {
+                       // EOF.
+                       break;
+               }
+
+               serialized.append(string(buf, buf + ret));
+       }
+
+       close(state_fd);  // Implicitly deletes the file.
+
+       CubemapStateProto state;
+       if (!state.ParseFromString(serialized)) {
+               fprintf(stderr, "PANIC: Failed deserialization of state.\n");
+               exit(1);
+       }
+
+       return state;
+}
+
 int main(int argc, char **argv)
 {
+       fprintf(stderr, "\nCubemap starting.\n");
+               
        servers = new Server[NUM_SERVERS];
+
+       int server_sock;
+       if (argc == 3 && strcmp(argv[1], "-state") == 0) {
+               fprintf(stderr, "Deserializing state from previous process... ");
+               int state_fd = atoi(argv[2]);
+               CubemapStateProto loaded_state = read_tempfile(state_fd);
+
+               // Deserialize the streams.
+               for (int i = 0; i < loaded_state.streams_size(); ++i) {
+                       for (int j = 0; j < NUM_SERVERS; ++j) {
+                               servers[j].add_stream_from_serialized(loaded_state.streams(i));
+                       }
+               }
+
+               // Put back the existing clients. It doesn't matter which server we
+               // allocate them to, so just do round-robin.
+               for (int i = 0; i < loaded_state.clients_size(); ++i) {
+                       servers[i % NUM_SERVERS].add_client_from_serialized(loaded_state.clients(i));
+               }
+
+               // Deserialize the server socket.
+               server_sock = loaded_state.server_sock();
+
+               fprintf(stderr, "done.\n");
+       } else {
+               // TODO: This should come from a config file.
+               server_sock = create_server_socket(PORT);
+               for (int i = 0; i < NUM_SERVERS; ++i) {
+                       servers[i].add_stream(STREAM_ID);
+               }
+       }
+
        for (int i = 0; i < NUM_SERVERS; ++i) {
-               servers[i].add_stream(STREAM_ID);
                servers[i].run();
        }
 
-       int server_sock = create_server_socket(PORT);
-
        pthread_t acceptor_thread;
        pthread_create(&acceptor_thread, NULL, acceptor_thread_run, reinterpret_cast<void *>(server_sock));
 
@@ -130,6 +227,7 @@ int main(int argc, char **argv)
        input.stop();
 
        CubemapStateProto state;
+       state.set_server_sock(server_sock);
        for (int i = 0; i < NUM_SERVERS; ++i) {
                servers[i].stop();
 
@@ -145,5 +243,16 @@ int main(int argc, char **argv)
        }
        delete[] servers;
 
-       printf("SERIALIZED: [%s]\n", state.DebugString().c_str());
+       fprintf(stderr, "Serializing state and re-execing...\n");
+       int state_fd = make_tempfile(state);
+
+       char buf[16];
+       sprintf(buf, "%d", state_fd);
+
+       for ( ;; ) {
+               execlp(argv[0], argv[0], "-state", buf, NULL);
+               perror("execlp");
+               fprintf(stderr, "PANIC: re-exec of %s failed. Waiting 0.2 seconds and trying again...\n", argv[0]);
+               usleep(200000);
+       }
 }
index 48465664b56bf7429f1023d44a4ec9d9b7b81f30..541b5df6273bf7e59b0230acbcb1d936f679b977 100644 (file)
--- a/input.cpp
+++ b/input.cpp
@@ -67,8 +67,10 @@ void Input::do_work()
                curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, &Input::curl_callback_thunk);
                curl_easy_setopt(curl, CURLOPT_WRITEDATA, this);
                curl_easy_perform(curl);
-               printf("Transfer ended, waiting 0.2 seconds and restarting...\n");
-               usleep(200000);
+               if (!should_stop) {
+                       printf("Transfer ended, waiting 0.2 seconds and restarting...\n");
+                       usleep(200000);
+               }
        }
 }
 
index f47de543e2b69a1350138ab0cb3c0f979fe07484..5f155c0a699a7723fc0aac09083de1df2eb78aee 100644 (file)
@@ -69,7 +69,8 @@ Stream::~Stream()
 }
 
 Stream::Stream(const StreamProto &serialized)
-       : header(serialized.header()),
+       : stream_id(serialized.stream_id()),
+         header(serialized.header()),
          data(new char[BACKLOG_SIZE]),
          data_size(serialized.data_size())
 {
@@ -83,6 +84,7 @@ StreamProto Stream::serialize() const
        serialized.set_header(header);
        serialized.set_data(string(data, data + BACKLOG_SIZE));
        serialized.set_data_size(data_size);
+       serialized.set_stream_id(stream_id);
        return serialized;
 }
 
@@ -97,6 +99,11 @@ Server::Server()
        }
 }
 
+Server::~Server()
+{
+       close(epoll_fd);
+}
+
 void Server::run()
 {
        should_stop = false;
@@ -189,12 +196,40 @@ void Server::add_client(int sock)
                exit(1);
        }
 }
-       
+
+void Server::add_client_from_serialized(const ClientProto &client)
+{
+       MutexLock lock(&mutex);
+       clients.insert(make_pair(client.sock(), Client(client)));
+
+       // Start listening on data from this socket.
+       epoll_event ev;
+       if (client.state() == Client::READING_REQUEST) {
+               ev.events = EPOLLIN | EPOLLRDHUP;
+       } else {
+               // If we don't have more data for this client, we'll be putting it into
+               // the sleeping array again soon.
+               ev.events = EPOLLOUT | EPOLLRDHUP;
+       }
+       ev.data.u64 = 0;  // Keep Valgrind happy.
+       ev.data.fd = client.sock();
+       if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, client.sock(), &ev) == -1) {
+               perror("epoll_ctl(EPOLL_CTL_ADD)");
+               exit(1);
+       }
+}
+
 void Server::add_stream(const string &stream_id)
 {
        MutexLock lock(&mutex);
        streams.insert(make_pair(stream_id, new Stream(stream_id)));
 }
+
+void Server::add_stream_from_serialized(const StreamProto &stream)
+{
+       MutexLock lock(&mutex);
+       streams.insert(make_pair(stream.stream_id(), new Stream(stream)));
+}
        
 void Server::set_header(const string &stream_id, const string &header)
 {
index 65ac6b805435f413d4e6bd0f5bfbf84e747aacff..7d94e17b76fa811fb8e98c927bafd81e4c265fb0 100644 (file)
--- a/server.h
+++ b/server.h
@@ -77,6 +77,7 @@ private:
 class Server {
 public:
        Server();
+       ~Server();
 
        // Start a new thread that handles clients.
        void run();
@@ -87,7 +88,11 @@ public:
        CubemapStateProto serialize() const;
 
        void add_client(int sock);
+       void add_client_from_serialized(const ClientProto &client);
+
        void add_stream(const std::string &stream_id);
+       void add_stream_from_serialized(const StreamProto &stream);
+
        void set_header(const std::string &stream_id, const std::string &header);
        void add_data(const std::string &stream_id, const char *data, size_t bytes);
 
index 7c9ca7fe43ce9f661aa97652865b79a4089a4286..19f2617fc038770d5e4ddded0f0b6e89b1c0eee8 100644 (file)
@@ -14,9 +14,11 @@ message StreamProto {
        optional bytes header = 1;
        optional bytes data = 2;
        optional int64 data_size = 3;
+       optional string stream_id = 4;
 };
 
 message CubemapStateProto {
        repeated ClientProto clients = 1;
        repeated StreamProto streams = 2;
+       optional int32 server_sock = 3;
 };