X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Ftools%2Fdcpomatic_server.cc;h=aff98912f46c55639488180e6a71c55efe86c05d;hb=67a68bd971ebe1b35daa3f75873b4ccb53c00ba0;hp=1d6c0bef70a6b7a95b96e9909afa9249aaf7dc45;hpb=c2ce6455ababea2f1db9fb5d8771fa1327c2fcdb;p=dcpomatic.git diff --git a/src/tools/dcpomatic_server.cc b/src/tools/dcpomatic_server.cc index 1d6c0bef7..aff98912f 100644 --- a/src/tools/dcpomatic_server.cc +++ b/src/tools/dcpomatic_server.cc @@ -1,41 +1,50 @@ /* Copyright (C) 2012-2015 Carl Hetherington - This program is free software; you can redistribute it and/or modify + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - This program is distributed in the hope that it will be useful, + DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with DCP-o-matic. If not, see . */ #include "wx/wx_util.h" #include "wx/wx_signal_manager.h" #include "lib/util.h" -#include "lib/server.h" +#include "lib/encoded_log_entry.h" +#include "lib/encode_server.h" #include "lib/config.h" #include "lib/log.h" #include "lib/signaller.h" +#include "lib/cross.h" #include #include #include +#include +#include #include using std::cout; using std::string; using std::exception; using std::list; +using std::fixed; +using std::setprecision; using boost::shared_ptr; using boost::thread; using boost::bind; +using boost::optional; +using boost::dynamic_pointer_cast; enum { ID_status = 1, @@ -43,48 +52,104 @@ enum { ID_timer }; -static int const log_lines = 32; +static unsigned int const log_lines = 32; -class MemoryLog : public Log, public Signaller +class ServerLog : public Log, public Signaller { public: + string get () const { + string a; + BOOST_FOREACH (string const & i, _log) { + a += i + "\n"; + } + return a; + } + string head_and_tail (int) const { /* Not necessary */ return ""; } + float fps () const { + boost::mutex::scoped_lock lm (_state_mutex); + return _fps; + } + boost::signals2::signal Appended; boost::signals2::signal Removed; private: - void do_log (string m) + void do_log (shared_ptr entry) { - _lengths.push_back (m.length ()); - emit (boost::bind (boost::ref (Appended), m)); - if (_lengths.size() > log_lines) { - emit (boost::bind (boost::ref (Removed), _lengths.front())); - _lengths.pop_front (); + time_t const s = entry->seconds (); + struct tm* local = localtime (&s); + if ( + !_last_time || + local->tm_yday != _last_time->tm_yday || + local->tm_year != _last_time->tm_year || + local->tm_hour != _last_time->tm_hour || + local->tm_min != _last_time->tm_min + ) { + char buffer[64]; + strftime (buffer, 64, "%c", local); + append (buffer); } + + append (entry->message ()); + if (_log.size() > log_lines) { + emit (boost::bind (boost::ref (Removed), _log.front().length())); + _log.pop_front (); + } + _last_time = *local; + + shared_ptr encoded = dynamic_pointer_cast (entry); + if (encoded) { + _history.push_back (encoded->seconds ()); + if (_history.size() > 48) { + _history.pop_front (); + } + if (_history.size() > 2) { + boost::mutex::scoped_lock lm (_state_mutex); + _fps = _history.size() / (_history.back() - _history.front()); + } + } + } + + void append (string s) + { + _log.push_back (s); + emit (boost::bind (boost::ref (Appended), s)); } - list _lengths; + list _log; + optional _last_time; + std::list _history; + + mutable boost::mutex _state_mutex; + float _fps; }; -static shared_ptr memory_log (new MemoryLog); +static shared_ptr server_log; class StatusDialog : public wxDialog { public: StatusDialog () : wxDialog ( - 0, wxID_ANY, _("DCP-o-matic encode server"), + 0, wxID_ANY, _("DCP-o-matic Encode Server"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER ) { - _sizer = new wxFlexGridSizer (1, DCPOMATIC_SIZER_GAP, DCPOMATIC_SIZER_GAP); - _sizer->AddGrowableCol (0, 1); + wxFlexGridSizer* state_sizer = new wxFlexGridSizer (2, DCPOMATIC_SIZER_GAP, DCPOMATIC_SIZER_GAP); + + add_label_to_sizer (state_sizer, this, _("Frames per second"), true); + _fps = new wxStaticText (this, wxID_ANY, wxT("")); + state_sizer->Add (_fps); + + wxFlexGridSizer* log_sizer = new wxFlexGridSizer (1, DCPOMATIC_SIZER_GAP, DCPOMATIC_SIZER_GAP); + log_sizer->AddGrowableCol (0, 1); wxClientDC dc (this); wxSize size = dc.GetTextExtent (wxT ("This is the length of the file label it should be quite long")); @@ -92,17 +157,24 @@ public: SetSize (700, height + DCPOMATIC_SIZER_GAP * 2); _text = new wxTextCtrl ( - this, wxID_ANY, wxT(""), wxDefaultPosition, wxSize (-1, height), + this, wxID_ANY, std_to_wx (server_log->get()), wxDefaultPosition, wxSize (-1, height), wxTE_READONLY | wxTE_MULTILINE ); - _sizer->Add (_text, 1, wxEXPAND | wxALL, DCPOMATIC_SIZER_GAP); + log_sizer->Add (_text, 1, wxEXPAND); - SetSizer (_sizer); - _sizer->Layout (); + wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL); + overall_sizer->Add (state_sizer, 0, wxALL, DCPOMATIC_SIZER_GAP); + overall_sizer->Add (log_sizer, 1, wxEXPAND | wxALL, DCPOMATIC_SIZER_GAP); + SetSizer (overall_sizer); + overall_sizer->Layout (); + + Bind (wxEVT_TIMER, boost::bind (&StatusDialog::update_state, this)); + _timer.reset (new wxTimer (this)); + _timer->Start (1000); - memory_log->Appended.connect (bind (&StatusDialog::appended, this, _1)); - memory_log->Removed.connect (bind (&StatusDialog::removed, this, _1)); + server_log->Appended.connect (bind (&StatusDialog::appended, this, _1)); + server_log->Removed.connect (bind (&StatusDialog::removed, this, _1)); } private: @@ -116,30 +188,35 @@ private: _text->Remove (0, n + 1); } - wxFlexGridSizer* _sizer; + void update_state () + { + _fps->SetLabel (wxString::Format ("%.1f", server_log->fps())); + } + wxTextCtrl* _text; + wxStaticText* _fps; + boost::shared_ptr _timer; }; class TaskBarIcon : public wxTaskBarIcon { public: TaskBarIcon () + : _status (0) { #ifdef DCPOMATIC_WINDOWS - wxIcon icon (std_to_wx ("taskbar_icon")); + wxIcon icon (std_to_wx ("id")); #else wxInitAllImageHandlers(); - wxBitmap bitmap (wxString::Format (wxT ("%s/dcpomatic2_server_small.png"), LINUX_SHARE_PREFIX), wxBITMAP_TYPE_PNG); + wxBitmap bitmap (wxString::Format (wxT ("%s/dcpomatic2.png"), std_to_wx (shared_path().string())), wxBITMAP_TYPE_PNG); wxIcon icon; icon.CopyFromBitmap (bitmap); #endif - SetIcon (icon, std_to_wx ("DCP-o-matic encode server")); + SetIcon (icon, std_to_wx ("DCP-o-matic Encode Server")); - _status = new StatusDialog (); - - Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&TaskBarIcon::status, this), ID_status); - Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&TaskBarIcon::quit, this), ID_quit); + Bind (wxEVT_MENU, boost::bind (&TaskBarIcon::status, this), ID_status); + Bind (wxEVT_MENU, boost::bind (&TaskBarIcon::quit, this), ID_quit); } wxMenu* CreatePopupMenu () @@ -153,6 +230,9 @@ public: private: void status () { + if (!_status) { + _status = new StatusDialog (); + } _status->Show (); } @@ -181,6 +261,8 @@ private: return false; } + server_log.reset (new ServerLog); + dcpomatic_setup_path_encoding (); dcpomatic_setup_i18n (); dcpomatic_setup (); @@ -207,8 +289,8 @@ private: void main_thread () try { - Server server (memory_log, false); - server.run (Config::instance()->num_local_encoding_threads ()); + EncodeServer server (server_log, false, Config::instance()->num_local_encoding_threads()); + server.run (); } catch (...) { store_current (); }