HTTPSVR.CPP
上传用户:btxinjin
上传日期:2007-01-04
资源大小:83k
文件大小:6k
源码类别:

Web服务器

开发平台:

Visual C++

  1. // HttpSvr.cpp : Defines the class behaviors for the application.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1997-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "stdafx.h"
  13. #include "HttpSvr.h"
  14. #include "Http.h"
  15. #include "MainFrm.h"
  16. #include "HttpDoc.h"
  17. #include "HttpView.h"
  18. #ifdef _DEBUG
  19. #define new DEBUG_NEW
  20. #undef THIS_FILE
  21. static char THIS_FILE[] = __FILE__;
  22. #endif
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CHttpSvrApp
  25. BEGIN_MESSAGE_MAP(CHttpSvrApp, CWinApp)
  26. //{{AFX_MSG_MAP(CHttpSvrApp)
  27. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  28. //}}AFX_MSG_MAP
  29. // Standard file based document commands
  30. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  31. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  32. END_MESSAGE_MAP()
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CHttpSvrApp construction
  35. CHttpSvrApp::CHttpSvrApp()
  36. {
  37. }
  38. CHttpSvrApp::~CHttpSvrApp()
  39. {
  40. }
  41. /////////////////////////////////////////////////////////////////////////////
  42. // The one and only CHttpSvrApp object
  43. CHttpSvrApp theApp;
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CHttpSvrApp initialization
  46. BOOL CHttpSvrApp::InitInstance()
  47. {
  48. // Standard initialization
  49. // If you are not using these features and wish to reduce the size
  50. //  of your final executable, you should remove from the following
  51. //  the specific initialization routines you do not need.
  52. if ( !AfxSocketInit() )
  53. {
  54. AfxMessageBox( IDS_WINSOCK_FAILED, MB_OK | MB_ICONEXCLAMATION );
  55. return FALSE;
  56. }
  57. #ifdef _AFXDLL
  58. Enable3dControls();         // Call this when using MFC in a shared DLL
  59. #else
  60. Enable3dControlsStatic();   // Call this when linking to MFC statically
  61. #endif
  62. SetRegistryKey( IDS_REGISTRY_KEY ); // use the registry
  63. LoadStdProfileSettings(4);  // Load standard INI file options (including MRU)
  64. // try to get the default host name....
  65. int nOk =  gethostname( m_strDefSvr.GetBuffer(255), 255 );
  66. m_strDefSvr.ReleaseBuffer();
  67. if ( nOk != 0 )
  68. {
  69. // get the computer server name....
  70. DWORD dwLen = MAX_COMPUTERNAME_LENGTH+1;
  71. GetComputerName( m_strDefSvr.GetBuffer( dwLen ), &dwLen );
  72. m_strDefSvr.ReleaseBuffer();
  73. // all lower-case....
  74. m_strDefSvr.MakeLower();
  75. }
  76. // Register the application's document templates.  Document templates
  77. //  serve as the connection between documents, frame windows and views.
  78. CSingleDocTemplate* pDocTemplate;
  79. pDocTemplate = new CSingleDocTemplate(
  80. IDR_MAINFRAME,
  81. RUNTIME_CLASS(CHttpSvrDoc),
  82. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  83. RUNTIME_CLASS(CHttpSvrView));
  84. AddDocTemplate(pDocTemplate);
  85. // Enable DDE Execute open
  86. EnableShellOpen();
  87. RegisterShellFileTypes(TRUE);
  88. RegisterLogFile();
  89. // Parse command line for standard shell commands, DDE, file open
  90. CCommandLineInfo cmdInfo;
  91. ParseCommandLine(cmdInfo);
  92. // Dispatch commands specified on the command line
  93. if (!ProcessShellCommand(cmdInfo))
  94. return FALSE;
  95. // Enable drag/drop open.
  96. m_pMainWnd->DragAcceptFiles();
  97. return TRUE;
  98. }
  99. /////////////////////////////////////////////////////////////////////////////
  100. // CAboutDlg dialog used for App About
  101. class CAboutDlg : public CDialog
  102. {
  103. public:
  104. CAboutDlg();
  105. // Dialog Data
  106. //{{AFX_DATA(CAboutDlg)
  107. enum { IDD = IDD_ABOUTBOX };
  108. //}}AFX_DATA
  109. // ClassWizard generated virtual function overrides
  110. //{{AFX_VIRTUAL(CAboutDlg)
  111. protected:
  112. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  113. //}}AFX_VIRTUAL
  114. // Implementation
  115. protected:
  116. //{{AFX_MSG(CAboutDlg)
  117. // No message handlers
  118. //}}AFX_MSG
  119. DECLARE_MESSAGE_MAP()
  120. };
  121. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  122. {
  123. //{{AFX_DATA_INIT(CAboutDlg)
  124. //}}AFX_DATA_INIT
  125. }
  126. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  127. {
  128. CDialog::DoDataExchange(pDX);
  129. //{{AFX_DATA_MAP(CAboutDlg)
  130. //}}AFX_DATA_MAP
  131. }
  132. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  133. //{{AFX_MSG_MAP(CAboutDlg)
  134. // No message handlers
  135. //}}AFX_MSG_MAP
  136. END_MESSAGE_MAP()
  137. // App command to run the dialog
  138. void CHttpSvrApp::OnAppAbout()
  139. {
  140. CAboutDlg aboutDlg;
  141. aboutDlg.DoModal();
  142. }
  143. /////////////////////////////////////////////////////////////////////////////
  144. // CHttpSvrApp commands
  145. BOOL CHttpSvrApp::OnIdle(LONG lCount)
  146. {
  147. BOOL bMore = CWinApp::OnIdle(lCount);
  148. // if we still need more processing time, ask for it...
  149. CHttpSvrDoc* pDoc = (CHttpSvrDoc*)(((CFrameWnd*)m_pMainWnd)->GetActiveDocument());
  150. if ( pDoc->IdleProc( lCount ) )
  151. bMore = TRUE;
  152. return bMore;
  153. }
  154. void AddFile( CString& strPath, UINT uStr )
  155. {
  156. CString strFile;
  157. strFile.LoadString( uStr );
  158. AddFile( strPath, strFile );
  159. }
  160. void AddFile( CString& strPath, const CString& strFile )
  161. {
  162. if ( strPath.GetAt( strPath.GetLength()-1 ) != SEPCHAR )
  163. strPath += SEPCHAR;
  164. strPath += strFile;
  165. }
  166. // declare this....
  167. void AFXAPI AfxGetModuleShortFileName(HINSTANCE hInst, CString& strShortName);
  168. void CHttpSvrApp::RegisterLogFile( void )
  169. {
  170. // get the full path (short version)....
  171. CString strPath;
  172. AfxGetModuleShortFileName( AfxGetInstanceHandle(), strPath );
  173. // set the entries....
  174. CString strType = "HttpSvr.Logfile";
  175. ::RegSetValue( HKEY_CLASSES_ROOT, ".hsl", REG_SZ, strType, 0 );
  176. ::RegSetValue( HKEY_CLASSES_ROOT, strType, REG_SZ, "HttpSvr Daily Log File", 0 );
  177. ::RegSetValue( HKEY_CLASSES_ROOT, strType+"\DefaultIcon", REG_SZ, strPath+",2", 0 );
  178. ::RegSetValue( HKEY_CLASSES_ROOT, strType+"\shell\open\command", REG_SZ, "notepad.exe "%1"", 0 );
  179. }