X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fjson_server.cc;h=3f43a75eb8ee332a53d0a1bac1cb0e2ecc6e1dd0;hp=4af13387510885d701736bc5a5678bd5f7de4d0f;hb=a5be11a965c2c38442e4e069874e7e21b5b43a5c;hpb=422be0eece2bf6ee80db1d3c21553cd82efff789 diff --git a/src/lib/json_server.cc b/src/lib/json_server.cc index 4af133875..3f43a75eb 100644 --- a/src/lib/json_server.cc +++ b/src/lib/json_server.cc @@ -18,15 +18,16 @@ */ -#include -#include -#include #include "json_server.h" #include "job_manager.h" #include "job.h" #include "util.h" #include "film.h" #include "transcode_job.h" +#include +#include +#include +#include #include using std::string; @@ -37,6 +38,7 @@ using boost::thread; using boost::shared_ptr; using boost::dynamic_pointer_cast; using boost::asio::ip::tcp; +using dcp::raw_convert; #define MAX_LENGTH 512 @@ -50,7 +52,10 @@ enum State { JSONServer::JSONServer (int port) { - new thread (boost::bind (&JSONServer::run, this, port)); + thread* t = new thread (boost::bind (&JSONServer::run, this, port)); +#ifdef DCPOMATIC_LINUX + pthread_setname_np (t->native_handle(), "json-server"); +#endif } void @@ -151,48 +156,43 @@ JSONServer::request (string url, shared_ptr socket) action = r["action"]; } - locked_stringstream json; + string json; if (action == "status") { list > jobs = JobManager::instance()->get (); - json << "{ \"jobs\": ["; + json += "{ \"jobs\": ["; for (list >::iterator i = jobs.begin(); i != jobs.end(); ++i) { - json << "{ "; + json += "{ "; if ((*i)->film()) { - json << "\"dcp\": \"" << (*i)->film()->dcp_name() << "\", "; + json += "\"dcp\": \"" + (*i)->film()->dcp_name() + "\", "; } - json << "\"name\": \"" << (*i)->json_name() << "\", "; + json += "\"name\": \"" + (*i)->json_name() + "\", "; if ((*i)->progress ()) { - json << "\"progress\": " << (*i)->progress().get() << ", "; + json += "\"progress\": " + raw_convert((*i)->progress().get()) + ", "; } else { - json << "\"progress\": unknown, "; + json += "\"progress\": unknown, "; } - json << "\"status\": \"" << (*i)->json_status() << "\""; - json << " }"; + json += "\"status\": \"" + (*i)->json_status() + "\""; + json += " }"; list >::iterator j = i; ++j; if (j != jobs.end ()) { - json << ", "; + json += ", "; } } - json << "] }"; - - if (json.str().empty ()) { - json << "{ }"; - } + json += "] }"; } - locked_stringstream reply; - reply << "HTTP/1.1 200 OK\r\n" - << "Content-Length: " << json.str().length() << "\r\n" - << "Content-Type: application/json\r\n" - << "\r\n" - << json.str () << "\r\n"; - cout << "reply: " << json.str() << "\n"; - boost::asio::write (*socket, boost::asio::buffer (reply.str().c_str(), reply.str().length())); + string reply = "HTTP/1.1 200 OK\r\n" + "Content-Length: " + raw_convert(json.length()) + "\r\n" + "Content-Type: application/json\r\n" + "\r\n" + + json + "\r\n"; + cout << "reply: " << json << "\n"; + boost::asio::write (*socket, boost::asio::buffer (reply.c_str(), reply.length())); }