| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- //
- // System.Resources.ResourceSet.cs
- //
- // Authors:
- // Duncan Mak ([email protected])
- // Dick Porter ([email protected])
- //
- // (C) 2001, 2002 Ximian, Inc. http://www.ximian.com
- //
- using System.Collections;
- using System.IO;
- namespace System.Resources
- {
- [Serializable]
- public class ResourceSet : IDisposable
- {
- protected IResourceReader Reader;
- protected Hashtable Table;
- // Constructors
- protected ResourceSet () {}
- public ResourceSet (IResourceReader reader)
- {
- if (reader == null)
- throw new ArgumentNullException ("The reader is null.");
- Reader = reader;
- }
- public ResourceSet (Stream stream)
- {
- if(stream==null) {
- throw new ArgumentNullException("stream is null");
- }
- if(!stream.CanRead) {
- throw new ArgumentException("stream is not readable");
- }
-
- Reader = new ResourceReader (stream);
- }
- public ResourceSet (String fileName)
- {
- if(fileName==null) {
- throw new ArgumentNullException("filename is null");
- }
-
- Reader = new ResourceReader (fileName);
- }
- public virtual void Close ()
- {
- Dispose (true);
- }
- public void Dispose()
- {
- Dispose (true);
- }
- protected virtual void Dispose (bool disposing)
- {
- if (disposing) {
- if(Reader!=null) {
- Reader.Close();
- }
- }
- Reader = null;
- Table = null;
- }
- public virtual Type GetDefaultReader ()
- {
- return (typeof (ResourceReader));
- }
- public virtual Type GetDefaultWriter ()
- {
- return (typeof (ResourceWriter));
- }
- public virtual object GetObject (string name)
- {
- if (name == null)
- throw new ArgumentNullException ("The name parameter is null.");
- if (Reader == null)
- throw new InvalidOperationException ("The ResourceSet has been closed.");
- if (Table == null) {
- ReadResources ();
- }
-
- return(Table[name]);
- }
- public virtual object GetObject (string name, bool ignoreCase)
- {
- if (name == null)
- throw new ArgumentNullException ("The name parameter is null.");
- if (Reader == null)
- throw new InvalidOperationException ("ResourceSet has been closed.");
- if (Table == null)
- ReadResources ();
- if (ignoreCase) {
- foreach (DictionaryEntry de in Table) {
- string key = (string) de.Key;
- if (String.Compare (key, name, true) == 0)
- return de.Value;
- }
- return null;
- } else
- return Table[name];
- }
- public virtual string GetString (string name)
- {
- Object o = GetObject (name);
- if (o is string)
- return (string) o;
- throw new InvalidOperationException("Not a string");
- }
- public virtual string GetString (string name, bool ignoreCase)
- {
- Object o = GetObject (name, ignoreCase);
- if (o is string)
- return (string) o;
- throw new InvalidOperationException("Not a string");
- }
- protected virtual void ReadResources ()
- {
- IDictionaryEnumerator i = Reader.GetEnumerator();
- if (Table == null)
- Table = new Hashtable ();
- i.Reset ();
- while (i.MoveNext ())
- Table.Add (i.Key, i.Value);
- }
- }
- }
|