2005-01-20 23:22:22 +00:00
|
|
|
// Berkeley Open Infrastructure for Network Computing
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2005 University of California
|
2004-05-17 22:15:10 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// This is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation;
|
|
|
|
// either version 2.1 of the License, or (at your option) any later version.
|
2004-04-10 09:11:03 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// This software 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 Lesser General Public License for more details.
|
2004-05-17 22:15:10 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// To view the GNU Lesser General Public License visit
|
|
|
|
// http://www.gnu.org/copyleft/lesser.html
|
|
|
|
// or write to the Free Software Foundation, Inc.,
|
|
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2004-04-10 09:11:03 +00:00
|
|
|
|
2004-04-11 04:37:10 +00:00
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
2004-09-21 01:30:29 +00:00
|
|
|
#pragma implementation "ViewWork.h"
|
2004-04-11 04:37:10 +00:00
|
|
|
#endif
|
|
|
|
|
2004-04-10 09:11:03 +00:00
|
|
|
#include "stdwx.h"
|
2004-07-13 05:56:03 +00:00
|
|
|
#include "BOINCGUIApp.h"
|
|
|
|
#include "MainDocument.h"
|
2004-09-24 22:19:02 +00:00
|
|
|
#include "BOINCTaskCtrl.h"
|
|
|
|
#include "BOINCListCtrl.h"
|
2004-09-21 01:30:29 +00:00
|
|
|
#include "ViewWork.h"
|
2004-07-13 05:56:03 +00:00
|
|
|
#include "Events.h"
|
2005-08-14 00:13:39 +00:00
|
|
|
#include "../lib/error_numbers.h"
|
2004-12-02 07:43:47 +00:00
|
|
|
|
2004-04-13 00:33:40 +00:00
|
|
|
#include "res/result.xpm"
|
2004-09-24 02:01:53 +00:00
|
|
|
|
|
|
|
|
2004-08-11 23:52:22 +00:00
|
|
|
#define COLUMN_PROJECT 0
|
|
|
|
#define COLUMN_APPLICATION 1
|
|
|
|
#define COLUMN_NAME 2
|
|
|
|
#define COLUMN_CPUTIME 3
|
|
|
|
#define COLUMN_PROGRESS 4
|
2005-03-23 22:30:16 +00:00
|
|
|
#define COLUMN_TOCOMPLETION 5
|
2004-08-11 23:52:22 +00:00
|
|
|
#define COLUMN_REPORTDEADLINE 6
|
|
|
|
#define COLUMN_STATUS 7
|
|
|
|
|
2005-04-22 06:06:22 +00:00
|
|
|
// buttons in the "tasks" area
|
2005-04-21 23:53:39 +00:00
|
|
|
#define BTN_SUSPEND 0
|
|
|
|
#define BTN_GRAPHICS 1
|
|
|
|
#define BTN_ABORT 2
|
2004-08-11 23:52:22 +00:00
|
|
|
|
2005-04-22 06:06:22 +00:00
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
CWork::CWork() {
|
2004-12-02 07:43:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
CWork::~CWork() {
|
2004-12-02 07:43:47 +00:00
|
|
|
m_strProjectName.Clear();
|
|
|
|
m_strApplicationName.Clear();
|
|
|
|
m_strName.Clear();
|
|
|
|
m_strCPUTime.Clear();
|
|
|
|
m_strProgress.Clear();
|
|
|
|
m_strTimeToCompletion.Clear();
|
|
|
|
m_strReportDeadline.Clear();
|
|
|
|
m_strStatus.Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-09-21 01:30:29 +00:00
|
|
|
IMPLEMENT_DYNAMIC_CLASS(CViewWork, CBOINCBaseView)
|
2004-04-10 09:11:03 +00:00
|
|
|
|
2005-04-21 06:04:26 +00:00
|
|
|
BEGIN_EVENT_TABLE (CViewWork, CBOINCBaseView)
|
|
|
|
EVT_BUTTON(ID_TASK_WORK_SUSPEND, CViewWork::OnWorkSuspend)
|
|
|
|
EVT_BUTTON(ID_TASK_WORK_SHOWGRAPHICS, CViewWork::OnWorkShowGraphics)
|
|
|
|
EVT_BUTTON(ID_TASK_WORK_ABORT, CViewWork::OnWorkAbort)
|
2005-04-21 23:14:10 +00:00
|
|
|
EVT_LIST_ITEM_SELECTED(ID_LIST_WORKVIEW, CViewWork::OnListSelected)
|
|
|
|
EVT_LIST_ITEM_DESELECTED(ID_LIST_WORKVIEW, CViewWork::OnListDeselected)
|
2005-04-21 06:04:26 +00:00
|
|
|
END_EVENT_TABLE ()
|
|
|
|
|
2004-04-10 09:11:03 +00:00
|
|
|
|
2005-09-02 18:40:06 +00:00
|
|
|
CViewWork::CViewWork()
|
|
|
|
{}
|
2004-04-10 09:11:03 +00:00
|
|
|
|
|
|
|
|
2004-09-21 01:30:29 +00:00
|
|
|
CViewWork::CViewWork(wxNotebook* pNotebook) :
|
2005-09-06 06:18:36 +00:00
|
|
|
CBOINCBaseView(pNotebook, ID_TASK_WORKVIEW, DEFAULT_TASK_FLAGS, ID_LIST_WORKVIEW, DEFAULT_LIST_SINGLE_SEL_FLAGS)
|
2005-04-21 06:04:26 +00:00
|
|
|
{
|
|
|
|
CTaskItemGroup* pGroup = NULL;
|
|
|
|
CTaskItem* pItem = NULL;
|
|
|
|
|
2005-04-27 06:55:28 +00:00
|
|
|
wxASSERT(m_pTaskPane);
|
|
|
|
wxASSERT(m_pListPane);
|
2004-09-21 01:30:29 +00:00
|
|
|
|
2004-12-23 01:06:41 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Setup View
|
|
|
|
//
|
2005-04-21 06:04:26 +00:00
|
|
|
pGroup = new CTaskItemGroup( _("Tasks") );
|
|
|
|
m_TaskGroups.push_back( pGroup );
|
|
|
|
|
|
|
|
pItem = new CTaskItem(
|
|
|
|
_("Suspend"),
|
2005-04-27 06:32:40 +00:00
|
|
|
_("Suspend work for this result."),
|
2005-04-21 06:04:26 +00:00
|
|
|
ID_TASK_WORK_SUSPEND
|
|
|
|
);
|
|
|
|
pGroup->m_Tasks.push_back( pItem );
|
|
|
|
|
|
|
|
pItem = new CTaskItem(
|
|
|
|
_("Show graphics"),
|
|
|
|
_("Show application graphics in a window."),
|
|
|
|
ID_TASK_WORK_SHOWGRAPHICS
|
|
|
|
);
|
|
|
|
pGroup->m_Tasks.push_back( pItem );
|
|
|
|
|
|
|
|
pItem = new CTaskItem(
|
2005-04-21 23:53:39 +00:00
|
|
|
_("Abort"),
|
|
|
|
_("Abandon work on the result. "
|
|
|
|
"You will get no credit for it."),
|
2005-04-21 06:04:26 +00:00
|
|
|
ID_TASK_WORK_ABORT
|
|
|
|
);
|
|
|
|
pGroup->m_Tasks.push_back( pItem );
|
|
|
|
|
|
|
|
|
|
|
|
// Create Task Pane Items
|
2005-04-21 23:14:10 +00:00
|
|
|
m_pTaskPane->UpdateControls();
|
2005-04-21 06:04:26 +00:00
|
|
|
|
|
|
|
// Create List Pane Items
|
2004-10-19 19:41:29 +00:00
|
|
|
m_pListPane->InsertColumn(COLUMN_PROJECT, _("Project"), wxLIST_FORMAT_LEFT, 125);
|
|
|
|
m_pListPane->InsertColumn(COLUMN_APPLICATION, _("Application"), wxLIST_FORMAT_LEFT, 95);
|
|
|
|
m_pListPane->InsertColumn(COLUMN_NAME, _("Name"), wxLIST_FORMAT_LEFT, 285);
|
|
|
|
m_pListPane->InsertColumn(COLUMN_CPUTIME, _("CPU time"), wxLIST_FORMAT_RIGHT, 80);
|
|
|
|
m_pListPane->InsertColumn(COLUMN_PROGRESS, _("Progress"), wxLIST_FORMAT_CENTRE, 60);
|
2005-03-23 22:30:16 +00:00
|
|
|
m_pListPane->InsertColumn(COLUMN_TOCOMPLETION, _("To completion"), wxLIST_FORMAT_RIGHT, 100);
|
2004-11-22 19:17:13 +00:00
|
|
|
m_pListPane->InsertColumn(COLUMN_REPORTDEADLINE, _("Report deadline"), wxLIST_FORMAT_LEFT, 150);
|
2004-10-19 19:41:29 +00:00
|
|
|
m_pListPane->InsertColumn(COLUMN_STATUS, _("Status"), wxLIST_FORMAT_LEFT, 135);
|
2005-04-21 23:53:39 +00:00
|
|
|
|
|
|
|
UpdateSelection();
|
2004-04-10 09:11:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
CViewWork::~CViewWork() {
|
2005-02-01 00:54:06 +00:00
|
|
|
EmptyCache();
|
2005-04-21 06:04:26 +00:00
|
|
|
EmptyTasks();
|
2004-04-10 09:11:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-02 21:03:36 +00:00
|
|
|
wxString& CViewWork::GetViewName() {
|
2005-09-02 20:56:08 +00:00
|
|
|
static wxString strViewName(_("Work"));
|
|
|
|
return strViewName;
|
2004-04-10 09:11:03 +00:00
|
|
|
}
|
2004-04-11 05:09:18 +00:00
|
|
|
|
2004-04-13 00:33:40 +00:00
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
const char** CViewWork::GetViewIcon() {
|
2004-04-13 00:33:40 +00:00
|
|
|
return result_xpm;
|
|
|
|
}
|
|
|
|
|
2004-05-21 06:27:15 +00:00
|
|
|
|
2005-07-07 22:26:49 +00:00
|
|
|
void CViewWork::OnWorkSuspend( wxCommandEvent& WXUNUSED(event) ) {
|
2005-04-21 06:04:26 +00:00
|
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CViewWork::OnWorkSuspend - Function Begin"));
|
|
|
|
|
|
|
|
CMainDocument* pDoc = wxGetApp().GetDocument();
|
|
|
|
CMainFrame* pFrame = wxGetApp().GetFrame();
|
|
|
|
|
2005-04-27 06:55:28 +00:00
|
|
|
wxASSERT(pDoc);
|
2005-04-21 06:04:26 +00:00
|
|
|
wxASSERT(wxDynamicCast(pDoc, CMainDocument));
|
2005-04-27 06:55:28 +00:00
|
|
|
wxASSERT(pFrame);
|
2005-04-21 06:04:26 +00:00
|
|
|
wxASSERT(wxDynamicCast(pFrame, CMainFrame));
|
2005-04-27 06:55:28 +00:00
|
|
|
wxASSERT(m_pTaskPane);
|
|
|
|
wxASSERT(m_pListPane);
|
2005-04-21 06:04:26 +00:00
|
|
|
|
2005-04-21 23:53:39 +00:00
|
|
|
RESULT* result = pDoc->result(m_pListPane->GetFirstSelected());
|
|
|
|
if (result->suspended_via_gui) {
|
|
|
|
pFrame->UpdateStatusText(_("Resuming result..."));
|
|
|
|
pDoc->WorkResume(m_pListPane->GetFirstSelected());
|
|
|
|
pFrame->UpdateStatusText(wxT(""));
|
|
|
|
} else {
|
|
|
|
pFrame->UpdateStatusText(_("Suspending result..."));
|
|
|
|
pDoc->WorkSuspend(m_pListPane->GetFirstSelected());
|
|
|
|
pFrame->UpdateStatusText(wxT(""));
|
|
|
|
}
|
2005-04-21 06:04:26 +00:00
|
|
|
|
2005-04-21 23:14:10 +00:00
|
|
|
UpdateSelection();
|
2005-05-05 06:07:14 +00:00
|
|
|
pFrame->FireRefreshView();
|
2005-04-21 23:14:10 +00:00
|
|
|
|
2005-04-21 06:04:26 +00:00
|
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CViewWork::OnWorkSuspend - Function End"));
|
|
|
|
}
|
|
|
|
|
2005-07-07 22:26:49 +00:00
|
|
|
void CViewWork::OnWorkShowGraphics( wxCommandEvent& WXUNUSED(event) ) {
|
2005-04-21 06:04:26 +00:00
|
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CViewWork::OnWorkShowGraphics - Function Begin"));
|
|
|
|
|
|
|
|
wxInt32 iAnswer = 0;
|
|
|
|
wxString strMachineName = wxEmptyString;
|
|
|
|
CMainDocument* pDoc = wxGetApp().GetDocument();
|
|
|
|
CMainFrame* pFrame = wxGetApp().GetFrame();
|
|
|
|
|
2005-04-27 06:55:28 +00:00
|
|
|
wxASSERT(pDoc);
|
2005-04-21 06:04:26 +00:00
|
|
|
wxASSERT(wxDynamicCast(pDoc, CMainDocument));
|
2005-04-27 06:55:28 +00:00
|
|
|
wxASSERT(pFrame);
|
2005-04-21 06:04:26 +00:00
|
|
|
wxASSERT(wxDynamicCast(pFrame, CMainFrame));
|
2005-04-27 06:55:28 +00:00
|
|
|
wxASSERT(m_pTaskPane);
|
|
|
|
wxASSERT(m_pListPane);
|
2005-04-21 06:04:26 +00:00
|
|
|
|
|
|
|
pFrame->UpdateStatusText(_("Showing graphics for result..."));
|
|
|
|
|
|
|
|
pDoc->GetConnectedComputerName(strMachineName);
|
|
|
|
|
2005-04-21 23:53:39 +00:00
|
|
|
// TODO: implement hide as well as show
|
|
|
|
if (1) {
|
2005-04-21 06:04:26 +00:00
|
|
|
#ifdef _WIN32
|
2005-04-21 23:53:39 +00:00
|
|
|
if (!strMachineName.empty()) {
|
2005-06-24 10:49:42 +00:00
|
|
|
iAnswer = ::wxMessageBox(
|
2005-11-01 07:37:54 +00:00
|
|
|
_("Are you sure you want to display graphics on a remote machine?"),
|
2005-04-21 23:53:39 +00:00
|
|
|
_("Show graphics"),
|
2005-06-24 10:49:42 +00:00
|
|
|
wxYES_NO | wxICON_QUESTION,
|
2005-04-21 23:53:39 +00:00
|
|
|
this
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
iAnswer = wxYES;
|
|
|
|
}
|
2005-04-21 06:04:26 +00:00
|
|
|
#else
|
2005-04-21 23:53:39 +00:00
|
|
|
iAnswer = wxYES;
|
2005-04-21 06:04:26 +00:00
|
|
|
#endif
|
|
|
|
|
2005-04-21 23:53:39 +00:00
|
|
|
if (wxYES == iAnswer) {
|
|
|
|
pDoc->WorkShowGraphics(
|
|
|
|
m_pListPane->GetFirstSelected(),
|
|
|
|
false,
|
|
|
|
wxGetApp().m_strDefaultWindowStation,
|
|
|
|
wxGetApp().m_strDefaultDesktop,
|
|
|
|
wxGetApp().m_strDefaultDisplay
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
pFrame->UpdateStatusText(wxT(""));
|
2005-04-21 06:04:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pFrame->UpdateStatusText(wxT(""));
|
|
|
|
|
2005-04-21 23:14:10 +00:00
|
|
|
UpdateSelection();
|
2005-05-05 06:07:14 +00:00
|
|
|
pFrame->FireRefreshView();
|
2005-04-21 23:14:10 +00:00
|
|
|
|
2005-04-21 06:04:26 +00:00
|
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CViewWork::OnWorkShowGraphics - Function End"));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-07 22:26:49 +00:00
|
|
|
void CViewWork::OnWorkAbort( wxCommandEvent& WXUNUSED(event) ) {
|
2005-04-21 06:04:26 +00:00
|
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CViewWork::OnWorkAbort - Function Begin"));
|
|
|
|
|
|
|
|
wxInt32 iAnswer = 0;
|
|
|
|
wxString strMessage = wxEmptyString;
|
|
|
|
CMainDocument* pDoc = wxGetApp().GetDocument();
|
|
|
|
CMainFrame* pFrame = wxGetApp().GetFrame();
|
|
|
|
|
2005-04-27 06:55:28 +00:00
|
|
|
wxASSERT(pDoc);
|
|
|
|
wxASSERT(pFrame);
|
2005-06-13 08:47:51 +00:00
|
|
|
wxASSERT(wxDynamicCast(pDoc, CMainDocument));
|
2005-04-21 06:04:26 +00:00
|
|
|
wxASSERT(wxDynamicCast(pFrame, CMainFrame));
|
2005-04-27 06:55:28 +00:00
|
|
|
wxASSERT(m_pTaskPane);
|
|
|
|
wxASSERT(m_pListPane);
|
2005-04-21 06:04:26 +00:00
|
|
|
|
|
|
|
pFrame->UpdateStatusText(_("Aborting result..."));
|
|
|
|
|
|
|
|
strMessage.Printf(
|
|
|
|
_("Are you sure you want to abort this result '%s'?"),
|
2005-06-13 16:51:14 +00:00
|
|
|
pDoc->result(m_pListPane->GetFirstSelected())->name.c_str()
|
2005-06-13 08:47:51 +00:00
|
|
|
);
|
2005-04-21 06:04:26 +00:00
|
|
|
|
2005-06-24 10:49:42 +00:00
|
|
|
iAnswer = ::wxMessageBox(
|
2005-04-21 06:04:26 +00:00
|
|
|
strMessage,
|
|
|
|
_("Abort result"),
|
2005-06-24 10:49:42 +00:00
|
|
|
wxYES_NO | wxICON_QUESTION,
|
2005-04-21 06:04:26 +00:00
|
|
|
this
|
|
|
|
);
|
|
|
|
|
|
|
|
if (wxYES == iAnswer) {
|
|
|
|
pDoc->WorkAbort(m_pListPane->GetFirstSelected());
|
|
|
|
}
|
|
|
|
|
|
|
|
pFrame->UpdateStatusText(wxT(""));
|
|
|
|
|
2005-04-21 23:14:10 +00:00
|
|
|
UpdateSelection();
|
2005-05-05 06:07:14 +00:00
|
|
|
pFrame->FireRefreshView();
|
2005-04-21 23:14:10 +00:00
|
|
|
|
2005-04-21 06:04:26 +00:00
|
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CViewWork::OnWorkAbort - Function End"));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
wxInt32 CViewWork::GetDocCount() {
|
2004-10-26 08:41:02 +00:00
|
|
|
CMainDocument* pDoc = wxGetApp().GetDocument();
|
|
|
|
|
2005-04-27 06:55:28 +00:00
|
|
|
wxASSERT(pDoc);
|
2004-10-26 08:41:02 +00:00
|
|
|
wxASSERT(wxDynamicCast(pDoc, CMainDocument));
|
|
|
|
|
|
|
|
return pDoc->GetWorkCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
wxString CViewWork::OnListGetItemText(long item, long column) const {
|
|
|
|
CWork* work = m_WorkCache.at(item);
|
2004-12-02 07:43:47 +00:00
|
|
|
wxString strBuffer = wxEmptyString;
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
switch(column) {
|
2004-12-02 07:43:47 +00:00
|
|
|
case COLUMN_PROJECT:
|
2005-03-15 23:44:48 +00:00
|
|
|
strBuffer = work->m_strProjectName;
|
2004-12-02 07:43:47 +00:00
|
|
|
break;
|
|
|
|
case COLUMN_APPLICATION:
|
2005-03-15 23:44:48 +00:00
|
|
|
strBuffer = work->m_strApplicationName;
|
2004-12-02 07:43:47 +00:00
|
|
|
break;
|
|
|
|
case COLUMN_NAME:
|
2005-03-15 23:44:48 +00:00
|
|
|
strBuffer = work->m_strName;
|
2004-12-02 07:43:47 +00:00
|
|
|
break;
|
|
|
|
case COLUMN_CPUTIME:
|
2005-03-15 23:44:48 +00:00
|
|
|
strBuffer = work->m_strCPUTime;
|
2004-12-02 07:43:47 +00:00
|
|
|
break;
|
|
|
|
case COLUMN_PROGRESS:
|
2005-03-15 23:44:48 +00:00
|
|
|
strBuffer = work->m_strProgress;
|
2004-12-02 07:43:47 +00:00
|
|
|
break;
|
2005-03-23 22:30:16 +00:00
|
|
|
case COLUMN_TOCOMPLETION:
|
2005-03-15 23:44:48 +00:00
|
|
|
strBuffer = work->m_strTimeToCompletion;
|
2004-12-02 07:43:47 +00:00
|
|
|
break;
|
|
|
|
case COLUMN_REPORTDEADLINE:
|
2005-03-15 23:44:48 +00:00
|
|
|
strBuffer = work->m_strReportDeadline;
|
2004-12-02 07:43:47 +00:00
|
|
|
break;
|
|
|
|
case COLUMN_STATUS:
|
2005-03-15 23:44:48 +00:00
|
|
|
strBuffer = work->m_strStatus;
|
2004-12-02 07:43:47 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return strBuffer;
|
|
|
|
}
|
2004-10-21 21:19:49 +00:00
|
|
|
|
2004-12-02 07:43:47 +00:00
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
wxString CViewWork::OnDocGetItemText(long item, long column) const {
|
2004-12-02 07:43:47 +00:00
|
|
|
wxString strBuffer = wxEmptyString;
|
2004-10-11 04:38:00 +00:00
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
switch(column) {
|
2004-08-11 23:52:22 +00:00
|
|
|
case COLUMN_PROJECT:
|
2005-04-07 07:04:50 +00:00
|
|
|
FormatProjectName(item, strBuffer);
|
2004-07-13 05:56:03 +00:00
|
|
|
break;
|
2004-08-11 23:52:22 +00:00
|
|
|
case COLUMN_APPLICATION:
|
2005-04-07 07:04:50 +00:00
|
|
|
FormatApplicationName(item, strBuffer);
|
2004-07-13 05:56:03 +00:00
|
|
|
break;
|
2004-08-11 23:52:22 +00:00
|
|
|
case COLUMN_NAME:
|
2005-04-07 07:04:50 +00:00
|
|
|
FormatName(item, strBuffer);
|
2004-07-13 05:56:03 +00:00
|
|
|
break;
|
2004-08-11 23:52:22 +00:00
|
|
|
case COLUMN_CPUTIME:
|
2005-04-07 07:04:50 +00:00
|
|
|
FormatCPUTime(item, strBuffer);
|
2004-07-13 05:56:03 +00:00
|
|
|
break;
|
2004-08-11 23:52:22 +00:00
|
|
|
case COLUMN_PROGRESS:
|
2005-04-07 07:04:50 +00:00
|
|
|
FormatProgress(item, strBuffer);
|
2004-07-13 05:56:03 +00:00
|
|
|
break;
|
2005-03-23 22:30:16 +00:00
|
|
|
case COLUMN_TOCOMPLETION:
|
2005-04-07 07:04:50 +00:00
|
|
|
FormatTimeToCompletion(item, strBuffer);
|
2004-07-13 05:56:03 +00:00
|
|
|
break;
|
2004-08-11 23:52:22 +00:00
|
|
|
case COLUMN_REPORTDEADLINE:
|
2005-04-07 07:04:50 +00:00
|
|
|
FormatReportDeadline(item, strBuffer);
|
2004-07-13 05:56:03 +00:00
|
|
|
break;
|
2004-08-11 23:52:22 +00:00
|
|
|
case COLUMN_STATUS:
|
2005-04-07 07:04:50 +00:00
|
|
|
FormatStatus(item, strBuffer);
|
2004-07-13 05:56:03 +00:00
|
|
|
break;
|
|
|
|
}
|
2004-10-11 04:38:00 +00:00
|
|
|
|
2004-07-13 05:56:03 +00:00
|
|
|
return strBuffer;
|
|
|
|
}
|
|
|
|
|
2004-09-24 02:01:53 +00:00
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
wxInt32 CViewWork::AddCacheElement() {
|
2004-12-02 07:43:47 +00:00
|
|
|
CWork* pItem = new CWork();
|
2005-04-27 06:55:28 +00:00
|
|
|
wxASSERT(pItem);
|
|
|
|
if (pItem) {
|
2005-04-07 07:04:50 +00:00
|
|
|
m_WorkCache.push_back(pItem);
|
2004-12-02 07:43:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
wxInt32 CViewWork::EmptyCache() {
|
2005-01-29 19:59:39 +00:00
|
|
|
unsigned int i;
|
|
|
|
for (i=0; i<m_WorkCache.size(); i++) {
|
|
|
|
delete m_WorkCache[i];
|
|
|
|
}
|
2005-01-29 00:58:43 +00:00
|
|
|
m_WorkCache.clear();
|
2004-12-02 07:43:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
wxInt32 CViewWork::GetCacheCount() {
|
2005-01-29 00:58:43 +00:00
|
|
|
return m_WorkCache.size();
|
2004-12-02 07:43:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
wxInt32 CViewWork::RemoveCacheElement() {
|
2005-01-29 21:30:45 +00:00
|
|
|
delete m_WorkCache.back();
|
2005-04-07 07:04:50 +00:00
|
|
|
m_WorkCache.erase(m_WorkCache.end() - 1);
|
2004-12-02 07:43:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
wxInt32 CViewWork::UpdateCache(long item, long column, wxString& strNewData) {
|
|
|
|
CWork* work = m_WorkCache.at(item);
|
2004-12-02 07:43:47 +00:00
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
switch(column) {
|
2004-12-02 07:43:47 +00:00
|
|
|
case COLUMN_PROJECT:
|
2005-03-15 23:44:48 +00:00
|
|
|
work->m_strProjectName = strNewData;
|
2004-12-02 07:43:47 +00:00
|
|
|
break;
|
|
|
|
case COLUMN_APPLICATION:
|
2005-03-15 23:44:48 +00:00
|
|
|
work->m_strApplicationName = strNewData;
|
2004-12-02 07:43:47 +00:00
|
|
|
break;
|
|
|
|
case COLUMN_NAME:
|
2005-03-15 23:44:48 +00:00
|
|
|
work->m_strName = strNewData;
|
2004-12-02 07:43:47 +00:00
|
|
|
break;
|
|
|
|
case COLUMN_CPUTIME:
|
2005-03-15 23:44:48 +00:00
|
|
|
work->m_strCPUTime = strNewData;
|
2004-12-02 07:43:47 +00:00
|
|
|
break;
|
|
|
|
case COLUMN_PROGRESS:
|
2005-03-15 23:44:48 +00:00
|
|
|
work->m_strProgress = strNewData;
|
2004-12-02 07:43:47 +00:00
|
|
|
break;
|
2005-03-23 22:30:16 +00:00
|
|
|
case COLUMN_TOCOMPLETION:
|
2005-03-15 23:44:48 +00:00
|
|
|
work->m_strTimeToCompletion = strNewData;
|
2004-12-02 07:43:47 +00:00
|
|
|
break;
|
|
|
|
case COLUMN_REPORTDEADLINE:
|
2005-03-15 23:44:48 +00:00
|
|
|
work->m_strReportDeadline = strNewData;
|
2004-12-02 07:43:47 +00:00
|
|
|
break;
|
|
|
|
case COLUMN_STATUS:
|
2005-03-15 23:44:48 +00:00
|
|
|
work->m_strStatus = strNewData;
|
2004-12-02 07:43:47 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
void CViewWork::UpdateSelection() {
|
2005-04-27 06:32:40 +00:00
|
|
|
CTaskItemGroup* pGroup = NULL;
|
|
|
|
CMainDocument* pDoc = wxGetApp().GetDocument();
|
2005-04-21 23:53:39 +00:00
|
|
|
|
2005-04-27 06:32:40 +00:00
|
|
|
wxASSERT(NULL != pDoc);
|
|
|
|
wxASSERT(wxDynamicCast(pDoc, CMainDocument));
|
|
|
|
wxASSERT(NULL != m_pTaskPane);
|
|
|
|
|
|
|
|
pGroup = m_TaskGroups[0];
|
|
|
|
if (m_pListPane->GetSelectedItemCount()) {
|
2005-04-21 23:53:39 +00:00
|
|
|
RESULT* result = pDoc->result(m_pListPane->GetFirstSelected());
|
2005-04-27 06:32:40 +00:00
|
|
|
m_pTaskPane->EnableTask(pGroup->m_Tasks[BTN_SUSPEND]);
|
2005-08-26 06:50:46 +00:00
|
|
|
if (result) {
|
|
|
|
if (result->suspended_via_gui) {
|
|
|
|
m_pTaskPane->UpdateTask(
|
|
|
|
pGroup->m_Tasks[BTN_SUSPEND], _("Resume"), _("Resume work for this result.")
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
m_pTaskPane->UpdateTask(
|
|
|
|
pGroup->m_Tasks[BTN_SUSPEND], _("Suspend"), _("Suspend work for this result.")
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if (result->supports_graphics) {
|
|
|
|
m_pTaskPane->EnableTask(pGroup->m_Tasks[BTN_GRAPHICS]);
|
|
|
|
} else {
|
|
|
|
m_pTaskPane->DisableTask(pGroup->m_Tasks[BTN_GRAPHICS]);
|
|
|
|
}
|
2005-04-21 23:53:39 +00:00
|
|
|
}
|
2005-04-27 06:32:40 +00:00
|
|
|
m_pTaskPane->EnableTask(pGroup->m_Tasks[BTN_ABORT]);
|
|
|
|
} else {
|
|
|
|
m_pTaskPane->DisableTaskGroupTasks(pGroup);
|
2005-04-21 23:53:39 +00:00
|
|
|
}
|
2004-09-24 02:01:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
wxInt32 CViewWork::FormatProjectName(wxInt32 item, wxString& strBuffer) const {
|
2005-06-13 08:47:51 +00:00
|
|
|
CMainDocument* doc = wxGetApp().GetDocument();
|
|
|
|
RESULT* result = wxGetApp().GetDocument()->result(item);
|
|
|
|
RESULT* state_result = NULL;
|
|
|
|
std::string project_name;
|
|
|
|
|
|
|
|
wxASSERT(doc);
|
|
|
|
wxASSERT(wxDynamicCast(doc, CMainDocument));
|
|
|
|
|
|
|
|
if (result) {
|
|
|
|
state_result = doc->state.lookup_result(result->project_url, result->name);
|
|
|
|
if (state_result) {
|
|
|
|
state_result->project->get_name(project_name);
|
|
|
|
strBuffer = wxString(project_name.c_str());
|
|
|
|
} else {
|
|
|
|
doc->ForceCacheUpdate();
|
|
|
|
}
|
|
|
|
}
|
2004-10-11 04:38:00 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
wxInt32 CViewWork::FormatApplicationName(wxInt32 item, wxString& strBuffer) const {
|
2005-06-13 08:47:51 +00:00
|
|
|
CMainDocument* doc = wxGetApp().GetDocument();
|
|
|
|
RESULT* result = wxGetApp().GetDocument()->result(item);
|
|
|
|
RESULT* state_result = NULL;
|
|
|
|
|
|
|
|
wxASSERT(doc);
|
|
|
|
wxASSERT(wxDynamicCast(doc, CMainDocument));
|
|
|
|
|
|
|
|
if (result) {
|
|
|
|
state_result = doc->state.lookup_result(result->project_url, result->name);
|
|
|
|
if (state_result) {
|
|
|
|
wxString strLocale = setlocale(LC_NUMERIC, NULL);
|
|
|
|
setlocale(LC_NUMERIC, "C");
|
|
|
|
strBuffer.Printf(
|
|
|
|
wxT("%s %.2f"),
|
2005-06-13 16:51:14 +00:00
|
|
|
state_result->wup->avp->app_name.c_str(),
|
2005-06-13 08:47:51 +00:00
|
|
|
state_result->wup->avp->version_num/100.0
|
|
|
|
);
|
|
|
|
setlocale(LC_NUMERIC, strLocale.c_str());
|
|
|
|
} else {
|
|
|
|
doc->ForceCacheUpdate();
|
|
|
|
}
|
|
|
|
}
|
2004-10-11 04:38:00 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
wxInt32 CViewWork::FormatName(wxInt32 item, wxString& strBuffer) const {
|
2005-06-13 08:47:51 +00:00
|
|
|
RESULT* result = wxGetApp().GetDocument()->result(item);
|
2004-10-11 04:38:00 +00:00
|
|
|
|
2005-06-13 08:47:51 +00:00
|
|
|
wxASSERT(result);
|
2004-10-11 04:38:00 +00:00
|
|
|
|
2005-06-13 08:47:51 +00:00
|
|
|
if (result) {
|
|
|
|
strBuffer = wxString(result->name.c_str());
|
|
|
|
}
|
2004-10-11 04:38:00 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
wxInt32 CViewWork::FormatCPUTime(wxInt32 item, wxString& strBuffer) const {
|
2004-10-11 04:38:00 +00:00
|
|
|
float fBuffer = 0;
|
2004-10-22 19:23:09 +00:00
|
|
|
wxInt32 iHour = 0;
|
|
|
|
wxInt32 iMin = 0;
|
|
|
|
wxInt32 iSec = 0;
|
|
|
|
wxTimeSpan ts;
|
2005-06-13 08:47:51 +00:00
|
|
|
RESULT* result = wxGetApp().GetDocument()->result(item);
|
2004-10-11 04:38:00 +00:00
|
|
|
|
2005-06-13 08:47:51 +00:00
|
|
|
if (result) {
|
|
|
|
if (result->active_task) {
|
|
|
|
fBuffer = result->current_cpu_time;
|
|
|
|
} else {
|
|
|
|
if(result->state < RESULT_COMPUTE_ERROR)
|
|
|
|
fBuffer = 0;
|
|
|
|
else
|
|
|
|
fBuffer = result->final_cpu_time;
|
|
|
|
}
|
2004-10-11 04:38:00 +00:00
|
|
|
}
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
if (0 == fBuffer) {
|
2004-10-11 04:38:00 +00:00
|
|
|
strBuffer = wxT("---");
|
2005-04-07 07:04:50 +00:00
|
|
|
} else {
|
2004-10-22 19:23:09 +00:00
|
|
|
iHour = (wxInt32)(fBuffer / (60 * 60));
|
|
|
|
iMin = (wxInt32)(fBuffer / 60) % 60;
|
|
|
|
iSec = (wxInt32)(fBuffer) % 60;
|
2004-10-11 04:38:00 +00:00
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
ts = wxTimeSpan(iHour, iMin, iSec);
|
2004-10-22 19:23:09 +00:00
|
|
|
|
|
|
|
strBuffer = ts.Format();
|
2004-10-11 04:38:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
wxInt32 CViewWork::FormatProgress(wxInt32 item, wxString& strBuffer) const {
|
2004-10-11 04:38:00 +00:00
|
|
|
float fBuffer = 0;
|
2005-06-13 08:47:51 +00:00
|
|
|
RESULT* result = wxGetApp().GetDocument()->result(item);
|
2004-10-11 04:38:00 +00:00
|
|
|
|
2005-06-13 08:47:51 +00:00
|
|
|
if (result) {
|
|
|
|
if (result->active_task) {
|
|
|
|
fBuffer = result->fraction_done * 100;
|
2005-06-06 21:49:37 +00:00
|
|
|
} else {
|
2005-06-13 08:47:51 +00:00
|
|
|
if(result->state < RESULT_COMPUTE_ERROR) {
|
|
|
|
fBuffer = 0.0;
|
|
|
|
} else {
|
|
|
|
fBuffer = 100.0;
|
|
|
|
}
|
2005-06-06 21:49:37 +00:00
|
|
|
}
|
2004-10-11 04:38:00 +00:00
|
|
|
}
|
|
|
|
|
2005-06-13 08:47:51 +00:00
|
|
|
strBuffer.Printf(wxT("%.2f%%"), fBuffer);
|
|
|
|
|
2004-10-11 04:38:00 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-06-13 08:47:51 +00:00
|
|
|
wxInt32 CViewWork::FormatTimeToCompletion(wxInt32 item, wxString& strBuffer) const {
|
2004-10-19 18:14:40 +00:00
|
|
|
float fBuffer = 0;
|
2004-10-22 19:23:09 +00:00
|
|
|
wxInt32 iHour = 0;
|
|
|
|
wxInt32 iMin = 0;
|
|
|
|
wxInt32 iSec = 0;
|
|
|
|
wxTimeSpan ts;
|
2005-06-13 08:47:51 +00:00
|
|
|
RESULT* result = wxGetApp().GetDocument()->result(item);
|
2004-10-19 18:14:40 +00:00
|
|
|
|
2005-06-13 08:47:51 +00:00
|
|
|
if (result) {
|
|
|
|
fBuffer = result->estimated_cpu_time_remaining;
|
|
|
|
}
|
2004-10-19 18:14:40 +00:00
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
if (0 >= fBuffer) {
|
2004-10-20 21:50:28 +00:00
|
|
|
strBuffer = wxT("---");
|
2005-04-07 07:04:50 +00:00
|
|
|
} else {
|
2004-10-22 19:23:09 +00:00
|
|
|
iHour = (wxInt32)(fBuffer / (60 * 60));
|
|
|
|
iMin = (wxInt32)(fBuffer / 60) % 60;
|
|
|
|
iSec = (wxInt32)(fBuffer) % 60;
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
ts = wxTimeSpan(iHour, iMin, iSec);
|
2004-10-19 18:14:40 +00:00
|
|
|
|
2004-10-22 19:23:09 +00:00
|
|
|
strBuffer = ts.Format();
|
2004-10-20 21:50:28 +00:00
|
|
|
}
|
2004-10-11 04:38:00 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
wxInt32 CViewWork::FormatReportDeadline(wxInt32 item, wxString& strBuffer) const {
|
2004-10-11 04:38:00 +00:00
|
|
|
wxDateTime dtTemp;
|
2005-06-13 08:47:51 +00:00
|
|
|
RESULT* result = wxGetApp().GetDocument()->result(item);
|
2004-10-11 04:38:00 +00:00
|
|
|
|
2005-06-13 08:47:51 +00:00
|
|
|
if (result) {
|
|
|
|
dtTemp.Set((time_t)result->report_deadline);
|
|
|
|
strBuffer = dtTemp.Format();
|
|
|
|
}
|
2004-10-11 04:38:00 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-07 07:04:50 +00:00
|
|
|
wxInt32 CViewWork::FormatStatus(wxInt32 item, wxString& strBuffer) const {
|
2004-10-31 22:41:15 +00:00
|
|
|
wxInt32 iActivityMode = -1;
|
2005-02-22 07:10:44 +00:00
|
|
|
bool bActivitiesSuspended = false;
|
|
|
|
bool bNetworkSuspended = false;
|
2005-06-13 08:47:51 +00:00
|
|
|
CMainDocument* doc = wxGetApp().GetDocument();
|
|
|
|
RESULT* result = wxGetApp().GetDocument()->result(item);
|
2005-02-22 07:10:44 +00:00
|
|
|
|
2004-10-19 18:14:40 +00:00
|
|
|
|
2005-06-13 08:47:51 +00:00
|
|
|
wxASSERT(doc);
|
|
|
|
wxASSERT(wxDynamicCast(doc, CMainDocument));
|
2004-10-19 18:14:40 +00:00
|
|
|
|
2005-06-13 08:47:51 +00:00
|
|
|
doc->GetActivityState(bActivitiesSuspended, bNetworkSuspended);
|
|
|
|
doc->GetActivityRunMode(iActivityMode);
|
2004-10-19 18:14:40 +00:00
|
|
|
|
2005-08-26 18:13:36 +00:00
|
|
|
if (result) {
|
|
|
|
switch(result->state) {
|
|
|
|
case RESULT_NEW:
|
|
|
|
strBuffer = _("New");
|
|
|
|
break;
|
|
|
|
case RESULT_FILES_DOWNLOADING:
|
|
|
|
if (result->ready_to_report) {
|
|
|
|
strBuffer = _("Download failed");
|
|
|
|
} else {
|
|
|
|
strBuffer = _("Downloading");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RESULT_FILES_DOWNLOADED:
|
|
|
|
if (result->aborted_via_gui) {
|
|
|
|
strBuffer = _("Aborted by user");
|
|
|
|
} else if (result->suspended_via_gui) {
|
|
|
|
strBuffer = _("Suspended by user");
|
|
|
|
} else if (bActivitiesSuspended) {
|
|
|
|
strBuffer = _("Activities suspended");
|
|
|
|
} else if (result->active_task) {
|
|
|
|
if (result->scheduler_state == CPU_SCHED_SCHEDULED) {
|
|
|
|
strBuffer = _("Running");
|
|
|
|
} else if (result->scheduler_state == CPU_SCHED_PREEMPTED) {
|
|
|
|
strBuffer = _("Preempted");
|
|
|
|
} else if (result->scheduler_state == CPU_SCHED_UNINITIALIZED) {
|
|
|
|
strBuffer = _("Ready to run");
|
|
|
|
}
|
|
|
|
} else {
|
2004-10-19 18:14:40 +00:00
|
|
|
strBuffer = _("Ready to run");
|
|
|
|
}
|
2005-08-26 18:13:36 +00:00
|
|
|
break;
|
|
|
|
case RESULT_COMPUTE_ERROR:
|
|
|
|
// both tests below are needed, because the boolean flag is not changed
|
|
|
|
// right away
|
|
|
|
//
|
|
|
|
if (result->aborted_via_gui || result->exit_status == ERR_ABORTED_VIA_GUI) {
|
|
|
|
strBuffer = _("Aborted by user");
|
|
|
|
} else {
|
|
|
|
strBuffer = _("Computation error");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RESULT_FILES_UPLOADING:
|
|
|
|
if (result->ready_to_report) {
|
|
|
|
strBuffer = _("Upload failed");
|
|
|
|
} else {
|
|
|
|
strBuffer = _("Uploading");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (result->got_server_ack) {
|
|
|
|
strBuffer = _("Acknowledged");
|
|
|
|
} else if (result->ready_to_report) {
|
|
|
|
strBuffer = _("Ready to report");
|
|
|
|
} else {
|
|
|
|
strBuffer.Format(_("Error: invalid state '%d'"), result->state);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2004-10-19 18:14:40 +00:00
|
|
|
}
|
2004-10-31 22:41:15 +00:00
|
|
|
|
2005-05-29 07:12:00 +00:00
|
|
|
if (!bActivitiesSuspended && iActivityMode == RUN_MODE_NEVER) {
|
2005-04-07 07:04:50 +00:00
|
|
|
strBuffer = wxT(" (") + strBuffer + wxT(") ");
|
2005-05-29 07:12:00 +00:00
|
|
|
strBuffer = _("Activities suspended by user") + strBuffer;
|
2004-10-31 22:41:15 +00:00
|
|
|
}
|
2004-10-11 04:38:00 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-12-08 00:40:19 +00:00
|
|
|
|
2005-01-02 18:29:53 +00:00
|
|
|
const char *BOINC_RCSID_34f860f736 = "$Id$";
|