|
|
/*++
Microsoft Windows Copyright (C) Microsoft Corporation, 1981 - 1998
Module Name:
irftp.cpp
Abstract:
Author:
Rahul Thombre (RahulTh) 4/30/1998
Revision History:
4/30/1998 RahulTh
Created this module.
--*/
// irftp.cpp : Defines the class behaviors for the application.
//
#include "precomp.hxx"
BOOL StartIrMon( VOID );
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__; #endif
BOOL LoadGlobalStrings();
/////////////////////////////////////////////////////////////////////////////
// CIrftpApp
BEGIN_MESSAGE_MAP(CIrftpApp, CWinApp) //{{AFX_MSG_MAP(CIrftpApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP, CWinApp::OnHelp) END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CIrftpApp construction
CIrftpApp::CIrftpApp() {
// TODO: add construction code here,
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CIrftpApp object
CIrftpApp theApp;
////////////////////////////////////////////////////////////////////////////
// The instance handle for this app.
HINSTANCE g_hInstance;
///////////////////////////////////////////////////////////////////////////
//the main application UI. this is now global because it might be
//invoked from multiple file, especially the RPC server functions
CIrftpDlg AppUI;
///////////////////////////////////////////////////////////////////////////
//the controller window for the application. This is necessary to
//create the illusion of parentless send progress dialog boxes.
//actually it is not possible to have parentless and modeless dialog
//boxes. Thus, these dialog boxes actually have the controller window
//as their parent
//This is necessary because the AppUI may come and go and in fact
//never come up at all.
CController* appController = NULL;
////////////////////////////////////////////////////////////////////////////
//global variable that keeps track of the number of UI components displayed
//by irftp at the moment. Note: we start with -1 because we don't want to
//count the first CController window which is the main app. window.
//
LONG g_lUIComponentCount = -1;
////////////////////////////////////////////////////////////////////////////
//global variable that keeps track of the handle to the help window (if any)
//The HtmlHelp window is the only one that cannot be tracked using the
//g_lUIComponentCount. So we need this var. to figure out if the help window
//is still up.
HWND g_hwndHelp = NULL;
////////////////////////////////////////////////////////////////////////////
//global variable that keeps track of whether there is a shortcut to
//the app on the desktop or not
//0 implies that there is a link on the desktop and -1 implies that there
//is no link on the desktop.
//this value is basically an indicator of not only the presence of
//the shortcut on the desktop, but also of the link in the send to
//folder
////////////////////////////////////////////////////////////////////////////
//the list of devices in range
CDeviceList g_deviceList;
/////////////////////////////////////////////////////////////////////////////
// CIrftpApp initialization
BOOL CIrftpApp::InitInstance() { DWORD Status; error_status_t err; CError error; BOOL bSetForeground = FALSE; int i = 0; HWND hwndApp = NULL; HANDLE hMutex = NULL; BOOL fFirstInstance = FALSE;
AfxEnableControlContainer();
//set the global instance handle
g_hInstance = AfxGetInstanceHandle();
CCommandLine cLine; ParseCommandLine (cLine);
//
// Load strings.
//
if (FALSE == LoadGlobalStrings()) {
return FALSE; }
if(cLine.m_fInvalidParams) //if invalid command line parameters, terminate.
{ error.ShowMessage (IDS_INVALID_PARAMETERS); return FALSE; //exit the app., first instance or not.
}
//
// check if another instance is already running and act accordingly.
//
hMutex = CreateMutex (NULL, FALSE, SINGLE_INST_MUTEX);
if (hMutex != NULL) { //
// got the mutex, see if we created it or it existed before and we opened it
//
Status = GetLastError(); fFirstInstance = (ERROR_ALREADY_EXISTS != Status);
} else {
//we could not create the mutex, so must fail.
return FALSE; }
if (cLine.m_fServerStart) { //
// irmon is starting irftp, better be the first instance
//
if (!fFirstInstance) { //
// not the first instance give up
//
// OutputDebugStringA("irftp could not start as server\n");
return FALSE; }
// OutputDebugStringA("irftp started as server\n");
} else { //
// it is a client session starting, we need the server to be running
//
if (fFirstInstance) {
// OutputDebugStringA("irftp could not start as Client\n");
return FALSE; }
// OutputDebugStringA("irftp started as Client\n");
}
if (!fFirstInstance) {
hwndApp = GetPrimaryAppWindow(); //
// note: it is important to successfully set the the first instance of the app. as the
// foreground window.since the first instance has already started, it is very unlikely
// that it will be the foreground process therefore it will be unable to set itself as
// the foreground process and therefore any calls to SetActiveWindow etc. in that instance
// will not cause any changes in the Z-order or input focus. Therefore, this instance
// needs to make the first instance the foreground process so that any dialogs etc. put up
// by the windows do not show up obscured by other apps. or without focus. The current
// instance is able to set the first instance as the foreground process because this
// instance is either itself the foreground process or is started by the current
// foreground process.
//
if (hwndApp && (!cLine.m_fHideApp)) {
bSetForeground = ::SetForegroundWindow (hwndApp); }
if (cLine.m_fFilesProvided) {
COPYDATASTRUCT cStruct; cStruct.dwData = cLine.m_iListLen; cStruct.cbData = cLine.m_iListLen * sizeof(wchar_t); cStruct.lpData = (LPVOID)(cLine.m_lpszFilesList); SendMessage(hwndApp,WM_COPYDATA, (WPARAM)NULL, (LPARAM)(&cStruct));
} else if (cLine.m_fShowSettings) {
PostMessage(hwndApp,WM_APP_TRIGGER_SETTINGS,0,0);
} else if (!cLine.m_fHideApp) {
PostMessage(hwndApp,WM_APP_TRIGGER_UI,0,0);
} else { //
// do nothing otherwise.
//
}
//
// for some reason, SetForegroundWindow does not succeed if the window which we are trying
// to put in the foreground does not have any visible windows. So if a user transfers some
// files and then dismisses the wireless link dialog, then at this point, the hidden parent
// window is not the foreground window. So, we try for 10 seconds to get the window in the
// foreground. It is okay to spin here because other than getting the window to the top of
// the Z-order everything else has already been done. Here, we just want to give the shell
// enough time to put up the common file open dialog. Note that we stop spinning the moment
// we succeed in setting the first instance as the foreground window.
//
if (!bSetForeground && hwndApp && (!cLine.m_fHideApp)) { i = 0; do { if (::SetForegroundWindow (hwndApp)) break; else Sleep (100); } while ( i++ < 100 ); }
CloseHandle (hMutex); return FALSE; //exit the app. rather than starting the message pump
}
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable, you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
//
// if we reach here, it means that this is the first instance of the app.
//
m_pMainWnd = appController = new CController (cLine.m_fHideApp);
if (!appController) {
return FALSE; } appController->ShowWindow(SW_HIDE); appController->SetWindowText (MAIN_WINDOW_TITLE); g_lpszDesktopFolder[0] = '\0'; //precautionary measures
g_lpszSendToFolder [0] = '\0';
return StartIrMon(); }
GLOBAL_STRINGS g_Strings;
BOOL LoadGlobalStrings() { #define LOAD_STRING(id, str) \
if (0 == LoadString( g_hInstance, id, g_Strings.str, sizeof(g_Strings.str)/sizeof(wchar_t))) \ { \ return FALSE; \ }
LOAD_STRING( IDS_CLOSE, Close ) LOAD_STRING( IDS_NODESC_ERROR, ErrorNoDescription ) LOAD_STRING( IDS_COMPLETED, CompletedSuccess ) LOAD_STRING( IDS_RECV_ERROR, ReceiveError ) LOAD_STRING( IDS_CONNECTING, Connecting ) LOAD_STRING( IDS_RECV_CANCELLED, RecvCancelled )
return TRUE; }
#include <irmonftp.h>
HANDLE ThreadHandle=NULL;
BOOL CIrftpApp::ExitInstance() {
if (ThreadHandle != NULL) {
DWORD WaitResult;
SignalIrmonExit();
WaitResult=WaitForSingleObject(ThreadHandle,60*1000);
#if DBG
if (WaitResult== WAIT_TIMEOUT) { OutputDebugStringA("IRFTP: Timeout waiting for irmon to exit\n"); } #endif
} return CWinApp::ExitInstance();
}
DWORD IrmonThreadStart( PVOID COntext )
{
ServiceMain(0,NULL);
return 0;
}
BOOL StartIrMon( VOID )
{
DWORD ThreadId;
SetInstance(GetModuleHandle(NULL));
ThreadHandle=CreateThread( NULL, NULL, IrmonThreadStart, NULL, 0, &ThreadId );
return (ThreadHandle != NULL);
}
|