Spider.cpp
上传用户:st5609838
上传日期:2013-03-29
资源大小:66k
文件大小:6k
源码类别:

搜索引擎

开发平台:

Visual C++

  1. // Spider.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "Spider.h"
  5. #include "ThreadParams.h"
  6. #include "Thread.h"
  7. #include "MainFrm.h"
  8. #include "ChildFrm.h"
  9. #include "SpiderDoc.h"
  10. #include "SpiderView.h"
  11. #ifdef _DEBUG
  12. #define new DEBUG_NEW
  13. #undef THIS_FILE
  14. static char THIS_FILE[] = __FILE__;
  15. #endif
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CSpiderApp
  18. BEGIN_MESSAGE_MAP(CSpiderApp, CWinApp)
  19. //{{AFX_MSG_MAP(CSpiderApp)
  20. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  21. //}}AFX_MSG_MAP
  22. // Standard file based document commands
  23. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  24. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  25. // Standard print setup command
  26. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  27. END_MESSAGE_MAP()
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CSpiderApp construction
  30. CSpiderApp::CSpiderApp()
  31. {
  32. // TODO: add construction code here,
  33. // Place all significant initialization in InitInstance
  34. }
  35. /////////////////////////////////////////////////////////////////////////////
  36. // The one and only CSpiderApp object
  37. CSpiderApp theApp;
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CSpiderApp initialization
  40. BOOL CSpiderApp::InitInstance()
  41. {
  42. // Standard initialization
  43. // If you are not using these features and wish to reduce the size
  44. //  of your final executable, you should remove from the following
  45. //  the specific initialization routines you do not need.
  46. #ifdef _AFXDLL
  47. Enable3dControls(); // Call this when using MFC in a shared DLL
  48. #else
  49. Enable3dControlsStatic(); // Call this when linking to MFC statically
  50. #endif
  51. // Change the registry key under which our settings are stored.
  52. // You should modify this string to be something appropriate
  53. // such as the name of your company or organization.
  54. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  55. LoadStdProfileSettings(8);  // Load standard INI file options (including MRU)
  56. ReadProfile();
  57. // Register the application's document templates.  Document templates
  58. //  serve as the connection between documents, frame windows and views.
  59. CMultiDocTemplate* pDocTemplate;
  60. pDocTemplate = new CMultiDocTemplate(
  61. IDR_SPIDERTYPE,
  62. RUNTIME_CLASS(CSpiderDoc),
  63. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  64. RUNTIME_CLASS(CSpiderView));
  65. AddDocTemplate(pDocTemplate);
  66. // create main MDI Frame window
  67. CMainFrame* pMainFrame = new CMainFrame;
  68. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  69. return FALSE;
  70. m_pMainWnd = pMainFrame;
  71. // Enable drag/drop open
  72. m_pMainWnd->DragAcceptFiles();
  73. // Enable DDE Execute open
  74. EnableShellOpen();
  75. RegisterShellFileTypes(TRUE);
  76. // Parse command line for standard shell commands, DDE, file open
  77. CCommandLineInfo cmdInfo;
  78. ParseCommandLine(cmdInfo);
  79. /*
  80. if(cmdInfo.m_nShellCommand == CCommandLineInfo::FileNew)
  81.    cmdInfo.m_nShellCommand = CCommandLineInfo::FileNothing;
  82. */
  83. // Dispatch commands specified on the command line
  84. if (!ProcessShellCommand(cmdInfo))
  85. return FALSE;
  86. // The main window has been initialized, so show and update it.
  87. pMainFrame->ShowWindow(m_nCmdShow);
  88. pMainFrame->UpdateWindow();
  89. return TRUE;
  90. }
  91. /////////////////////////////////////////////////////////////////////////////
  92. // CAboutDlg dialog used for App About
  93. class CAboutDlg : public CDialog
  94. {
  95. public:
  96. CAboutDlg();
  97. // Dialog Data
  98. //{{AFX_DATA(CAboutDlg)
  99. enum { IDD = IDD_ABOUTBOX };
  100. //}}AFX_DATA
  101. // ClassWizard generated virtual function overrides
  102. //{{AFX_VIRTUAL(CAboutDlg)
  103. protected:
  104. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  105. //}}AFX_VIRTUAL
  106. // Implementation
  107. protected:
  108. //{{AFX_MSG(CAboutDlg)
  109. // No message handlers
  110. //}}AFX_MSG
  111. DECLARE_MESSAGE_MAP()
  112. };
  113. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  114. {
  115. //{{AFX_DATA_INIT(CAboutDlg)
  116. //}}AFX_DATA_INIT
  117. }
  118. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  119. {
  120. CDialog::DoDataExchange(pDX);
  121. //{{AFX_DATA_MAP(CAboutDlg)
  122. //}}AFX_DATA_MAP
  123. }
  124. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  125. //{{AFX_MSG_MAP(CAboutDlg)
  126. // No message handlers
  127. //}}AFX_MSG_MAP
  128. END_MESSAGE_MAP()
  129. // App command to run the dialog
  130. void CSpiderApp::OnAppAbout()
  131. {
  132. CAboutDlg aboutDlg;
  133. aboutDlg.DoModal();
  134. }
  135. /////////////////////////////////////////////////////////////////////////////
  136. // CSpiderApp commands
  137. void CSpiderApp::WriteProfile()
  138. {
  139. if(!m_HomeDir.IsEmpty())
  140. WriteProfileString("Directory","Home", (LPCTSTR)m_HomeDir);
  141. }
  142. //
  143. // Read in the profile specific to PerlPad
  144. //
  145. void CSpiderApp::ReadProfile()
  146. {
  147. m_HomeDir = GetProfileString("Directory", "Home",NULL);
  148. char lpBuffer[260];
  149. GetCurrentDirectory(MAX_PATH,(LPTSTR) lpBuffer);
  150. if(m_HomeDir.IsEmpty())
  151. m_HomeDir.Format("%s",lpBuffer);
  152. }
  153. int CSpiderApp::ExitInstance()
  154. {
  155. WriteProfile();
  156. return CWinApp::ExitInstance();
  157. }
  158. void CSpiderApp::ShowURL(LPCTSTR lpFileName,CString& text) 
  159. {
  160. CString  rString,strTitle;
  161. rString = text;
  162. strTitle.Format("%s",lpFileName);
  163. strTitle += '';
  164. int pos = strTitle.ReverseFind('/');
  165. if (pos > 0)
  166.  strTitle= strTitle.Right(strTitle.GetLength() - pos - 1);
  167. pos = strTitle.Find('.');
  168. if (pos > 0)
  169.  strTitle= strTitle.Left(pos);
  170. OnFileNew(); 
  171. // Open the URL as a  file.
  172. CSpiderDoc *PSpiderDoc = NULL;
  173. PSpiderDoc =CSpiderDoc::GetDoc();
  174. if (PSpiderDoc)
  175. {
  176. PSpiderDoc->ShowURL(rString); 
  177.     PSpiderDoc->SetTitle(strTitle);
  178.    }
  179. }