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
|
//
// Mono.ILASM.EventDef
//
// Author(s):
// Jackson Harper (Jackson@LatitudeGeo.com)
//
// (C) 2003 Jackson Harper, All right reserved
//
using System;
using System.Collections;
namespace Mono.ILASM {
public class EventDef : ICustomAttrTarget {
private FeatureAttr attr;
private string name;
private BaseTypeRef type;
private PEAPI.Event event_def;
private bool is_resolved;
private ArrayList customattr_list;
private MethodRef addon;
private MethodRef fire;
private MethodRef other;
private MethodRef removeon;
public EventDef (FeatureAttr attr, BaseTypeRef type, string name)
{
this.attr = attr;
this.name = name;
this.type = type;
is_resolved = false;
}
public void AddCustomAttribute (CustomAttr customattr)
{
if (customattr_list == null)
customattr_list = new ArrayList ();
customattr_list.Add (customattr);
}
public PEAPI.Event Resolve (CodeGen code_gen, PEAPI.ClassDef classdef)
{
if (is_resolved)
return event_def;
type.Resolve (code_gen);
event_def = classdef.AddEvent (name, type.PeapiType);
if ((attr & FeatureAttr.Rtspecialname) != 0)
event_def.SetRTSpecialName ();
if ((attr & FeatureAttr.Specialname) != 0)
event_def.SetSpecialName ();
if (customattr_list != null)
foreach (CustomAttr customattr in customattr_list)
customattr.AddTo (code_gen, event_def);
is_resolved = true;
return event_def;
}
private PEAPI.MethodDef AsMethodDef (PEAPI.Method method, string type)
{
PEAPI.MethodDef methoddef = method as PEAPI.MethodDef;
if (methoddef == null)
Report.Error (type + " method of event " + name + " not found");
return methoddef;
}
public void Define (CodeGen code_gen, PEAPI.ClassDef classdef)
{
if (!is_resolved)
Resolve (code_gen, classdef);
if (addon != null) {
addon.Resolve (code_gen);
event_def.AddAddon (AsMethodDef (addon.PeapiMethod, "addon"));
}
if (fire != null) {
fire.Resolve (code_gen);
event_def.AddFire (AsMethodDef (fire.PeapiMethod, "fire"));
}
if (other != null) {
other.Resolve (code_gen);
event_def.AddOther (AsMethodDef (other.PeapiMethod, "other"));
}
if (removeon != null) {
removeon.Resolve (code_gen);
event_def.AddRemoveOn (AsMethodDef (removeon.PeapiMethod, "removeon"));
}
}
public void AddAddon (MethodRef method_ref)
{
addon = method_ref;
}
public void AddFire (MethodRef method_ref)
{
fire = method_ref;
}
public void AddOther (MethodRef method_ref)
{
other = method_ref;
}
public void AddRemoveon (MethodRef method_ref)
{
removeon = method_ref;
}
}
}
|