Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Speech / Src / Internal / SapiInterop / sapiproxy.cs / 1 / sapiproxy.cs
//------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // // // All the calls to SAPI interfaces are wraped into the class 'SapiRecognizer', // 'SapiContext' and 'SapiGrammar'. // // The SAPI call are executed in the context of a proxy that is either a // pass-through or forward the request to an MTA thread for SAPI 5.1 // // History: // 4/1/2006 jeanfp //----------------------------------------------------------------- using System; using System.Collections.Generic; using System.Text; using System.Threading; using System.Runtime.InteropServices; namespace System.Speech.Internal.SapiInterop { internal abstract class SapiProxy : IDisposable { //******************************************************************* // // Constructors // //******************************************************************* #region Constructors public virtual void Dispose () { GC.SuppressFinalize (this); } #endregion //******************************************************************** // // Internal Methods // //******************************************************************* #region Internal Methods internal abstract object Invoke (ObjectDelegate pfn); internal abstract void Invoke2 (VoidDelegate pfn); #endregion //******************************************************************** // // Internal Properties // //******************************************************************** #region Internal Properties internal ISpRecognizer Recognizer { get { return _recognizer; } } internal ISpRecognizer2 Recognizer2 { get { if (_recognizer2 == null) { _recognizer2 = (ISpRecognizer2) _recognizer; } return _recognizer2; } } internal ISpeechRecognizer SapiSpeechRecognizer { get { if (_speechRecognizer == null) { _speechRecognizer = (ISpeechRecognizer) _recognizer; } return _speechRecognizer; } } #endregion //******************************************************************* // // Protected Fields // //******************************************************************** #region Protected Fields protected ISpeechRecognizer _speechRecognizer; protected ISpRecognizer2 _recognizer2; protected ISpRecognizer _recognizer; #endregion //******************************************************************* // // Internal Types // //******************************************************************* #region Protected Fields internal class PassThrough : SapiProxy, IDisposable { //******************************************************************* // // Constructors // //******************************************************************** #region Constructors internal PassThrough (ISpRecognizer recognizer) { _recognizer = recognizer; } ~PassThrough () { Dispose (false); } public override void Dispose () { try { Dispose (true); } finally { base.Dispose (); } } #endregion //******************************************************************* // // Internal Methods // //******************************************************************** #region Internal Methods override internal object Invoke (ObjectDelegate pfn) { return pfn.Invoke (); } override internal void Invoke2 (VoidDelegate pfn) { pfn.Invoke (); } #endregion //******************************************************************** // // Private Methods // //******************************************************************* #region Private Methods private void Dispose (bool disposing) { _recognizer2 = null; _speechRecognizer = null; Marshal.ReleaseComObject (_recognizer); } #endregion } #if !SPEECHSERVER #pragma warning disable 1634, 1691 // Allows suppression of certain PreSharp messages. #pragma warning disable 56500 // Remove all the catch all statements warnings used by the interop layer internal class MTAThread : SapiProxy, IDisposable { //******************************************************************** // // Constructors // //******************************************************************* #region Constructors internal MTAThread (SapiRecognizer.RecognizerType type) { _mta = new Thread (new ThreadStart (SapiMTAThread)); if (!_mta.TrySetApartmentState (ApartmentState.MTA)) { throw new InvalidOperationException (); } _mta.IsBackground = true; _mta.Start (); if (type == SapiRecognizer.RecognizerType.InProc) { Invoke2 (delegate { _recognizer = (ISpRecognizer) new SpInprocRecognizer (); }); } else { Invoke2 (delegate { _recognizer = (ISpRecognizer) new SpSharedRecognizer (); }); } } ~MTAThread () { Dispose (false); } public override void Dispose () { try { Dispose (true); } finally { base.Dispose (); } } #endregion //******************************************************************* // // Internal Methods // //******************************************************************* #region Internal Methods override internal object Invoke (ObjectDelegate pfn) { lock (this) { _doit = pfn; _process.Set (); _done.WaitOne (); if (_exception == null) { return _result; } else { throw _exception; } } } override internal void Invoke2 (VoidDelegate pfn) { lock (this) { _doit2 = pfn; _process.Set (); _done.WaitOne (); if (_exception != null) { throw _exception; } } } #endregion //******************************************************************** // // Private Methods // //******************************************************************* #region Private Methods private void Dispose (bool disposing) { lock (this) { _recognizer2 = null; _speechRecognizer = null; Invoke2 (delegate { Marshal.ReleaseComObject (_recognizer); }); ((IDisposable) _process).Dispose (); ((IDisposable) _done).Dispose (); _mta.Abort (); } base.Dispose (); } private void SapiMTAThread () { while (true) { try { _process.WaitOne (); _exception = null; if (_doit != null) { _result = _doit.Invoke (); _doit = null; } else { _doit2.Invoke (); _doit2 = null; } } catch (Exception e) { _exception = e; } _done.Set (); } } #endregion //******************************************************************** // // Private Fields // //******************************************************************** #region Private Fields private Thread _mta; private AutoResetEvent _process = new AutoResetEvent (false); private AutoResetEvent _done = new AutoResetEvent (false); private ObjectDelegate _doit; private VoidDelegate _doit2; private object _result; private Exception _exception; #endregion } #endif internal delegate object ObjectDelegate (); internal delegate void VoidDelegate (); } #endregion } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // // // All the calls to SAPI interfaces are wraped into the class 'SapiRecognizer', // 'SapiContext' and 'SapiGrammar'. // // The SAPI call are executed in the context of a proxy that is either a // pass-through or forward the request to an MTA thread for SAPI 5.1 // // History: // 4/1/2006 jeanfp //----------------------------------------------------------------- using System; using System.Collections.Generic; using System.Text; using System.Threading; using System.Runtime.InteropServices; namespace System.Speech.Internal.SapiInterop { internal abstract class SapiProxy : IDisposable { //******************************************************************* // // Constructors // //******************************************************************* #region Constructors public virtual void Dispose () { GC.SuppressFinalize (this); } #endregion //******************************************************************** // // Internal Methods // //******************************************************************* #region Internal Methods internal abstract object Invoke (ObjectDelegate pfn); internal abstract void Invoke2 (VoidDelegate pfn); #endregion //******************************************************************** // // Internal Properties // //******************************************************************** #region Internal Properties internal ISpRecognizer Recognizer { get { return _recognizer; } } internal ISpRecognizer2 Recognizer2 { get { if (_recognizer2 == null) { _recognizer2 = (ISpRecognizer2) _recognizer; } return _recognizer2; } } internal ISpeechRecognizer SapiSpeechRecognizer { get { if (_speechRecognizer == null) { _speechRecognizer = (ISpeechRecognizer) _recognizer; } return _speechRecognizer; } } #endregion //******************************************************************* // // Protected Fields // //******************************************************************** #region Protected Fields protected ISpeechRecognizer _speechRecognizer; protected ISpRecognizer2 _recognizer2; protected ISpRecognizer _recognizer; #endregion //******************************************************************* // // Internal Types // //******************************************************************* #region Protected Fields internal class PassThrough : SapiProxy, IDisposable { //******************************************************************* // // Constructors // //******************************************************************** #region Constructors internal PassThrough (ISpRecognizer recognizer) { _recognizer = recognizer; } ~PassThrough () { Dispose (false); } public override void Dispose () { try { Dispose (true); } finally { base.Dispose (); } } #endregion //******************************************************************* // // Internal Methods // //******************************************************************** #region Internal Methods override internal object Invoke (ObjectDelegate pfn) { return pfn.Invoke (); } override internal void Invoke2 (VoidDelegate pfn) { pfn.Invoke (); } #endregion //******************************************************************** // // Private Methods // //******************************************************************* #region Private Methods private void Dispose (bool disposing) { _recognizer2 = null; _speechRecognizer = null; Marshal.ReleaseComObject (_recognizer); } #endregion } #if !SPEECHSERVER #pragma warning disable 1634, 1691 // Allows suppression of certain PreSharp messages. #pragma warning disable 56500 // Remove all the catch all statements warnings used by the interop layer internal class MTAThread : SapiProxy, IDisposable { //******************************************************************** // // Constructors // //******************************************************************* #region Constructors internal MTAThread (SapiRecognizer.RecognizerType type) { _mta = new Thread (new ThreadStart (SapiMTAThread)); if (!_mta.TrySetApartmentState (ApartmentState.MTA)) { throw new InvalidOperationException (); } _mta.IsBackground = true; _mta.Start (); if (type == SapiRecognizer.RecognizerType.InProc) { Invoke2 (delegate { _recognizer = (ISpRecognizer) new SpInprocRecognizer (); }); } else { Invoke2 (delegate { _recognizer = (ISpRecognizer) new SpSharedRecognizer (); }); } } ~MTAThread () { Dispose (false); } public override void Dispose () { try { Dispose (true); } finally { base.Dispose (); } } #endregion //******************************************************************* // // Internal Methods // //******************************************************************* #region Internal Methods override internal object Invoke (ObjectDelegate pfn) { lock (this) { _doit = pfn; _process.Set (); _done.WaitOne (); if (_exception == null) { return _result; } else { throw _exception; } } } override internal void Invoke2 (VoidDelegate pfn) { lock (this) { _doit2 = pfn; _process.Set (); _done.WaitOne (); if (_exception != null) { throw _exception; } } } #endregion //******************************************************************** // // Private Methods // //******************************************************************* #region Private Methods private void Dispose (bool disposing) { lock (this) { _recognizer2 = null; _speechRecognizer = null; Invoke2 (delegate { Marshal.ReleaseComObject (_recognizer); }); ((IDisposable) _process).Dispose (); ((IDisposable) _done).Dispose (); _mta.Abort (); } base.Dispose (); } private void SapiMTAThread () { while (true) { try { _process.WaitOne (); _exception = null; if (_doit != null) { _result = _doit.Invoke (); _doit = null; } else { _doit2.Invoke (); _doit2 = null; } } catch (Exception e) { _exception = e; } _done.Set (); } } #endregion //******************************************************************** // // Private Fields // //******************************************************************** #region Private Fields private Thread _mta; private AutoResetEvent _process = new AutoResetEvent (false); private AutoResetEvent _done = new AutoResetEvent (false); private ObjectDelegate _doit; private VoidDelegate _doit2; private object _result; private Exception _exception; #endregion } #endif internal delegate object ObjectDelegate (); internal delegate void VoidDelegate (); } #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
- BevelBitmapEffect.cs
- DeviceContext2.cs
- SqlTopReducer.cs
- WebPartMinimizeVerb.cs
- MatrixTransform.cs
- AuthenticationConfig.cs
- util.cs
- DeleteMemberBinder.cs
- Literal.cs
- datacache.cs
- CompositeCollectionView.cs
- FamilyMap.cs
- EmptyWorkItem.cs
- ApplicationDirectory.cs
- HMACSHA512.cs
- DoubleAnimation.cs
- MediaPlayer.cs
- StreamWriter.cs
- ReversePositionQuery.cs
- SmtpDigestAuthenticationModule.cs
- ToolStripPanelRenderEventArgs.cs
- Flattener.cs
- RegistryExceptionHelper.cs
- Converter.cs
- ObjectListTitleAttribute.cs
- PriorityQueue.cs
- HttpPostServerProtocol.cs
- Queue.cs
- SafeThemeHandle.cs
- WizardForm.cs
- SelectedDatesCollection.cs
- WebPartsSection.cs
- HttpApplicationStateWrapper.cs
- HttpRawResponse.cs
- DataGridViewRow.cs
- ExternalFile.cs
- GridViewColumnHeader.cs
- InputLangChangeRequestEvent.cs
- EventsTab.cs
- RelatedPropertyManager.cs
- AnnotationHighlightLayer.cs
- LabelEditEvent.cs
- NamespaceInfo.cs
- PropertyTabAttribute.cs
- DockingAttribute.cs
- RtfNavigator.cs
- BaseParser.cs
- SamlAssertionKeyIdentifierClause.cs
- BaseResourcesBuildProvider.cs
- DataColumnChangeEvent.cs
- ToolStripOverflowButton.cs
- Int32Rect.cs
- Wow64ConfigurationLoader.cs
- BitmapEffectDrawingContextState.cs
- LiteralLink.cs
- SqlDataReaderSmi.cs
- Math.cs
- UnsafeNativeMethods.cs
- SqlServer2KCompatibilityCheck.cs
- DependencyObjectType.cs
- ListDictionaryInternal.cs
- HtmlEncodedRawTextWriter.cs
- ModifiableIteratorCollection.cs
- Hashtable.cs
- XmlDigitalSignatureProcessor.cs
- BreadCrumbTextConverter.cs
- WebControlAdapter.cs
- ApplicationSettingsBase.cs
- WebPartDisplayModeEventArgs.cs
- SetterBase.cs
- DataGridViewImageCell.cs
- BookmarkOptionsHelper.cs
- Debug.cs
- Update.cs
- PropertyManager.cs
- PrintDialog.cs
- CompModHelpers.cs
- CngProperty.cs
- RemotingConfigParser.cs
- TextEditorCharacters.cs
- Substitution.cs
- DebugInfoExpression.cs
- EventOpcode.cs
- QilName.cs
- NamespaceEmitter.cs
- IssuedTokenClientCredential.cs
- SafeNativeMethods.cs
- DataGridViewColumnTypePicker.cs
- TemplatePagerField.cs
- IxmlLineInfo.cs
- DetailsView.cs
- DataRowCollection.cs
- WebPartDeleteVerb.cs
- Select.cs
- Rights.cs
- BitmapCodecInfoInternal.cs
- ClassicBorderDecorator.cs
- CancelRequestedQuery.cs
- MemoryStream.cs
- SQLDouble.cs