/* * P4.Net * Copyright (c) 2007 Shawn Hladky Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ using System; using System.Collections; using System.Text; namespace P4API { /// /// Strongly typed dictionary to represent fields returned from Perforce commands. /// /// /// The FieldDictionary only contains fields that contain a single string value. Fields that return array /// values are stored in . /// public class FieldDictionary { private Hashtable _ht; internal FieldDictionary() { _ht = new Hashtable(); } internal void Add(string key, string value) { _ht.Add(key, value); } /// /// Clears all elements of the dictionary. /// public void Clear() { _ht.Clear(); } /// /// Tests if the key exists in the dictionary. /// /// The key to test /// True if the key is defined in the dictionary. public bool ContainsKey(string key) { return _ht.Contains(key); } /// /// Gets all keys contained in the dictionary. /// /// Keys in the FieldDictionary public string[] Keys { get { string[] ret = new string[_ht.Count]; int i = 0; foreach (string s in _ht.Keys) { ret[i] = s; i++; } return ret; } } /// /// Removes elements from the dictionary. /// /// The key of the element to remove. public void Remove(string key) { _ht.Remove(key); } /// /// Gets the number of elements in the dictionary /// /// Count of items. public int Count { get { return _ht.Count; } } /// /// Returns the value assocatied to the key. /// /// The key to search on. /// String value associated to the key. public string this[string key] { get { return (string) _ht[key]; } set { //Many p4 form commands do not have all the fields by default. //this will auto-add that key when you try to set a value. if (_ht.ContainsKey(key)) { _ht[key] = value; } else { _ht.Add(key, value); } } } } }