1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
//------------------------------------------------------------------------------
// <copyright file="CodeIdentifiers.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
// <owner current="true" primary="true">Microsoft</owner>
//------------------------------------------------------------------------------
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();
}
}
/// <include file='doc\CodeIdentifiers.uex' path='docs/doc[@for="CodeIdentifiers"]/*' />
///<internalonly/>
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
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();
}
/// <include file='doc\CodeIdentifiers.uex' path='docs/doc[@for="CodeIdentifiers.Clear"]/*' />
public void Clear(){
identifiers.Clear();
list.Clear();
}
/// <include file='doc\CodeIdentifiers.uex' path='docs/doc[@for="CodeIdentifiers.UseCamelCasing"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public bool UseCamelCasing {
get { return camelCase; }
set { camelCase = value; }
}
/// <include file='doc\CodeIdentifiers.uex' path='docs/doc[@for="CodeIdentifiers.MakeRightCase"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public string MakeRightCase(string identifier) {
if (camelCase)
return CodeIdentifier.MakeCamel(identifier);
else
return CodeIdentifier.MakePascal(identifier);
}
/// <include file='doc\CodeIdentifiers.uex' path='docs/doc[@for="CodeIdentifiers.MakeUnique"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
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;
}
/// <include file='doc\CodeIdentifiers.uex' path='docs/doc[@for="CodeIdentifiers.AddReserved"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public void AddReserved(string identifier) {
reservedIdentifiers.Add(identifier, identifier);
}
/// <include file='doc\CodeIdentifiers.uex' path='docs/doc[@for="CodeIdentifiers.RemoveReserved"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public void RemoveReserved(string identifier) {
reservedIdentifiers.Remove(identifier);
}
/// <include file='doc\CodeIdentifiers.uex' path='docs/doc[@for="CodeIdentifiers.AddUnique"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public string AddUnique(string identifier, object value) {
identifier = MakeUnique(identifier);
Add(identifier, value);
return identifier;
}
/// <include file='doc\CodeIdentifiers.uex' path='docs/doc[@for="CodeIdentifiers.IsInUse"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public bool IsInUse(string identifier) {
return identifiers.Contains(identifier) || reservedIdentifiers.Contains(identifier);
}
/// <include file='doc\CodeIdentifiers.uex' path='docs/doc[@for="CodeIdentifiers.Add"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public void Add(string identifier, object value) {
identifiers.Add(identifier, value);
list.Add(value);
}
/// <include file='doc\CodeIdentifiers.uex' path='docs/doc[@for="CodeIdentifiers.Remove"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public void Remove(string identifier) {
list.Remove(identifiers[identifier]);
identifiers.Remove(identifier);
}
/// <include file='doc\CodeIdentifiers.uex' path='docs/doc[@for="CodeIdentifiers.ToArray"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
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;
}
}
}
|