Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Speech / Src / Recognition / SrgsGrammar / SrgsElementFactory.cs / 1 / SrgsElementFactory.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: // // History: // 5/1/2004 jeanfp Created from the Kurosawa Code //--------------------------------------------------------------------------- #region Using directives using System; using System.Speech.Internal; using System.Speech.Internal.SrgsParser; #endregion namespace System.Speech.Recognition.SrgsGrammar { internal class SrgsElementFactory : IElementFactory { internal SrgsElementFactory (SrgsGrammar grammar) { _grammar = grammar; } ////// Clear all the rules /// void IElementFactory.RemoveAllRules () { } IPropertyTag IElementFactory.CreatePropertyTag (IElement parent) { return (IPropertyTag) new SrgsNameValueTag (); } ISemanticTag IElementFactory.CreateSemanticTag (IElement parent) { return (ISemanticTag) new SrgsSemanticInterpretationTag (); } IElementText IElementFactory.CreateText (IElement parent, string value) { return (IElementText) new SrgsText (value); } IToken IElementFactory.CreateToken (IElement parent, string content, string pronunciation, string display, float reqConfidence) { SrgsToken token = new SrgsToken (content); if (!string.IsNullOrEmpty (pronunciation)) { // Check if the pronunciations are ok string sPron = pronunciation; for (int iCurPron = 0, iDeliminator = 0; iCurPron < sPron.Length; iCurPron = iDeliminator + 1) { // Find semi-colon deliminator and replace with null iDeliminator = pronunciation.IndexOfAny (_pronSeparator, iCurPron); if (iDeliminator == -1) { iDeliminator = sPron.Length; } string sSubPron = sPron.Substring (iCurPron, iDeliminator - iCurPron); // make sure this goes through switch (_grammar.PhoneticAlphabet) { case AlphabetType.Sapi: sSubPron = PhonemeConverter.ConvertPronToId (sSubPron, _grammar.Culture.LCID); break; case AlphabetType.Ipa: PhonemeConverter.ValidateUpsIds (sSubPron); break; case AlphabetType.Ups: sSubPron = PhonemeConverter.UpsConverter.ConvertPronToId (sSubPron); break; } } token.Pronunciation = pronunciation; } if (!string.IsNullOrEmpty (display)) { token.Display = display; } if (reqConfidence >= 0) { throw new NotSupportedException (SR.Get (SRID.ReqConfidenceNotSupported)); } return (IToken) token; } IItem IElementFactory.CreateItem (IElement parent, IRule rule, int minRepeat, int maxRepeat, float repeatProbability, float weight) { SrgsItem item = new SrgsItem (); if (minRepeat != 1 || maxRepeat != 1) { item.SetRepeat (minRepeat, maxRepeat); } item.RepeatProbability = repeatProbability; item.Weight = weight; return (IItem) item; } IRuleRef IElementFactory.CreateRuleRef (IElement parent, Uri srgsUri) { return (IRuleRef) new SrgsRuleRef (srgsUri); } IRuleRef IElementFactory.CreateRuleRef (IElement parent, Uri srgsUri, string semanticKey, string parameters) { return (IRuleRef) new SrgsRuleRef (semanticKey, parameters, srgsUri); } IOneOf IElementFactory.CreateOneOf (IElement parent, IRule rule) { return (IOneOf) new SrgsOneOf (); } ISubset IElementFactory.CreateSubset (IElement parent, string text, MatchMode matchMode) { SubsetMatchingMode matchingMode = SubsetMatchingMode.Subsequence; switch (matchMode) { case MatchMode.OrderedSubset: matchingMode = SubsetMatchingMode.OrderedSubset; break; case MatchMode.OrderedSubsetContentRequired: matchingMode = SubsetMatchingMode.OrderedSubsetContentRequired; break; case MatchMode.Subsequence: matchingMode = SubsetMatchingMode.Subsequence; break; case MatchMode.SubsequenceContentRequired: matchingMode = SubsetMatchingMode.SubsequenceContentRequired; break; } return (ISubset) new SrgsSubset (text, matchingMode); } void IElementFactory.InitSpecialRuleRef (IElement parent, IRuleRef special) { } #if !NO_STG void IElementFactory.AddScript (IGrammar grammar, string sRule, string code) { SrgsGrammar srgsGrammar = (SrgsGrammar) grammar; SrgsRule rule = srgsGrammar.Rules [sRule]; if (rule != null) { rule.Script = rule.Script + code; } else { srgsGrammar.AddScript (sRule, code); } } string IElementFactory.AddScript (IGrammar grammar, string sRule, string code, string filename, int line) { return code; } void IElementFactory.AddScript (IGrammar grammar, string script, string filename, int line) { SrgsGrammar srgsGrammar = (SrgsGrammar) grammar; srgsGrammar.AddScript (null, script); } #endif void IElementFactory.AddItem (IOneOf oneOf, IItem value) { ((SrgsOneOf) oneOf).Add ((SrgsItem) value); } void IElementFactory.AddElement (IRule rule, IElement value) { ((SrgsRule) rule).Elements.Add ((SrgsElement) value); } void IElementFactory.AddElement (IItem item, IElement value) { ((SrgsItem) item).Elements.Add ((SrgsElement) value); } IGrammar IElementFactory.Grammar { get { return _grammar; } } IRuleRef IElementFactory.Null { get { return SrgsRuleRef.Null; } } IRuleRef IElementFactory.Void { get { return SrgsRuleRef.Void; } } IRuleRef IElementFactory.Garbage { get { return SrgsRuleRef.Garbage; } } private SrgsGrammar _grammar; private static readonly char [] _pronSeparator = new char [] { ' ', '\t', '\n', '\r', ';' }; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: // // History: // 5/1/2004 jeanfp Created from the Kurosawa Code //--------------------------------------------------------------------------- #region Using directives using System; using System.Speech.Internal; using System.Speech.Internal.SrgsParser; #endregion namespace System.Speech.Recognition.SrgsGrammar { internal class SrgsElementFactory : IElementFactory { internal SrgsElementFactory (SrgsGrammar grammar) { _grammar = grammar; } ////// Clear all the rules /// void IElementFactory.RemoveAllRules () { } IPropertyTag IElementFactory.CreatePropertyTag (IElement parent) { return (IPropertyTag) new SrgsNameValueTag (); } ISemanticTag IElementFactory.CreateSemanticTag (IElement parent) { return (ISemanticTag) new SrgsSemanticInterpretationTag (); } IElementText IElementFactory.CreateText (IElement parent, string value) { return (IElementText) new SrgsText (value); } IToken IElementFactory.CreateToken (IElement parent, string content, string pronunciation, string display, float reqConfidence) { SrgsToken token = new SrgsToken (content); if (!string.IsNullOrEmpty (pronunciation)) { // Check if the pronunciations are ok string sPron = pronunciation; for (int iCurPron = 0, iDeliminator = 0; iCurPron < sPron.Length; iCurPron = iDeliminator + 1) { // Find semi-colon deliminator and replace with null iDeliminator = pronunciation.IndexOfAny (_pronSeparator, iCurPron); if (iDeliminator == -1) { iDeliminator = sPron.Length; } string sSubPron = sPron.Substring (iCurPron, iDeliminator - iCurPron); // make sure this goes through switch (_grammar.PhoneticAlphabet) { case AlphabetType.Sapi: sSubPron = PhonemeConverter.ConvertPronToId (sSubPron, _grammar.Culture.LCID); break; case AlphabetType.Ipa: PhonemeConverter.ValidateUpsIds (sSubPron); break; case AlphabetType.Ups: sSubPron = PhonemeConverter.UpsConverter.ConvertPronToId (sSubPron); break; } } token.Pronunciation = pronunciation; } if (!string.IsNullOrEmpty (display)) { token.Display = display; } if (reqConfidence >= 0) { throw new NotSupportedException (SR.Get (SRID.ReqConfidenceNotSupported)); } return (IToken) token; } IItem IElementFactory.CreateItem (IElement parent, IRule rule, int minRepeat, int maxRepeat, float repeatProbability, float weight) { SrgsItem item = new SrgsItem (); if (minRepeat != 1 || maxRepeat != 1) { item.SetRepeat (minRepeat, maxRepeat); } item.RepeatProbability = repeatProbability; item.Weight = weight; return (IItem) item; } IRuleRef IElementFactory.CreateRuleRef (IElement parent, Uri srgsUri) { return (IRuleRef) new SrgsRuleRef (srgsUri); } IRuleRef IElementFactory.CreateRuleRef (IElement parent, Uri srgsUri, string semanticKey, string parameters) { return (IRuleRef) new SrgsRuleRef (semanticKey, parameters, srgsUri); } IOneOf IElementFactory.CreateOneOf (IElement parent, IRule rule) { return (IOneOf) new SrgsOneOf (); } ISubset IElementFactory.CreateSubset (IElement parent, string text, MatchMode matchMode) { SubsetMatchingMode matchingMode = SubsetMatchingMode.Subsequence; switch (matchMode) { case MatchMode.OrderedSubset: matchingMode = SubsetMatchingMode.OrderedSubset; break; case MatchMode.OrderedSubsetContentRequired: matchingMode = SubsetMatchingMode.OrderedSubsetContentRequired; break; case MatchMode.Subsequence: matchingMode = SubsetMatchingMode.Subsequence; break; case MatchMode.SubsequenceContentRequired: matchingMode = SubsetMatchingMode.SubsequenceContentRequired; break; } return (ISubset) new SrgsSubset (text, matchingMode); } void IElementFactory.InitSpecialRuleRef (IElement parent, IRuleRef special) { } #if !NO_STG void IElementFactory.AddScript (IGrammar grammar, string sRule, string code) { SrgsGrammar srgsGrammar = (SrgsGrammar) grammar; SrgsRule rule = srgsGrammar.Rules [sRule]; if (rule != null) { rule.Script = rule.Script + code; } else { srgsGrammar.AddScript (sRule, code); } } string IElementFactory.AddScript (IGrammar grammar, string sRule, string code, string filename, int line) { return code; } void IElementFactory.AddScript (IGrammar grammar, string script, string filename, int line) { SrgsGrammar srgsGrammar = (SrgsGrammar) grammar; srgsGrammar.AddScript (null, script); } #endif void IElementFactory.AddItem (IOneOf oneOf, IItem value) { ((SrgsOneOf) oneOf).Add ((SrgsItem) value); } void IElementFactory.AddElement (IRule rule, IElement value) { ((SrgsRule) rule).Elements.Add ((SrgsElement) value); } void IElementFactory.AddElement (IItem item, IElement value) { ((SrgsItem) item).Elements.Add ((SrgsElement) value); } IGrammar IElementFactory.Grammar { get { return _grammar; } } IRuleRef IElementFactory.Null { get { return SrgsRuleRef.Null; } } IRuleRef IElementFactory.Void { get { return SrgsRuleRef.Void; } } IRuleRef IElementFactory.Garbage { get { return SrgsRuleRef.Garbage; } } private SrgsGrammar _grammar; private static readonly char [] _pronSeparator = new char [] { ' ', '\t', '\n', '\r', ';' }; } } // 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
- XmlSerializerSection.cs
- Selection.cs
- SvcMapFile.cs
- SmiMetaData.cs
- RegisteredDisposeScript.cs
- TextTreeInsertElementUndoUnit.cs
- TextWriterTraceListener.cs
- LocatorBase.cs
- CheckPair.cs
- BitmapSourceSafeMILHandle.cs
- XmlSchemaSimpleType.cs
- TextSpanModifier.cs
- DesignerActionListCollection.cs
- ClientSideQueueItem.cs
- TabItem.cs
- CollectionDataContractAttribute.cs
- SaveFileDialog.cs
- RootBrowserWindowProxy.cs
- LayoutTable.cs
- UICuesEvent.cs
- OutputCacheModule.cs
- TreeViewImageKeyConverter.cs
- WindowsGraphics.cs
- FormatterConverter.cs
- _ConnectionGroup.cs
- SafeCoTaskMem.cs
- AbandonedMutexException.cs
- TreeViewTemplateSelector.cs
- EnumValAlphaComparer.cs
- XmlHierarchyData.cs
- CompiledELinqQueryState.cs
- HttpDictionary.cs
- ContextMarshalException.cs
- IndexerReference.cs
- TreeIterator.cs
- RenameRuleObjectDialog.cs
- URLIdentityPermission.cs
- SHA384.cs
- TypeUtil.cs
- CodeDomConfigurationHandler.cs
- StyleCollection.cs
- AdPostCacheSubstitution.cs
- FunctionNode.cs
- path.cs
- AssemblyBuilder.cs
- RuleAction.cs
- PersonalizationState.cs
- DataGrid.cs
- XhtmlCssHandler.cs
- ScrollChangedEventArgs.cs
- DescendentsWalker.cs
- MergeLocalizationDirectives.cs
- AxWrapperGen.cs
- MailDefinition.cs
- CodeArgumentReferenceExpression.cs
- ToolBarTray.cs
- securestring.cs
- XpsImage.cs
- AssemblyFilter.cs
- ArgumentValue.cs
- InvokeSchedule.cs
- SafeEventLogWriteHandle.cs
- PageStatePersister.cs
- DecimalConstantAttribute.cs
- SettingsPropertyIsReadOnlyException.cs
- SqlBulkCopy.cs
- WeakReferenceList.cs
- Image.cs
- StateWorkerRequest.cs
- ListViewItem.cs
- TraceLevelStore.cs
- Utilities.cs
- DesignerVerbCollection.cs
- InternalBufferManager.cs
- StringAttributeCollection.cs
- DataGrid.cs
- ToolStripItemEventArgs.cs
- CalendarDay.cs
- MiniParameterInfo.cs
- Size3D.cs
- FontClient.cs
- GetReadStreamResult.cs
- cookiecollection.cs
- Property.cs
- FamilyMapCollection.cs
- ComponentDispatcher.cs
- RsaSecurityTokenParameters.cs
- LifetimeServices.cs
- SQLBytesStorage.cs
- DataViewSettingCollection.cs
- newinstructionaction.cs
- thaishape.cs
- OperationInfo.cs
- DictionaryEntry.cs
- QuadraticEase.cs
- StringResourceManager.cs
- BidOverLoads.cs
- MsmqTransportSecurityElement.cs
- ContentAlignmentEditor.cs
- FigureParaClient.cs