fix typo
[mcs.git] / class / Mono.Cecil / Mono.Cecil.Metadata / MetadataStreamCollection.cs
blobb602f177d0d293220a8f56c7bc88525639595a3f
1 //
2 // MetadataStreamCollection.cs
3 //
4 // Author:
5 // Jb Evain (jbevain@gmail.com)
6 //
7 // (C) 2005 Jb Evain
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 namespace Mono.Cecil.Metadata {
31 using System;
32 using System.Collections;
34 public class MetadataStreamCollection : ICollection, IMetadataVisitable {
36 IList m_items;
38 BlobHeap m_blobHeap;
39 GuidHeap m_guidHeap;
40 StringsHeap m_stringsHeap;
41 UserStringsHeap m_usHeap;
42 TablesHeap m_tablesHeap;
44 public MetadataStream this [int index] {
45 get { return m_items [index] as MetadataStream; }
46 set { m_items [index] = value; }
49 public int Count {
50 get { return m_items.Count; }
53 public bool IsSynchronized {
54 get { return false; }
57 public object SyncRoot {
58 get { return this; }
61 public BlobHeap BlobHeap {
62 get {
63 if (m_blobHeap == null)
64 m_blobHeap = GetHeap (MetadataStream.Blob) as BlobHeap;
65 return m_blobHeap;
69 public GuidHeap GuidHeap {
70 get {
71 if (m_guidHeap == null)
72 m_guidHeap = GetHeap (MetadataStream.GUID) as GuidHeap;
73 return m_guidHeap;
77 public StringsHeap StringsHeap {
78 get {
79 if (m_stringsHeap == null)
80 m_stringsHeap = GetHeap (MetadataStream.Strings) as StringsHeap;
81 return m_stringsHeap;
85 public TablesHeap TablesHeap {
86 get {
87 if (m_tablesHeap == null)
88 m_tablesHeap = GetHeap (MetadataStream.Tables) as TablesHeap;
89 return m_tablesHeap;
93 public UserStringsHeap UserStringsHeap {
94 get {
95 if (m_usHeap == null)
96 m_usHeap = GetHeap (MetadataStream.UserStrings) as UserStringsHeap;
97 return m_usHeap;
101 public MetadataStreamCollection ()
103 m_items = new ArrayList (5);
106 private MetadataHeap GetHeap (string name)
108 for (int i = 0; i < m_items.Count; i++) {
109 MetadataStream stream = m_items [i] as MetadataStream;
110 if (stream.Heap.Name == name)
111 return stream.Heap;
114 return null;
117 internal void Add (MetadataStream value)
119 m_items.Add (value);
122 internal void Remove (MetadataStream value)
124 m_items.Remove (value);
127 public void CopyTo (Array ary, int index)
129 m_items.CopyTo (ary, index);
132 public IEnumerator GetEnumerator ()
134 return m_items.GetEnumerator ();
137 public void Accept (IMetadataVisitor visitor)
139 visitor.VisitMetadataStreamCollection (this);
141 for (int i = 0; i < m_items.Count; i++)
142 this [i].Accept (visitor);