Upstream tarball 10089
[amule.git] / src / FileDetailDialog.cpp
blobd1fa3603f8af771d879fd1afd338a0748bcd30d6
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 FileRatingList list;
140 m_file->GetRatingAndComments(list);
141 CastChild(IDC_CMTBT, wxControl)->Enable(!list.empty());
142 FillSourcenameList();
143 Layout();
146 // CFileDetailDialog message handlers
148 void CFileDetailDialog::FillSourcenameList()
150 CFileDetailListCtrl* pmyListCtrl;
151 int itempos;
152 int inserted = 0;
153 pmyListCtrl = CastChild(IDC_LISTCTRLFILENAMES, CFileDetailListCtrl );
155 // reset
156 for (int i=0;i<pmyListCtrl->GetItemCount();i++){
157 SourcenameItem *item = reinterpret_cast<SourcenameItem *>(pmyListCtrl->GetItemData(i));
158 item->count = 0;
161 // update
162 #ifdef CLIENT_GUI
163 const SourcenameItemMap &sources = m_file->GetSourcenameItemMap();
164 for (SourcenameItemMap::const_iterator it = sources.begin(); it != sources.end(); ++it) {
165 const SourcenameItem &cur_src = it->second;
166 itempos = pmyListCtrl->FindItem(-1,cur_src.name);
167 if (itempos == -1) {
168 int itemid = pmyListCtrl->InsertItem(0, cur_src.name);
169 SourcenameItem *item = new SourcenameItem(cur_src.name, cur_src.count);
170 pmyListCtrl->SetItemPtrData(0, reinterpret_cast<wxUIntPtr>(item));
171 // background.. argh -- PA: was in old version - do we still need this?
172 wxListItem tmpitem;
173 tmpitem.m_itemId = itemid;
174 tmpitem.SetBackgroundColour(CMuleColour(wxSYS_COLOUR_LISTBOX));
175 pmyListCtrl->SetItem(tmpitem);
176 inserted++;
177 } else {
178 SourcenameItem *item = reinterpret_cast<SourcenameItem *>(pmyListCtrl->GetItemData(itempos));
179 item->count = cur_src.count;
182 #else // CLIENT_GUI
183 const CPartFile::SourceSet& sources = m_file->GetSourceList();
184 CPartFile::SourceSet::const_iterator it = sources.begin();
185 for ( ; it != sources.end(); ++it ) {
186 const CUpDownClient &cur_src = **it;
187 if (cur_src.GetRequestFile() != m_file ||
188 cur_src.GetClientFilename().Length() == 0) {
189 continue;
192 itempos = pmyListCtrl->FindItem(-1,cur_src.GetClientFilename());
193 if (itempos == -1) {
194 int itemid = pmyListCtrl->InsertItem(0, cur_src.GetClientFilename());
195 SourcenameItem *item = new SourcenameItem(cur_src.GetClientFilename(), 1);
196 pmyListCtrl->SetItemPtrData(0, reinterpret_cast<wxUIntPtr>(item));
197 // background.. argh -- PA: was in old version - do we still need this?
198 wxListItem tmpitem;
199 tmpitem.m_itemId=itemid;
200 tmpitem.SetBackgroundColour(CMuleColour(wxSYS_COLOUR_LISTBOX));
201 pmyListCtrl->SetItem(tmpitem);
202 inserted++;
203 } else {
204 SourcenameItem *item = reinterpret_cast<SourcenameItem *>(pmyListCtrl->GetItemData(itempos));
205 item->count++;
208 #endif // CLIENT_GUI
210 // remove 0'er and update counts
211 for (int i = 0; i < pmyListCtrl->GetItemCount(); ++i) {
212 SourcenameItem *item = reinterpret_cast<SourcenameItem *>(pmyListCtrl->GetItemData(i));
213 if (item->count == 0) {
214 delete item;
215 pmyListCtrl->DeleteItem(i);
216 i--; // PA: one step back is enough, no need to go back to 0
217 } else {
218 pmyListCtrl->SetItem(i, 1, wxString::Format(wxT("%li"), item->count));
222 if (inserted) {
223 pmyListCtrl->SortList();
225 // no need to call Layout() here, it's called in UpdateData()
229 void CFileDetailDialog::OnBnClickedShowComment(wxCommandEvent& WXUNUSED(evt))
231 CCommentDialogLst(this,m_file).ShowModal();
235 void CFileDetailDialog::resetValueForFilenameTextEdit()
237 CastChild(IDC_FILENAME, wxTextCtrl)->SetValue(m_file->GetFileName().GetPrintable());
238 m_filenameChanged = false;
239 setEnableForApplyButton();
243 void CFileDetailDialog::setValueForFilenameTextEdit(const wxString &s)
245 CastChild(IDC_FILENAME, wxTextCtrl)->SetValue(s);
246 m_filenameChanged = true;
247 setEnableForApplyButton();
251 void CFileDetailDialog::setEnableForApplyButton()
253 bool enabled =
254 m_file->IsPartFile() && // Currently renaming of completed files causes problem with kad
255 m_file->GetStatus() != PS_COMPLETE &&
256 m_file->GetStatus() != PS_COMPLETING &&
257 m_filenameChanged;
258 CastChild(IDC_APPLY, wxControl)->Enable(enabled);
259 // Make OK button default so Text can be applied by hitting return
260 CastChild(enabled ? IDC_APPLY_AND_CLOSE : ID_CLOSEWNDFD, wxButton)->SetDefault();
264 void CFileDetailDialog::OnTextFileNameChange(wxCommandEvent& WXUNUSED(evt))
266 m_filenameChanged = true;
267 setEnableForApplyButton();
271 void CFileDetailDialog::OnBnClickedOk(wxCommandEvent& evt)
273 OnBnClickedApply(evt);
274 OnClosewnd(evt);
278 void CFileDetailDialog::OnBnClickedApply(wxCommandEvent& WXUNUSED(evt))
280 CPath fileName = CPath(CastChild(IDC_FILENAME, wxTextCtrl)->GetValue());
282 if (fileName.IsOk() && (fileName != m_file->GetFileName())) {
283 if (theApp->sharedfiles->RenameFile(m_file, fileName)) {
284 FindWindow(IDC_FNAME)->SetLabel(MakeStringEscaped(m_file->GetFileName().GetPrintable()));
285 FindWindow(IDC_METFILE)->SetLabel(m_file->GetFullName().GetPrintable());
287 resetValueForFilenameTextEdit();
289 Layout();
295 bool IsDigit(const wxChar ch)
297 switch (ch) {
298 case '0':
299 case '1':
300 case '2':
301 case '3':
302 case '4':
303 case '5':
304 case '6':
305 case '7':
306 case '8':
307 case '9': return true;
309 return false;
312 bool IsWordSeparator(const wxChar ch)
314 switch (ch) {
315 case '.':
316 case ',':
317 case '(':
318 case ')':
319 case '[':
320 case ']':
321 case '{':
322 case '}':
323 case '-':
324 case '"':
325 case ' ': return true;
327 return false;
330 void ReplaceWord(wxString& str, const wxString& replaceFrom, const wxString& replaceTo, bool numbers = false)
332 unsigned int i = 0;
333 unsigned int l = replaceFrom.Length();
334 while (i < str.Length()) {
335 if (str.Mid(i, l) == replaceFrom) {
336 if ((i == 0 || IsWordSeparator(str.GetChar(i-1))) &&
337 ((i == str.Length() - l || IsWordSeparator(str.GetChar(i+l))) ||
338 (numbers && IsDigit(str.GetChar(i+l))))) {
339 str.replace(i, l, replaceTo);
341 i += replaceTo.Length() - 1;
343 i++;
347 void CFileDetailDialog::OnBnClickedButtonStrip(wxCommandEvent& WXUNUSED(evt))
349 wxString filename;
350 filename = CastChild(IDC_FILENAME, wxTextCtrl)->GetValue();
352 int extpos = filename.Find('.', true);
353 wxString ext;
354 if (extpos > 0) {
355 // get the extension - we do not modify it except make it lowercase
356 ext = filename.Mid(extpos);
357 ext.MakeLower();
358 // get rid of extension and replace . with space
359 filename.Truncate(extpos);
360 filename.Replace(wxT("."),wxT(" "));
363 // Replace Space-holders with Spaces
364 filename.Replace(wxT("_"),wxT(" "));
365 filename.Replace(wxT("%20"),wxT(" "));
367 // Some additional formatting
368 filename.Replace(wxT("hYPNOTiC"), wxEmptyString);
369 filename.MakeLower();
370 filename.Replace(wxT("xxx"), wxT("XXX"));
371 // filename.Replace(wxT("xdmnx"), wxEmptyString);
372 // filename.Replace(wxT("pmp"), wxEmptyString);
373 // filename.Replace(wxT("dws"), wxEmptyString);
374 filename.Replace(wxT("www pornreactor com"), wxEmptyString);
375 filename.Replace(wxT("sharereactor"), wxEmptyString);
376 filename.Replace(wxT("found via www filedonkey com"), wxEmptyString);
377 filename.Replace(wxT("deviance"), wxEmptyString);
378 filename.Replace(wxT("adunanza"), wxEmptyString);
379 filename.Replace(wxT("-ftv"), wxEmptyString);
380 filename.Replace(wxT("flt"), wxEmptyString);
381 filename.Replace(wxT("[]"), wxEmptyString);
382 filename.Replace(wxT("()"), wxEmptyString);
384 // Change CD, CD#, VCD{,#}, DVD{,#}, ISO, PC to uppercase
385 ReplaceWord(filename, wxT("cd"), wxT("CD"), true);
386 ReplaceWord(filename, wxT("vcd"), wxT("VCD"), true);
387 ReplaceWord(filename, wxT("dvd"), wxT("DVD"), true);
388 ReplaceWord(filename, wxT("iso"), wxT("ISO"), false);
389 ReplaceWord(filename, wxT("pc"), wxT("PC"), false);
391 // Make leading Caps
392 // and delete 1+ spaces
393 if (filename.Length()>1)
395 bool last_char_space = true;
396 bool last_char_wordseparator = true;
397 unsigned int i = 0;
399 do {
400 wxChar c = filename.GetChar(i);
401 if (c == ' ') {
402 if (last_char_space) {
403 filename.Remove(i, 1);
404 i--;
405 } else {
406 last_char_space = true;
408 } else if (c == '.') {
409 if (last_char_space && i > 0) {
410 i--;
411 filename.Remove(i, 1);
413 last_char_space = false;
414 } else {
415 if (last_char_wordseparator) {
416 wxString tempStr(c);
417 tempStr.MakeUpper();
418 filename.SetChar(i, tempStr.GetChar(0));
419 last_char_space = false;
422 last_char_wordseparator = IsWordSeparator(c);
423 i++;
424 } while (i < filename.Length());
426 if (last_char_space && i > 0) {
427 filename.Remove(i-1, 1);
431 // should stay lowercase
432 ReplaceWord(filename, wxT("By"), wxT("by"));
434 // re-add extension
435 filename += ext;
437 setValueForFilenameTextEdit(filename);
440 void CFileDetailDialog::OnBnClickedTakeOver(wxCommandEvent& WXUNUSED(evt))
442 CFileDetailListCtrl* pmyListCtrl;
443 pmyListCtrl = CastChild( IDC_LISTCTRLFILENAMES, CFileDetailListCtrl );
444 if (pmyListCtrl->GetSelectedItemCount() > 0) {
445 long pos=-1;
446 for(;;) {
447 pos=pmyListCtrl->GetNextItem(pos,wxLIST_NEXT_ALL,wxLIST_STATE_SELECTED);
448 if(pos==-1) {
449 break;
451 setValueForFilenameTextEdit(pmyListCtrl->GetItemText(pos));
456 void CFileDetailDialog::OnListClickedTakeOver(wxListEvent& WXUNUSED(evt))
458 CFileDetailListCtrl* pmyListCtrl;
459 pmyListCtrl = CastChild( IDC_LISTCTRLFILENAMES, CFileDetailListCtrl );
460 if (pmyListCtrl->GetSelectedItemCount() > 0) {
461 long pos=-1;
462 for(;;) {
463 pos=pmyListCtrl->GetNextItem(pos,wxLIST_NEXT_ALL,wxLIST_STATE_SELECTED);
464 if(pos==-1) {
465 break;
467 setValueForFilenameTextEdit(pmyListCtrl->GetItemText(pos));
471 // File_checked_for_headers