| // $Id$ |
| // |
| // Copyright 2007-2008 Cisco Systems Inc. |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| // use this file except in compliance with the License. You may obtain a copy |
| // of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| // License for the specific language governing permissions and limitations |
| // under the License. |
| |
| using System; |
| |
| namespace Etch.Msg |
| { |
| /// <summary>An IdName is a base class for Field or Type. It is used |
| /// to bind together a type or field name with the associated id. The id |
| /// is used for certain operations, such as the key in a Map, comparisons, |
| /// and binary encoding on the wire, while the name is used for display. |
| /// <see cref=""/> Field |
| /// <see cref=""/> Type</summary> |
| public class IdName |
| { |
| /// <summary>Constructs the IdName. |
| /// <param name="id">id for the name (normally computed using</param> |
| /// <param name="name"></param> |
| /// {<link>#hash(String)})</link></summary> |
| public IdName(int id, String name) |
| { |
| this.id = id; |
| this.name = name; |
| } |
| |
| /// <summary>Constructs the IdName by computing the appropriate id given the name. |
| /// <param name="name"> name the name of the item.</param> |
| /// <see cref=""/> #hash(String) |
| /// </summary> |
| public IdName(string name) |
| : this(Hash(name), name) |
| { } |
| |
| private readonly int id; |
| |
| private readonly string name; |
| |
| /// <returns>the id of the item. </returns> |
| public int Id |
| { |
| get |
| { |
| return id; |
| } |
| } |
| |
| /// <returns> the name of the item.</returns> |
| public string Name |
| { |
| get |
| { |
| return name; |
| } |
| } |
| |
| /// Override |
| public override string ToString() |
| { |
| return String.Format( "{0}({1})", name, id ); |
| } |
| |
| /// Override |
| public override bool Equals(object obj) |
| { |
| if(obj == this) |
| return true; |
| |
| if(obj == null) |
| return false; |
| |
| if(this.GetType() != obj.GetType()) |
| return false; |
| |
| IdName other = (IdName) obj; |
| |
| return id.Equals( other.Id ) && name.Equals( other.Name ); |
| } |
| |
| /// Override |
| public override int GetHashCode() |
| { |
| return id.GetHashCode() ^ name.GetHashCode(); |
| } |
| |
| /// <summary>Computes the hash value of the name to be used as the id when |
| /// constructing an IdName.</summary> |
| /// <param name="name"> name the name of the type or field. </param> |
| /// <returns>a hash of name in the unicode character encoding which is |
| /// very likely to be unique over reasonable name spaces. Collisions |
| /// should be very unlikely as they will force the user to change the |
| /// name.</returns> |
| public static int Hash(String name) |
| { |
| // combination of djb2 and sdbm hash algorithm: |
| int hash = 5381; |
| int n = name.Length; |
| for(int i = 0; i < n; i++) |
| { |
| char c = name[i]; |
| int h6 = hash << 6; |
| hash = (h6 << 10) + h6 - hash + c; |
| } |
| return hash; |
| } |
| } |
| } |