mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
485 lines
12 KiB
485 lines
12 KiB
/*++
|
|
Module Name:
|
|
|
|
frsProp.cpp
|
|
|
|
Abstract:
|
|
|
|
--*/
|
|
|
|
#include "stdafx.h"
|
|
#include "resource.h"
|
|
#include "utils.h"
|
|
#include "frsProp.h"
|
|
#include "mvEdit.h"
|
|
#include "dfshelp.h"
|
|
#include "CusTop.h"
|
|
#include "ldaputils.h"
|
|
|
|
CRealReplicaSetPropPage::CRealReplicaSetPropPage() :
|
|
m_lNotifyHandle(0),
|
|
m_lNotifyParam(0),
|
|
CQWizardPageImpl<CRealReplicaSetPropPage>(false)
|
|
{
|
|
m_bstrTopologyPref = FRS_RSTOPOLOGYPREF_RING;
|
|
}
|
|
|
|
CRealReplicaSetPropPage::~CRealReplicaSetPropPage()
|
|
{
|
|
// do not call MMCFreeNotifyHandle(m_lNotifyHandle);
|
|
//
|
|
// It should only be called once, and is already called
|
|
// by the main property page
|
|
}
|
|
|
|
HRESULT CRealReplicaSetPropPage::_GetMemberDNInfo(
|
|
IN BSTR i_bstrMemberDN,
|
|
OUT BSTR* o_pbstrServer
|
|
)
|
|
{
|
|
RETURN_INVALIDARG_IF_NULL(i_bstrMemberDN);
|
|
RETURN_INVALIDARG_IF_NULL(o_pbstrServer);
|
|
|
|
VARIANT var;
|
|
VariantInit(&var);
|
|
HRESULT hr = m_piReplicaSet->GetMemberInfo(i_bstrMemberDN, &var);
|
|
RETURN_IF_FAILED(hr);
|
|
|
|
if (V_VT(&var) != (VT_ARRAY | VT_VARIANT))
|
|
return E_INVALIDARG;
|
|
|
|
SAFEARRAY *psa = V_ARRAY(&var);
|
|
if (!psa) // no such member at all
|
|
return S_FALSE;
|
|
|
|
long lLowerBound = 0;
|
|
long lUpperBound = 0;
|
|
long lCount = 0;
|
|
SafeArrayGetLBound(psa, 1, &lLowerBound);
|
|
SafeArrayGetUBound(psa, 1, &lUpperBound);
|
|
lCount = lUpperBound - lLowerBound + 1;
|
|
|
|
VARIANT HUGEP *pArray;
|
|
SafeArrayAccessData(psa, (void HUGEP **) &pArray);
|
|
|
|
*o_pbstrServer = SysAllocString(pArray[4].bstrVal);
|
|
|
|
SafeArrayUnaccessData(psa);
|
|
|
|
VariantClear(&var); // it will in turn call SafeArrayDestroy(psa);
|
|
|
|
RETURN_OUTOFMEMORY_IF_NULL(*o_pbstrServer);
|
|
|
|
return hr;
|
|
}
|
|
|
|
LRESULT
|
|
CRealReplicaSetPropPage::OnInitDialog(
|
|
IN UINT i_uMsg,
|
|
IN WPARAM i_wParam,
|
|
LPARAM i_lParam,
|
|
IN OUT BOOL& io_bHandled
|
|
)
|
|
{
|
|
SetDlgItemText(IDC_FRSPROP_FILEFILTER, ((BSTR)m_bstrFileFilter) ? m_bstrFileFilter : _T(""));
|
|
SetDlgItemText(IDC_FRSPROP_DIRFILTER, ((BSTR)m_bstrDirFilter) ? m_bstrDirFilter : _T(""));
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
{
|
|
if (!lstrcmpi(m_bstrTopologyPref, g_TopologyPref[i].pszTopologyPref))
|
|
{
|
|
CComBSTR bstrText;
|
|
LoadStringFromResource(g_TopologyPref[i].nStringID, &bstrText);
|
|
SetDlgItemText(IDC_FRSPROP_TOPOLOGYPREF, bstrText);
|
|
}
|
|
}
|
|
|
|
if (0 != lstrcmpi(m_bstrTopologyPref, FRS_RSTOPOLOGYPREF_HUBSPOKE))
|
|
{
|
|
MyShowWindow(GetDlgItem(IDC_FRSPROP_HUBSERVER_LABEL), FALSE);
|
|
MyShowWindow(GetDlgItem(IDC_FRSPROP_HUBSERVER), FALSE);
|
|
}
|
|
|
|
HRESULT hr = S_OK;
|
|
if (CheckPolicyOnDisplayingInitialMaster())
|
|
{
|
|
CComBSTR bstrPrimaryServer;
|
|
hr = _GetMemberDNInfo(m_bstrPrimaryMemberDN, &bstrPrimaryServer);
|
|
SetDlgItemText(IDC_FRSPROP_PRIMARYMEMBER, (S_OK == hr) ? bstrPrimaryServer : _T(""));
|
|
} else
|
|
{
|
|
MyShowWindow(GetDlgItem(IDC_FRSPROP_PRIMARYMEMBER_LABEL), FALSE);
|
|
MyShowWindow(GetDlgItem(IDC_FRSPROP_PRIMARYMEMBER), FALSE);
|
|
}
|
|
|
|
CComBSTR bstrHubServer;
|
|
hr = _GetMemberDNInfo(m_bstrHubMemberDN, &bstrHubServer);
|
|
SetDlgItemText(IDC_FRSPROP_HUBSERVER, (S_OK == hr) ? bstrHubServer : _T(""));
|
|
|
|
if (m_lNumOfMembers < 2)
|
|
::EnableWindow(GetDlgItem(IDC_FRSPROP_CUSTOMIZE), FALSE);
|
|
|
|
::EnableWindow(GetDlgItem(IDC_FRSPROP_RESETSCHEDULE), (m_lNumOfConnections > 0));
|
|
|
|
return TRUE; // To let the dialg set the control
|
|
}
|
|
|
|
/*++
|
|
This function is called when a user clicks the ? in the top right of a property sheet
|
|
and then clciks a control, or when they hit F1 in a control.
|
|
--*/
|
|
LRESULT CRealReplicaSetPropPage::OnCtxHelp(
|
|
IN UINT i_uMsg,
|
|
IN WPARAM i_wParam,
|
|
IN LPARAM i_lParam,
|
|
IN OUT BOOL& io_bHandled
|
|
)
|
|
{
|
|
LPHELPINFO lphi = (LPHELPINFO) i_lParam;
|
|
if (!lphi || lphi->iContextType != HELPINFO_WINDOW || lphi->iCtrlId < 0)
|
|
return FALSE;
|
|
|
|
::WinHelp((HWND)(lphi->hItemHandle),
|
|
DFS_CTX_HELP_FILE,
|
|
HELP_WM_HELP,
|
|
(DWORD_PTR)(PVOID)g_aHelpIDs_IDD_FRS_PROP);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
/*++
|
|
This function handles "What's This" help when a user right clicks the control
|
|
--*/
|
|
LRESULT CRealReplicaSetPropPage::OnCtxMenuHelp(
|
|
IN UINT i_uMsg,
|
|
IN WPARAM i_wParam,
|
|
IN LPARAM i_lParam,
|
|
IN OUT BOOL& io_bHandled
|
|
)
|
|
{
|
|
::WinHelp((HWND)i_wParam,
|
|
DFS_CTX_HELP_FILE,
|
|
HELP_CONTEXTMENU,
|
|
(DWORD_PTR)(PVOID)g_aHelpIDs_IDD_FRS_PROP);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
void CRealReplicaSetPropPage::_Reset()
|
|
{
|
|
m_piReplicaSet = NULL;
|
|
|
|
m_bstrTopologyPref.Empty();
|
|
m_bstrFileFilter.Empty();
|
|
m_bstrDirFilter.Empty();
|
|
m_bstrPrimaryMemberDN.Empty();
|
|
m_bstrHubMemberDN.Empty();
|
|
}
|
|
|
|
HRESULT CRealReplicaSetPropPage::Initialize(IN IReplicaSet* i_piReplicaSet)
|
|
{
|
|
RETURN_INVALIDARG_IF_NULL(i_piReplicaSet);
|
|
|
|
_Reset();
|
|
|
|
m_piReplicaSet = i_piReplicaSet;
|
|
|
|
HRESULT hr = S_OK;
|
|
|
|
do {
|
|
hr = m_piReplicaSet->get_TopologyPref(&m_bstrTopologyPref);
|
|
BREAK_IF_FAILED(hr);
|
|
hr = m_piReplicaSet->get_FileFilter(&m_bstrFileFilter);
|
|
BREAK_IF_FAILED(hr);
|
|
hr = m_piReplicaSet->get_DirFilter(&m_bstrDirFilter);
|
|
BREAK_IF_FAILED(hr);
|
|
hr = m_piReplicaSet->get_PrimaryMemberDN(&m_bstrPrimaryMemberDN);
|
|
BREAK_IF_FAILED(hr);
|
|
hr = m_piReplicaSet->get_HubMemberDN(&m_bstrHubMemberDN);
|
|
BREAK_IF_FAILED(hr);
|
|
hr = m_piReplicaSet->get_NumOfMembers(&m_lNumOfMembers);
|
|
BREAK_IF_FAILED(hr);
|
|
hr = m_piReplicaSet->get_NumOfConnections(&m_lNumOfConnections);
|
|
BREAK_IF_FAILED(hr);
|
|
} while (0);
|
|
|
|
if (FAILED(hr))
|
|
_Reset();
|
|
|
|
return hr;
|
|
}
|
|
|
|
LRESULT
|
|
CRealReplicaSetPropPage::OnApply()
|
|
{
|
|
if (m_lNotifyHandle && m_lNotifyParam)
|
|
MMCPropertyChangeNotify(m_lNotifyHandle, m_lNotifyParam);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
LRESULT
|
|
CRealReplicaSetPropPage::OnEditFileFilter(
|
|
IN WORD i_wNotifyCode,
|
|
IN WORD i_wID,
|
|
IN HWND i_hWndCtl,
|
|
IN OUT BOOL& io_bHandled
|
|
)
|
|
{
|
|
CComBSTR bstrFileFilter = m_bstrFileFilter;
|
|
if (S_OK == InvokeMultiValuedStringEditDlg(
|
|
&bstrFileFilter,
|
|
_T(","),
|
|
IDS_MVSTRINGEDIT_TITLE_FILEFILTER,
|
|
IDS_MVSTRINGEDIT_TEXT_FILEFILTER,
|
|
MAX_PATH))
|
|
{
|
|
CWaitCursor wait;
|
|
if (FALSE == PROPSTRNOCHNG((BSTR)m_bstrFileFilter, bstrFileFilter))
|
|
{
|
|
HRESULT hr = m_piReplicaSet->put_FileFilter(bstrFileFilter);
|
|
if (SUCCEEDED(hr))
|
|
{
|
|
m_bstrFileFilter = bstrFileFilter;
|
|
SetDlgItemText(IDC_FRSPROP_FILEFILTER, m_bstrFileFilter);
|
|
} else
|
|
{
|
|
DisplayMessageBoxForHR(hr);
|
|
}
|
|
}
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
LRESULT
|
|
CRealReplicaSetPropPage::OnEditDirFilter(
|
|
IN WORD i_wNotifyCode,
|
|
IN WORD i_wID,
|
|
IN HWND i_hWndCtl,
|
|
IN OUT BOOL& io_bHandled
|
|
)
|
|
{
|
|
CComBSTR bstrDirFilter = m_bstrDirFilter;
|
|
if (S_OK == InvokeMultiValuedStringEditDlg(
|
|
&bstrDirFilter,
|
|
_T(","),
|
|
IDS_MVSTRINGEDIT_TITLE_DIRFILTER,
|
|
IDS_MVSTRINGEDIT_TEXT_DIRFILTER,
|
|
MAX_PATH))
|
|
{
|
|
CWaitCursor wait;
|
|
if (FALSE == PROPSTRNOCHNG((BSTR)m_bstrDirFilter, bstrDirFilter))
|
|
{
|
|
HRESULT hr = m_piReplicaSet->put_DirFilter(bstrDirFilter);
|
|
if (SUCCEEDED(hr))
|
|
{
|
|
m_bstrDirFilter = bstrDirFilter;
|
|
SetDlgItemText(IDC_FRSPROP_DIRFILTER, m_bstrDirFilter);
|
|
} else
|
|
{
|
|
DisplayMessageBoxForHR(hr);
|
|
}
|
|
}
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
LRESULT
|
|
CRealReplicaSetPropPage::OnResetSchedule(
|
|
IN WORD i_wNotifyCode,
|
|
IN WORD i_wID,
|
|
IN HWND i_hWndCtl,
|
|
IN OUT BOOL& io_bHandled
|
|
)
|
|
{
|
|
HRESULT hr = S_OK;
|
|
|
|
do {
|
|
CWaitCursor wait;
|
|
|
|
//
|
|
// get connection list
|
|
//
|
|
if (!m_lNumOfConnections)
|
|
break; // no connection at all
|
|
|
|
//
|
|
// get FQDN of the first connection
|
|
//
|
|
CComBSTR bstrConnectionDN;
|
|
|
|
VARIANT var;
|
|
VariantInit(&var);
|
|
hr = m_piReplicaSet->GetConnectionList(&var);
|
|
BREAK_IF_FAILED(hr);
|
|
|
|
if (V_VT(&var) == (VT_ARRAY | VT_VARIANT))
|
|
{
|
|
SAFEARRAY *psa = V_ARRAY(&var);
|
|
|
|
long lLowerBound = 0;
|
|
long lUpperBound = 0;
|
|
SafeArrayGetLBound(psa, 1, &lLowerBound);
|
|
SafeArrayGetUBound(psa, 1, &lUpperBound);
|
|
if (m_lNumOfConnections != (lUpperBound - lLowerBound + 1))
|
|
{
|
|
hr = E_INVALIDARG;
|
|
} else
|
|
{
|
|
VARIANT HUGEP *pArray;
|
|
SafeArrayAccessData(psa, (void HUGEP **) &pArray);
|
|
|
|
if (V_VT(&(pArray[0])) != VT_BSTR)
|
|
{
|
|
hr = E_INVALIDARG;
|
|
} else
|
|
{
|
|
bstrConnectionDN = pArray[0].bstrVal;
|
|
if (!bstrConnectionDN)
|
|
hr = E_OUTOFMEMORY;
|
|
}
|
|
|
|
SafeArrayUnaccessData(psa);
|
|
}
|
|
} else
|
|
{
|
|
hr = E_INVALIDARG;
|
|
}
|
|
|
|
VariantClear(&var);
|
|
|
|
BREAK_IF_FAILED(hr);
|
|
|
|
//
|
|
// get schedule info on the first connection
|
|
//
|
|
SCHEDULE *pSchedule = NULL;
|
|
VARIANT varSchedule;
|
|
VariantInit(&varSchedule);
|
|
hr = m_piReplicaSet->GetConnectionSchedule(bstrConnectionDN, &varSchedule);
|
|
if (SUCCEEDED(hr))
|
|
{
|
|
hr = VariantToSchedule(&varSchedule, &pSchedule);
|
|
|
|
VariantClear(&varSchedule);
|
|
}
|
|
BREAK_IF_FAILED(hr);
|
|
|
|
//
|
|
// invoke the schedule dialog
|
|
//
|
|
hr = InvokeScheduleDlg(m_hWnd, pSchedule);
|
|
|
|
if (S_OK == hr)
|
|
{
|
|
CWaitCursor wait;
|
|
|
|
//
|
|
// update schedule on all connections
|
|
//
|
|
VARIANT varNewSchedule;
|
|
VariantInit(&varNewSchedule);
|
|
hr = ScheduleToVariant(pSchedule, &varNewSchedule);
|
|
BREAK_IF_FAILED(hr);
|
|
if (SUCCEEDED(hr))
|
|
{
|
|
hr = m_piReplicaSet->SetScheduleOnAllConnections(&varNewSchedule);
|
|
|
|
VariantClear(&varNewSchedule);
|
|
}
|
|
}
|
|
|
|
free(pSchedule);
|
|
|
|
} while (0);
|
|
|
|
if (FAILED(hr))
|
|
DisplayMessageBoxForHR(hr);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
LRESULT
|
|
CRealReplicaSetPropPage::OnCustomize(
|
|
IN WORD i_wNotifyCode,
|
|
IN WORD i_wID,
|
|
IN HWND i_hWndCtl,
|
|
IN OUT BOOL& io_bHandled
|
|
)
|
|
{
|
|
CWaitCursor wait;
|
|
|
|
HRESULT hr = S_OK;
|
|
CCustomTopology CusTopDlg;
|
|
CusTopDlg.put_ReplicaSet(m_piReplicaSet);
|
|
hr = CusTopDlg.DoModal();
|
|
if (S_OK != hr)
|
|
return hr;
|
|
|
|
hr = m_piReplicaSet->get_NumOfConnections(&m_lNumOfConnections);
|
|
RETURN_IF_FAILED(hr);
|
|
::EnableWindow(GetDlgItem(IDC_FRSPROP_RESETSCHEDULE), (m_lNumOfConnections > 0));
|
|
|
|
m_bstrTopologyPref.Empty();
|
|
hr = m_piReplicaSet->get_TopologyPref(&m_bstrTopologyPref);
|
|
RETURN_IF_FAILED(hr);
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
{
|
|
if (!lstrcmpi(m_bstrTopologyPref, g_TopologyPref[i].pszTopologyPref))
|
|
{
|
|
CComBSTR bstrText;
|
|
LoadStringFromResource(g_TopologyPref[i].nStringID, &bstrText);
|
|
SetDlgItemText(IDC_FRSPROP_TOPOLOGYPREF, bstrText);
|
|
}
|
|
}
|
|
if (0 != lstrcmpi(m_bstrTopologyPref, FRS_RSTOPOLOGYPREF_HUBSPOKE))
|
|
{
|
|
MyShowWindow(GetDlgItem(IDC_FRSPROP_HUBSERVER_LABEL), FALSE);
|
|
MyShowWindow(GetDlgItem(IDC_FRSPROP_HUBSERVER), FALSE);
|
|
} else
|
|
{
|
|
MyShowWindow(GetDlgItem(IDC_FRSPROP_HUBSERVER_LABEL), TRUE);
|
|
MyShowWindow(GetDlgItem(IDC_FRSPROP_HUBSERVER), TRUE);
|
|
}
|
|
|
|
m_bstrHubMemberDN.Empty();
|
|
hr = m_piReplicaSet->get_HubMemberDN(&m_bstrHubMemberDN);
|
|
RETURN_IF_FAILED(hr);
|
|
|
|
CComBSTR bstrHubServer;
|
|
hr = _GetMemberDNInfo(m_bstrHubMemberDN, &bstrHubServer);
|
|
SetDlgItemText(IDC_FRSPROP_HUBSERVER, (S_OK == hr) ? bstrHubServer : _T(""));
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
LRESULT
|
|
CRealReplicaSetPropPage::OnParentClosing(
|
|
IN UINT i_uMsg,
|
|
IN WPARAM i_wParam,
|
|
LPARAM i_lParam,
|
|
IN OUT BOOL& io_bHandled
|
|
)
|
|
{
|
|
::SendMessage(GetParent(), PSM_PRESSBUTTON, PSBTN_CANCEL, 0);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
HRESULT
|
|
CRealReplicaSetPropPage::SetNotifyData(
|
|
IN LONG_PTR i_lNotifyHandle,
|
|
IN LPARAM i_lParam
|
|
)
|
|
{
|
|
m_lNotifyHandle = i_lNotifyHandle;
|
|
m_lNotifyParam = i_lParam;
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
|
|
|