Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / DataEntity / System / Data / Map / ViewGeneration / CqlGeneration / CqlWriter.cs / 2 / CqlWriter.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.Text.RegularExpressions; using System.Text; using System.Data.Common.Utils; using System.Data.Mapping.ViewGeneration.Utils; using System.Data.Metadata.Edm; namespace System.Data.Mapping.ViewGeneration.CqlGeneration { // This class contains helper methods needed for generating Cql internal static class CqlWriter { #region Fields private static readonly Regex s_wordIdentifierRegex = new Regex(@"^[_A-Za-z]\w*$", RegexOptions.ECMAScript | RegexOptions.Compiled); #endregion #region Helper Methods // effects: Given a block name and a field in it -- returns a string // of form "blockName.field". Does not perform any escaping internal static string GetQualifiedName(string blockName, string field) { string result = StringUtil.FormatInvariant("{0}.{1}", blockName, field); return result; } // effects: Modifies builder to contain an escaped version of type's name internal static void AppendEscapedTypeName(StringBuilder builder, EdmType type) { AppendEscapedQualifiedName(builder, type.NamespaceName, type.Name); } // effects: Modifies builder to contain an escaped version of "namespc.name" internal static void AppendEscapedQualifiedName(StringBuilder builder, string namespc, string name) { AppendEscapedName(builder, namespc); builder.Append('.'); AppendEscapedName(builder, name); } // effects: Modifies builder to contain an escaped version of "name" internal static void AppendEscapedName(StringBuilder builder, string name) { if (s_wordIdentifierRegex.IsMatch(name) && false == ExternalCalls.IsReservedKeyword(name)) { // We do not need to escape the name if it is a simple name and it is not a keyword builder.Append(name); } else { string newName = name.Replace("]", "]]"); builder.Append('[') .Append(newName) .Append(']'); } } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.Text.RegularExpressions; using System.Text; using System.Data.Common.Utils; using System.Data.Mapping.ViewGeneration.Utils; using System.Data.Metadata.Edm; namespace System.Data.Mapping.ViewGeneration.CqlGeneration { // This class contains helper methods needed for generating Cql internal static class CqlWriter { #region Fields private static readonly Regex s_wordIdentifierRegex = new Regex(@"^[_A-Za-z]\w*$", RegexOptions.ECMAScript | RegexOptions.Compiled); #endregion #region Helper Methods // effects: Given a block name and a field in it -- returns a string // of form "blockName.field". Does not perform any escaping internal static string GetQualifiedName(string blockName, string field) { string result = StringUtil.FormatInvariant("{0}.{1}", blockName, field); return result; } // effects: Modifies builder to contain an escaped version of type's name internal static void AppendEscapedTypeName(StringBuilder builder, EdmType type) { AppendEscapedQualifiedName(builder, type.NamespaceName, type.Name); } // effects: Modifies builder to contain an escaped version of "namespc.name" internal static void AppendEscapedQualifiedName(StringBuilder builder, string namespc, string name) { AppendEscapedName(builder, namespc); builder.Append('.'); AppendEscapedName(builder, name); } // effects: Modifies builder to contain an escaped version of "name" internal static void AppendEscapedName(StringBuilder builder, string name) { if (s_wordIdentifierRegex.IsMatch(name) && false == ExternalCalls.IsReservedKeyword(name)) { // We do not need to escape the name if it is a simple name and it is not a keyword builder.Append(name); } else { string newName = name.Replace("]", "]]"); builder.Append('[') .Append(newName) .Append(']'); } } #endregion } } // 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
- GPRECTF.cs
- FileDetails.cs
- NotSupportedException.cs
- UnSafeCharBuffer.cs
- ExpandCollapsePattern.cs
- ToolStripContentPanel.cs
- BrowsableAttribute.cs
- QilStrConcatenator.cs
- XmlSchemaDatatype.cs
- ListViewTableRow.cs
- GrammarBuilderRuleRef.cs
- GridViewColumn.cs
- CallSite.cs
- BitmapPalette.cs
- ContentPropertyAttribute.cs
- WorkflowInstance.cs
- PointConverter.cs
- WebPartConnectionCollection.cs
- DataTableCollection.cs
- RowToParametersTransformer.cs
- SHA384.cs
- DesignTimeTemplateParser.cs
- TransformGroup.cs
- DataGridViewBand.cs
- PipelineModuleStepContainer.cs
- Point.cs
- XmlSchemaResource.cs
- StrongTypingException.cs
- CodeExporter.cs
- OracleCommandSet.cs
- TypefaceMap.cs
- SubtreeProcessor.cs
- NameValueConfigurationElement.cs
- InlineUIContainer.cs
- Int64KeyFrameCollection.cs
- HandlerMappingMemo.cs
- DataGridViewUtilities.cs
- OpCellTreeNode.cs
- ScriptIgnoreAttribute.cs
- ThreadNeutralSemaphore.cs
- InstanceLockedException.cs
- GridView.cs
- FragmentQueryKB.cs
- TextFindEngine.cs
- TabItemAutomationPeer.cs
- GenericArgumentsUpdater.cs
- DataGridHeaderBorder.cs
- ConfigurationLocation.cs
- MulticastOption.cs
- DisplayClaim.cs
- TransformerInfo.cs
- ComboBoxAutomationPeer.cs
- ExpressionQuoter.cs
- TrustVersion.cs
- Merger.cs
- ExceptionHandler.cs
- ImageMapEventArgs.cs
- UriScheme.cs
- QueryOperatorEnumerator.cs
- XPathNavigatorReader.cs
- ActivityTypeResolver.xaml.cs
- ProfessionalColors.cs
- GeometryDrawing.cs
- Dynamic.cs
- CategoryValueConverter.cs
- DbBuffer.cs
- HttpRequestCacheValidator.cs
- DBSqlParserColumn.cs
- VisualStyleRenderer.cs
- ContractMethodInfo.cs
- PenContext.cs
- SecurityPermission.cs
- Paragraph.cs
- BindUriHelper.cs
- SemaphoreSecurity.cs
- TryLoadRunnableWorkflowCommand.cs
- DataSourceControl.cs
- DataGridViewCellParsingEventArgs.cs
- UIElementPropertyUndoUnit.cs
- InstalledFontCollection.cs
- QilFunction.cs
- TemplateContent.cs
- DocumentsTrace.cs
- RequestResizeEvent.cs
- PaintEvent.cs
- NumberFunctions.cs
- CompModSwitches.cs
- TextEditorTables.cs
- DBAsyncResult.cs
- DataBinding.cs
- BaseValidatorDesigner.cs
- TableDetailsRow.cs
- CheckedListBox.cs
- LocalValueEnumerator.cs
- ImmutableCollection.cs
- WebFormDesignerActionService.cs
- XmlReaderSettings.cs
- ImpersonateTokenRef.cs
- ObjectStateEntry.cs
- SqlGenericUtil.cs