Upstream tarball 10019
[amule.git] / src / FileDetailDialog.cpp
blob81c601bb5fd4272b411e7dc07935833bef22ae01
1 //
2 // This file is part of the aMule Project.
3 //
4 // Copyright (c) 2003-2008 aMule Team ( admin@amule.org / http://www.amule.org )
5 // Copyright (c) 2002-2008 Merkur ( devs@emule-project.net / http://www.emule-project.net )
6 //
7 // Any parts of this program derived from the xMule, lMule or eMule project,
8 // or contributed by third-party developers are copyrighted by their
9 // respective authors.
11 // Any parts of this program derived from the xMule, lMule or eMule project,
12 // or contributed by third-party developers are copyrighted by their
13 // respective authors.
15 // This program is free software; you can redistribute it and/or modify
16 // it under the terms of the GNU General Public License as published by
17 // the Free Software Foundation; either version 2 of the License, or
18 // (at your option) any later version.
20 // This program is distributed in the hope that it will be useful,
21 // but WITHOUT ANY WARRANTY; without even the implied warranty of
22 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 // GNU General Public License for more details.
24 //
25 // You should have received a copy of the GNU General Public License
26 // along with this program; if not, write to the Free Software
27 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
31 #include "muuli_wdr.h" // Needed for ID_CLOSEWNDFD,...,IDC_APPLY
32 #include "FileDetailDialog.h" // Interface declarations
33 #include "FileDetailListCtrl.h" // Needed for CFileDetailListCtrl
34 #include "CommentDialogLst.h" // Needed for CCommentDialogLst
35 #include "updownclient.h" // Needed for CUpDownClient
36 #include "PartFile.h" // Needed for CPartFile
37 #include "amule.h" // Needed for theApp
38 #include "SharedFileList.h" // Needed for CSharedFileList
39 #include "OtherFunctions.h"
40 #include "MuleColour.h"
42 #define ID_MY_TIMER 1652
44 //IMPLEMENT_DYNAMIC(CFileDetailDialog, CDialog)
45 BEGIN_EVENT_TABLE(CFileDetailDialog,wxDialog)
46 EVT_BUTTON(ID_CLOSEWNDFD, CFileDetailDialog::OnClosewnd)
47 EVT_BUTTON(IDC_BUTTONSTRIP, CFileDetailDialog::OnBnClickedButtonStrip)
48 EVT_BUTTON(IDC_TAKEOVER, CFileDetailDialog::OnBnClickedTakeOver)
49 EVT_LIST_ITEM_ACTIVATED(IDC_LISTCTRLFILENAMES, CFileDetailDialog::OnListClickedTakeOver)
50 EVT_BUTTON(IDC_CMTBT, CFileDetailDialog::OnBnClickedShowComment)
51 EVT_TEXT(IDC_FILENAME, CFileDetailDialog::OnTextFileNameChange)
52 EVT_BUTTON(IDC_APPLY_AND_CLOSE, CFileDetailDialog::OnBnClickedOk)
53 EVT_BUTTON(IDC_APPLY, CFileDetailDialog::OnBnClickedApply)
54 EVT_TIMER(ID_MY_TIMER,CFileDetailDialog::OnTimer)
55 END_EVENT_TABLE()
57 CFileDetailDialog::CFileDetailDialog(wxWindow *parent, CPartFile *file)
59 wxDialog(parent, -1, _("File Details"), wxDefaultPosition, wxDefaultSize,
60 wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxMAXIMIZE_BOX | wxMINIMIZE_BOX),
61 m_file(file),
62 m_filenameChanged(false)
64 theApp->m_FileDetailDialogActive++;
65 m_timer.SetOwner(this, ID_MY_TIMER);
66 m_timer.Start(5000);
67 wxSizer *content = fileDetails(this, true);
68 UpdateData();
69 content->SetSizeHints(this);
70 content->Show(this, true);
73 CFileDetailDialog::~CFileDetailDialog()
75 theApp->m_FileDetailDialogActive = 0;
76 m_timer.Stop();
79 void CFileDetailDialog::OnTimer(wxTimerEvent& WXUNUSED(evt)) {
80 UpdateData();
83 void CFileDetailDialog::OnClosewnd(wxCommandEvent& WXUNUSED(evt))
85 EndModal(0);
88 void CFileDetailDialog::UpdateData()
90 wxString bufferS;
91 CastChild(IDC_FNAME,wxStaticText)->SetLabel(MakeStringEscaped(
92 TruncateFilename(m_file->GetFileName(),60)));
93 CastChild(IDC_METFILE,wxStaticText)->SetLabel(MakeStringEscaped(
94 TruncateFilename(m_file->GetFullName(),60,true)));
96 wxString tmp = CastChild(IDC_FILENAME, wxTextCtrl)->GetValue();
97 if (tmp.Length() < 3) {
98 resetValueForFilenameTextEdit();
101 CastChild(IDC_FHASH,wxStaticText)->SetLabel(m_file->GetFileHash().Encode());
102 bufferS = wxString::Format(wxT("%llu bytes ("), m_file->GetFileSize())
103 + CastItoXBytes(m_file->GetFileSize())
104 + wxT(")");
105 CastChild(IDC_FSIZE,wxControl)->SetLabel(bufferS);
106 CastChild(IDC_PFSTATUS,wxControl)->SetLabel(m_file->getPartfileStatus());
107 bufferS = wxString::Format(wxT("%i (%i)"),m_file->GetPartCount(),m_file->GetHashCount());
108 CastChild(IDC_PARTCOUNT,wxControl)->SetLabel(bufferS);
109 CastChild(IDC_TRANSFERRED,wxControl)->SetLabel(CastItoXBytes(m_file->GetTransferred()));
110 CastChild(IDC_FD_STATS1,wxControl)->SetLabel(CastItoXBytes(m_file->GetLostDueToCorruption()));
111 CastChild(IDC_FD_STATS2,wxControl)->SetLabel(CastItoXBytes(m_file->GetGainDueToCompression()));
112 CastChild(IDC_FD_STATS3,wxControl)->SetLabel(CastItoIShort(m_file->TotalPacketsSavedDueToICH()));
113 CastChild(IDC_COMPLSIZE,wxControl)->SetLabel(CastItoXBytes(m_file->GetCompletedSize()));
114 bufferS = wxString::Format(_("%.2f%% done"),m_file->GetPercentCompleted());
115 CastChild(IDC_PROCCOMPL,wxControl)->SetLabel(bufferS);
116 bufferS = wxString::Format(_("%.2f kB/s"),(float)m_file->GetKBpsDown());
117 CastChild(IDC_DATARATE,wxControl)->SetLabel(bufferS);
118 bufferS = wxString::Format(wxT("%i"),m_file->GetSourceCount());
119 CastChild(IDC_SOURCECOUNT,wxControl)->SetLabel(bufferS);
120 bufferS = wxString::Format(wxT("%i"),m_file->GetTransferingSrcCount());
121 CastChild(IDC_SOURCECOUNT2,wxControl)->SetLabel(bufferS);
122 bufferS = wxString::Format(wxT("%i (%.1f%%)"),
123 m_file->GetAvailablePartCount(),
124 ((m_file->GetAvailablePartCount() * 100.0f)/ m_file->GetPartCount()));
125 CastChild(IDC_PARTAVAILABLE,wxControl)->SetLabel(bufferS);
126 bufferS = CastSecondsToHM(m_file->GetDlActiveTime());
127 CastChild(IDC_DLACTIVETIME, wxControl)->SetLabel(bufferS);
129 if (m_file->lastseencomplete==0) {
130 bufferS = wxString(_("Unknown")).MakeLower();
131 } else {
132 wxDateTime last_seen(m_file->lastseencomplete);
133 bufferS = last_seen.FormatISODate() + wxT(" ") + last_seen.FormatISOTime();
136 CastChild(IDC_LASTSEENCOMPL,wxControl)->SetLabel(bufferS);
137 setEnableForApplyButton();
138 // disable "Show all comments" button if there are no comments
139 CastChild(IDC_CMTBT, wxControl)->Enable(!m_file->GetRatingAndComments().empty());
140 FillSourcenameList();
141 Layout();
144 // CFileDetailDialog message handlers
146 void CFileDetailDialog::FillSourcenameList()
148 CFileDetailListCtrl* pmyListCtrl;
149 int itempos;
150 int inserted = 0;
151 pmyListCtrl = CastChild(IDC_LISTCTRLFILENAMES, CFileDetailListCtrl );
153 // reset
154 for (int i=0;i<pmyListCtrl->GetItemCount();i++){
155 SourcenameItem *item = reinterpret_cast<SourcenameItem *>(pmyListCtrl->GetItemData(i));
156 item->count = 0;
159 // update
160 #ifdef CLIENT_GUI
161 const SourcenameItemMap &sources = m_file->GetSourcenameItemMap();
162 for (SourcenameItemMap::const_iterator it = sources.begin(); it != sources.end(); ++it) {
163 const SourcenameItem &cur_src = it->second;
164 itempos = pmyListCtrl->FindItem(-1,cur_src.name);
165 if (itempos == -1) {
166 int itemid = pmyListCtrl->InsertItem(0, cur_src.name);
167 SourcenameItem *item = new SourcenameItem(cur_src.name, cur_src.count);
168 pmyListCtrl->SetItemPtrData(0, reinterpret_cast<wxUIntPtr>(item));
169 // background.. argh -- PA: was in old version - do we still need this?
170 wxListItem tmpitem;
171 tmpitem.m_itemId = itemid;
172 tmpitem.SetBackgroundColour(CMuleColour(wxSYS_COLOUR_LISTBOX));
173 pmyListCtrl->SetItem(tmpitem);
174 inserted++;
175 } else {
176 SourcenameItem *item = reinterpret_cast<SourcenameItem *>(pmyListCtrl->GetItemData(itempos));
177 item->count = cur_src.count;
180 #else // CLIENT_GUI
181 const CPartFile::SourceSet& sources = m_file->GetSourceList();
182 CPartFile::SourceSet::const_iterator it = sources.begin();
183 for ( ; it != sources.end(); ++it ) {
184 const CUpDownClient &cur_src = **it;
185 if (cur_src.GetRequestFile() != m_file ||
186 cur_src.GetClientFilename().Length() == 0) {
187 continue;
190 itempos = pmyListCtrl->FindItem(-1,cur_src.GetClientFilename());
191 if (itempos == -1) {
192 int itemid = pmyListCtrl->InsertItem(0, cur_src.GetClientFilename());
193 SourcenameItem *item = new SourcenameItem(cur_src.GetClientFilename(), 1);
194 pmyListCtrl->SetItemPtrData(0, reinterpret_cast<wxUIntPtr>(item));
195 // background.. argh -- PA: was in old version - do we still need this?
196 wxListItem tmpitem;
197 tmpitem.m_itemId=itemid;
198 tmpitem.SetBackgroundColour(CMuleColour(wxSYS_COLOUR_LISTBOX));
199 pmyListCtrl->SetItem(tmpitem);
200 inserted++;
201 } else {
202 SourcenameItem *item = reinterpret_cast<SourcenameItem *>(pmyListCtrl->GetItemData(itempos));
203 item->count++;
206 #endif // CLIENT_GUI
208 // remove 0'er and update counts
209 for (int i = 0; i < pmyListCtrl->GetItemCount(); ++i) {
210 SourcenameItem *item = reinterpret_cast<SourcenameItem *>(pmyListCtrl->GetItemData(i));
211 if (item->count == 0) {
212 delete item;
213 pmyListCtrl->DeleteItem(i);
214 i--; // PA: one step back is enough, no need to go back to 0
215 } else {
216 pmyListCtrl->SetItem(i, 1, wxString::Format(wxT("%li"), item->count));
220 if (inserted) {
221 pmyListCtrl->SortList();
223 // no need to call Layout() here, it's called in UpdateData()
227 void CFileDetailDialog::OnBnClickedShowComment(wxCommandEvent& WXUNUSED(evt))
229 CCommentDialogLst(this,m_file).ShowModal();
233 void CFileDetailDialog::resetValueForFilenameTextEdit()
235 CastChild(IDC_FILENAME, wxTextCtrl)->SetValue(m_file->GetFileName().GetPrintable());
236 m_filenameChanged = false;
237 setEnableForApplyButton();
241 void CFileDetailDialog::setValueForFilenameTextEdit(const wxString &s)
243 CastChild(IDC_FILENAME, wxTextCtrl)->SetValue(s);
244 m_filenameChanged = true;
245 setEnableForApplyButton();
249 void CFileDetailDialog::setEnableForApplyButton()
251 bool enabled =
252 m_file->IsPartFile() && // Currently renaming of completed files causes problem with kad
253 m_file->GetStatus() != PS_COMPLETE &&
254 m_file->GetStatus() != PS_COMPLETING &&
255 m_filenameChanged;
256 CastChild(IDC_APPLY, wxControl)->Enable(enabled);
257 // Make OK button default so Text can be applied by hitting return
258 CastChild(enabled ? IDC_APPLY_AND_CLOSE : ID_CLOSEWNDFD, wxButton)->SetDefault();
262 void CFileDetailDialog::OnTextFileNameChange(wxCommandEvent& WXUNUSED(evt))
264 m_filenameChanged = true;
265 setEnableForApplyButton();
269 void CFileDetailDialog::OnBnClickedOk(wxCommandEvent& evt)
271 OnBnClickedApply(evt);
272 OnClosewnd(evt);
276 void CFileDetailDialog::OnBnClickedApply(wxCommandEvent& WXUNUSED(evt))
278 CPath fileName = CPath(CastChild(IDC_FILENAME, wxTextCtrl)->GetValue());
280 if (fileName.IsOk() && (fileName != m_file->GetFileName())) {
281 if (theApp->sharedfiles->RenameFile(m_file, fileName)) {
282 FindWindow(IDC_FNAME)->SetLabel(MakeStringEscaped(m_file->GetFileName().GetPrintable()));
283 FindWindow(IDC_METFILE)->SetLabel(m_file->GetFullName().GetPrintable());
285 resetValueForFilenameTextEdit();
287 Layout();
293 bool IsDigit(const wxChar ch)
295 switch (ch) {
296 case '0':
297 case '1':
298 case '2':
299 case '3':
300 case '4':
301 case '5':
302 case '6':
303 case '7':
304 case '8':
305 case '9': return true;
307 return false;
310 bool IsWordSeparator(const wxChar ch)
312 switch (ch) {
313 case '.':
314 case ',':
315 case '(':
316 case ')':
317 case '[':
318 case ']':
319 case '{':
320 case '}':
321 case '-':
322 case '"':
323 case ' ': return true;
325 return false;
328 void ReplaceWord(wxString& str, const wxString& replaceFrom, const wxString& replaceTo, bool numbers = false)
330 unsigned int i = 0;
331 unsigned int l = replaceFrom.Length();
332 while (i < str.Length()) {
333 if (str.Mid(i, l) == replaceFrom) {
334 if ((i == 0 || IsWordSeparator(str.GetChar(i-1))) &&
335 ((i == str.Length() - l || IsWordSeparator(str.GetChar(i+l))) ||
336 (numbers && IsDigit(str.GetChar(i+l))))) {
337 str.replace(i, l, replaceTo);
339 i += replaceTo.Length() - 1;
341 i++;
345 void CFileDetailDialog::OnBnClickedButtonStrip(wxCommandEvent& WXUNUSED(evt))
347 wxString filename;
348 filename = CastChild(IDC_FILENAME, wxTextCtrl)->GetValue();
350 int extpos = filename.Find('.', true);
351 wxString ext;
352 if (extpos > 0) {
353 // get the extension - we do not modify it except make it lowercase
354 ext = filename.Mid(extpos);
355 ext.MakeLower();
356 // get rid of extension and replace . with space
357 filename.Truncate(extpos);
358 filename.Replace(wxT("."),wxT(" "));
361 // Replace Space-holders with Spaces
362 filename.Replace(wxT("_"),wxT(" "));
363 filename.Replace(wxT("%20"),wxT(" "));
365 // Some additional formatting
366 filename.Replace(wxT("hYPNOTiC"), wxEmptyString);
367 filename.MakeLower();
368 filename.Replace(wxT("xxx"), wxT("XXX"));
369 // filename.Replace(wxT("xdmnx"), wxEmptyString);
370 // filename.Replace(wxT("pmp"), wxEmptyString);
371 // filename.Replace(wxT("dws"), wxEmptyString);
372 filename.Replace(wxT("www pornreactor com"), wxEmptyString);
373 filename.Replace(wxT("sharereactor"), wxEmptyString);
374 filename.Replace(wxT("found via www filedonkey com"), wxEmptyString);
375 filename.Replace(wxT("deviance"), wxEmptyString);
376 filename.Replace(wxT("adunanza"), wxEmptyString);
377 filename.Replace(wxT("-ftv"), wxEmptyString);
378 filename.Replace(wxT("flt"), wxEmptyString);
379 filename.Replace(wxT("[]"), wxEmptyString);
380 filename.Replace(wxT("()"), wxEmptyString);
382 // Change CD, CD#, VCD{,#}, DVD{,#}, ISO, PC to uppercase
383 ReplaceWord(filename, wxT("cd"), wxT("CD"), true);
384 ReplaceWord(filename, wxT("vcd"), wxT("VCD"), true);
385 ReplaceWord(filename, wxT("dvd"), wxT("DVD"), true);
386 ReplaceWord(filename, wxT("iso"), wxT("ISO"), false);
387 ReplaceWord(filename, wxT("pc"), wxT("PC"), false);
389 // Make leading Caps
390 // and delete 1+ spaces
391 if (filename.Length()>1)
393 bool last_char_space = true;
394 bool last_char_wordseparator = true;
395 unsigned int i = 0;
397 do {
398 wxChar c = filename.GetChar(i);
399 if (c == ' ') {
400 if (last_char_space) {
401 filename.Remove(i, 1);
402 i--;
403 } else {
404 last_char_space = true;
406 } else if (c == '.') {
407 if (last_char_space && i > 0) {
408 i--;
409 filename.Remove(i, 1);
411 last_char_space = false;
412 } else {
413 if (last_char_wordseparator) {
414 wxString tempStr(c);
415 tempStr.MakeUpper();
416 filename.SetChar(i, tempStr.GetChar(0));
417 last_char_space = false;
420 last_char_wordseparator = IsWordSeparator(c);
421 i++;
422 } while (i < filename.Length());
424 if (last_char_space && i > 0) {
425 filename.Remove(i-1, 1);
429 // should stay lowercase
430 ReplaceWord(filename, wxT("By"), wxT("by"));
432 // re-add extension
433 filename += ext;
435 setValueForFilenameTextEdit(filename);
438 void CFileDetailDialog::OnBnClickedTakeOver(wxCommandEvent& WXUNUSED(evt))
440 CFileDetailListCtrl* pmyListCtrl;
441 pmyListCtrl = CastChild( IDC_LISTCTRLFILENAMES, CFileDetailListCtrl );
442 if (pmyListCtrl->GetSelectedItemCount() > 0) {
443 long pos=-1;
444 for(;;) {
445 pos=pmyListCtrl->GetNextItem(pos,wxLIST_NEXT_ALL,wxLIST_STATE_SELECTED);
446 if(pos==-1) {
447 break;
449 setValueForFilenameTextEdit(pmyListCtrl->GetItemText(pos));
454 void CFileDetailDialog::OnListClickedTakeOver(wxListEvent& WXUNUSED(evt))
456 CFileDetailListCtrl* pmyListCtrl;
457 pmyListCtrl = CastChild( IDC_LISTCTRLFILENAMES, CFileDetailListCtrl );
458 if (pmyListCtrl->GetSelectedItemCount() > 0) {
459 long pos=-1;
460 for(;;) {
461 pos=pmyListCtrl->GetNextItem(pos,wxLIST_NEXT_ALL,wxLIST_STATE_SELECTED);
462 if(pos==-1) {
463 break;
465 setValueForFilenameTextEdit(pmyListCtrl->GetItemText(pos));
469 // File_checked_for_headers