Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / TransactionBridge / Microsoft / Transactions / Wsat / Clusters / ClusterUtils.cs / 1 / ClusterUtils.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- using System; using System.Diagnostics; using System.Runtime.InteropServices; using System.Text; using Microsoft.Transactions.Bridge; using Microsoft.Transactions.Wsat.Messaging; using Microsoft.Transactions.Wsat.Protocol; using Microsoft.Win32; namespace Microsoft.Transactions.Wsat.Clusters { static class ClusterUtils { public static SafeHResource GetTransactionManagerClusterResource(string virtualServerName, string transactionManagerResourceType) { if (DebugTrace.Info) DebugTrace.Trace(TraceLevel.Info, "Looking for cluster resource of type {0} dependent on network name {1}", transactionManagerResourceType, virtualServerName); SafeHCluster hCluster = SafeNativeMethods.OpenCluster(null); if (hCluster.IsInvalid) { int gle = Marshal.GetLastWin32Error(); throw DiagnosticUtility.ExceptionUtility.ThrowHelperError( new ConfigurationProviderException(SR.GetString(SR.OpenClusterFailed, gle))); } using (hCluster) { SafeHClusEnum hEnum = SafeNativeMethods.ClusterOpenEnum(hCluster, ClusterEnum.Resource); if (hEnum.IsInvalid) { int gle = Marshal.GetLastWin32Error(); throw DiagnosticUtility.ExceptionUtility.ThrowHelperError( new ConfigurationProviderException(SR.GetString(SR.ClusterOpenEnumFailed, gle))); } using (hEnum) { uint index = 0; while (true) { SafeHResource hResource = GetResourceFromEnumeration(hCluster, hEnum, index); if (hResource == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError( new ConfigurationProviderException(SR.GetString(SR.ClusterResourceNotFound, virtualServerName))); } try { if (IsTransactionManager(hResource, virtualServerName, transactionManagerResourceType)) return hResource; } catch { hResource.Dispose(); throw; } index++; } } } } static bool IsTransactionManager(SafeHResource hResource, string virtualServerName, string transactionManagerResourceType) { string resourceType = GetResourceType(hResource); if (DebugTrace.Verbose) DebugTrace.Trace(TraceLevel.Verbose, "Examining cluster resource of type {0}", resourceType); if (string.Compare(resourceType, transactionManagerResourceType, StringComparison.OrdinalIgnoreCase) == 0) { // It's a TM resource string networkName = GetResourceNetworkName(hResource); if (DebugTrace.Verbose) DebugTrace.Trace(TraceLevel.Verbose, "Dependent network name is {0}", networkName); if (string.Compare(networkName, virtualServerName, StringComparison.OrdinalIgnoreCase) == 0) { return true; } } return false; } static string GetResourceType(SafeHResource hResource) { return IssueClusterResourceControlString(hResource, ClusterResourceControlCode.GetResourceType); } static string GetResourceNetworkName(SafeHResource hResource) { // On Vista and above, this API can be called with null and 0 to discover the true length // of the return buffer. However, on Win2003 that causes the API to fail with // ERROR_DEPENDENCY_NOT_FOUND. To play it safe, we simply pre-allocate a buffer up front // that should be enough to catch the two possible cases: // - 15-character NetBios names // - 63-character DNS labels uint cch = 64; StringBuilder sb = new StringBuilder((int)cch); bool ret = SafeNativeMethods.GetClusterResourceNetworkName(hResource, sb, ref cch); int gle = Marshal.GetLastWin32Error(); if (ret) return sb.ToString(); throw DiagnosticUtility.ExceptionUtility.ThrowHelperError( new ConfigurationProviderException(SR.GetString(SR.GetClusterResourceNetworkNameFailed, gle))); } static SafeHResource GetResourceFromEnumeration(SafeHCluster hCluster, SafeHClusEnum hEnum, uint index) { uint type, cch = 0; uint ret = SafeNativeMethods.ClusterEnum(hEnum, index, out type, null, ref cch); if (ret == SafeNativeMethods.ERROR_NO_MORE_ITEMS) // The enumeration is complete return null; if (ret == SafeNativeMethods.ERROR_SUCCESS || ret == SafeNativeMethods.ERROR_MORE_DATA) { StringBuilder sb = new StringBuilder((int)++cch); ret = SafeNativeMethods.ClusterEnum(hEnum, index, out type, sb, ref cch); if (ret == SafeNativeMethods.ERROR_SUCCESS) { string resourceName = sb.ToString(); if (DebugTrace.Verbose) DebugTrace.Trace(TraceLevel.Verbose, "Opening cluster resource {0}", resourceName); SafeHResource hResource = SafeNativeMethods.OpenClusterResource(hCluster, resourceName); if (hResource.IsInvalid) { int gle = Marshal.GetLastWin32Error(); throw DiagnosticUtility.ExceptionUtility.ThrowHelperError( new ConfigurationProviderException(SR.GetString(SR.OpenClusterResourceFailed, gle))); } return hResource; } } throw DiagnosticUtility.ExceptionUtility.ThrowHelperError( new ConfigurationProviderException(SR.GetString(SR.ClusterEnumFailed, ret))); } static byte[] IssueClusterResourceControl(SafeHResource hResource, ClusterResourceControlCode code) { uint cb = 0; uint ret = SafeNativeMethods.ClusterResourceControl(hResource, IntPtr.Zero, code, IntPtr.Zero, 0, null, 0, ref cb); if (ret == SafeNativeMethods.ERROR_SUCCESS || ret == SafeNativeMethods.ERROR_MORE_DATA) { byte[] buffer = new byte[cb]; ret = SafeNativeMethods.ClusterResourceControl(hResource, IntPtr.Zero, code, IntPtr.Zero, 0, buffer, cb, ref cb); if (ret == SafeNativeMethods.ERROR_SUCCESS) { return buffer; } } throw DiagnosticUtility.ExceptionUtility.ThrowHelperError( new ConfigurationProviderException(SR.GetString(SR.ClusterResourceControlFailed, code, ret))); } static string IssueClusterResourceControlString(SafeHResource hResource, ClusterResourceControlCode code) { byte[] buffer = IssueClusterResourceControl(hResource, code); try { return Encoding.Unicode.GetString(buffer, 0, buffer.Length - 2); } catch (ArgumentException e) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError( new ConfigurationProviderException(SR.GetString(SR.ClusterResourceControlInvalidResults, code), e)); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ProtocolElementCollection.cs
- webclient.cs
- GeneralTransform2DTo3DTo2D.cs
- TrackingServices.cs
- DetailsViewDeleteEventArgs.cs
- RIPEMD160.cs
- XmlSchemaType.cs
- Ref.cs
- HttpModuleAction.cs
- Vertex.cs
- QuaternionAnimation.cs
- SpinWait.cs
- ClientTarget.cs
- MaskedTextBox.cs
- Transform3DGroup.cs
- SafeBitVector32.cs
- SiteMapDesignerDataSourceView.cs
- OdbcCommand.cs
- ToolStripItemCollection.cs
- AuthenticationService.cs
- DiscreteKeyFrames.cs
- RangeBaseAutomationPeer.cs
- XamlReaderHelper.cs
- WebScriptMetadataFormatter.cs
- XPathScanner.cs
- UnitySerializationHolder.cs
- PathData.cs
- hresults.cs
- TableLayoutPanelCodeDomSerializer.cs
- GetParentChain.cs
- TransformerInfoCollection.cs
- AmbientLight.cs
- _NegoStream.cs
- PaperSize.cs
- LoginUtil.cs
- PointAnimationUsingPath.cs
- SettingsPropertyWrongTypeException.cs
- QilName.cs
- RSAPKCS1SignatureDeformatter.cs
- RoutedEventHandlerInfo.cs
- DashStyle.cs
- PlaceHolder.cs
- BindingsCollection.cs
- ImageButton.cs
- SiteMapDataSource.cs
- HtmlElement.cs
- WindowsTokenRoleProvider.cs
- MetadataArtifactLoaderFile.cs
- MetadataCacheItem.cs
- RoutedCommand.cs
- SelectManyQueryOperator.cs
- HttpChannelHelper.cs
- MessageAction.cs
- PersianCalendar.cs
- TransformerConfigurationWizardBase.cs
- SafeProcessHandle.cs
- GridEntry.cs
- CachedFontFamily.cs
- EventsTab.cs
- AlternateView.cs
- ReflectionUtil.cs
- SoapSchemaMember.cs
- DataGridPreparingCellForEditEventArgs.cs
- SignatureHelper.cs
- NamedPipeTransportManager.cs
- MethodImplAttribute.cs
- DrawingGroup.cs
- AnnouncementEventArgs.cs
- XmlSchemaInferenceException.cs
- ToolTip.cs
- TopClause.cs
- _Events.cs
- WCFServiceClientProxyGenerator.cs
- HandlerBase.cs
- ProfileBuildProvider.cs
- UriParserTemplates.cs
- Renderer.cs
- CompressStream.cs
- InvalidOperationException.cs
- RegexCompilationInfo.cs
- Pair.cs
- CrossContextChannel.cs
- NetStream.cs
- TextAction.cs
- CodeAttachEventStatement.cs
- HttpDictionary.cs
- AttachedPropertyBrowsableAttribute.cs
- WindowsContainer.cs
- SEHException.cs
- DSASignatureDeformatter.cs
- UniformGrid.cs
- PrintingPermission.cs
- SchemaImporterExtensionElementCollection.cs
- Drawing.cs
- HttpUnhandledOperationInvoker.cs
- TextReturnReader.cs
- SQLConvert.cs
- DataFieldEditor.cs
- EmptyStringExpandableObjectConverter.cs
- StrokeSerializer.cs