Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / EntityModel / SchemaObjectModel / ModelFunction.cs / 1305376 / ModelFunction.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.Diagnostics; using System.Globalization; using System.Xml; using System.Xml.Schema; using System.Data; using System.IO; using System.Data.Metadata.Edm; using System.Data.Entity; namespace System.Data.EntityModel.SchemaObjectModel { ////// class representing the Schema element in the schema /// internal class ModelFunction : Function { protected TypeUsageBuilder _typeUsageBuilder; #region Public Methods ////// ctor for a schema function /// public ModelFunction(Schema parentElement) : base(parentElement) { _isComposable = true; _typeUsageBuilder = new TypeUsageBuilder(this); } #endregion public override SchemaType Type { get { return this._type; } } internal TypeUsage TypeUsage { get { if (_typeUsageBuilder.TypeUsage == null) { return null; } else if (CollectionKind != CollectionKind.None) { return TypeUsage.Create(new CollectionType(_typeUsageBuilder.TypeUsage)); } else { return _typeUsageBuilder.TypeUsage; } } } internal void ValidateAndSetTypeUsage(ScalarType scalar) { _typeUsageBuilder.ValidateAndSetTypeUsage(scalar, false); } #region Protected Properties protected override bool HandleElement(XmlReader reader) { if (base.HandleElement(reader)) { return true; } else if (CanHandleElement(reader, XmlConstants.DefiningExpression)) { HandleDefiningExpressionElment(reader); return true; } else if (CanHandleElement(reader, XmlConstants.Parameter)) { HandleParameterElement(reader); return true; } return false; } protected override void HandleReturnTypeAttribute(XmlReader reader) { base.HandleReturnTypeAttribute(reader); _isComposable = true; } protected override bool HandleAttribute(XmlReader reader) { if (base.HandleAttribute(reader)) { return true; } else if (_typeUsageBuilder.HandleAttribute(reader)) { return true; } return false; } internal override void ResolveTopLevelNames() { if (null != UnresolvedReturnType) { if (Schema.ResolveTypeName(this, UnresolvedReturnType, out _type)) { if (_type is ScalarType) { _typeUsageBuilder.ValidateAndSetTypeUsage(_type as ScalarType, false); } } } foreach (Parameter parameter in this.Parameters) { parameter.ResolveTopLevelNames(); } if (ReturnType != null) { ReturnType.ResolveTopLevelNames(); } } #endregion private void HandleDefiningExpressionElment(XmlReader reader) { Debug.Assert(reader != null); FunctionCommandText commandText = new FunctionCommandText(this); commandText.Parse(reader); _commandText = commandText; } internal override void Validate() { base.Validate(); if (_type != null && _type is ScalarType == false && _typeUsageBuilder.HasUserDefinedFacets) { //Non-scalar return type should not have Facets AddError(ErrorCode.ModelFuncionFacetOnNonScalarType, EdmSchemaErrorSeverity.Error, Strings.FacetsOnNonScalarType(_type.FQName)); } if (_type == null && _typeUsageBuilder.HasUserDefinedFacets) { //Type attribute not specified but facets exist AddError(ErrorCode.ModelFunctionIncorrectlyPlacedFacet, EdmSchemaErrorSeverity.Error, Strings.FacetDeclarationRequiresTypeAttribute); } if (_type == null && _returnType == null) { //Return type not declared as either attribute or subelement AddError(ErrorCode.ModelFunctionReturnTypeNotDeclared, EdmSchemaErrorSeverity.Error, Strings.ReturnTypeMustBeDeclared(FQName)); } if (_type != null && _isRefType && !(_type is SchemaEntityType)) { //Ref type refers to non entity type AddError(ErrorCode.ReferenceToNonEntityType, EdmSchemaErrorSeverity.Error, Strings.ReferenceToNonEntityType(_type.FQName)); } foreach (var param in _parameters) { param.ValidateForModelFunction(); } if (_returnType != null) { _returnType.ValidateForModelFunction(); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.Diagnostics; using System.Globalization; using System.Xml; using System.Xml.Schema; using System.Data; using System.IO; using System.Data.Metadata.Edm; using System.Data.Entity; namespace System.Data.EntityModel.SchemaObjectModel { ////// class representing the Schema element in the schema /// internal class ModelFunction : Function { protected TypeUsageBuilder _typeUsageBuilder; #region Public Methods ////// ctor for a schema function /// public ModelFunction(Schema parentElement) : base(parentElement) { _isComposable = true; _typeUsageBuilder = new TypeUsageBuilder(this); } #endregion public override SchemaType Type { get { return this._type; } } internal TypeUsage TypeUsage { get { if (_typeUsageBuilder.TypeUsage == null) { return null; } else if (CollectionKind != CollectionKind.None) { return TypeUsage.Create(new CollectionType(_typeUsageBuilder.TypeUsage)); } else { return _typeUsageBuilder.TypeUsage; } } } internal void ValidateAndSetTypeUsage(ScalarType scalar) { _typeUsageBuilder.ValidateAndSetTypeUsage(scalar, false); } #region Protected Properties protected override bool HandleElement(XmlReader reader) { if (base.HandleElement(reader)) { return true; } else if (CanHandleElement(reader, XmlConstants.DefiningExpression)) { HandleDefiningExpressionElment(reader); return true; } else if (CanHandleElement(reader, XmlConstants.Parameter)) { HandleParameterElement(reader); return true; } return false; } protected override void HandleReturnTypeAttribute(XmlReader reader) { base.HandleReturnTypeAttribute(reader); _isComposable = true; } protected override bool HandleAttribute(XmlReader reader) { if (base.HandleAttribute(reader)) { return true; } else if (_typeUsageBuilder.HandleAttribute(reader)) { return true; } return false; } internal override void ResolveTopLevelNames() { if (null != UnresolvedReturnType) { if (Schema.ResolveTypeName(this, UnresolvedReturnType, out _type)) { if (_type is ScalarType) { _typeUsageBuilder.ValidateAndSetTypeUsage(_type as ScalarType, false); } } } foreach (Parameter parameter in this.Parameters) { parameter.ResolveTopLevelNames(); } if (ReturnType != null) { ReturnType.ResolveTopLevelNames(); } } #endregion private void HandleDefiningExpressionElment(XmlReader reader) { Debug.Assert(reader != null); FunctionCommandText commandText = new FunctionCommandText(this); commandText.Parse(reader); _commandText = commandText; } internal override void Validate() { base.Validate(); if (_type != null && _type is ScalarType == false && _typeUsageBuilder.HasUserDefinedFacets) { //Non-scalar return type should not have Facets AddError(ErrorCode.ModelFuncionFacetOnNonScalarType, EdmSchemaErrorSeverity.Error, Strings.FacetsOnNonScalarType(_type.FQName)); } if (_type == null && _typeUsageBuilder.HasUserDefinedFacets) { //Type attribute not specified but facets exist AddError(ErrorCode.ModelFunctionIncorrectlyPlacedFacet, EdmSchemaErrorSeverity.Error, Strings.FacetDeclarationRequiresTypeAttribute); } if (_type == null && _returnType == null) { //Return type not declared as either attribute or subelement AddError(ErrorCode.ModelFunctionReturnTypeNotDeclared, EdmSchemaErrorSeverity.Error, Strings.ReturnTypeMustBeDeclared(FQName)); } if (_type != null && _isRefType && !(_type is SchemaEntityType)) { //Ref type refers to non entity type AddError(ErrorCode.ReferenceToNonEntityType, EdmSchemaErrorSeverity.Error, Strings.ReferenceToNonEntityType(_type.FQName)); } foreach (var param in _parameters) { param.ValidateForModelFunction(); } if (_returnType != null) { _returnType.ValidateForModelFunction(); } } } } // 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
- NativeObjectSecurity.cs
- TextRangeEditTables.cs
- TrustManagerPromptUI.cs
- InteropTrackingRecord.cs
- Timer.cs
- OperationFormatUse.cs
- XsdDateTime.cs
- CodeArrayIndexerExpression.cs
- AutomationPeer.cs
- LayoutSettings.cs
- TreeIterator.cs
- DoubleLink.cs
- XmlResolver.cs
- XPathAncestorQuery.cs
- ConnectionInterfaceCollection.cs
- ADConnectionHelper.cs
- Roles.cs
- CommandValueSerializer.cs
- BinaryObjectWriter.cs
- ResourceProperty.cs
- RubberbandSelector.cs
- ToolboxItemCollection.cs
- DataObjectMethodAttribute.cs
- AssemblyBuilder.cs
- QuotaExceededException.cs
- StorageMappingFragment.cs
- DbProviderFactoriesConfigurationHandler.cs
- KoreanLunisolarCalendar.cs
- Fonts.cs
- _ChunkParse.cs
- LicenseException.cs
- FilterEventArgs.cs
- SudsWriter.cs
- RouteItem.cs
- CopyNodeSetAction.cs
- ListViewPagedDataSource.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- BooleanExpr.cs
- HtmlWindow.cs
- WorkflowPageSetupDialog.cs
- ServiceOperationDetailViewControl.cs
- DataQuery.cs
- TableAdapterManagerGenerator.cs
- TimeoutException.cs
- ZipIOExtraFieldPaddingElement.cs
- RequestCacheValidator.cs
- DataGridViewTopRowAccessibleObject.cs
- PermissionRequestEvidence.cs
- TextRunCache.cs
- SqlTrackingQuery.cs
- Membership.cs
- UrlMapping.cs
- ProgressiveCrcCalculatingStream.cs
- StackSpiller.Bindings.cs
- ExceptionValidationRule.cs
- SplineKeyFrames.cs
- ReadOnlyPermissionSet.cs
- XslException.cs
- NativeActivity.cs
- ThreadStaticAttribute.cs
- CodeAttributeArgument.cs
- DataGridColumnCollectionEditor.cs
- AuthenticationException.cs
- NamespaceExpr.cs
- BitmapCodecInfo.cs
- InstanceHandle.cs
- MethodBuilderInstantiation.cs
- CheckedListBox.cs
- PropVariant.cs
- OutputCacheModule.cs
- XmlDocumentSurrogate.cs
- SocketPermission.cs
- BamlLocalizableResourceKey.cs
- ServiceParser.cs
- SafeLibraryHandle.cs
- oledbmetadatacollectionnames.cs
- SizeAnimationUsingKeyFrames.cs
- RowCache.cs
- XmlLangPropertyAttribute.cs
- Currency.cs
- ControlPropertyNameConverter.cs
- XmlStreamNodeWriter.cs
- WindowsPrincipal.cs
- MarshalDirectiveException.cs
- xdrvalidator.cs
- DataListAutoFormat.cs
- Calendar.cs
- HWStack.cs
- CircleHotSpot.cs
- OutputCacheSettingsSection.cs
- PriorityItem.cs
- DATA_BLOB.cs
- MultipleViewProviderWrapper.cs
- EntityContainerRelationshipSet.cs
- XmlAttributeAttribute.cs
- ViewDesigner.cs
- SecurityTokenAuthenticator.cs
- CharacterBufferReference.cs
- SqlExpressionNullability.cs
- DataGridViewColumn.cs