Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / Serialization / CodeIdentifiers.cs / 1 / CodeIdentifiers.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// [....]
//-----------------------------------------------------------------------------
namespace System.Xml.Serialization {
using System;
using System.Collections;
using System.IO;
using System.Globalization;
class CaseInsensitiveKeyComparer : CaseInsensitiveComparer, IEqualityComparer{
public CaseInsensitiveKeyComparer() : base(CultureInfo.CurrentCulture) {
}
bool IEqualityComparer.Equals(Object x, Object y) {
return (Compare(x, y) == 0);
}
int IEqualityComparer.GetHashCode(Object obj) {
string s = obj as string;
if (s == null)
throw new ArgumentException(null, "obj");
return s.ToUpper(CultureInfo.CurrentCulture).GetHashCode();
}
}
///
///
///
/// [To be supplied.]
///
public class CodeIdentifiers {
Hashtable identifiers;
Hashtable reservedIdentifiers;
ArrayList list;
bool camelCase;
public CodeIdentifiers() : this(true) {
}
public CodeIdentifiers(bool caseSensitive) {
if (caseSensitive) {
identifiers = new Hashtable();
reservedIdentifiers = new Hashtable();
}
else {
IEqualityComparer comparer = new CaseInsensitiveKeyComparer();
identifiers = new Hashtable(comparer);
reservedIdentifiers = new Hashtable(comparer);
}
list = new ArrayList();
}
///
public void Clear(){
identifiers.Clear();
list.Clear();
}
///
///
/// [To be supplied.]
///
public bool UseCamelCasing {
get { return camelCase; }
set { camelCase = value; }
}
///
///
/// [To be supplied.]
///
public string MakeRightCase(string identifier) {
if (camelCase)
return CodeIdentifier.MakeCamel(identifier);
else
return CodeIdentifier.MakePascal(identifier);
}
///
///
/// [To be supplied.]
///
public string MakeUnique(string identifier) {
if (IsInUse(identifier)) {
for (int i = 1; ; i++) {
string newIdentifier = identifier + i.ToString(CultureInfo.InvariantCulture);
if (!IsInUse(newIdentifier)) {
identifier = newIdentifier;
break;
}
}
}
// Check that we did not violate the identifier length after appending the suffix.
if (identifier.Length > CodeIdentifier.MaxIdentifierLength) {
return MakeUnique("Item");
}
return identifier;
}
///
///
/// [To be supplied.]
///
public void AddReserved(string identifier) {
reservedIdentifiers.Add(identifier, identifier);
}
///
///
/// [To be supplied.]
///
public void RemoveReserved(string identifier) {
reservedIdentifiers.Remove(identifier);
}
///
///
/// [To be supplied.]
///
public string AddUnique(string identifier, object value) {
identifier = MakeUnique(identifier);
Add(identifier, value);
return identifier;
}
///
///
/// [To be supplied.]
///
public bool IsInUse(string identifier) {
return identifiers.Contains(identifier) || reservedIdentifiers.Contains(identifier);
}
///
///
/// [To be supplied.]
///
public void Add(string identifier, object value) {
identifiers.Add(identifier, value);
list.Add(value);
}
///
///
/// [To be supplied.]
///
public void Remove(string identifier) {
list.Remove(identifiers[identifier]);
identifiers.Remove(identifier);
}
///
///
/// [To be supplied.]
///
public object ToArray(Type type) {
//Array array = Array.CreateInstance(type, identifiers.Values.Count);
//identifiers.Values.CopyTo(array, 0);
Array array = Array.CreateInstance(type, list.Count);
list.CopyTo(array, 0);
return array;
}
internal CodeIdentifiers Clone() {
CodeIdentifiers newIdentifiers = new CodeIdentifiers();
newIdentifiers.identifiers = (Hashtable)this.identifiers.Clone();
newIdentifiers.reservedIdentifiers = (Hashtable)this.reservedIdentifiers.Clone();
newIdentifiers.list = (ArrayList)this.list.Clone();
newIdentifiers.camelCase = this.camelCase;
return newIdentifiers;
}
}
}
// 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
- WebPartManagerDesigner.cs
- ListBindingHelper.cs
- RangeValueProviderWrapper.cs
- ForwardPositionQuery.cs
- CalculatedColumn.cs
- TypeNameParser.cs
- WeakReadOnlyCollection.cs
- Calendar.cs
- XpsS0ValidatingLoader.cs
- ServiceRoute.cs
- PageOutputColor.cs
- XmlLoader.cs
- HoistedLocals.cs
- BaseProcessProtocolHandler.cs
- SessionIDManager.cs
- EncodingDataItem.cs
- AuthenticationModulesSection.cs
- RadioButton.cs
- AutoGeneratedField.cs
- RealProxy.cs
- AccessViolationException.cs
- StructuralCache.cs
- DependencyObjectCodeDomSerializer.cs
- Random.cs
- CrossSiteScriptingValidation.cs
- ExpressionBuilder.cs
- InheritanceAttribute.cs
- ForeignKeyFactory.cs
- Accessors.cs
- InheritanceRules.cs
- EntityContainerEmitter.cs
- GuidTagList.cs
- MatrixAnimationUsingKeyFrames.cs
- AppDomainEvidenceFactory.cs
- ListItem.cs
- TableParaClient.cs
- AutomationPatternInfo.cs
- PixelShader.cs
- ResourceContainer.cs
- MessageEventSubscriptionService.cs
- BooleanSwitch.cs
- SwitchLevelAttribute.cs
- PeerNearMe.cs
- ActivitySurrogateSelector.cs
- RangeValidator.cs
- mediaeventargs.cs
- CacheVirtualItemsEvent.cs
- GcHandle.cs
- NativeActivityFaultContext.cs
- XPathNodePointer.cs
- ResXResourceReader.cs
- CodeTypeParameterCollection.cs
- ReachUIElementCollectionSerializer.cs
- DocumentPaginator.cs
- TickBar.cs
- PerformanceCounterPermissionEntryCollection.cs
- ProxyWebPartManager.cs
- ListViewDeletedEventArgs.cs
- ProtocolsConfiguration.cs
- DynamicMethod.cs
- DocumentPageViewAutomationPeer.cs
- TypeUnloadedException.cs
- AttributeEmitter.cs
- Point4D.cs
- SingleObjectCollection.cs
- ParsedRoute.cs
- HyperLink.cs
- StateItem.cs
- NavigatorOutput.cs
- HelpKeywordAttribute.cs
- SymbolEqualComparer.cs
- Viewport2DVisual3D.cs
- ObservableDictionary.cs
- DataSvcMapFile.cs
- ValueQuery.cs
- InputMethodStateChangeEventArgs.cs
- SecurityPolicyVersion.cs
- TemplateControl.cs
- XPathDocumentIterator.cs
- PageThemeBuildProvider.cs
- OutputScope.cs
- ReadingWritingEntityEventArgs.cs
- ConnectivityStatus.cs
- FrameworkTemplate.cs
- ColorMatrix.cs
- ToolStripScrollButton.cs
- AsymmetricKeyExchangeDeformatter.cs
- SmtpMail.cs
- Pkcs7Signer.cs
- StaticTextPointer.cs
- Image.cs
- SqlDataSourceStatusEventArgs.cs
- XXXOnTypeBuilderInstantiation.cs
- Helper.cs
- AutomationTextAttribute.cs
- SourceSwitch.cs
- ListViewCommandEventArgs.cs
- SchemaInfo.cs
- ProfileServiceManager.cs
- ProcessMonitor.cs