Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Core / CSharp / MS / Internal / Ink / InkSerializedFormat / HuffModule.cs / 1 / HuffModule.cs
using MS.Utility;
using System;
using System.Runtime.InteropServices;
using System.Security;
using System.Globalization;
using System.Windows;
using System.Windows.Input;
using System.Windows.Ink;
using MS.Internal.Ink.InkSerializedFormat;
using System.Collections.Generic;
using SR = MS.Internal.PresentationCore.SR;
using SRID = MS.Internal.PresentationCore.SRID;
namespace MS.Internal.Ink.InkSerializedFormat
{
///
/// HuffModule
///
internal class HuffModule
{
///
/// Ctor
///
internal HuffModule()
{
}
///
/// GetDefCodec
///
internal HuffCodec GetDefCodec(uint index)
{
HuffCodec huffCodec = null;
if (AlgoModule.DefaultBAACount > index)
{
huffCodec = _defaultHuffCodecs[index];
if (huffCodec == null)
{
huffCodec = new HuffCodec(index);
_defaultHuffCodecs[index] = huffCodec;
}
}
else
{
throw new ArgumentOutOfRangeException("index");
}
return huffCodec;
}
///
/// FindCodec
///
///
internal HuffCodec FindCodec(byte algoData)
{
byte codec = (byte)(algoData & 0x1f);
//unused
//if ((0x20 & algoData) != 0)
//{
// int iLookup = (algoData & 0x1f);
// if ((iLookup > 0) && (iLookup <= _lookupList.Count))
// {
// codec = _lookupList[iLookup - 1].Byte;
// }
//}
if (codec < AlgoModule.DefaultBAACount)
{
return GetDefCodec((uint)codec);
}
if ((int)codec >= _huffCodecs.Count + AlgoModule.DefaultBAACount)
{
throw new ArgumentException(StrokeCollectionSerializer.ISFDebugMessage("invalid codec computed"));
}
return _huffCodecs[(int)(codec - AlgoModule.DefaultBAACount)];
}
///
/// FindDtXf
///
///
internal DataXform FindDtXf(byte algoData)
{
//unused
//if ((0x20 & algoData) != 0)
//{
// int lookupIndex = (int)(algoData & 0x1f);
// if ((lookupIndex > 0) && (lookupIndex < _lookupList.Count))
// {
// return _lookupList[lookupIndex].DeltaDelta;
// }
//}
return this.DefaultDeltaDelta;
}
///
/// Private lazy init'd
///
private DeltaDelta DefaultDeltaDelta
{
get
{
if (_defaultDtxf == null)
{
_defaultDtxf = new DeltaDelta();
}
return _defaultDtxf;
}
}
///
/// Privates
///
private DeltaDelta _defaultDtxf;
//unused
//private List _lookupList = new List();
private List _huffCodecs = new List();
private HuffCodec[] _defaultHuffCodecs = new HuffCodec[AlgoModule.DefaultBAACount];
//unused
/////
///// Simple helper class
/////
//private class CodeLookup
//{
// internal CodeLookup(DeltaDelta dd, byte b)
// {
// if (dd == null) { throw new ArgumentNullException(); }
// DeltaDelta = dd;
// Byte = b;
// }
// internal DeltaDelta DeltaDelta;
// internal Byte Byte;
//}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
using MS.Utility;
using System;
using System.Runtime.InteropServices;
using System.Security;
using System.Globalization;
using System.Windows;
using System.Windows.Input;
using System.Windows.Ink;
using MS.Internal.Ink.InkSerializedFormat;
using System.Collections.Generic;
using SR = MS.Internal.PresentationCore.SR;
using SRID = MS.Internal.PresentationCore.SRID;
namespace MS.Internal.Ink.InkSerializedFormat
{
///
/// HuffModule
///
internal class HuffModule
{
///
/// Ctor
///
internal HuffModule()
{
}
///
/// GetDefCodec
///
internal HuffCodec GetDefCodec(uint index)
{
HuffCodec huffCodec = null;
if (AlgoModule.DefaultBAACount > index)
{
huffCodec = _defaultHuffCodecs[index];
if (huffCodec == null)
{
huffCodec = new HuffCodec(index);
_defaultHuffCodecs[index] = huffCodec;
}
}
else
{
throw new ArgumentOutOfRangeException("index");
}
return huffCodec;
}
///
/// FindCodec
///
///
internal HuffCodec FindCodec(byte algoData)
{
byte codec = (byte)(algoData & 0x1f);
//unused
//if ((0x20 & algoData) != 0)
//{
// int iLookup = (algoData & 0x1f);
// if ((iLookup > 0) && (iLookup <= _lookupList.Count))
// {
// codec = _lookupList[iLookup - 1].Byte;
// }
//}
if (codec < AlgoModule.DefaultBAACount)
{
return GetDefCodec((uint)codec);
}
if ((int)codec >= _huffCodecs.Count + AlgoModule.DefaultBAACount)
{
throw new ArgumentException(StrokeCollectionSerializer.ISFDebugMessage("invalid codec computed"));
}
return _huffCodecs[(int)(codec - AlgoModule.DefaultBAACount)];
}
///
/// FindDtXf
///
///
internal DataXform FindDtXf(byte algoData)
{
//unused
//if ((0x20 & algoData) != 0)
//{
// int lookupIndex = (int)(algoData & 0x1f);
// if ((lookupIndex > 0) && (lookupIndex < _lookupList.Count))
// {
// return _lookupList[lookupIndex].DeltaDelta;
// }
//}
return this.DefaultDeltaDelta;
}
///
/// Private lazy init'd
///
private DeltaDelta DefaultDeltaDelta
{
get
{
if (_defaultDtxf == null)
{
_defaultDtxf = new DeltaDelta();
}
return _defaultDtxf;
}
}
///
/// Privates
///
private DeltaDelta _defaultDtxf;
//unused
//private List _lookupList = new List();
private List _huffCodecs = new List();
private HuffCodec[] _defaultHuffCodecs = new HuffCodec[AlgoModule.DefaultBAACount];
//unused
/////
///// Simple helper class
/////
//private class CodeLookup
//{
// internal CodeLookup(DeltaDelta dd, byte b)
// {
// if (dd == null) { throw new ArgumentNullException(); }
// DeltaDelta = dd;
// Byte = b;
// }
// internal DeltaDelta DeltaDelta;
// internal Byte Byte;
//}
}
}
// 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
- GeneralTransform3DCollection.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- GZipStream.cs
- ClientBuildManagerCallback.cs
- ColumnReorderedEventArgs.cs
- MsmqIntegrationBindingElement.cs
- ProfileProvider.cs
- CreateUserErrorEventArgs.cs
- DisplayNameAttribute.cs
- ProcessInputEventArgs.cs
- DataFormats.cs
- M3DUtil.cs
- InvalidOleVariantTypeException.cs
- StrokeNode.cs
- ByeMessage11.cs
- BackgroundWorker.cs
- BlobPersonalizationState.cs
- BezierSegment.cs
- BaseCollection.cs
- ReferentialConstraint.cs
- HttpRawResponse.cs
- SqlTriggerContext.cs
- ErrorStyle.cs
- VisualStyleTypesAndProperties.cs
- DocumentXmlWriter.cs
- DataServiceStreamProviderWrapper.cs
- SiteMapSection.cs
- util.cs
- Storyboard.cs
- LoggedException.cs
- CultureTable.cs
- HMACSHA512.cs
- PerformanceCounter.cs
- DateTimeSerializationSection.cs
- TabletDevice.cs
- MessagePartDescription.cs
- XmlSchemaRedefine.cs
- GeometryHitTestResult.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- ProtocolsConfigurationEntry.cs
- WorkflowInstanceExtensionManager.cs
- DataGridView.cs
- TextServicesLoader.cs
- EventHandlerList.cs
- MimeTextImporter.cs
- Int32Converter.cs
- NumericPagerField.cs
- ClientRolePrincipal.cs
- BidOverLoads.cs
- MemberBinding.cs
- IPCCacheManager.cs
- SecuritySessionSecurityTokenAuthenticator.cs
- MessageBodyDescription.cs
- AssociationProvider.cs
- WCFBuildProvider.cs
- OleDbParameter.cs
- DistributedTransactionPermission.cs
- SpecialNameAttribute.cs
- Quaternion.cs
- ValuePattern.cs
- SendActivityEventArgs.cs
- ReadOnlyHierarchicalDataSource.cs
- EnumConverter.cs
- Vector3D.cs
- LayoutExceptionEventArgs.cs
- MediaElementAutomationPeer.cs
- JsonCollectionDataContract.cs
- AuthenticationModuleElementCollection.cs
- ProjectionPruner.cs
- InputScopeAttribute.cs
- ProcessInfo.cs
- TemplatedMailWebEventProvider.cs
- iisPickupDirectory.cs
- Win32SafeHandles.cs
- SectionVisual.cs
- CounterCreationDataCollection.cs
- MsmqMessage.cs
- ListViewItemMouseHoverEvent.cs
- IImplicitResourceProvider.cs
- TypeValidationEventArgs.cs
- SqlDataReaderSmi.cs
- NativeMethods.cs
- RankException.cs
- AccessedThroughPropertyAttribute.cs
- ExtensionFile.cs
- PassportAuthenticationModule.cs
- X509AsymmetricSecurityKey.cs
- WmlValidationSummaryAdapter.cs
- StrongNamePublicKeyBlob.cs
- NativeMethods.cs
- CommandDevice.cs
- HttpRequest.cs
- WeakReference.cs
- RectangleGeometry.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- HttpResponseWrapper.cs
- LineGeometry.cs
- ComPlusTypeLoader.cs
- Regex.cs
- TextRange.cs