Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Resources / ResourceSet.cs / 1305376 / ResourceSet.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: ResourceSet ** **[....] ** ** ** Purpose: Culture-specific collection of resources. ** ** ===========================================================*/ namespace System.Resources { using System; using System.Collections; using System.IO; using System.Globalization; using System.Security.Permissions; using System.Runtime.InteropServices; using System.Reflection; using System.Runtime.Serialization; using System.Runtime.Versioning; using System.Diagnostics.Contracts; // A ResourceSet stores all the resources defined in one particular CultureInfo. // // The method used to load resources is straightforward - this class // enumerates over an IResourceReader, loading every name and value, and // stores them in a hash table. Custom IResourceReaders can be used. // [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public class ResourceSet : IDisposable, IEnumerable { [NonSerialized] protected IResourceReader Reader; #if FEATURE_CORECLR internal Hashtable Table; #else protected Hashtable Table; #endif private Hashtable _caseInsensitiveTable; // For case-insensitive lookups. #if LOOSELY_LINKED_RESOURCE_REFERENCE [OptionalField] private Assembly _assembly; // For LooselyLinkedResourceReferences #endif // LOOSELY_LINKED_RESOURCE_REFERENCE protected ResourceSet() { // To not inconvenience people subclassing us, we should allocate a new // hashtable here just so that Table is set to something. CommonInit(); } // For RuntimeResourceSet, ignore the Table parameter - it's a wasted // allocation. internal ResourceSet(bool junk) { } // Creates a ResourceSet using the system default ResourceReader // implementation. Use this constructor to open & read from a file // on disk. // [System.Security.SecuritySafeCritical] // auto-generated [ResourceExposure(ResourceScope.Machine)] [ResourceConsumption(ResourceScope.Machine)] public ResourceSet(String fileName) { Reader = new ResourceReader(fileName); CommonInit(); ReadResources(); } #if LOOSELY_LINKED_RESOURCE_REFERENCE public ResourceSet(String fileName, Assembly assembly) { Reader = new ResourceReader(fileName); CommonInit(); _assembly = assembly; ReadResources(); } #endif // LOOSELY_LINKED_RESOURCE_REFERENCE // Creates a ResourceSet using the system default ResourceReader // implementation. Use this constructor to read from an open stream // of data. // [System.Security.SecurityCritical] // auto-generated_required public ResourceSet(Stream stream) { Reader = new ResourceReader(stream); CommonInit(); ReadResources(); } #if LOOSELY_LINKED_RESOURCE_REFERENCE [System.Security.SecurityCritical] // auto_generated_required public ResourceSet(Stream stream, Assembly assembly) { Reader = new ResourceReader(stream); CommonInit(); _assembly = assembly; ReadResources(); } #endif // LOOSELY_LINKED_RESOURCE_REFERENCE public ResourceSet(IResourceReader reader) { if (reader == null) throw new ArgumentNullException("reader"); Contract.EndContractBlock(); Reader = reader; CommonInit(); ReadResources(); } #if LOOSELY_LINKED_RESOURCE_REFERENCE public ResourceSet(IResourceReader reader, Assembly assembly) { if (reader == null) throw new ArgumentNullException("reader"); Contract.EndContractBlock(); Reader = reader; CommonInit(); _assembly = assembly; ReadResources(); } #endif // LOOSELY_LINKED_RESOURCE_REFERENCE private void CommonInit() { Table = new Hashtable(); } // Closes and releases any resources used by this ResourceSet, if any. // All calls to methods on the ResourceSet after a call to close may // fail. Close is guaranteed to be safely callable multiple times on a // particular ResourceSet, and all subclasses must support these semantics. public virtual void Close() { Dispose(true); } protected virtual void Dispose(bool disposing) { if (disposing) { // Close the Reader in a thread-safe way. IResourceReader copyOfReader = Reader; Reader = null; if (copyOfReader != null) copyOfReader.Close(); } Reader = null; _caseInsensitiveTable = null; Table = null; } public void Dispose() { Dispose(true); } #if LOOSELY_LINKED_RESOURCE_REFERENCE // Optional - used for resolving assembly manifest resource references. // This can safely be null. [ComVisible(false)] public Assembly Assembly { get { return _assembly; } /*protected*/ set { _assembly = value; } } #endif // LOOSELY_LINKED_RESOURCE_REFERENCE // Returns the preferred IResourceReader class for this kind of ResourceSet. // Subclasses of ResourceSet using their own Readers &; should override // GetDefaultReader and GetDefaultWriter. public virtual Type GetDefaultReader() { return typeof(ResourceReader); } #if !FEATURE_CORECLR // Returns the preferred IResourceWriter class for this kind of ResourceSet. // Subclasses of ResourceSet using their own Readers &; should override // GetDefaultReader and GetDefaultWriter. public virtual Type GetDefaultWriter() { return typeof(ResourceWriter); } #endif // !FEATURE_CORECLR [ComVisible(false)] public virtual IDictionaryEnumerator GetEnumerator() { return GetEnumeratorHelper(); } ///IEnumerator IEnumerable.GetEnumerator() { return GetEnumeratorHelper(); } private IDictionaryEnumerator GetEnumeratorHelper() { Hashtable copyOfTable = Table; // Avoid a race with Dispose if (copyOfTable == null) throw new ObjectDisposedException(null, Environment.GetResourceString("ObjectDisposed_ResourceSet")); return copyOfTable.GetEnumerator(); } // Look up a string value for a resource given its name. // public virtual String GetString(String name) { Object obj = GetObjectInternal(name); try { return (String)obj; } catch (InvalidCastException) { throw new InvalidOperationException(Environment.GetResourceString("InvalidOperation_ResourceNotString_Name", name)); } } public virtual String GetString(String name, bool ignoreCase) { Object obj; String s; // Case-sensitive lookup obj = GetObjectInternal(name); try { s = (String)obj; } catch (InvalidCastException) { throw new InvalidOperationException(Environment.GetResourceString("InvalidOperation_ResourceNotString_Name", name)); } // case-sensitive lookup succeeded if (s != null || !ignoreCase) { return s; } // Try doing a case-insensitive lookup obj = GetCaseInsensitiveObjectInternal(name); try { return (String)obj; } catch (InvalidCastException) { throw new InvalidOperationException(Environment.GetResourceString("InvalidOperation_ResourceNotString_Name", name)); } } // Look up an object value for a resource given its name. // public virtual Object GetObject(String name) { return GetObjectInternal(name); } public virtual Object GetObject(String name, bool ignoreCase) { Object obj = GetObjectInternal(name); if (obj != null || !ignoreCase) return obj; return GetCaseInsensitiveObjectInternal(name); } protected virtual void ReadResources() { IDictionaryEnumerator en = Reader.GetEnumerator(); while (en.MoveNext()) { Object value = en.Value; #if LOOSELY_LINKED_RESOURCE_REFERENCE if (Assembly != null && value is LooselyLinkedResourceReference) { LooselyLinkedResourceReference assRef = (LooselyLinkedResourceReference) value; value = assRef.Resolve(Assembly); } #endif //LOOSELYLINKEDRESOURCEREFERENCE Table.Add(en.Key, value); } // While technically possible to close the Reader here, don't close it // to help with some WinRes lifetime issues. } private Object GetObjectInternal(String name) { if (name == null) throw new ArgumentNullException("name"); Contract.EndContractBlock(); Hashtable copyOfTable = Table; // Avoid a race with Dispose if (copyOfTable == null) throw new ObjectDisposedException(null, Environment.GetResourceString("ObjectDisposed_ResourceSet")); return copyOfTable[name]; } private Object GetCaseInsensitiveObjectInternal(String name) { Hashtable copyOfTable = Table; // Avoid a race with Dispose if (copyOfTable == null) throw new ObjectDisposedException(null, Environment.GetResourceString("ObjectDisposed_ResourceSet")); Hashtable caseTable = _caseInsensitiveTable; // Avoid ---- with Close if (caseTable == null) { caseTable = new Hashtable(StringComparer.OrdinalIgnoreCase); #if _DEBUG //Console.WriteLine("ResourceSet::GetObject loading up case-insensitive data"); BCLDebug.Perf(false, "Using case-insensitive lookups is bad perf-wise. Consider capitalizing "+name+" correctly in your source"); #endif IDictionaryEnumerator en = copyOfTable.GetEnumerator(); while (en.MoveNext()) { caseTable.Add(en.Key, en.Value); } _caseInsensitiveTable = caseTable; } return caseTable[name]; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Int64.cs
- DataGridColumnCollection.cs
- SyntaxCheck.cs
- CompiledQueryCacheKey.cs
- RuleProcessor.cs
- IListConverters.cs
- ClientFactory.cs
- LinkedList.cs
- OdbcConnectionStringbuilder.cs
- MobileControlsSectionHelper.cs
- ZipPackage.cs
- FrameSecurityDescriptor.cs
- Event.cs
- CheckBox.cs
- PeerNameRecord.cs
- DataGridView.cs
- XmlSerializer.cs
- DataBindingCollection.cs
- ContextMenuStrip.cs
- PropertyReferenceSerializer.cs
- ReachSerializerAsync.cs
- LeafCellTreeNode.cs
- RowUpdatedEventArgs.cs
- SecurityCapabilities.cs
- ImpersonateTokenRef.cs
- XmlDataImplementation.cs
- DynamicMethod.cs
- BamlWriter.cs
- HttpRuntimeSection.cs
- EasingKeyFrames.cs
- PhonemeConverter.cs
- FilterQueryOptionExpression.cs
- SelectedGridItemChangedEvent.cs
- sqlinternaltransaction.cs
- DetailsViewDeletedEventArgs.cs
- HttpValueCollection.cs
- SourceElementsCollection.cs
- ActivityStatusChangeEventArgs.cs
- PagerSettings.cs
- AppDomainUnloadedException.cs
- SpoolingTask.cs
- ObjectAnimationUsingKeyFrames.cs
- InputLanguageCollection.cs
- CodeFieldReferenceExpression.cs
- EncoderFallback.cs
- ApplicationManager.cs
- AcceleratedTokenProviderState.cs
- RoutedEvent.cs
- FlowDecisionLabelFeature.cs
- PerformanceCountersElement.cs
- PageStatePersister.cs
- XmlEntity.cs
- CompilerScope.Storage.cs
- TextTreeFixupNode.cs
- SecurityHeaderElementInferenceEngine.cs
- SoapAttributes.cs
- ReadOnlyDictionary.cs
- Math.cs
- Rule.cs
- XmlBinaryReaderSession.cs
- ConfigurationElementCollection.cs
- mediaclock.cs
- SmtpSection.cs
- DbTransaction.cs
- Ipv6Element.cs
- RelationshipWrapper.cs
- ConditionBrowserDialog.cs
- SimpleType.cs
- RowUpdatedEventArgs.cs
- HtmlUtf8RawTextWriter.cs
- SupportsEventValidationAttribute.cs
- DocumentApplicationDocumentViewer.cs
- Select.cs
- MissingFieldException.cs
- FormsAuthenticationEventArgs.cs
- UnregisterInfo.cs
- RequestTimeoutManager.cs
- XmlAggregates.cs
- CopyCodeAction.cs
- UnsafePeerToPeerMethods.cs
- ScriptIgnoreAttribute.cs
- WorkflowInstanceTerminatedRecord.cs
- MenuRendererStandards.cs
- MsmqIntegrationBindingElement.cs
- XmlDictionaryReader.cs
- AvTrace.cs
- MessageHeaderDescription.cs
- LabelEditEvent.cs
- WebPartActionVerb.cs
- HintTextConverter.cs
- FtpCachePolicyElement.cs
- RijndaelManaged.cs
- WebScriptMetadataMessageEncoderFactory.cs
- SharedStatics.cs
- LineVisual.cs
- FormatStringEditor.cs
- BinaryWriter.cs
- ErrorLog.cs
- RoleGroup.cs
- SqlCacheDependencySection.cs