Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.Activities.DurableInstancing / System / Activities / DurableInstancing / StoreUtilities.cs / 1305376 / StoreUtilities.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.Activities.DurableInstancing { using System.Collections.Generic; using System.Data.SqlClient; using System.Globalization; using System.Runtime; using System.Runtime.DurableInstancing; using System.Text; using System.Xml.Linq; static class StoreUtilities { public static Exception CheckRemainingResultSetForErrors(XName commandName, SqlDataReader reader) { Exception returnException = null; do { returnException = StoreUtilities.GetNextResultSet(commandName, reader); } while (returnException == null && reader.NextResult()); return returnException; } public static Exception CheckResult(XName commandName, SqlDataReader reader) { Exception returnValue = null; CommandResult result = (CommandResult) reader.GetInt32(0); if (result != CommandResult.Success) { returnValue = StoreUtilities.GetError(commandName, result, reader); } return returnValue; } public static SqlConnection CreateConnection(string connectionString) { SqlConnection connection = new SqlConnection(connectionString); connection.Open(); return connection; } public static Exception GetError(XName commandName, CommandResult result, SqlDataReader reader) { Exception returnValue = null; if (result != CommandResult.Success) { switch (result) { case CommandResult.InstanceAlreadyExists: returnValue = new InstanceCollisionException(commandName, reader.GetGuid(1)); break; case CommandResult.InstanceLockNotAcquired: returnValue = new InstanceLockedException(commandName, reader.GetGuid(1), reader.GetGuid(2), ReadLockOwnerMetadata(reader)); break; case CommandResult.InstanceNotFound: returnValue = new InstanceNotReadyException(commandName, reader.GetGuid(1)); break; case CommandResult.KeyAlreadyExists: returnValue = new InstanceKeyCollisionException(commandName, Guid.Empty, new InstanceKey(reader.GetGuid(1)), Guid.Empty); break; case CommandResult.KeyNotFound: returnValue = new InstanceKeyNotReadyException(commandName, new InstanceKey(reader.GetGuid(1))); break; case CommandResult.InstanceLockLost: returnValue = new InstanceLockLostException(commandName, reader.GetGuid(1)); break; case CommandResult.InstanceCompleted: returnValue = new InstanceCompleteException(commandName, reader.GetGuid(1)); break; case CommandResult.KeyDisassociated: returnValue = new InstanceKeyCompleteException(commandName, new InstanceKey(reader.GetGuid(1))); break; case CommandResult.StaleInstanceVersion: returnValue = new InstanceLockLostException(commandName, reader.GetGuid(1)); break; case CommandResult.HostLockExpired: returnValue = new InstancePersistenceException(SR.HostLockExpired); break; case CommandResult.HostLockNotFound: returnValue = new InstancePersistenceException(SR.HostLockNotFound); break; case CommandResult.CleanupInProgress: returnValue = new InstancePersistenceCommandException(SR.CleanupInProgress); break; case CommandResult.InstanceAlreadyLockedToOwner: returnValue = new InstanceAlreadyLockedToOwnerException(commandName, reader.GetGuid(1), reader.GetInt64(2)); break; default: returnValue = new InstancePersistenceCommandException(SR.UnknownSprocResult(result)); break; } } return returnValue; } public static Exception GetNextResultSet(XName commandName, SqlDataReader reader) { do { if (reader.Read()) { do { if (reader.FieldCount == 0) { continue; } string columnName = reader.GetName(0); if (string.Compare("Result", columnName, StringComparison.Ordinal) == 0) { return StoreUtilities.CheckResult(commandName, reader); } } while (reader.Read()); } } while (reader.NextResult()); return null; } static public bool HasExpired(this TimeoutHelper timeoutHelper) { return (timeoutHelper.RemainingTime() <= TimeSpan.Zero); } public static void TraceSqlCommand(SqlCommand command, bool isStarting) { if ((isStarting && TD.StartSqlCommandExecuteIsEnabled()) || (!isStarting && TD.EndSqlCommandExecuteIsEnabled())) { StringBuilder traceString = new StringBuilder(SqlWorkflowInstanceStoreConstants.DefaultStringBuilderCapacity); bool firstItem = false; foreach (SqlParameter sqlParameter in command.Parameters) { string value; if ((sqlParameter.Value == DBNull.Value) || (sqlParameter.Value == null)) { value = "Null"; } else if (sqlParameter.DbType == System.Data.DbType.Binary) { value = "Binary"; } else { value = sqlParameter.Value.ToString(); } if (firstItem) { traceString.AppendFormat(CultureInfo.InvariantCulture, "{0}='{1}'", sqlParameter.ParameterName, value); firstItem = false; } else { traceString.AppendFormat(CultureInfo.InvariantCulture, ", {0}='{1}'", sqlParameter.ParameterName, value); } traceString.AppendLine(command.CommandText); } if (isStarting) { TD.StartSqlCommandExecute(traceString.ToString()); } else { TD.EndSqlCommandExecute(traceString.ToString()); } } } static DictionaryReadLockOwnerMetadata(SqlDataReader reader) { Dictionary lockOwnerProperties = new Dictionary (); InstanceEncodingOption encodingOption = (InstanceEncodingOption)(reader.GetByte(3)); byte[] serializedPrimitiveLockOwnerData = reader.IsDBNull(4) ? null : (byte[]) reader.GetValue(4); byte[] serializedComplexLockOwnerData = reader.IsDBNull(5) ? null : (byte[]) reader.GetValue(5); IObjectSerializer serializer = ObjectSerializerFactory.GetObjectSerializer(encodingOption); Dictionary [] lockOwnerPropertyBags = new Dictionary [2]; if (serializedPrimitiveLockOwnerData != null) { lockOwnerPropertyBags[0] = (Dictionary )serializer.DeserializeValue(serializedPrimitiveLockOwnerData); } if (serializedComplexLockOwnerData != null) { lockOwnerPropertyBags[1] = serializer.DeserializePropertyBag(serializedComplexLockOwnerData); } foreach (Dictionary propertyBag in lockOwnerPropertyBags) { if (propertyBag != null) { foreach (KeyValuePair property in propertyBag) { lockOwnerProperties.Add(property.Key, property.Value); } } } return lockOwnerProperties; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MappingException.cs
- IntPtr.cs
- PixelFormats.cs
- ExtendedProtectionPolicy.cs
- UxThemeWrapper.cs
- GenerateTemporaryAssemblyTask.cs
- SiteMapDataSourceView.cs
- HybridWebProxyFinder.cs
- XPathChildIterator.cs
- DataFieldConverter.cs
- ClientSession.cs
- BatchServiceHost.cs
- ParameterDataSourceExpression.cs
- WebBrowserContainer.cs
- GroupLabel.cs
- NotifyIcon.cs
- WebBrowserPermission.cs
- NativeMethods.cs
- HTMLTagNameToTypeMapper.cs
- HtmlControlPersistable.cs
- CacheAxisQuery.cs
- MsmqPoisonMessageException.cs
- Behavior.cs
- HttpModulesSection.cs
- MenuBindingsEditorForm.cs
- MappingModelBuildProvider.cs
- ActivityBindForm.cs
- MD5.cs
- ImageMapEventArgs.cs
- AspNetCompatibilityRequirementsAttribute.cs
- UnicodeEncoding.cs
- CodeDomComponentSerializationService.cs
- LessThanOrEqual.cs
- Win32.cs
- SizeAnimation.cs
- EntitySqlException.cs
- VectorCollectionConverter.cs
- EventSinkActivityDesigner.cs
- DoubleKeyFrameCollection.cs
- SpStreamWrapper.cs
- DBConnectionString.cs
- VisualStyleElement.cs
- ProfileProvider.cs
- RtfToken.cs
- CultureSpecificCharacterBufferRange.cs
- DesignTimeTemplateParser.cs
- XmlSchemaImport.cs
- activationcontext.cs
- RefreshEventArgs.cs
- ComponentGlyph.cs
- DataGridItemEventArgs.cs
- Int32EqualityComparer.cs
- HtmlInputImage.cs
- SubqueryRules.cs
- TrackingServices.cs
- BufferedGraphicsManager.cs
- XmlWriter.cs
- HttpMethodConstraint.cs
- ToolboxComponentsCreatingEventArgs.cs
- WebPartDisplayModeCancelEventArgs.cs
- WebContext.cs
- CorrelationManager.cs
- EmptyEnumerable.cs
- DragEvent.cs
- TypeCodeDomSerializer.cs
- EventManager.cs
- GroupBoxRenderer.cs
- NavigationService.cs
- GPPOINTF.cs
- BitmapEffectInputConnector.cs
- GorillaCodec.cs
- SharedPerformanceCounter.cs
- PasswordPropertyTextAttribute.cs
- DodSequenceMerge.cs
- DataGridViewColumnStateChangedEventArgs.cs
- HGlobalSafeHandle.cs
- Token.cs
- NameValueFileSectionHandler.cs
- XsdSchemaFileEditor.cs
- DragCompletedEventArgs.cs
- AttributeCollection.cs
- HttpRuntime.cs
- ConstNode.cs
- RequestCacheEntry.cs
- AdornerLayer.cs
- SerialPinChanges.cs
- X509Certificate2Collection.cs
- EpmCustomContentSerializer.cs
- Int32Rect.cs
- CommandManager.cs
- IssuedSecurityTokenProvider.cs
- PageBuildProvider.cs
- PenContext.cs
- tooltip.cs
- DataServiceQueryProvider.cs
- CategoriesDocumentFormatter.cs
- InheritanceAttribute.cs
- SecurityContext.cs
- InternalException.cs
- XmlSchemaSimpleType.cs