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 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
|
#region license
// Copyright (c) 2004-2005, Daniel Grunwald (daniel@danielgrunwald.de)
// Copyright (c) 2005, Peter Johanson (latexer@gentoo.org)
// All rights reserved.
//
// The BooBinding.Parser code is originally that of Daniel Grunwald
// (daniel@danielgrunwald.de) from the SharpDevelop BooBinding. The code has
// been imported here, and modified, including, but not limited to, changes
// to function with MonoDevelop, additions, refactorings, etc.
//
// BooBinding is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// BooBinding is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with BooBinding; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
/*
namespace BooBinding.Parser
import System
import System.Collections
import MonoDevelop.Core
import MonoDevelop.Projects.Dom
import Boo.Lang.Compiler
import Boo.Lang.Compiler.Ast as AST
import Boo.Lang.Compiler.IO
import Boo.Lang.Compiler.Steps
class Visitor(AbstractVisitorCompilerStep):
[Getter(Cu)]
_cu as DefaultCompilationUnit = DefaultCompilationUnit()
_currentClass as Stack = Stack()
_firstModule = true
[Getter(HadErrors)]
_hadErrors = false
_parseErrorCodes = ("BCE0043", "BCE0044")
override def Run():
// If we've had an parser errors, we should ignore this
// parese attempt. Set _hadErrors and return immediately.
if Errors is not null and Errors.Count > 0:
for error in Errors:
if error.Code in _parseErrorCodes:
_hadErrors = true
return
try:
Visit(CompileUnit)
except e:
Error (e.ToString ())
private def GetModifier(m as AST.TypeMember) as ModifierEnum:
r = ModifierEnum.None
r = r | ModifierEnum.Public if m.IsPublic
r = r | ModifierEnum.Protected if m.IsProtected
r = r | ModifierEnum.Private if m.IsPrivate
r = r | ModifierEnum.Internal if m.IsInternal
r = r | ModifierEnum.Static if m.IsStatic
r = r | ModifierEnum.Virtual if m.IsModifierSet(AST.TypeMemberModifiers.Virtual)
r = r | ModifierEnum.Abstract if m.IsModifierSet(AST.TypeMemberModifiers.Abstract)
r = r | ModifierEnum.Override if m.IsModifierSet(AST.TypeMemberModifiers.Override)
r = r | ModifierEnum.Final if m.IsFinal
return r
[Property(LineLength)]
_lineLength as (int)
private def GetLineEnd(line as int) as int:
return 0 if _lineLength == null or line < 1 or line > _lineLength.Length
return _lineLength[line - 1] + 1
private def GetRegion(m as AST.Node):
l = m.LexicalInfo
return null if (l.Line < 0)
return DefaultRegion(l.Line, 0 , l.Line, GetLineEnd(l.Line))
private def GetClientRegion(m as AST.Node) as DefaultRegion:
l = m.LexicalInfo
return null if l.Line < 0
l2 as AST.SourceLocation = null
if m isa AST.Method:
l2 = cast(AST.Method, m).Body.EndSourceLocation
elif m isa AST.Property:
p as AST.Property = m
if p.Getter != null and p.Getter.Body != null:
l2 = cast(AST.Property, m).Getter.Body.EndSourceLocation
if p.Setter != null and p.Setter.Body != null:
l3 = cast(AST.Property, m).Setter.Body.EndSourceLocation
l2 = l3 if l3.Line > l2.Line
elif p.Setter != null and p.Setter.Body != null:
l2 = cast(AST.Property, m).Setter.Body.EndSourceLocation
else:
l2 = m.EndSourceLocation
return null if l2 == null or l2.Line < 0 or l.Line == l2.Line
// TODO: use l.Column / l2.Column when the tab-bug has been fixed
return DefaultRegion(l.Line, GetLineEnd(l.Line), l2.Line, GetLineEnd(l2.Line))
override def OnImport(p as AST.Import):
u = DefaultUsing()
if p.Alias == null:
u.Usings.Add(p.Namespace)
else:
u.Aliases[p.Alias.Name] = ReturnType(p.Namespace)
_cu.Usings.Add(u)
override def OnCallableDefinition(node as AST.CallableDefinition):
Log ("OnCallableDefinition: ${node.FullName}")
region = GetRegion(node)
modifier = GetModifier(node)
c = Class(_cu, ClassType.Delegate, modifier, region)
// TODO: Check how a return type with type System.Delegate dan be created
c.BaseTypes.Add(ReturnType('System.Delegate'))
c.FullyQualifiedName = node.FullName
if _currentClass.Count > 0:
cast(Class, _currentClass.Peek()).InnerClasses.Add(c)
else:
_cu.Classes.Add(c)
invokeMethod = Method('Invoke', ReturnType(node.ReturnType), modifier, region, region)
invokeMethod.Parameters = GetParameters(node.Parameters)
c.Methods.Add(invokeMethod)
override def EnterClassDefinition(node as AST.ClassDefinition):
EnterTypeDefinition(node, ClassType.Class)
return super(node)
override def EnterInterfaceDefinition(node as AST.InterfaceDefinition):
EnterTypeDefinition(node, ClassType.Interface)
return super(node)
override def EnterEnumDefinition(node as AST.EnumDefinition):
EnterTypeDefinition(node, ClassType.Enum)
return super(node)
private def EnterTypeDefinition(node as AST.TypeDefinition, classType as ClassType):
try:
Log ("Enter ${node.GetType().Name} (${node.FullName})")
region = GetClientRegion(node)
modifier = GetModifier(node)
c = Class(_cu, classType, modifier, region)
c.FullyQualifiedName = node.FullName
c.Documentation = node.Documentation
if _currentClass.Count > 0:
cast(Class, _currentClass.Peek()).InnerClasses.Add(c) unless c.Name.StartsWith ("___")
else:
_cu.Classes.Add(c) unless c.Name.StartsWith ("___")
if node.BaseTypes != null:
for r as AST.SimpleTypeReference in node.BaseTypes:
// TODO: Check how a return type with type System.Delegate dan be created
c.BaseTypes.Add(ReturnType(r.Name))
_currentClass.Push(c)
except ex:
Error (ex.ToString ())
raise
override def LeaveClassDefinition(node as AST.ClassDefinition):
LeaveTypeDefinition(node)
super(node)
override def LeaveInterfaceDefinition(node as AST.InterfaceDefinition):
LeaveTypeDefinition(node)
super(node)
override def LeaveEnumDefinition(node as AST.EnumDefinition):
LeaveTypeDefinition(node)
super(node)
private def LeaveTypeDefinition(node as AST.TypeDefinition):
c as Class = _currentClass.Pop()
Log ("Leave ${node.GetType().Name} ${node.FullName} (Class = ${c.FullyQualifiedName})")
c.UpdateModifier()
override def OnMethod(node as AST.Method):
try:
if node.Name.StartsWith("___"):
return
method = GetMethod(node)
cast(Class, _currentClass.Peek()).Methods.Add(method)
except ex:
Error (ex.ToString ())
raise
private def GetMethod(node as AST.Method):
method = Method(node.Name, ReturnType.CreateReturnType(node), GetModifier(node), GetRegion(node), GetClientRegion(node))
method.Parameters = GetParameters(node.Parameters)
method.Node = node
method.Documentation = node.Documentation
return method
private def GetParameters(params as AST.ParameterDeclarationCollection):
parameters = ParameterCollection()
return parameters if params == null
for par as AST.ParameterDeclaration in params:
parameters.Add(DefaultParameter(null, par.Name, ReturnType(par.Type)))
return parameters
override def OnConstructor(node as AST.Constructor):
return if node.Body.Statements.Count == 0
ctor = Constructor(GetModifier(node), GetRegion(node), GetClientRegion(node))
ctor.Parameters = GetParameters(node.Parameters)
ctor.Node = node
ctor.Documentation = node.Documentation
cast(Class, _currentClass.Peek()).Methods.Add(ctor)
override def OnEnumMember(node as AST.EnumMember):
try:
c as Class = _currentClass.Peek()
field = Field(null, node.Name, GetModifier(node), GetRegion(node))
field.Documentation = node.Documentation
field.SetModifiers(ModifierEnum.Const | ModifierEnum.SpecialName)
c.Fields.Add(field)
except x:
Error (x.ToString ())
raise
override def OnField(node as AST.Field):
try:
Log ("Field ${node.Name}")
if node.Name.StartsWith("___"):
return
c as Class = _currentClass.Peek()
field = Field(ReturnType.CreateReturnType(node), node.Name, GetModifier(node), GetRegion(node))
field.Documentation = node.Documentation
c.Fields.Add(field)
except ex:
Error (ex.ToString ())
raise
override def OnProperty(node as AST.Property):
try:
getter as Method
setter as Method
getRegion as IRegion
setRegion as IRegion
if node.Getter is not null:
getter = GetMethod(node.Getter)
getRegion = GetRegion(node.Getter)
getRegion = GetRegion(node) if getRegion is null
if node.Setter is not null:
setter = GetMethod(node.Setter)
setRegion = GetRegion(node.Setter)
setRegion = GetRegion(node) if setRegion is null
property = Property(node.Name, ReturnType.CreateReturnType(node), getter, setter, getRegion, setRegion, GetModifier(node), GetRegion(node), GetClientRegion(node))
property.Documentation = node.Documentation
property.Node = node
cast(Class, _currentClass.Peek()).Properties.Add(property)
except ex:
Error (ex.ToString ())
raise
override def OnEvent (node as AST.Event):
try:
ev = DefaultEvent (node.FullName, ReturnType(node.Type), GetModifier(node), GetRegion(node), GetClientRegion(node))
ev.Documentation = node.Documentation
cast(Class, _currentClass.Peek()).Events.Add(ev)
except ex:
Error (ex.ToString ())
raise
private def Log (message):
BooParser.Log (self.GetType(), message)
private def Error (message):
BooParser.Error (self.GetType(), message)
*/
/*
// TODO: Detect indexer method and add it as Indexer
override def Visit(indexerDeclaration as AST.IndexerDeclaration, data as object) as object:
region as DefaultRegion = GetRegion(indexerDeclaration.StartLocation, indexerDeclaration.EndLocation)
bodyRegion as DefaultRegion = GetRegion(indexerDeclaration.BodyStart, indexerDeclaration.BodyEnd)
parameters as ParameterCollection = ParameterCollection()
i as Indexer = Indexer(ReturnType(indexerDeclaration.TypeReference), parameters, indexerDeclaration.Modifier, region, bodyRegion)
if indexerDeclaration.Parameters != null:
for par as AST.ParameterDeclarationExpression in indexerDeclaration.Parameters:
parType as ReturnType = ReturnType(par.TypeReference)
p as Parameter = Parameter(par.ParameterName, parType)
parameters.Add(p)
c as Class = _currentClass.Peek()
c.Indexer.Add(i)
return null
*/
|