00001 // 00002 // DownloadWithSearch.h 00003 // 00004 // Copyright (c) Shareaza Development Team, 2002-2005. 00005 // This file is part of SHAREAZA (www.shareaza.com) 00006 // 00007 // Shareaza is free software; you can redistribute it 00008 // and/or modify it under the terms of the GNU General Public License 00009 // as published by the Free Software Foundation; either version 2 of 00010 // the License, or (at your option) any later version. 00011 // 00012 // Shareaza is distributed in the hope that it will be useful, 00013 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 // GNU General Public License for more details. 00016 // 00017 // You should have received a copy of the GNU General Public License 00018 // along with Shareaza; if not, write to the Free Software 00019 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00020 // 00021 00022 #if !defined(AFX_DOWNLOADWITHSEARCH_H__0ED8A270_13B0_47A6_9917_727CBDD82B27__INCLUDED_) 00023 #define AFX_DOWNLOADWITHSEARCH_H__0ED8A270_13B0_47A6_9917_727CBDD82B27__INCLUDED_ 00024 00025 #pragma once 00026 00027 #include "DownloadWithTiger.h" 00028 00029 class CManagedSearch; 00030 00031 00032 class CDownloadWithSearch : public CDownloadWithTiger 00033 { 00034 // Construction 00035 public: 00036 CDownloadWithSearch(); 00037 virtual ~CDownloadWithSearch(); 00038 00039 // Attributes 00040 protected: 00041 CManagedSearch* m_pSearch; 00042 DWORD m_tSearchTime; // Timer for manual search 00043 DWORD m_tSearchCheck; // Limit auto searches 00044 public: 00045 DWORD m_tLastED2KGlobal; // Time the last ed2k UDP GetSources was done on this download 00046 DWORD m_tLastED2KLocal; // Time the last ed2k TCP GetSources was done on this download 00047 00048 // Operations 00049 public: 00050 BOOL FindSourcesAllowed(DWORD tNow) const; 00051 virtual BOOL FindMoreSources(); 00052 protected: 00053 void RunSearch(DWORD tNow); 00054 void StopSearch(); 00055 private: 00056 void StartManualSearch(); 00057 void StartAutomaticSearch(); 00058 BOOL CanSearch() const; 00059 void PrepareSearch(); 00060 00061 }; 00062 00063 #endif // !defined(AFX_DOWNLOADWITHSEARCH_H__0ED8A270_13B0_47A6_9917_727CBDD82B27__INCLUDED_)