Tweak server GUI a bit.
[dcpomatic.git] / src / tools / dcpomatic_server.cc
index 58310377c04301774b7c77120e334d804a17b094..1d6c0bef70a6b7a95b96e9909afa9249aaf7dc45 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 
 */
 
-#include <boost/thread.hpp>
-#include <wx/taskbar.h>
-#include <wx/icon.h>
 #include "wx/wx_util.h"
+#include "wx/wx_signal_manager.h"
 #include "lib/util.h"
 #include "lib/server.h"
 #include "lib/config.h"
+#include "lib/log.h"
+#include "lib/signaller.h"
+#include <wx/taskbar.h>
+#include <wx/icon.h>
+#include <boost/thread.hpp>
+#include <iostream>
 
 using std::cout;
 using std::string;
 using std::exception;
+using std::list;
 using boost::shared_ptr;
 using boost::thread;
 using boost::bind;
@@ -38,30 +43,32 @@ enum {
        ID_timer
 };
 
-class MemoryLog : public Log
+static int const log_lines = 32;
+
+class MemoryLog : public Log, public Signaller
 {
 public:
 
-       string get () const {
-               boost::mutex::scoped_lock (_mutex);
-               return _log;
+       string head_and_tail (int) const {
+               /* Not necessary */
+               return "";
        }
 
-       string head_and_tail (int amount = 1024) const {
-               if (_log.size () < (2 * amount)) {
-                       return _log;
-               }
-
-               return _log.substr (0, amount) + _log.substr (_log.size() - amount - 1, amount);
-       }
+       boost::signals2::signal<void(string)> Appended;
+       boost::signals2::signal<void(int)> Removed;
 
 private:
        void do_log (string m)
        {
-               _log = m;
+               _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 ();
+               }
        }
 
-       string _log;    
+       list<size_t> _lengths;
 };
 
 static shared_ptr<MemoryLog> memory_log (new MemoryLog);
@@ -70,32 +77,47 @@ class StatusDialog : public wxDialog
 {
 public:
        StatusDialog ()
-               : wxDialog (0, wxID_ANY, _("DCP-o-matic encode server"), wxDefaultPosition, wxSize (600, 80), wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
-               , _timer (this, ID_timer)
+               : wxDialog (
+                       0, wxID_ANY, _("DCP-o-matic encode server"),
+                       wxDefaultPosition, wxDefaultSize,
+                       wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER
+                       )
        {
-               _sizer = new wxFlexGridSizer (1, 6, 6);
+               _sizer = new wxFlexGridSizer (1, DCPOMATIC_SIZER_GAP, DCPOMATIC_SIZER_GAP);
                _sizer->AddGrowableCol (0, 1);
 
-               _text = new wxTextCtrl (this, wxID_ANY, _(""), wxDefaultPosition, wxDefaultSize, wxTE_READONLY);
-               _sizer->Add (_text, 1, wxEXPAND);
+               wxClientDC dc (this);
+               wxSize size = dc.GetTextExtent (wxT ("This is the length of the file label it should be quite long"));
+               int const height = (size.GetHeight() + 2) * log_lines;
+               SetSize (700, height + DCPOMATIC_SIZER_GAP * 2);
+
+               _text = new wxTextCtrl (
+                       this, wxID_ANY, wxT(""), wxDefaultPosition, wxSize (-1, height),
+                       wxTE_READONLY | wxTE_MULTILINE
+                       );
+
+               _sizer->Add (_text, 1, wxEXPAND | wxALL, DCPOMATIC_SIZER_GAP);
 
                SetSizer (_sizer);
                _sizer->Layout ();
 
-               Bind (wxEVT_TIMER, boost::bind (&StatusDialog::update, this), ID_timer);
-               _timer.Start (1000);
+               memory_log->Appended.connect (bind (&StatusDialog::appended, this, _1));
+               memory_log->Removed.connect (bind (&StatusDialog::removed, this, _1));
        }
 
 private:
-       void update ()
+       void appended (string s)
        {
-               _text->ChangeValue (std_to_wx (memory_log->get ()));
-               _sizer->Layout ();
+               (*_text) << s << "\n";
+       }
+
+       void removed (int n)
+       {
+               _text->Remove (0, n + 1);
        }
 
        wxFlexGridSizer* _sizer;
        wxTextCtrl* _text;
-       wxTimer _timer;
 };
 
 class TaskBarIcon : public wxTaskBarIcon
@@ -103,24 +125,23 @@ class TaskBarIcon : public wxTaskBarIcon
 public:
        TaskBarIcon ()
        {
-#ifdef __WXMSW__               
+#ifdef DCPOMATIC_WINDOWS
                wxIcon icon (std_to_wx ("taskbar_icon"));
-#endif
-#ifdef __WXGTK__
+#else
                wxInitAllImageHandlers();
-               wxBitmap bitmap (wxString::Format (wxT ("%s/taskbar_icon.png"), POSIX_ICON_PREFIX), wxBITMAP_TYPE_PNG);
+               wxBitmap bitmap (wxString::Format (wxT ("%s/dcpomatic2_server_small.png"), LINUX_SHARE_PREFIX), wxBITMAP_TYPE_PNG);
                wxIcon icon;
                icon.CopyFromBitmap (bitmap);
 #endif
-#ifndef __WXOSX__
-               /* XXX: fix this for OS X */
+
                SetIcon (icon, std_to_wx ("DCP-o-matic encode server"));
-#endif         
+
+               _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);
        }
-       
+
        wxMenu* CreatePopupMenu ()
        {
                wxMenu* menu = new wxMenu;
@@ -132,14 +153,15 @@ public:
 private:
        void status ()
        {
-               StatusDialog* d = new StatusDialog;
-               d->Show ();
+               _status->Show ();
        }
 
        void quit ()
        {
                wxTheApp->ExitMainLoop ();
        }
+
+       StatusDialog* _status;
 };
 
 class App : public wxApp, public ExceptionStore
@@ -151,15 +173,21 @@ public:
                , _icon (0)
        {}
 
-private:       
-       
+private:
+
        bool OnInit ()
        {
                if (!wxApp::OnInit ()) {
                        return false;
                }
-               
+
+               dcpomatic_setup_path_encoding ();
+               dcpomatic_setup_i18n ();
                dcpomatic_setup ();
+               Config::drop ();
+
+               signal_manager = new wxSignalManager (this);
+               Bind (wxEVT_IDLE, boost::bind (&App::idle, this));
 
                _icon = new TaskBarIcon;
                _thread = new thread (bind (&App::main_thread, this));
@@ -167,7 +195,7 @@ private:
                Bind (wxEVT_TIMER, boost::bind (&App::check, this));
                _timer.reset (new wxTimer (this));
                _timer->Start (1000);
-               
+
                return true;
        }
 
@@ -198,6 +226,11 @@ private:
                }
        }
 
+       void idle ()
+       {
+               signal_manager->ui_idle ();
+       }
+
        boost::thread* _thread;
        TaskBarIcon* _icon;
        shared_ptr<wxTimer> _timer;