Welcome to mirror list, hosted at ThFree Co, Russian Federation.

peer.cs « ictool « tools « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6c3e0998f4196c1e01abc3c5d8995d888ef84e4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
//
// file:	peer.cs
// author:	Dan Lewis (dihlewis@yahoo.co.uk)
// 		(C) 2002
//

using System;
using System.Reflection;
using System.Collections;

class Peer {
	public Peer (Type clr_type, string name, bool is_opaque) {
		this.clr_type = clr_type;
		this.name = name;
		this.is_opaque = is_opaque;

		this.nearest_base = null;	// resolve later
		this.underlying = null;
		this.enum_constants = null;
		this.fields = new PeerFieldCollection ();

		this.is_enum = CLRIsEnum (clr_type);
		this.is_value_type = CLRIsValueType (clr_type);
	}

	public string Name {
		get { return name; }
	}

	public Type CLRType {
		get { return clr_type; }
	}

	public bool IsOpaque {
		get { return is_opaque; }
	}

	public bool IsValueType {
		get { return is_value_type; }
	}

	public bool IsEnum {
		get { return is_enum; }
	}

	public Peer NearestBase {
		get { return nearest_base; }
		set { nearest_base = value; }
	}

	public Peer UnderlyingPeer {
		get { return underlying; }
		set { underlying = value; }
	}

	public IDictionary EnumConstants {
		get { return enum_constants; }
		set { enum_constants = value; }
	}

	public PeerFieldCollection Fields {
		get { return fields; }
	}

	public string GetTypedef (int refs) {
		if (refs == 0)
			return String.Format ("{0} ", name);

		return String.Format ("{0} {1}", name, new string ('*', refs));
	}

	// internal

	internal static bool CLRIsValueType (Type clr_type) {
		return clr_type.IsValueType;
		/*
		if (clr_type.BaseType == null)
			return false;
	
		return
			clr_type.BaseType.FullName == "System.ValueType" ||
			clr_type.BaseType.FullName == "System.Enum";
		*/
	}

	internal static bool CLRIsEnum (Type clr_type) {
		return clr_type.IsEnum;
		/*
		if (clr_type.BaseType == null)
			return false;

		return clr_type.BaseType.FullName == "System.Enum";
		*/
	}

	internal static Type CLRUnderlyingType (Type clr_type) {
		return Enum.GetUnderlyingType (clr_type);
		/*
		Type ebase = type.BaseType;

		return (Type)ebase.InvokeMember ("GetUnderlyingType",
			BindingFlags.Public | BindingFlags.InvokeMethod | BindingFlags.Static,
			null, null,
			new object[] { type }
		);
		*/
	}

	// private

	private Type clr_type;
	private bool is_opaque;
	private bool is_value_type;
	private bool is_enum;

	private string name;
	private Peer nearest_base;
	private Peer underlying;
	private IDictionary enum_constants;
	private PeerFieldCollection fields;
}

class PeerField {
	public PeerField (Peer peer, string name) {
		this.peer = peer;
		this.name = name;
	}

	public Peer Peer {
		get { return peer; }
	}

	public string Name {
		get { return name; }
	}

	private Peer peer;
	private string name;
}

class PeerFieldCollection : CollectionBase {
	public void Add (PeerField f) {
		List.Add (f);
	}

	public PeerField this[int i] {
		get { return (PeerField)List[i]; }
	}
}

class PeerMap {
	public PeerMap () {
		peers = new Hashtable ();
	}

	public void Add (Peer peer) {
		Add (peer.CLRType, peer);
	}

	public void Add (Type clr_type, Peer peer) {
		peers.Add (clr_type, peer);
	}

	public ICollection Peers {
		get { return peers.Values; }
	}

	public Peer this[Type clr_type] {
		get {
			if (peers.Contains (clr_type))
				return (Peer)peers[clr_type];

			return null;
		}
	}

	public Peer GetPeer (Type clr_type) {
		Peer peer;

		if (Peer.CLRIsValueType (clr_type)) {
			peer = this[clr_type];
			if (peer != null)
				return peer;

			if (Peer.CLRIsEnum (clr_type)) {
				peer = this[Peer.CLRUnderlyingType (clr_type)];
				if (peer != null)
				return peer;

				throw new ArgumentException ("Could not find peer or underlying peer for enum " + clr_type);
			}
			else
				throw new ArgumentException ("Could not find peer for value type " + clr_type);
		}
		else {
			Type type = clr_type;
			while (type != null) {
				peer = this[type];
				if (peer != null)
					return peer;

				type = type.BaseType;
			}

			throw new ArgumentException ("Could not find peer for class " + clr_type);
		}
	}

	public void ResolvePeers () {
		BindingFlags binding =
			BindingFlags.DeclaredOnly |
			BindingFlags.Instance |
			BindingFlags.NonPublic |
			BindingFlags.Public;

		// base type

		foreach (Peer peer in Peers) {
			if (peer.IsOpaque || peer.IsValueType || peer.CLRType.BaseType == null)
				continue;

			peer.NearestBase = GetPeer (peer.CLRType.BaseType);
			if (peer.NearestBase == null) {
				Console.Error.WriteLine ("Error: cannot find an internal base type for {0}.", peer.Name);
				Environment.Exit (-1);
			}
		}

		// fields

		foreach (Peer peer in Peers) {
			if (peer.IsOpaque || peer.IsEnum)
				continue;

			Type clr_base = null;
			if (peer.NearestBase != null)
				clr_base = peer.NearestBase.CLRType;

			Stack declared = new Stack ();
			Type type = peer.CLRType;

			while (type != clr_base) {
				declared.Push (type);
				type = type.BaseType;
			}

			// build declared field list

			while (declared.Count > 0) {
				type = (Type)declared.Pop ();
				foreach (FieldInfo info in type.GetFields (binding)) {
					PeerField field = new PeerField (
						GetPeer (info.FieldType),
						info.Name
					);

					peer.Fields.Add (field);
				}
			}
		}

		// enums

		foreach (Peer peer in Peers) {
			if (peer.IsOpaque || !peer.IsEnum)
				continue;

			Type clr_type = peer.CLRType;

			// constants

			Hashtable constants = new Hashtable ();
			foreach (string name in Enum.GetNames (clr_type))
				constants.Add (name, (int)Enum.Parse (clr_type, name));

			peer.UnderlyingPeer = GetPeer (Enum.GetUnderlyingType (clr_type));
			peer.EnumConstants = constants;
		}
	}

	// private

	private Hashtable peers;
}