?? directorylistingfrm.cpp
字號(hào):
/*
* Copyright (C) 2001-2003 Jacek Sieka, j_s@telia.com
*
* 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
* 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,
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "stdafx.h"
#include "../client/DCPlusPlus.h"
#include "../client/CryptoManager.h"
#include "../client/File.h"
#include "../client/QueueManager.h"
#include "Resource.h"
#include "DirectoryListingFrm.h"
#include "WinUtil.h"
#include "LineDlg.h"
DirectoryListingFrame::DirectoryListingFrame(const string& aFile, const User::Ptr& aUser) :
statusContainer(STATUSCLASSNAME, this, STATUS_MESSAGE_MAP),
treeRoot(NULL), skipHits(0), updating(false), dl(NULL), searching(false)
{
string tmp;
if(aFile.size() < 4) {
error = aUser->getFullNick() + ": " + STRING(UNSUPPORTED_FILELIST_FORMAT);
return;
}
bool isBZ2 = (Util::stricmp(aFile.c_str() + aFile.length() - 4, ".bz2") == 0);
dl = new DirectoryListing(aUser);
try {
File f(aFile, File::READ, File::OPEN);
size_t size = (size_t)f.getSize();
if(size > 16) {
AutoArray<u_int8_t> buf(size);
f.read(buf, size);
if(isBZ2) {
CryptoManager::getInstance()->decodeBZ2(buf, size, tmp);
} else {
CryptoManager::getInstance()->decodeHuffman(buf, tmp);
}
} else {
tmp = Util::emptyString;
}
} catch(const Exception& e) {
error = aUser->getFullNick() + ": " + e.getError();
return;
}
dl->load(tmp);
}
LRESULT DirectoryListingFrame::OnCreate(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& bHandled) {
CreateSimpleStatusBar(ATL_IDS_IDLEMESSAGE, WS_CHILD | WS_VISIBLE | WS_CLIPCHILDREN | WS_CLIPSIBLINGS | SBARS_SIZEGRIP);
ctrlStatus.Attach(m_hWndStatusBar);
statusContainer.SubclassWindow(ctrlStatus.m_hWnd);
ctrlTree.Create(m_hWnd, rcDefault, NULL, WS_CHILD | WS_VISIBLE | WS_CLIPCHILDREN | WS_CLIPSIBLINGS | TVS_HASBUTTONS | TVS_LINESATROOT | TVS_HASLINES | TVS_SHOWSELALWAYS | TVS_DISABLEDRAGDROP, WS_EX_CLIENTEDGE, IDC_DIRECTORIES);
ctrlList.Create(m_hWnd, rcDefault, NULL, WS_CHILD | WS_VISIBLE | WS_CLIPCHILDREN | WS_CLIPSIBLINGS | LVS_REPORT | LVS_SHOWSELALWAYS | LVS_SHAREIMAGELISTS, WS_EX_CLIENTEDGE, IDC_FILES);
if(BOOLSETTING(FULL_ROW_SELECT)) {
ctrlList.SetExtendedListViewStyle(LVS_EX_FULLROWSELECT);
}
ctrlList.SetBkColor(WinUtil::bgColor);
ctrlList.SetTextBkColor(WinUtil::bgColor);
ctrlList.SetTextColor(WinUtil::textColor);
ctrlTree.SetBkColor(WinUtil::bgColor);
ctrlTree.SetTextColor(WinUtil::textColor);
ctrlList.InsertColumn(COLUMN_FILENAME, CSTRING(FILENAME), LVCFMT_LEFT, 350, COLUMN_FILENAME);
ctrlList.InsertColumn(COLUMN_TYPE, CSTRING(FILE_TYPE), LVCFMT_LEFT, 60, COLUMN_TYPE);
ctrlList.InsertColumn(COLUMN_SIZE, CSTRING(SIZE), LVCFMT_RIGHT, 100, COLUMN_SIZE);
ctrlList.setSort(COLUMN_FILENAME, ExListViewCtrl::SORT_FUNC, true, sortFile);
ctrlTree.SetImageList(WinUtil::fileImages, TVSIL_NORMAL);
ctrlList.SetImageList(WinUtil::fileImages, LVSIL_SMALL);
ctrlFind.Create(ctrlStatus.m_hWnd, rcDefault, NULL, WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | WS_CLIPCHILDREN |
BS_PUSHBUTTON, 0, IDC_FIND);
ctrlFind.SetWindowText(CSTRING(FIND));
ctrlFind.SetFont(WinUtil::systemFont);
ctrlFindNext.Create(ctrlStatus.m_hWnd, rcDefault, NULL, WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | WS_CLIPCHILDREN |
BS_PUSHBUTTON, 0, IDC_NEXT);
ctrlFindNext.SetWindowText(CSTRING(NEXT));
ctrlFindNext.SetFont(WinUtil::systemFont);
ctrlMatchQueue.Create(ctrlStatus.m_hWnd, rcDefault, NULL, WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | WS_CLIPCHILDREN |
BS_PUSHBUTTON, 0, IDC_MATCH_QUEUE);
ctrlMatchQueue.SetWindowText(CSTRING(MATCH_QUEUE));
ctrlMatchQueue.SetFont(WinUtil::systemFont);
SetSplitterExtendedStyle(SPLIT_PROPORTIONAL);
SetSplitterPanes(ctrlTree.m_hWnd, ctrlList.m_hWnd);
m_nProportionalPos = 2500;
if(dl != NULL)
treeRoot = ctrlTree.InsertItem(TVIF_IMAGE | TVIF_SELECTEDIMAGE | TVIF_TEXT | TVIF_PARAM, dl->getUser()->getNick().c_str(), WinUtil::getDirIconIndex(), WinUtil::getDirIconIndex(), 0, 0, (LPARAM)dl->getRoot(), NULL, TVI_SORT);;
updateTree(dl->getRoot(), treeRoot);
files = dl->getTotalFileCount();
size = Util::formatBytes(dl->getTotalSize());
memset(statusSizes, 0, sizeof(statusSizes));
string tmp1 = STRING(FILES) + ": " + Util::toString(dl->getTotalFileCount(true));
string tmp2 = STRING(SIZE) + ": " + Util::formatBytes(dl->getTotalSize(true));
statusSizes[2] = WinUtil::getTextWidth(tmp1, m_hWnd);
statusSizes[3] = WinUtil::getTextWidth(tmp2, m_hWnd);
statusSizes[4] = WinUtil::getTextWidth(STRING(MATCH_QUEUE), m_hWnd) + 8;
statusSizes[5] = WinUtil::getTextWidth(STRING(FIND), m_hWnd) + 8;
statusSizes[6] = WinUtil::getTextWidth(STRING(NEXT), m_hWnd) + 8;
ctrlStatus.SetParts(8, statusSizes);
ctrlStatus.SetText(3, tmp1.c_str());
ctrlStatus.SetText(4, tmp2.c_str());
ctrlTree.SelectItem(treeRoot);
fileMenu.CreatePopupMenu();
targetMenu.CreatePopupMenu();
directoryMenu.CreatePopupMenu();
targetDirMenu.CreatePopupMenu();
fileMenu.AppendMenu(MF_STRING, IDC_DOWNLOAD, CSTRING(DOWNLOAD));
fileMenu.AppendMenu(MF_POPUP, (UINT)(HMENU)targetMenu, CSTRING(DOWNLOAD_TO));
directoryMenu.AppendMenu(MF_STRING, IDC_DOWNLOADDIR, CSTRING(DOWNLOAD));
directoryMenu.AppendMenu(MF_POPUP, (UINT)(HMENU)targetDirMenu, CSTRING(DOWNLOAD_TO));
bHandled = FALSE;
return 1;
}
void DirectoryListingFrame::updateTree(DirectoryListing::Directory* aTree, HTREEITEM aParent) {
for(DirectoryListing::Directory::Iter i = aTree->directories.begin(); i != aTree->directories.end(); ++i) {
HTREEITEM ht = ctrlTree.InsertItem(TVIF_IMAGE | TVIF_SELECTEDIMAGE | TVIF_TEXT | TVIF_PARAM, (*i)->getName().c_str(), WinUtil::getDirIconIndex(), WinUtil::getDirIconIndex(), 0, 0, (LPARAM)*i, aParent, TVI_SORT);;
if((*i)->getAdls())
ctrlTree.SetItemState(ht, TVIS_BOLD, TVIS_BOLD);
updateTree(*i, ht);
}
}
void DirectoryListingFrame::updateStatus() {
if(!searching && !updating && ctrlStatus.IsWindow()) {
int cnt = ctrlList.GetSelectedCount();
int64_t total = 0;
if(cnt == 0) {
cnt = ctrlList.GetItemCount();
for(int i = 0; i < cnt; ++i) {
ItemInfo* ii = (ItemInfo*)ctrlList.GetItemData(i);
if(ii->type == ItemInfo::FILE) {
total += ii->file->getSize();
} else {
dcassert(ii->type == ItemInfo::DIRECTORY);
total += ii->dir->getTotalSize();
}
}
} else {
int i = -1;
while((i = ctrlList.GetNextItem(i, LVNI_SELECTED)) != -1) {
ItemInfo* ii = (ItemInfo*)ctrlList.GetItemData(i);
if(ii->type == ItemInfo::FILE) {
total += ii->file->getSize();
} else {
dcassert(ii->type == ItemInfo::DIRECTORY);
total += ii->dir->getTotalSize();
}
}
}
string tmp1 = STRING(ITEMS) + ": " + Util::toString(cnt);
string tmp2 = STRING(SIZE) + ": " + Util::formatBytes(total);
bool u = false;
int w = WinUtil::getTextWidth(tmp1, ctrlStatus.m_hWnd);
if(statusSizes[0] < w) {
statusSizes[0] = w;
u = true;
}
ctrlStatus.SetText(1, tmp1.c_str());
w = WinUtil::getTextWidth(tmp2, ctrlStatus.m_hWnd);
if(statusSizes[1] < w) {
statusSizes[1] = w;
u = true;
}
ctrlStatus.SetText(2, tmp2.c_str());
if(u)
UpdateLayout(TRUE);
}
}
LRESULT DirectoryListingFrame::onSelChangedDirectories(int /*idCtrl*/, LPNMHDR pnmh, BOOL& /*bHandled*/) {
NMTREEVIEW* p = (NMTREEVIEW*) pnmh;
if(p->itemNew.state & TVIS_SELECTED) {
DirectoryListing::Directory* d = (DirectoryListing::Directory*)p->itemNew.lParam;
changeDir(d, TRUE);
}
return 0;
}
void DirectoryListingFrame::changeDir(DirectoryListing::Directory* d, BOOL enableRedraw)
{
ctrlList.SetRedraw(FALSE);
updating = true;
clearList();
for(DirectoryListing::Directory::Iter i = d->directories.begin(); i != d->directories.end(); ++i) {
DirectoryListing::Directory* d = *i;
StringList l;
l.push_back(d->getName());
l.push_back(Util::emptyString);
l.push_back(Util::formatBytes(d->getTotalSize()));
ctrlList.insert(ctrlList.GetItemCount(), l, WinUtil::getDirIconIndex(), (LPARAM)new ItemInfo(d));
}
for(DirectoryListing::File::Iter j = d->files.begin(); j != d->files.end(); ++j) {
string::size_type k = (*j)->getName().rfind('.');
string suffix = (k != string::npos) ? (*j)->getName().substr(k + 1) : Util::emptyString;
StringList l;
l.push_back((*j)->getName());
l.push_back(suffix);
l.push_back(Util::formatBytes((*j)->getSize()));
ctrlList.insert(ctrlList.GetItemCount(), l, WinUtil::getIconIndex((*j)->getName()), (LPARAM)new ItemInfo(*j));
}
ctrlList.SetRedraw(enableRedraw);
ctrlList.resort();
updating = false;
updateStatus();
}
LRESULT DirectoryListingFrame::onDoubleClickFiles(int /*idCtrl*/, LPNMHDR pnmh, BOOL& /*bHandled*/) {
NMITEMACTIVATE* item = (NMITEMACTIVATE*) pnmh;
HTREEITEM t = ctrlTree.GetSelectedItem();
if(t != NULL && item->iItem != -1) {
ItemInfo* ii = (ItemInfo*) ctrlList.GetItemData(item->iItem);
if(ii->type == ItemInfo::FILE) {
try {
dl->download(ii->file, SETTING(DOWNLOAD_DIRECTORY) + ii->file->getName());
} catch(const Exception& e) {
ctrlStatus.SetText(0, e.getError().c_str());
}
} else {
HTREEITEM ht = ctrlTree.GetChildItem(t);
while(ht != NULL) {
if((DirectoryListing::Directory*)ctrlTree.GetItemData(ht) == ii->dir) {
ctrlTree.SelectItem(ht);
break;
}
ht = ctrlTree.GetNextSiblingItem(ht);
}
}
}
return 0;
}
LRESULT DirectoryListingFrame::onDownloadDir(WORD , WORD , HWND , BOOL& ) {
HTREEITEM t = ctrlTree.GetSelectedItem();
if(t != NULL) {
DirectoryListing::Directory* dir = (DirectoryListing::Directory*)ctrlTree.GetItemData(t);
try {
dl->download(dir, SETTING(DOWNLOAD_DIRECTORY));
} catch(const Exception& e) {
ctrlStatus.SetText(0, e.getError().c_str());
}
}
return 0;
}
LRESULT DirectoryListingFrame::onDownloadDirTo(WORD , WORD , HWND , BOOL& ) {
HTREEITEM t = ctrlTree.GetSelectedItem();
if(t != NULL) {
DirectoryListing::Directory* dir = (DirectoryListing::Directory*)ctrlTree.GetItemData(t);
string target = SETTING(DOWNLOAD_DIRECTORY);
if(WinUtil::browseDirectory(target, m_hWnd)) {
WinUtil::addLastDir(target);
try {
dl->download(dir, target);
} catch(const Exception& e) {
ctrlStatus.SetText(0, e.getError().c_str());
}
}
}
return 0;
}
void DirectoryListingFrame::downloadList(const string& aTarget) {
int i=-1;
while( (i = ctrlList.GetNextItem(i, LVNI_SELECTED)) != -1) {
ItemInfo* ii = (ItemInfo*)ctrlList.GetItemData(i);
string target = aTarget.empty() ? SETTING(DOWNLOAD_DIRECTORY) : aTarget;
try {
if(ii->type == ItemInfo::FILE) {
dl->download(ii->file, target + ii->file->getName());
} else {
dl->download(ii->dir, target);
}
} catch(const Exception& e) {
ctrlStatus.SetText(0, e.getError().c_str());
}
}
}
LRESULT DirectoryListingFrame::onDownload(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/) {
downloadList(SETTING(DOWNLOAD_DIRECTORY));
return 0;
}
LRESULT DirectoryListingFrame::onDownloadTo(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/) {
if(ctrlList.GetSelectedCount() == 1) {
ItemInfo* ii = (ItemInfo*)ctrlList.GetItemData(ctrlList.GetNextItem(-1, LVNI_SELECTED));
try {
if(ii->type == ItemInfo::FILE) {
string target = ii->file->getName();
if(WinUtil::browseFile(target, m_hWnd)) {
WinUtil::addLastDir(Util::getFilePath(target));
dl->download(ii->file, target);
}
} else {
string target = SETTING(DOWNLOAD_DIRECTORY);
if(WinUtil::browseDirectory(target, m_hWnd)) {
WinUtil::addLastDir(target);
dl->download(ii->dir, target);
}
}
} catch(const Exception& e) {
ctrlStatus.SetText(0, e.getError().c_str());
}
} else {
string target = SETTING(DOWNLOAD_DIRECTORY);
if(WinUtil::browseDirectory(target, m_hWnd)) {
WinUtil::addLastDir(target);
downloadList(target);
}
}
return 0;
}
LRESULT DirectoryListingFrame::onMatchQueue(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/) {
int x = QueueManager::getInstance()->matchListing(dl);
char* buf = new char[STRING(MATCHED_FILES).length() + 32];
sprintf(buf, CSTRING(MATCHED_FILES), x);
ctrlStatus.SetText(0, buf);
delete[] buf;
return 0;
}
LRESULT DirectoryListingFrame::onGoToDirectory(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/)
{
if(ctrlList.GetSelectedCount() != 1)
return 0;
string fullPath;
ItemInfo* ii = (ItemInfo*)ctrlList.GetItemData(ctrlList.GetNextItem(-1, LVNI_SELECTED));
if(ii->type == ItemInfo::FILE)
{
if(!ii->file->getAdls())
return 0;
DirectoryListing::Directory* pd = ii->file->getParent();
while(pd != NULL && pd != dl->getRoot())
{
fullPath = (string)"\\" + pd->getName() + fullPath;
pd = pd->getParent();
}
}
else
if(ii->type == ItemInfo::DIRECTORY)
{
if(!(ii->dir->getAdls() && ii->dir->getParent() != dl->getRoot()))
return 0;
fullPath = ((DirectoryListing::AdlDirectory*)ii->dir)->getFullPath();
}
// Break full path
StringList brokenPath;
while(1)
{
if(fullPath.size() == 0 || fullPath[0] != '\\')
break;
fullPath.erase(0, 1);
string subPath = fullPath.substr(0, fullPath.find_first_of('\\'));
fullPath.erase(0, subPath.size());
brokenPath.push_back(subPath);
}
// Go to directory (recursive)
StringList::iterator iPath = brokenPath.begin();
GoToDirectory(ctrlTree.GetRootItem(), iPath, brokenPath.end());
return 0;
}
void DirectoryListingFrame::GoToDirectory(
HTREEITEM hItem,
StringList::iterator& iPath,
const StringList::iterator& iPathEnd)
{
if(iPath == iPathEnd)
return; // unexpected
if(!ctrlTree.ItemHasChildren(hItem))
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -