#include "stdafx.h" #include #include #include #include #include "logui.h" #include "uiOdbc.h" #include "LogGenPg.h" #include "LogODBC.h" #include "wrapmb.h" #include "logtools.h" #define OLE_NAME _T("Odbc_Logging_UI") static const DWORD BASED_CODE _dwOleMisc = OLEMISC_INSIDEOUT | OLEMISC_CANTLINKINSIDE; extern HINSTANCE g_hInstance; //====================== the required methods //--------------------------------------------------------------- CFacOdbcLogUI::CFacOdbcLogUI() : COleObjectFactory( CLSID_ODBCLOGUI, RUNTIME_CLASS(COdbcCreator), TRUE, OLE_NAME ) { } //--------------------------------------------------------------- static const LPCTSTR rglpszServerRegister[] = { _T("%2\\CLSID\0") _T("%1"), _T("%2\\NotInsertable\0") _T(""), _T("%2\\protocol\\StdFileEditing\\verb\\0\0") _T("&Edit"), _T("CLSID\\%1\0") _T("%5"), _T("CLSID\\%1\\Verb\\0\0") _T("&Edit,0,2"), _T("CLSID\\%1\\NotInsertable\0") _T(""), _T("CLSID\\%1\\AuxUserType\\2\0") _T("%4"), _T("CLSID\\%1\\AuxUserType\\3\0") _T("%6"), _T("CLSID\\%1\\MiscStatus\0") _T("32"), NULL }; static const LPCTSTR rglpszServerOverwriteDLL[] = { _T("%2\\CLSID\0") _T("%1"), _T("%2\\protocol\\StdFileEditing\\server\0") _T("%3"), _T("CLSID\\%1\\ProgID\0") _T("%2"), _T("CLSID\\%1\\InProcServer32\0") _T("%3"), _T("CLSID\\%1\\DefaultIcon\0") _T("%3,%7"), NULL }; BOOL CFacOdbcLogUI::UpdateRegistry( BOOL bRegister ) { if (bRegister) /* return AfxOleRegisterControlClass( AfxGetInstanceHandle(), CLSID_ODBCLOGUI, OLE_NAME, 0, 0, afxRegApartmentThreading, _dwOleMisc, _tlid, _wVerMajor, _wVerMinor); */ if ( AfxOleRegisterServerClass( CLSID_ODBCLOGUI, OLE_NAME, _T("LogUI odbc"), _T("LogUI odbc"), OAT_SERVER, (LPCTSTR *)rglpszServerRegister, (LPCTSTR *)rglpszServerOverwriteDLL ) ) { return FSetObjectApartmentModel( CLSID_ODBCLOGUI ); } else return AfxOleUnregisterClass(m_clsid, OLE_NAME); return FALSE; } //--------------------------------------------------------------- IMPLEMENT_DYNCREATE(COdbcCreator, CCmdTarget) LPUNKNOWN COdbcCreator::GetInterfaceHook(const void* piid) { // if ( *piid == IID_ILogPlugin ) return new CImpOdbcLogUI; // else // return NULL; } //====================== the action //--------------------------------------------------------------- CImpOdbcLogUI::CImpOdbcLogUI(): m_dwRefCount(0) { // guid = IID_LOGGINGUI; AfxOleLockApp(); } CImpOdbcLogUI::~CImpOdbcLogUI() { AfxOleUnlockApp(); } //--------------------------------------------------------------- HRESULT CImpOdbcLogUI::OnProperties( IN OLECHAR* pocMachineName, IN OLECHAR* pocMetabasePath ) { AFX_MANAGE_STATE(_afxModuleAddrThis); // prepare the metabase wrapper IMSAdminBase* pMB = FInitMetabaseWrapper( pocMachineName ); if ( !pMB ) return 0xFFFFFFFF; // specify the resources to use HINSTANCE hOldRes = AfxGetResourceHandle(); AfxSetResourceHandle( g_hInstance ); // prepare the help ((CLoguiApp*)AfxGetApp())->PrepHelp( pocMetabasePath ); // prepare the property sheet for action CLogGeneral pageLogGeneral; CLogODBC pageLogODBC; // declare the property sheet CPropertySheet propsheet( IDS_SHEET_ODBC_TITLE ); // Things could (potentially maybe) throw here, so better protect it. try { // prepare the pages pageLogODBC.m_pMB = pMB; pageLogGeneral.m_pMB = pMB; pageLogODBC.m_szMeta = pocMetabasePath; pageLogODBC.m_szServer = pocMachineName; pageLogGeneral.m_szServer = pocMachineName; pageLogGeneral.m_szMeta = pocMetabasePath; pageLogGeneral.szPrefix.LoadString( IDS_LOG_EXTND_PREFIX ); pageLogGeneral.szSizePrefix.LoadString( IDS_LOG_SIZE_EXTND_PREFIX ); // add the pages to the sheet and run // propsheet.AddPage( &pageLogGeneral ); // don't need general for ODBC propsheet.AddPage( &pageLogODBC ); // turn on help propsheet.m_psh.dwFlags |= PSH_HASHELP; pageLogGeneral.m_psp.dwFlags |= PSP_HASHELP; pageLogODBC.m_psp.dwFlags |= PSP_HASHELP; propsheet.DoModal(); } catch ( CException e ) { } // close the metabase wrappings FCloseMetabaseWrapper(pMB); // restore the resources AfxSetResourceHandle( hOldRes ); return NO_ERROR; } //====================== the required methods //--------------------------------------------------------------- HRESULT CImpOdbcLogUI::QueryInterface(REFIID riid, void **ppObject) { if (riid==IID_IUnknown || riid==IID_LOGGINGUI || riid==CLSID_ODBCLOGUI) { *ppObject = (ILogUIPlugin*) this; } else { return E_NOINTERFACE; } AddRef(); return NO_ERROR; } //--------------------------------------------------------------- ULONG CImpOdbcLogUI::AddRef() { DWORD dwRefCount; dwRefCount = InterlockedIncrement((long *)&m_dwRefCount); return dwRefCount; } //--------------------------------------------------------------- ULONG CImpOdbcLogUI::Release() { DWORD dwRefCount; dwRefCount = InterlockedDecrement((long *)&m_dwRefCount); if (dwRefCount == 0) { delete this; } return dwRefCount; }