2013-10-18 13:33:46 +02:00
// ino.module.Class.8553.package
2014-09-02 10:33:54 +02:00
package de.dhbwstuttgart.syntaxtree ;
2013-10-18 13:33:46 +02:00
// ino.end
// ino.module.Class.8553.import
import java.util.ArrayList ;
import java.util.Collection ;
import java.util.Enumeration ;
import java.util.Hashtable ;
import java.util.Iterator ;
import java.util.Vector ;
2014-02-09 16:07:31 +01:00
2014-10-09 12:01:16 +02:00
import de.dhbwstuttgart.logger.Logger ;
2014-10-09 17:38:10 +02:00
import de.dhbwstuttgart.logger.Section ;
2014-09-02 10:33:54 +02:00
import de.dhbwstuttgart.core.AClassOrInterface ;
import de.dhbwstuttgart.core.IItemWithOffset ;
2014-09-05 11:49:31 +02:00
import de.dhbwstuttgart.parser.JavaClassName ;
2014-09-02 10:33:54 +02:00
import de.dhbwstuttgart.syntaxtree.misc.UsedId ;
2014-09-05 11:49:31 +02:00
import de.dhbwstuttgart.syntaxtree.modifier.Modifiers ;
2014-09-02 10:33:54 +02:00
import de.dhbwstuttgart.syntaxtree.statement.Block ;
import de.dhbwstuttgart.syntaxtree.statement.Expr ;
import de.dhbwstuttgart.syntaxtree.statement.Statement ;
import de.dhbwstuttgart.syntaxtree.type.GenericTypeVar ;
import de.dhbwstuttgart.syntaxtree.type.RefType ;
import de.dhbwstuttgart.syntaxtree.type.SuperWildcardType ;
import de.dhbwstuttgart.syntaxtree.type.Type ;
import de.dhbwstuttgart.syntaxtree.type.TypePlaceholder ;
import de.dhbwstuttgart.syntaxtree.type.WildcardType ;
import de.dhbwstuttgart.typeinference.* ;
import de.dhbwstuttgart.typeinference.assumptions.ClassAssumption ;
import de.dhbwstuttgart.typeinference.assumptions.TypeAssumptions ;
import de.dhbwstuttgart.typeinference.exceptions.DebugException ;
import de.dhbwstuttgart.typeinference.exceptions.TypeinferenceException ;
import de.dhbwstuttgart.typeinference.typedeployment.TypeInsertPoint ;
2014-09-02 11:07:16 +02:00
import de.dhbwstuttgart.typeinference.unify.FC_TTO ;
import de.dhbwstuttgart.typeinference.unify.Unify ;
2013-10-18 13:33:46 +02:00
// ino.class.Class.23010.declaration
2015-02-24 17:06:14 +01:00
public class Class extends GTVDeclarationContext implements AClassOrInterface , IItemWithOffset , Generic , GenericTypeInsertable
2013-10-18 13:33:46 +02:00
// ino.end
// ino.class.Class.23010.body
{
2014-02-12 02:12:12 +01:00
/ * *
* Log4j - Loggerinstanzen
* /
protected static Logger inferencelog = Logger . getLogger ( " inference " ) ;
2014-10-09 17:38:10 +02:00
//protected static Logger codegenlog = Logger.getLogger("codegen");
//protected static Logger parserlog = Logger.getLogger("parser");
2014-02-12 02:12:12 +01:00
protected UsedId pkgName ;
protected Modifiers modifiers ;
protected String name ;
2014-09-18 16:26:02 +02:00
private Vector < Type > superif = new Vector < Type > ( ) ;
2014-02-12 02:12:12 +01:00
public UsedId getPackageName ( )
{
return pkgName ;
}
public void setPackageName ( UsedId pkgName )
{
this . pkgName = pkgName ;
}
2014-09-02 18:49:19 +02:00
public JavaClassName getName ( )
2014-02-12 02:12:12 +01:00
{
2014-09-02 18:49:19 +02:00
return new JavaClassName ( ( this . pkgName ! = null ? this . pkgName . toString ( ) + " . " : " " ) + this . name ) ;
2014-02-12 02:12:12 +01:00
}
public void setName ( String strName )
{
name = strName ;
}
public void setModifiers ( Modifiers mod )
{
this . modifiers = mod ;
}
public Modifiers getModifiers ( )
{
return this . modifiers ;
}
/ * *
* Liefert die AccessFlags fuer den Bytecode zurueck .
* /
public short getAccessFlags ( )
{
short ret = 0 ;
if ( modifiers ! = null ) {
ret = modifiers . calculate_access_flags ( ) ;
}
return ret ;
}
2014-09-14 18:38:43 +02:00
2014-09-18 16:26:02 +02:00
public Vector < Type > getSuperInterfaces ( )
2014-02-12 02:12:12 +01:00
{
return superif ;
}
2014-09-14 18:38:43 +02:00
2014-09-18 16:26:02 +02:00
@Override
public void setSuperInterfaces ( Vector < Type > superif )
2014-02-12 02:12:12 +01:00
{
this . superif = superif ;
}
2013-10-18 13:33:46 +02:00
// ino.attribute.superclassid.23014.decldescription type=line
// private Status status;
// ino.end
// ino.attribute.superclassid.23014.declaration
public UsedId superclassid = ( SourceFile . READ_OBJECT_SUPERCLASSES_FROM_JRE ? UsedId . createFromQualifiedName ( " Object " , - 1 ) : null ) ;
// ino.end
// ino.attribute.class_block.23020.decldescription type=line
// private Class java;
// ino.end
// ino.attribute.class_block.23020.declaration
private Block class_block ;
// ino.end
// ino.attribute.paralist.23023.declaration
2014-10-08 19:00:17 +02:00
//private Vector<Type> paralist = new Vector<Type>(); // Parameterliste 'class xy<para1, para2,...>{}' wird gespeichert
2013-10-18 13:33:46 +02:00
// ino.end
// ino.attribute.parahash.23026.declaration
private Hashtable < String , String > parahash = new Hashtable < String , String > ( ) ; // parametrisierten Attrib. werden mit den Paramet.aus paralist verk.
// ino.end
// ino.attribute.isFirstLocalVarDecl.23029.declaration
public static boolean isFirstLocalVarDecl ; //Hilfsvariable fuer Offsets, hoth
// ino.end
2014-06-25 17:30:31 +02:00
//private Vector<GenericTypeVar> genericClassParameters=new Vector<GenericTypeVar>();
2013-10-18 13:33:46 +02:00
// ino.attribute.containedTypes.23032.decldescription type=line
// PL 05-07-30 eingefuegt. Vektor aller Typdeklarationen, die in der Klasse
// vorkommen. Wird in der Studienarbeit von Andreas Stadelmeier nur f<> r Verifizierung der Tests eingesetzt.
// ino.end
// ino.attribute.containedTypes.23032.declaration
private Vector < Type > containedTypes = new Vector < Type > ( ) ;
// ino.end
// ino.attribute.usedIdsToCheck.23035.declaration
private Vector < UsedId > usedIdsToCheck = new Vector < UsedId > ( ) ;
// ino.end
private TypeAssumptions typeAssumptions = null ; //muss mit null Initialisiert werden. Darf nur <20> ber getTypeAssumptions abgerufen werden.
// ino.attribute.parserlog.23038.declaration
2014-10-09 17:38:10 +02:00
//protected Logger parselog = Logger.getLogger("parser");
2013-10-18 13:33:46 +02:00
// ino.end
2014-10-09 17:38:10 +02:00
protected Logger typinferenzLog = Logger . getLogger ( Class . class . getName ( ) ) ;
2014-02-11 16:30:38 +01:00
private SyntaxTreeNode parent ;
2014-02-19 05:20:54 +01:00
private Vector < Field > fielddecl = new Vector < Field > ( ) ;
2014-06-25 17:30:31 +02:00
private GenericDeclarationList genericClassParameters ;
2014-07-16 14:35:12 +02:00
private int offset ;
2014-09-18 16:26:02 +02:00
private Type superClass ;
2013-10-18 13:33:46 +02:00
// ino.method.Class.23041.definition
2014-07-16 14:35:12 +02:00
public Class ( String name , int offset )
2013-10-18 13:33:46 +02:00
// ino.end
// ino.method.Class.23041.body
{
2014-02-12 02:12:12 +01:00
this . name = name ;
2013-10-18 13:33:46 +02:00
if ( name . equals ( " java.lang.Object " ) ) {
superclassid = null ;
}
2014-07-16 14:35:12 +02:00
this . offset = offset ;
2014-09-14 18:38:43 +02:00
if ( ! name . equals ( " Object " ) ) //Alle Klassen au<61> er Object erben von Object:
2014-09-18 16:26:02 +02:00
this . superClass = new Class ( " Object " , - 1 ) . getType ( ) ;
2013-10-18 13:33:46 +02:00
}
// ino.end
2014-10-07 15:36:18 +02:00
/ * *
* Erstellt eine Klasse , welche nur f <EFBFBD> r die Assumptions verwendet wird .
* Sie enth <EFBFBD> lt keine unn <EFBFBD> tigen Informationen , wie Offset oder ClassBody .
* @param name
* @param superClass
* @param modifiers
* @param supertypeGenPara - Eine Liste von Namen , welche die Generischen Parameter der Klasse darstellen .
* /
public Class ( String name , RefType superClass , Modifiers modifiers ,
Vector < String > supertypeGenPara ) {
this ( name , superClass , modifiers , 0 ) ;
if ( supertypeGenPara = = null ) return ;
Vector < GenericTypeVar > gtvs = new Vector < > ( ) ;
for ( String gname : supertypeGenPara ) {
GenericTypeVar newGTV = new GenericTypeVar ( gname , this , 0 ) ;
gtvs . add ( newGTV ) ;
}
2015-02-03 15:58:04 +01:00
this . setGenericParameter ( new GenericDeclarationList ( gtvs , 0 ) ) ;
2014-10-07 15:36:18 +02:00
}
2014-10-01 17:12:16 +02:00
public Class ( String name , RefType superClass , Modifiers mod , int offset ) {
this ( name , mod , offset ) ;
2014-10-08 19:00:17 +02:00
if ( superClass = = null ) this . superClass = new Class ( " Object " , - 1 ) . getType ( ) ;
2014-09-14 18:38:43 +02:00
}
2013-10-18 13:33:46 +02:00
// ino.method.Class.23044.definition
2014-07-16 14:35:12 +02:00
public Class ( String name , Modifiers mod , int offset )
2013-10-18 13:33:46 +02:00
// ino.end
// ino.method.Class.23044.body
{
2014-09-16 11:31:15 +02:00
this ( name , offset ) ;
2014-02-12 02:12:12 +01:00
this . modifiers = mod ;
2013-10-18 13:33:46 +02:00
}
// ino.end
2014-09-18 16:26:02 +02:00
public Class ( String name , Modifiers mod , ClassBody cb , Vector < Type > ct , Vector < UsedId > usedIdsToCheck ,
UsedId superclass , Vector < UsedId > superif , Vector < Type > paralist , int offset ) {
this ( name , mod , cb , ct , usedIdToRefType ( superclass ) , usedIdToRefType ( superif ) , paralist , offset ) ;
}
public Class ( String name , ClassBody cb , Vector < Type > ct ,
UsedId superclass , Vector < Type > superif , Vector < Type > paralist , int offset ) {
this ( name , null , cb , ct , usedIdToRefType ( superclass ) , superif , paralist , offset ) ;
}
public Class ( String name2 , Modifiers modifiers2 , ClassBody classBody ,
Vector < Type > containedTypes2 , UsedId usedId ,
Vector < Type > typeVector , Vector < Type > paraVector , int offset2 ) {
this ( name2 , modifiers2 , classBody , containedTypes2 , usedIdToRefType ( usedId ) , typeVector , paraVector , offset2 ) ;
}
public Class ( String name2 , Modifiers object , ClassBody classBody ,
Vector < Type > containedTypes2 , Vector < Type > typeVector ,
Vector < Type > paraVector , int offset2 ) {
this ( name2 , object , classBody , containedTypes2 , ( Type ) null , typeVector , paraVector , offset2 ) ;
}
private static Vector < Type > usedIdToRefType ( Vector < UsedId > superif2 ) {
Vector < Type > ret = new Vector < > ( ) ;
for ( UsedId id : superif2 ) ret . add ( usedIdToRefType ( id ) ) ;
return ret ;
}
private static Type usedIdToRefType ( UsedId superclass2 ) {
RefType ret = new RefType ( superclass2 . getSimpleName ( ) , null , superclass2 . getOffset ( ) ) ;
ret . set_ParaList ( superclass2 . get_ParaList ( ) ) ;
return ret ;
}
// ino.method.Class.23047.defdescription type=javadoc
2013-10-18 13:33:46 +02:00
/ * *
* Konstruktor , der die Angabe aller Parameter ermoeglicht .
* Zur Uebersichtlichkeit in der Grammatik .
* /
// ino.end
// ino.method.Class.23047.definition
2014-09-18 16:26:02 +02:00
public Class ( String name , Modifiers mod , ClassBody cb , Vector < Type > ct ,
2015-02-03 12:24:40 +01:00
Type superclass , Vector < Type > vector , Vector < ? extends Type > paralist , int offset )
2013-10-18 13:33:46 +02:00
// ino.end
// ino.method.Class.23047.body
{
2014-09-16 11:31:15 +02:00
this ( name , offset ) ;
2014-02-12 02:12:12 +01:00
this . modifiers = mod ;
2013-10-18 13:33:46 +02:00
if ( cb ! = null ) set_ClassBody ( cb ) ;
if ( ct ! = null ) setContainedTypes ( ct ) ;
2014-09-16 11:31:15 +02:00
if ( superclass ! = null ) {
2014-09-18 16:26:02 +02:00
this . superClass = superclass ;
2014-09-16 11:31:15 +02:00
}
2014-09-18 16:26:02 +02:00
if ( vector ! = null ) setSuperInterfaces ( vector ) ;
2015-02-03 12:24:40 +01:00
if ( paralist ! = null & & ! paralist . isEmpty ( ) ) {
Type lastPara = paralist . lastElement ( ) ;
Integer lastItemOffset = lastPara . getOffset ( ) + lastPara . get_Name ( ) . length ( ) ;
this . setGenericParameter ( new GenericDeclarationList ( ( Vector < GenericTypeVar > ) paralist , lastItemOffset ) ) ;
/ *
2014-10-08 19:00:17 +02:00
//this.set_ParaList(paralist);
Vector < GenericTypeVar > gtvList = new Vector < > ( ) ;
int lastItemOffset = 0 ;
for ( Type paraT : paralist ) {
GenericTypeVar gtv = new GenericTypeVar ( paraT . get_Name ( ) , this , paraT . getOffset ( ) ) ;
gtvList . add ( gtv ) ;
lastItemOffset = paraT . getOffset ( ) + paraT . get_Name ( ) . length ( ) ;
}
this . genericClassParameters = new GenericDeclarationList ( gtvList , lastItemOffset ) ;
2015-02-03 12:24:40 +01:00
* /
2014-09-16 11:31:15 +02:00
}
2013-10-18 13:33:46 +02:00
if ( usedIdsToCheck ! = null ) this . usedIdsToCheck = usedIdsToCheck ;
// HOTI 10.5.06
// Object darf natuerlich nicht Object als Superklasse haben
// Sonst gibt es eine endlosaufloesung
if ( name . equals ( " java.lang.Object " ) ) {
superclassid = null ;
}
2014-09-16 11:31:15 +02:00
2013-10-18 13:33:46 +02:00
2014-10-09 17:38:10 +02:00
//parserlog.debug("Neue Klasse: " + name);
2013-10-18 13:33:46 +02:00
}
// ino.end
2014-09-18 16:26:02 +02:00
2014-09-16 11:31:15 +02:00
public Vector < Field > getFields ( )
2014-02-14 17:31:55 +01:00
{
return fielddecl ;
}
/ * *
* @author Andreas Stadelmeier , a10023
* F <EFBFBD> gt der Klasse eine Feld hinzu .
2014-02-19 05:20:54 +01:00
* Pr <EFBFBD> ft dabei , ob es sich um einen Constructor handelt und wandelt diesen direkt um .
2014-02-14 17:31:55 +01:00
* @param feld
* /
public void addField ( Field i )
{
2014-02-19 17:32:43 +01:00
fielddecl . addElement ( i ) ;
2014-02-14 17:31:55 +01:00
}
2013-10-18 13:33:46 +02:00
// ino.method.getUsedIdsToCheck.23050.definition
public Vector < UsedId > getUsedIdsToCheck ( )
// ino.end
// ino.method.getUsedIdsToCheck.23050.body
{
return usedIdsToCheck ;
}
// ino.end
// ino.method.setContainedTypes.23053.definition
public void setContainedTypes ( Vector < Type > containedTypes )
// ino.end
// ino.method.setContainedTypes.23053.body
{
this . containedTypes = containedTypes ;
}
// ino.end
// ino.method.getContainedTypes.23056.definition
public Vector < Type > getContainedTypes ( )
// ino.end
// ino.method.getContainedTypes.23056.body
{
return containedTypes ;
}
// ino.end
2014-10-08 19:00:17 +02:00
/ *
2013-10-18 13:33:46 +02:00
// ino.method.complete_paralist.23062.definition
public Vector < Type > complete_paralist ( boolean ext )
// ino.end
// ino.method.complete_paralist.23062.body
{
//Diese Funktion vervollt<6C> ndigt die Parameterliste f<> r vererbte Klassen
Vector < Type > child = paralist ;
paralist = ( Vector < Type > ) superclassid . get_ParaList ( ) ;
for ( Enumeration < Type > e = child . elements ( ) ; e . hasMoreElements ( ) ; ) {
paralist . addElement ( e . nextElement ( ) ) ;
}
return this . paralist ;
}
// ino.end
2014-10-08 19:00:17 +02:00
* /
2013-10-18 13:33:46 +02:00
2014-03-12 16:32:50 +01:00
/ * *
* Generiert die ClassFile f <EFBFBD> r diese Klasse .
* @param typeinferenceResult - Das ResultSet einer Typinferierung oder null , falls alle Typen eindeutig feststehen .
* @return
* @throws JVMCodeException
2014-09-02 18:49:19 +02:00
2013-10-18 13:33:46 +02:00
// ino.method.codegen.23071.definition
2014-03-12 16:32:50 +01:00
public ClassFile codegen ( ResultSet typeinferenceResult )
2013-10-18 13:33:46 +02:00
throws JVMCodeException
// ino.end
// ino.method.codegen.23071.body
{
ClassFile classfile = new ClassFile ( ) ;
String superClass ;
// Handling der Superklasse
if ( superclassid ! = null ) {
superClass = superclassid . get_codegen_UsedId ( ) ;
} else {
superClass = " java/lang/Object " ;
}
// Handling der Package
2014-03-12 16:32:50 +01:00
//String pkgName = "";
//if (sf.getPackageName() != null) {
// pkgName = sf.getPackageName().get_codegen_UsedId() + "/";
//}
2013-10-18 13:33:46 +02:00
2014-03-12 16:32:50 +01:00
//ge<67> ndert von Andreas Stadelmeier: pkgName wird nicht mehr aus dem SourceFile ausgelesen:
2014-03-12 18:28:30 +01:00
String packageName = " " ;
if ( pkgName ! = null ) packageName = pkgName . get_Name_1Element ( ) ;
2014-09-02 18:49:19 +02:00
classfile . add_class ( getName ( ) , superClass , getAccessFlags ( ) ) ;
2013-10-18 13:33:46 +02:00
// Handling fuer Superinterfaces
classfile . addSuperInterfaces ( getSuperInterfaces ( ) ) ;
// Generics hinzufuegen - falls erforderlich
classfile . addGenerics ( this . paralist , superclassid , this . getSuperInterfaces ( ) ) ;
// Body der Classfile generieren
2014-02-14 17:31:55 +01:00
//if(body != null) {
this . codegen ( classfile , this . paralist ) ;
//}
2013-10-18 13:33:46 +02:00
// Ueberpruefung, ob Konstruktor generiert
// Falls nicht, default-Konstruktor erzeugen
if ( ! classfile . get_constructor_founded ( ) ) {
classfile . add_method ( " <init> " , " ()V " , null , null , null , ( short ) 0 , this . paralist , false ) ;
}
2014-03-12 16:32:50 +01:00
//classfile.codegen();
2013-10-18 13:33:46 +02:00
codegenlog . info ( " Compilierung erfolgreich abgeschlossen, " + getName ( ) + " .class erstellt. " ) ;
2014-03-12 16:32:50 +01:00
return classfile ;
2013-10-18 13:33:46 +02:00
}
2014-09-02 18:49:19 +02:00
* /
2014-09-05 11:49:31 +02:00
2013-10-18 13:33:46 +02:00
public void set_UsedId ( UsedId uid )
// ino.end
// ino.method.set_UsedId.23074.body
{
this . superclassid = uid ;
}
// ino.end
2014-02-14 17:31:55 +01:00
/ * *
* Setzt den ClassBody dieser Klasse . Wird zum Parsen ben <EFBFBD> tigt .
* Der ClassBody enth <EFBFBD> lt s <EFBFBD> mtliche Felder dieser Klasse .
* Mit dem Aufruf dieser Methode werden alle Felder des ClassBody in diese Class <EFBFBD> bertragen .
* ( Nur einmal w <EFBFBD> hrend des Parsens aufrufen ! )
* /
2013-10-18 13:33:46 +02:00
public void set_ClassBody ( ClassBody body )
{
2014-02-14 17:31:55 +01:00
Vector < Field > tempFields = body . getFields ( ) ;
for ( Field f : this . getFields ( ) ) {
if ( f instanceof Method ) { //Wenn es sich um eine Methode handelt ist eine zus<75> tzliche Pr<50> fung erfoderlich: (Ist es ein Konstruktor?)
Method m = ( Method ) f ;
/ *
* Ermitteln ob es sich bei der Methode um einen Konstruktor handelt :
* ( Parser kann nicht zwischen Methode und Konstruktor unterscheiden .
* Denn f <EFBFBD> r einen Konstruktor gelten besondere Regeln :
* - Typ des Blocks eines Konstruktor ist void ( kein Return - Statement )
* - R <EFBFBD> ckgabetyp der Methode / Konstruktors ist der Typ der Klasse
* - Ein Konstruktor kann nicht aufgerufen werden ( nur mit new )
* /
2014-04-15 14:56:20 +02:00
if ( m . get_Method_Name ( ) . equals ( " <init> " ) ) throw new TypeinferenceException ( " <init> ist kein g<> ltiger Methodenname " , m ) ;
2014-02-14 17:31:55 +01:00
if ( ( m . get_Method_Name ( ) . equals ( this . getName ( ) ) ) ) {
Constructor constructor = new Constructor ( m ) ;
tempFields . add ( constructor ) ; //Den Konstruktor anstatt der Methode anf<6E> gen
} else {
//Handelt es sich um keinen Konstruktor, dann die Methode unver<65> ndert den Feldern hinzuf<75> gen:
tempFields . add ( m ) ;
}
} else {
tempFields . add ( f ) ; //Ansonsten das Feld anf<6E> gen...
}
}
this . fielddecl = tempFields ;
2013-10-18 13:33:46 +02:00
}
// ino.method.set_class_block.23080.definition
public void set_class_block ( Block block )
// ino.end
// ino.method.set_class_block.23080.body
{
this . class_block = block ;
}
// ino.end
2014-02-11 02:47:39 +01:00
2013-10-18 13:33:46 +02:00
// ino.method.get_Superclass_Name.23086.definition
2014-09-02 18:49:19 +02:00
public JavaClassName get_Superclass_Name ( )
2013-10-18 13:33:46 +02:00
// ino.end
// ino.method.get_Superclass_Name.23086.body
{
if ( superclassid ! = null )
return superclassid . getQualifiedName ( ) ;
else
return null ;
}
// ino.end
2014-02-14 17:31:55 +01:00
2013-10-18 13:33:46 +02:00
// ino.method.get_class_block.23092.definition
public Block get_class_block ( )
// ino.end
// ino.method.get_class_block.23092.body
{
return class_block ;
}
// ino.end
// ino.method.does_Class_extend.23095.definition
public boolean does_Class_extend ( )
// ino.end
// ino.method.does_Class_extend.23095.body
{
if ( superclassid = = null )
return false ;
else
return true ;
}
// ino.end
2014-10-08 19:00:17 +02:00
/ *
2013-10-18 13:33:46 +02:00
// ino.method.set_ParaList.23098.definition
public void set_ParaList ( Vector < Type > para )
// ino.end
// ino.method.set_ParaList.23098.body
{
this . paralist = para ;
}
// ino.end
2014-10-08 19:00:17 +02:00
* /
2013-10-18 13:33:46 +02:00
// ino.method.get_ParaList.23101.definition
2014-10-08 19:00:17 +02:00
public Vector < ? extends Type > get_ParaList ( )
2013-10-18 13:33:46 +02:00
// ino.end
// ino.method.get_ParaList.23101.body
{
2014-10-08 19:00:17 +02:00
//if(this.paralist == null)return new Vector<Type>();
return this . getGenericParameter ( ) ;
2013-10-18 13:33:46 +02:00
}
// ino.end
// ino.method.set_ParaHash.23104.definition
public void set_ParaHash ( Hashtable < String , String > hash )
// ino.end
// ino.method.set_ParaHash.23104.body
{
this . parahash = hash ;
}
// ino.end
// ino.method.get_ParaHash.23107.definition
public Hashtable < String , String > get_ParaHash ( )
// ino.end
// ino.method.get_ParaHash.23107.body
{
return this . parahash ;
}
// ino.end
/ * static void string_rec ( Hashtable ht ) {
String record = " " ;
boolean isError = false ;
record = record . concat ( " [ " ) ;
for ( Enumeration e = ht . elements ( ) , k = ht . keys ( ) ; e . hasMoreElements ( ) ; ) {
String s = ( String ) k . nextElement ( ) ;
Object o = e . nextElement ( ) ;
record = record . concat ( " " + s ) ;
if ( o instanceof Type ) {
record = record . concat ( " = " + ( ( Type ) o ) . getName ( ) ) ;
} else if ( o instanceof Hashtable ) {
record = record . concat ( " = " ) ;
string_rec ( ( Hashtable ) o ) ;
if ( e . hasMoreElements ( ) )
record = record . concat ( " , " ) ;
} else if ( o instanceof String ) {
record = record . concat ( " = " + o ) ;
if ( e . hasMoreElements ( ) )
record = record . concat ( " , " ) ;
}
else {
record = ( " [ FEHLER : string_rec : unbekannter Typ ! ! ! ! ! ! " );
isError = true ;
}
}
record = record . concat ( " ] " ) ;
if ( isError ) {
parserlog . error ( record ) ;
} else {
parserlog . debug ( record ) ;
}
} * /
/ * static void string_rec ( Vector v ) {
String record = ( " { " ) ;
for ( Enumeration e = v . elements ( ) ; e . hasMoreElements ( ) ; ) {
Type t = ( Type ) e . nextElement ( ) ;
record = record . concat ( " " + t . getName ( ) ) ;
if ( e . hasMoreElements ( ) )
record = record . concat ( " , " ) ;
}
record = record . concat ( " } " ) ;
parserlog . debug ( record ) ;
} * /
/ * static void string_rec ( String st , Hashtable ht ) {
String record = ( st ) ;
boolean isError = false ;
record = record . concat ( " [ " ) ;
for ( Enumeration e = ht . elements ( ) , k = ht . keys ( ) ; e . hasMoreElements ( ) ; ) {
String s = ( String ) k . nextElement ( ) ;
Object o = e . nextElement ( ) ;
record = record . concat ( " " + s ) ;
if ( o instanceof Type ) {
record = record . concat ( " = " + ( ( Type ) o ) . getName ( ) ) ;
}
else if ( o instanceof Hashtable ) {
record = record . concat ( " = " ) ;
string_rec ( ( Hashtable ) o ) ;
if ( e . hasMoreElements ( ) )
record = record . concat ( " , " ) ;
}
else if ( o instanceof String ) {
record = record . concat ( " = " + o ) ;
if ( e . hasMoreElements ( ) )
record = record . concat ( " , " ) ;
}
else {
record = ( " [ FEHLER : string_rec : unbekannter Typ ! ! ! ! ! ! " +o);
isError = true ;
}
}
record = record . concat ( " ] " ) ;
if ( isError ) {
parserlog . error ( record ) ;
} else {
parserlog . debug ( record ) ;
}
} * /
/ * static void string_rec ( String st , Vector v )
{
String record = ( st ) ;
record = record . concat ( " { " ) ;
for ( Enumeration e = v . elements ( ) ; e . hasMoreElements ( ) ; )
{
Type t = ( Type ) e . nextElement ( ) ;
record = record . concat ( " " + t . getName ( ) ) ;
if ( e . hasMoreElements ( ) )
{
record = record . concat ( " , " ) ;
}
}
record = record . concat ( " } " ) ;
parserlog . debug ( record ) ;
} * /
/////////////////////////////////////////////////////////////////////////
// TypeReconstructionAlgorithmus
/////////////////////////////////////////////////////////////////////////
// ino.method.TRProg.23110.defdescription type=javadoc
/ * *
* Ausgangspunkt f <EFBFBD> r den Typrekonstruktionsalgorithmus . Hier werden zun <EFBFBD> chst
* die Mengen von Typannahmen V_fields_methods und V_i erstellt , die als Eingabe
* f <EFBFBD> r den Algorithmus dienen . < br / >
* ( siehe Algorithmus 5 . 17 TRProg , Martin Pl <EFBFBD> micke )
* < br / > Author : J <EFBFBD> rg B <EFBFBD> uerle
* @param supportData
* @param globalAssumptions
* @return Liste aller bisher berechneten , m <EFBFBD> glichen Typkombinationen
* @throws CTypeReconstructionException
* /
// ino.end
// ino.method.TRProg.23110.definition
2014-02-11 02:47:39 +01:00
public ConstraintsSet typeReconstruction ( FC_TTO supportData , TypeAssumptions globalAssumptions )
2013-10-18 13:33:46 +02:00
// ino.end
// ino.method.TRProg.23110.body
{
2014-09-04 16:35:44 +02:00
/ *
* /
2013-10-18 13:33:46 +02:00
//////////////////////////////
// Und los geht's:
//////////////////////////////
2014-11-04 13:47:05 +01:00
inferencelog . info ( " Rufe TRStart()... " , Section . TYPEINFERENCE ) ;
2014-09-02 18:49:19 +02:00
2014-10-09 17:38:10 +02:00
typinferenzLog . debug ( " Erstellte FiniteClosure: " + supportData , Section . TYPEINFERENCE ) ;
2013-10-18 13:33:46 +02:00
//////////////////////////////
// Ab hier ...
// @author A10023 - Andreas Stadelmeier:
//////////////////////////////
//Erzeuge Assumptions:
2014-03-19 15:14:50 +01:00
TypeAssumptions assumptions = this . getPrivateFieldAssumptions ( ) ;
//Globale Assumptions anf<6E> gen:
2013-10-18 13:33:46 +02:00
assumptions . add ( globalAssumptions ) ;
2014-06-18 13:37:17 +02:00
ConstraintsSet oderConstraints = new ConstraintsSet ( ) ;
2014-07-17 20:17:59 +02:00
2014-10-08 19:00:17 +02:00
for ( Type gparam : this . get_ParaList ( ) ) {
2014-07-17 20:17:59 +02:00
if ( gparam instanceof GenericTypeVar ) assumptions . add ( ( ( GenericTypeVar ) gparam ) . createAssumptions ( ) ) ; //Constraints f<> r die Generischen Variablen erstellen und diese dem AssumptionsSet hinzuf<75> gen
}
2014-10-08 19:00:17 +02:00
for ( Type gparam : this . get_ParaList ( ) ) {
2014-06-18 13:37:17 +02:00
if ( gparam instanceof GenericTypeVar ) oderConstraints . add ( ( ( GenericTypeVar ) gparam ) . TYPE ( assumptions ) ) ; //Constraints f<> r die Generischen Variablen erstellen und diese dem AssumptionsSet hinzuf<75> gen
2014-06-18 11:30:14 +02:00
}
2014-10-09 17:38:10 +02:00
typinferenzLog . debug ( " Erstellte Assumptions: " + assumptions , Section . TYPEINFERENCE ) ;
2014-02-12 22:10:33 +01:00
/ *
2013-10-18 13:33:46 +02:00
//Generiere Liste mit Expressions, welche zur Initialisierung von Feldern verwendet werden.
Vector < Expr > fieldInitializers = new Vector < Expr > ( ) ;
2014-02-12 02:12:12 +01:00
for ( FieldDeclaration field : body . getFieldInitializations ( ) ) {
2013-10-18 13:33:46 +02:00
Assign fieldAssign = new Assign ( 0 , 0 ) ;
Expr expr1 = new LocalOrFieldVar ( field . getName ( ) , 0 ) ;
Expr expr2 = field . getWert ( ) ;
fieldAssign . set_Expr ( expr1 , expr2 ) ;
fieldInitializers . add ( fieldAssign ) ;
}
2014-02-12 22:10:33 +01:00
* /
2013-10-18 13:33:46 +02:00
2014-02-12 22:10:33 +01:00
//ConstraintsSet oderConstraints = this.TYPE(this.getMethodList(), fieldInitializers, assumptions);
2014-06-18 13:37:17 +02:00
2014-02-14 17:31:55 +01:00
for ( Field f : this . getFields ( ) ) {
2014-02-12 22:10:33 +01:00
oderConstraints . add ( f . TYPE ( assumptions ) ) ;
}
2014-10-09 17:38:10 +02:00
typinferenzLog . debug ( " Erstellte Constraints: " + oderConstraints , Section . TYPEINFERENCE ) ;
2013-10-18 13:33:46 +02:00
2014-02-11 02:47:39 +01:00
return oderConstraints ;
2013-10-18 13:33:46 +02:00
/ *
CReconstructionTupleSet retTupleSet = this . TRStart ( methodList , V , V_fields_methods , supportData ) ;
inferencelog . debug ( " Bin aus TRStart() zur<75> ck in TRProg(). " ) ;
//////////////////////////////
// Neu Ergebnismenge A aller
// Typannahmen erzeugen:
//////////////////////////////
inferencelog . debug ( " Erstelle Ergebnismenge... " ) ;
Vector < CTypeReconstructionResult > newA = new Vector < CTypeReconstructionResult > ( ) ;
// Alle bisherigen M<> glichkeiten an Typkombinationen durchgehen:
Vector < CTypeReconstructionResult > oldA = supportData . getA ( ) ;
for ( int i = 0 ; i < oldA . size ( ) ; i + + ) {
CTypeReconstructionResult oneReconResult = oldA . elementAt ( i ) ;
// Und mit den neuen m<> glichen Typkombinationen vereinigen:
Iterator < CReconstructionTuple > retTupleIt = retTupleSet . getIterator ( ) ;
while ( retTupleIt . hasNext ( ) ) {
CReconstructionTuple possibleTuple = retTupleIt . next ( ) ;
this . clear ( possibleTuple . getAssumSet ( ) , rememberLocals ) ;
// Neue Typinformationen mit alten Typinformationen vereinigen:
CTypeReconstructionResult newReconResult = oneReconResult . shallowCopy ( ) ;
newReconResult . addDataFromTupel ( possibleTuple ) ;
//PL 05-08-02 eingefuegt
//Fuegt Klassen und GenericTypeVars zu A hinzu
newReconResult . addClassName ( this . getName ( ) ) ;
Vector < GenericTypeVar > genericsList = new Vector < GenericTypeVar > ( ) ;
for ( int ii = 0 ; ii < this . get_ParaList ( ) . size ( ) ; ii + + ) {
Type para = ( Type ) this . get_ParaList ( ) . elementAt ( ii ) ;
if ( para instanceof GenericTypeVar ) {
genericsList . addElement ( ( GenericTypeVar ) para ) ;
}
}
newReconResult . addGenericTypeVars ( this . getName ( ) , genericsList ) ;
//Hinzuf<75> gen:
newA . addElement ( newReconResult ) ;
}
}
return newA ;
* /
}
// ino.end
/ * *
* @return Eine Liste mit allen Methoden dieser Klasse
2014-02-19 05:20:54 +01:00
2013-10-18 13:33:46 +02:00
private Vector < Method > getMethodList ( ) {
2014-02-19 05:20:54 +01:00
2014-02-11 02:47:39 +01:00
2013-10-18 13:33:46 +02:00
if ( this . methodList ! = null ) return this . methodList ;
//TODO: Unn<6E> tige Berechnungen im folgenden Code rausk<73> rzen:
//////////////////////////////
// Die Eingabedaten bauen:
//////////////////////////////
inferencelog . debug ( " Baue Eingabedaten... " ) ;
TypeAssumptions V_fields_methods = new TypeAssumptions ( this . getName ( ) ) ;
Vector < Method > methodList = new Vector < Method > ( ) ;
Vector < CTypeAssumptionSet > V = new Vector < CTypeAssumptionSet > ( ) ;
Vector < CTypeAssumption > rememberLocals = new Vector < CTypeAssumption > ( ) ;
//////////////////////////////
// Alle Felder durchgehen:
// Zuerst alle Attribute, dann Methoden
// ge<67> ndert: hoth 06.04.2006
//////////////////////////////
2014-02-14 17:31:55 +01:00
for ( Field field : this . getFields ( ) )
2013-10-18 13:33:46 +02:00
{
//////////////////////////////
// Attribut:
//////////////////////////////
2014-02-11 02:47:39 +01:00
2013-10-18 13:33:46 +02:00
}
2014-02-14 17:31:55 +01:00
for ( Field field : this . getFields ( ) )
2013-10-18 13:33:46 +02:00
{
//////////////////////////////
// Methode:
//////////////////////////////
if ( field instanceof Method ) {
Method method = ( Method ) field ;
//if(method.get_Method_Name().equals(this.getName()) && ((method.getReturnType().equals(new mycompiler.mytype.Void(0))) || method.getReturnType() instanceof TypePlaceholder)){
if ( method . get_Method_Name ( ) . equals ( this . getName ( ) ) ) {
method . set_Method_Name ( " <init> " ) ;
}
//hoth: 06.04.2006
//durchlaufe Block und suche nach Objektvariablen fuer Offset-Markierung
Iterator < CTypeAssumption > fieldVarIterator = V_fields_methods . iterator ( ) ;
while ( fieldVarIterator . hasNext ( ) )
{
//Wenn ObjektVariable
CTypeAssumption dieAssum = fieldVarIterator . next ( ) ;
if ( dieAssum instanceof CInstVarTypeAssumption )
{
Class . isFirstLocalVarDecl = false ;
if ( method . get_Block ( ) ! = null )
method . get_Block ( ) . addOffsetsToAssumption ( dieAssum , dieAssum . getIdentifier ( ) , true ) ;
}
}
methodList . addElement ( method ) ;
// F<> r V_fields_methods:
CMethodTypeAssumption methodAssum = new CMethodTypeAssumption ( this . getType ( ) , method . get_Method_Name ( ) , method . getReturnType ( ) , method . getParameterCount ( ) , method . getLineNumber ( ) , method . getOffset ( ) , new Vector < Integer > ( ) , method . getGenericMethodParameters ( ) ) ; // Typannahme bauen...
// Methode in V_Fields_methods ablegen
// Dabei wird die OverloadedMethodID ermittelt !!
// => Method setzenuct
V_fields_methods . add ( methodAssum ) ;
method . setOverloadedID ( methodAssum . getHashSetKey ( ) . getOverloadedMethodID ( ) ) ;
// F<> r die V_i:
CTypeAssumptionSet localAssum = new CTypeAssumptionSet ( ) ;
// Bauen...
ParameterList parameterList = method . getParameterList ( ) ;
if ( parameterList ! = null ) {
for ( int i = 0 ; i < parameterList . sc_get_Formalparalist ( ) . size ( ) ; i + + ) {
FormalParameter para = parameterList . sc_get_Formalparalist ( ) . elementAt ( i ) ;
// F<> r V_fields_methods:
2014-02-19 05:20:54 +01:00
CParaTypeAssumption paraAssum = new CParaTypeAssumption ( this . getName ( ) , method . get_Method_Name ( ) , method . getParameterCount ( ) , method . getOverloadedID ( ) , para . getIdentifier ( ) , para . getType ( ) , para . getLineNumber ( ) , para . getOffset ( ) , new Vector < Integer > ( ) ) ;
2013-10-18 13:33:46 +02:00
//fuege Offsets fuer Parameter hinzu, hoth: 06.04.2006
Class . isFirstLocalVarDecl = false ;
if ( method . get_Block ( ) ! = null )
method . get_Block ( ) . addOffsetsToAssumption ( paraAssum , paraAssum . getIdentifier ( ) , true ) ;
methodAssum . addParaAssumption ( paraAssum ) ;
// F<> r die V_i:
2014-02-19 05:20:54 +01:00
CLocalVarTypeAssumption varAssum = new CLocalVarTypeAssumption ( this . getName ( ) , method . get_Method_Name ( ) , method . getParameterCount ( ) , method . getOverloadedID ( ) , " 1 " , para . getIdentifier ( ) , para . getType ( ) , para . getLineNumber ( ) , para . getOffset ( ) , new Vector < Integer > ( ) ) ;
2013-10-18 13:33:46 +02:00
localAssum . addElement ( varAssum ) ;
rememberLocals . addElement ( varAssum ) ;
}
}
// ...und hinzuf<75> gen:
V . addElement ( localAssum ) ;
}
}
this . methodList = methodList ;
return methodList ;
2014-02-19 05:20:54 +01:00
2013-10-18 13:33:46 +02:00
}
2014-02-19 05:20:54 +01:00
* /
2013-10-18 13:33:46 +02:00
/ * *
2014-03-19 15:14:50 +01:00
* Ermittelt alle privaten Felder und Methoden der Klasse und Erstellt eine Assumption f <EFBFBD> r diese .
* Bemerkung : Momentan werden noch alle Felder dieser Klasse zur <EFBFBD> ckgegeben .
2013-10-18 13:33:46 +02:00
* @return Die erstellten TypeAssumptions
* /
2014-03-19 15:14:50 +01:00
private TypeAssumptions getPrivateFieldAssumptions ( ) {
2013-10-18 13:33:46 +02:00
if ( this . typeAssumptions ! = null ) return this . typeAssumptions ; //Das sorgt daf<61> r, dass die Assumptions nur einmalig generiert werden.
TypeAssumptions assumptions = new TypeAssumptions ( this . getName ( ) ) ;
2014-02-19 05:20:54 +01:00
//this.getMethodList(); //Diese Funktion muss zuerst ausgef<65> hrt werden.
2013-10-18 13:33:46 +02:00
//Assumption f<> r this, also die aktuelle Klasse: (ist nicht mehr n<> tig, da jedes AssumptionSet einer Klasse (dem namen einer Klasse) zugewiesen ist.
//CLocalVarTypeAssumption thisAssumption = new CLocalVarTypeAssumption(this.name, name, 0, 0, name, "this", new RefType(name,0), 0, 0, null);
//assumptions.setThisV(thisAssumption);
2014-02-14 17:31:55 +01:00
for ( Field field : this . getFields ( ) ) {
2014-04-14 18:05:24 +02:00
if ( ! field . isPublic ( ) ) assumptions . add ( field . createTypeAssumptions ( this ) ) ;
2013-10-18 13:33:46 +02:00
}
//Eine Assumption f<> r den Standardkonstruktor:
// (Ein Standardkonstruktor wird immer angef<65> gt, da es momentan keine statischen Klassen gibt)
2014-02-19 05:20:54 +01:00
//auskommentiert, da der Standardkonstruktor beim Parser-Postprocessing angef<65> gt wird.
//if(assumptions.getMethodAssumptions(this.getName(), "<init>").size()==0){ //Falls kein Konstruktor f<> r diese Klasse definiert wurde:
// assumptions.addMethodAssumption(new RefType(this.getName(),0), "<init>", new RefType(this.getName(),0), new Vector<CParaTypeAssumption>());
//}
2013-10-18 13:33:46 +02:00
this . typeAssumptions = assumptions ; //Diese m<> ssen anschlie<69> end nicht wieder generiert werden.
return assumptions ;
}
2014-09-02 10:33:54 +02:00
/ *
2013-10-18 13:33:46 +02:00
public ConstraintsSet TYPE ( Vector < Method > methodList , Vector < Expr > fielddeclarationList , TypeAssumptions assumptions ) {
ConstraintsSet ret = new ConstraintsSet ( ) ;
// Die Felddeklarationen werden zu den Assumptions hinzugef<65> gt und gelten danach f<> r jede Methode.
//TypeAssumptions assumptionsPlusFieldAssumptions = new TypeAssumptions(assumptions);
for ( Expr expr : fielddeclarationList ) {
//ret.add(expr.TYPEStmt(assumptionsPlusFieldAssumptions));
ret . add ( expr . TYPEStmt ( assumptions ) ) ;
}
for ( Method methode : methodList ) {
//ret.add(methode.TYPE(assumptionsPlusFieldAssumptions));
ret . add ( methode . TYPE ( assumptions ) ) ;
}
return ret ;
}
2014-09-02 10:33:54 +02:00
* /
2014-09-05 11:49:31 +02:00
2013-10-18 13:33:46 +02:00
// ino.method.RetType.23119.defdescription type=javadoc
/ * *
* Liefert den berechneten R <EFBFBD> ckgabetyp f <EFBFBD> r die <EFBFBD> bergebene Methode zur <EFBFBD> ck . < br / >
* ( siehe Algorithmus RetType , Martin Pl <EFBFBD> micke )
* < br / > Author : J <EFBFBD> rg B <EFBFBD> uerle
* @param me
* @param V
* @return
2014-09-02 18:49:19 +02:00
2013-10-18 13:33:46 +02:00
// ino.end
// ino.method.RetType.23119.definition
private Type RetType ( Method me , CTypeAssumptionSet V )
// ino.end
// ino.method.RetType.23119.body
{
CTypeAssumption assum = V . getElement ( new CMethodKey ( this . getName ( ) , me . get_Method_Name ( ) , me . getParameterCount ( ) , me . getOverloadedID ( ) ) ) ;
if ( assum instanceof CMethodTypeAssumption ) {
return ( ( CMethodTypeAssumption ) assum ) . getAssumedType ( ) ;
}
else return null ;
}
// ino.end
2014-09-02 18:49:19 +02:00
* /
2014-02-10 04:25:14 +01:00
// ino.method.toString.23125.defdescription type=javadoc
2013-10-18 13:33:46 +02:00
/ * *
* < br / > Author : Martin Pl <EFBFBD> micke
* @return
* /
// ino.end
// ino.method.toString.23125.definition
public String toString ( )
// ino.end
// ino.method.toString.23125.body
{
//return superclassid.toString() + body.toString();
//geaendert PL 07-07-28
2014-02-14 17:31:55 +01:00
return name ;
2013-10-18 13:33:46 +02:00
}
// ino.end
// ino.method.wandleRefTypeAttributes2GenericAttributes.23128.defdescription type=javadoc
/ * *
* Alle Methoden der Klassen <EFBFBD> berpr <EFBFBD> fen , ob sie als
* RefType deklarierte Attribute haben , die aber GenericTypeVars sind
* und ggf . ersetzen
*
* Bsp . :
* bei public E elementAt ( i ) { . . . } wird E vorerst als RefType erkannt
*
* /
// ino.end
// ino.method.wandleRefTypeAttributes2GenericAttributes.23128.definition
public void wandleRefTypeAttributes2GenericAttributes ( )
// ino.end
// ino.method.wandleRefTypeAttributes2GenericAttributes.23128.body
{
2014-03-27 16:43:07 +01:00
for ( Field f : this . getFields ( ) ) {
2014-07-09 16:04:33 +02:00
//f.wandleRefTypeAttributes2GenericAttributes(paralist);
2014-03-27 16:43:07 +01:00
}
/ *
2014-02-14 17:31:55 +01:00
Vector fieldsAndMethods = this . getFields ( ) ;
2013-10-18 13:33:46 +02:00
// Alle Methoden und Instanzvariablen durchgehen
for ( int i = 0 ; i < fieldsAndMethods . size ( ) ; i + + ) {
// Ist es eine Methode?
if ( fieldsAndMethods . get ( i ) instanceof Method ) {
Method method = ( Method ) fieldsAndMethods . get ( i ) ;
method . wandleRefTypeAttributes2GenericAttributes ( paralist ) ;
} // Ist es eine InstanzVariable?
2014-03-27 16:43:07 +01:00
* //*
2013-10-18 13:33:46 +02:00
else if ( fieldsAndMethods . get ( i ) instanceof InstVarDecl ) {
InstVarDecl instVar = ( InstVarDecl ) fieldsAndMethods . get ( i ) ;
Type type = instVar . getType ( ) ;
// Nur wenn es sich um ein RefType-Field handelt
if ( type instanceof RefType ) {
GenericTypeVar pendant = ClassHelper . findGenericType ( ( RefType ) type , paralist , null ) ;
if ( pendant ! = null ) { //Wenn generisch, dann modifizieren
instVar . setType ( pendant ) ;
}
}
2014-03-27 16:43:07 +01:00
}
} * /
2013-10-18 13:33:46 +02:00
}
// ino.end
// private void removeOldLocalVars(CTypeAssumptionSet V_i, CTypeAssumptionSet V_last){
// Enumeration<IHashSetKey> enumer = V_last.getHashtable().keys();
// while(enumer.hasMoreElements()){
// CTypeAssumption currentAssum = V_last.getElement(enumer.nextElement());
// if(currentAssum instanceof CLocalVarTypeAssumption){
// V_i.removeElement(currentAssum);
// }
// }
//
// }
2014-09-05 11:49:31 +02:00
2013-10-18 13:33:46 +02:00
// ino.method.getSimpleName.23140.defdescription type=javadoc
/ * *
* HOTI
* Liefert bei Klassen die fullyQualified angegeben wurden
* nur den schlussendlichen Bezeichner
* p . ex . java . util . Vector = > Vector
* @return
* /
// ino.end
// ino.method.getSimpleName.23140.definition
public String getSimpleName ( )
// ino.end
// ino.method.getSimpleName.23140.body
{
2014-09-02 18:49:19 +02:00
return UsedId . createFromQualifiedName ( getName ( ) . toString ( ) , - 1 ) . getSimpleName ( ) ;
2013-10-18 13:33:46 +02:00
}
// ino.end
public String getTypeInformation ( Vector < Method > methodList , Vector < Expr > fieldList ) {
String ret = this . name + " : " ;
for ( Expr field : fieldList ) {
ret + = field . getTypeInformation ( ) + " \ n " ;
}
for ( Method m : methodList ) {
ret + = m . getTypeInformation ( ) + " \ n " ;
}
return ret ;
}
/ * *
* Generiert den JavaCode dieser Klasse im Falle f <EFBFBD> r das <EFBFBD> bergebene resultSet .
* Dem ResultSet entsprechend werden in diesem Java - Code die TypePlaceholder durch die in ResultSet stehenden Typen ersetzt .
* @return Java - Sourcefile
* /
2014-02-09 16:07:31 +01:00
public String printJavaCode ( TypeinferenceResultSet reconstructionResult ) {
2013-10-18 13:33:46 +02:00
JavaCodeResult ret = new JavaCodeResult ( " class " ) ;
//Generiere JavaCode der extends-Typen:
/ *
String containedTypesJavaCode = " " ;
for ( Type containedType : containedTypes ) {
containedTypesJavaCode + = containedType . printJavaCode ( resultSet ) + " , " ;
}
if ( containedTypesJavaCode . length ( ) > 1 ) containedTypesJavaCode = containedTypesJavaCode . substring ( 0 , containedTypesJavaCode . length ( ) - 2 ) ;
* /
JavaCodeResult classBodyCode = new JavaCodeResult ( ) ;
if ( this . modifiers ! = null ) classBodyCode . attach ( this . modifiers . printJavaCode ( reconstructionResult . getUnifiedConstraints ( ) ) ) . attach ( " " ) ;
classBodyCode . attach ( this . name + " extends " ) . attach ( superclassid . printJavaCode ( reconstructionResult . getUnifiedConstraints ( ) ) ) . attach ( " \ n " ) ;
2014-02-14 17:31:55 +01:00
JavaCodeResult bodyString = new JavaCodeResult ( " { \ n " ) ;
for ( Field field : this . fielddecl ) bodyString . attach ( field . printJavaCode ( reconstructionResult . getUnifiedConstraints ( ) ) ) . attach ( " \ n " ) ;
bodyString . attach ( " } \ n " ) ;
2013-10-18 13:33:46 +02:00
classBodyCode . attach ( bodyString ) ;
//Zuerst die generischen Parameter f<> r diese Klasse berechnen:
2014-07-09 10:52:23 +02:00
//this.createGenericTypeVars(classBodyCode.getUnresolvedTPH());
2013-10-18 13:33:46 +02:00
if ( this . genericClassParameters ! = null & & this . genericClassParameters . size ( ) > 0 ) {
ret . attach ( " < " ) ;
Iterator < GenericTypeVar > it = this . genericClassParameters . iterator ( ) ;
while ( it . hasNext ( ) ) {
GenericTypeVar tph = it . next ( ) ;
ret . attach ( tph . printJavaCode ( reconstructionResult . getUnifiedConstraints ( ) ) ) ;
if ( it . hasNext ( ) ) ret . attach ( " , " ) ;
}
ret . attach ( " > " ) ;
}
String stringReturn = ret . attach ( classBodyCode ) . toString ( ) ;
return stringReturn ;
}
/ * *
* Errechnet die Generischen Parameter der Klasse f <EFBFBD> r diese Klasse .
* Die berechneten Variablen werden anschlie <EFBFBD> end in die this . genericTypeVars eingesetzt . Dabei werden alte genericTypeVars <EFBFBD> berschrieben .
* @param tphs : Alle <EFBFBD> briggebliebenen TypePLaceholder
2014-07-09 10:52:23 +02:00
2014-06-18 11:30:14 +02:00
private void createGenericTypeVars ( Vector < TypePlaceholder > tphs ) {
2014-06-25 17:30:31 +02:00
this . genericClassParameters = new GenericDeclarationList ( new Vector < GenericTypeVar > ( ) ) ;
2013-10-18 13:33:46 +02:00
for ( TypePlaceholder tph : tphs ) {
2014-04-16 16:02:16 +02:00
GenericTypeVar toAdd = new GenericTypeVar ( tph , this . getOffset ( ) ) ;
2013-10-18 13:33:46 +02:00
if ( ! this . genericClassParameters . contains ( toAdd ) ) this . genericClassParameters . add ( toAdd ) ;
}
}
2014-07-09 10:52:23 +02:00
* /
2013-10-18 13:33:46 +02:00
/ * *
* Errechnet die Generischen Parameter der Klasse f <EFBFBD> r diese Klasse .
* Die berechneten Variablen werden anschlie <EFBFBD> end in die this . genericTypeVars eingesetzt . Dabei werden alte genericTypeVars <EFBFBD> berschrieben .
* @param reconstructionResult
2014-06-18 11:30:14 +02:00
2014-02-09 16:07:31 +01:00
public void createGenericTypeVars ( TypeinferenceResultSet reconstructionResult ) {
2013-10-18 13:33:46 +02:00
this . genericClassParameters = new Vector < GenericTypeVar > ( ) ;
for ( Pair pair : reconstructionResult . getUnifiedConstraints ( ) ) {
if ( pair . TA2 instanceof TypePlaceholder & & pair . TA1 instanceof TypePlaceholder ) { // if(pair.OperatorSmallerExtends() || pair.OperatorSmaller()){
Type ta1 = reconstructionResult . getUnifiedConstraints ( ) . getTypeEqualTo ( pair . TA1 ) ;
Type ta2 = reconstructionResult . getUnifiedConstraints ( ) . getTypeEqualTo ( pair . TA2 ) ;
2014-04-16 16:02:16 +02:00
this . genericClassParameters . add ( new GenericTypeVar ( new Pair ( ta1 , ta2 ) , this . getOffset ( ) ) ) ;
2013-10-18 13:33:46 +02:00
}
}
for ( Pair pair : reconstructionResult . getConstraints ( ) ) {
if ( ! reconstructionResult . getUnifiedConstraints ( ) . contains ( pair . TA1 ) ) {
2014-04-16 16:02:16 +02:00
this . genericClassParameters . add ( new GenericTypeVar ( pair . TA1 , this . getOffset ( ) ) ) ;
2013-10-18 13:33:46 +02:00
}
if ( ! reconstructionResult . getUnifiedConstraints ( ) . contains ( pair . TA2 ) ) {
2014-04-16 16:02:16 +02:00
this . genericClassParameters . add ( new GenericTypeVar ( pair . TA2 , this . getOffset ( ) ) ) ;
2013-10-18 13:33:46 +02:00
}
}
}
2014-06-18 11:30:14 +02:00
* /
2014-04-16 16:02:16 +02:00
public int getOffset ( ) {
2014-07-16 14:35:12 +02:00
return this . offset ;
2014-04-16 16:02:16 +02:00
}
2013-10-18 13:33:46 +02:00
/ * *
* Erstellt einen RefType , welcher auf diese Klasse verweist
2014-04-09 14:12:55 +02:00
* Ersetzt alle Generischen Variablen in der Parameterliste mit TPH
2013-10-18 13:33:46 +02:00
* @return
* /
public RefType getType ( ) {
2014-06-18 13:37:17 +02:00
/ *
2014-03-28 18:36:08 +01:00
Vector < Type > parameter = new Vector < Type > ( ) ;
for ( Type param : this . get_ParaList ( ) ) {
parameter . add ( ( ( GenericTypeVar ) param ) . getTypePlaceHolder ( ) ) ; //(TypePlaceholder.fresh()); //Hier ist kein ReplacementListener notwendig. Der Typ soll nie eingesetzt werden. Der TPH wird nur gebraucht, damit das Unifizieren funktioniert.
}
2014-06-18 13:37:17 +02:00
* /
2014-09-14 18:38:43 +02:00
return new RefType ( this . getName ( ) . toString ( ) , this . get_ParaList ( ) , this , 0 ) ;
2013-10-18 13:33:46 +02:00
}
/ * *
* Ermittelt die Sichtbaren Felder und Methoden der Klasse .
* ( Momentan sind im Projekt alle Felder und Methoden " package private " , da der Parser keine Access - Modifier einlesen kann .
* @return
* /
public TypeAssumptions getPublicFieldAssumptions ( ) {
2014-04-14 18:05:24 +02:00
TypeAssumptions ret = new TypeAssumptions ( ) ; //this.getPrivateFieldAssumptions();
2014-04-09 14:12:55 +02:00
ret . addClassAssumption ( new ClassAssumption ( this ) ) ;
2014-02-19 14:16:28 +01:00
for ( Field f : this . getFields ( ) ) {
2014-04-14 18:05:24 +02:00
if ( f . isPublic ( ) ) ret . add ( f . createTypeAssumptions ( this ) ) ;
2014-02-19 14:16:28 +01:00
}
2014-09-18 16:26:02 +02:00
for ( GenericTypeVar gtv : this . getGenericParameter ( ) ) {
ret . add ( gtv . createAssumptions ( ) ) ;
}
2013-10-18 13:33:46 +02:00
return ret ;
}
2014-02-11 16:30:38 +01:00
@Override
public void parserPostProcessing ( SyntaxTreeNode parent ) {
2014-03-18 20:18:57 +01:00
//Wenn keine Superklasse, dann erbt die Klasse zwangsweise von Object:
if ( superclassid = = null | | superclassid . get_Name ( ) . size ( ) < 1 ) {
int superclassidOffset = superclassid = = null ? 0 : superclassid . getOffset ( ) ;
superclassid = new UsedId ( " Object " , superclassidOffset ) ;
}
2014-02-19 17:32:43 +01:00
//Alle Methoden auf Konstruktoren durchsuchen und diese umwandeln:
Vector < Field > tempFields = new Vector < Field > ( ) ;
for ( Field f : this . getFields ( ) ) {
if ( f instanceof Method & & ! ( f instanceof Constructor ) ) {
Method method = ( Method ) f ;
2015-02-25 16:34:29 +01:00
if ( method . get_Method_Name ( ) . equals ( this . getName ( ) . toString ( ) ) ) {
2014-02-19 17:32:43 +01:00
tempFields . add ( new Constructor ( method ) ) ;
} else {
tempFields . add ( f ) ;
}
} else {
tempFields . add ( f ) ;
}
}
this . fielddecl = tempFields ;
2014-02-19 05:20:54 +01:00
//Pr<50> fen ob ein Konstruktor vorhanden ist:
boolean constructorVorhanden = false ;
for ( Field f : this . getFields ( ) ) {
if ( f instanceof Constructor ) {
constructorVorhanden = true ;
break ;
}
}
if ( ! constructorVorhanden ) { //Falls kein Konstruktor vorhanden ist, muss noch der Standardkonstruktor angef<65> gt werden:
2014-09-02 18:49:19 +02:00
Constructor standardKonstruktor = new Constructor ( Method . createEmptyMethod ( this . getName ( ) . toString ( ) , this ) ) ;
2014-02-19 05:20:54 +01:00
this . addField ( standardKonstruktor ) ;
}
2014-03-27 16:43:07 +01:00
2014-09-09 11:15:10 +02:00
if ( this . genericClassParameters = = null ) this . setGenericParameter ( new GenericDeclarationList ( new Vector < GenericTypeVar > ( ) , 0 ) ) ;
2014-10-08 19:00:17 +02:00
/ * //Nicht mehr notwendig, Generische Klassenparameter werden nun immer direkt in die genericClassParameters gespeichert.
2014-09-09 11:15:10 +02:00
for ( Type t : this . get_ParaList ( ) ) {
if ( t instanceof GenericTypeVar ) this . genericClassParameters . add ( ( GenericTypeVar ) t ) ;
else this . genericClassParameters . add ( new GenericTypeVar ( t . get_Name ( ) , this , - 1 ) ) ;
}
2014-10-08 19:00:17 +02:00
* /
2015-02-25 16:34:29 +01:00
/ *
2014-09-16 11:31:15 +02:00
for ( Type t : this . get_ParaList ( ) ) {
t . parserPostProcessing ( this ) ;
}
2015-02-25 16:34:29 +01:00
* /
2014-09-10 23:32:36 +02:00
/ *
2014-09-09 11:15:10 +02:00
for ( GenericTypeVar gtv : this . getGenericParameter ( ) ) {
gtv . setParentClass ( this ) ; ;
}
2014-09-10 23:32:36 +02:00
* /
2014-04-14 18:05:24 +02:00
//TODO: Umwandlung zu RefTypes funktioniert noch nicht richtig. (siehe LambdaTest2)
2014-03-27 16:43:07 +01:00
//Als RefType geparste Generische Variablen umwandeln:
this . wandleRefTypeAttributes2GenericAttributes ( ) ;
2015-02-25 16:34:29 +01:00
//Erst am Schluss, nachdem Methoden zu Konstruktoren umgewandelt wurden:
super . parserPostProcessing ( parent ) ;
2014-02-11 16:30:38 +01:00
}
2014-03-27 16:43:07 +01:00
2014-02-11 16:30:38 +01:00
@Override
public SyntaxTreeNode getParent ( ) {
2014-02-19 05:20:54 +01:00
return this ;
2014-02-11 16:30:38 +01:00
}
@Override
public Vector < SyntaxTreeNode > getChildren ( ) {
2014-02-12 02:12:12 +01:00
Vector < SyntaxTreeNode > ret = new Vector < SyntaxTreeNode > ( ) ;
2015-02-25 16:34:29 +01:00
//for(Field f : this.getFields()){
// ret.add(f);
//}
ret . addAll ( this . getFields ( ) ) ;
ret . addAll ( this . get_ParaList ( ) ) ;
2014-09-10 23:32:36 +02:00
ret . addAll ( this . getGenericParameter ( ) ) ;
2014-02-12 02:12:12 +01:00
return ret ;
2014-02-11 16:30:38 +01:00
}
2013-10-18 13:33:46 +02:00
2014-02-19 05:20:54 +01:00
@Override
public boolean equals ( Object obj ) {
if ( ! ( obj instanceof Class ) ) return false ;
Class cl = ( Class ) obj ;
if ( ! ( cl . getName ( ) . equals ( this . getName ( ) ) ) ) return false ;
return true ;
}
2014-03-12 15:27:26 +01:00
2014-07-16 10:33:34 +02:00
@Override
2014-09-09 11:15:10 +02:00
public Vector < GenericTypeVar > getGenericParameter ( ) {
2014-07-16 10:33:34 +02:00
if ( this . genericClassParameters = = null ) return new Vector < GenericTypeVar > ( ) ;
2014-09-16 17:34:04 +02:00
return this . genericClassParameters . getVector ( ) ;
2014-07-16 10:33:34 +02:00
}
2014-03-12 15:27:26 +01:00
@Override
public String getDescription ( ) {
return " class " + this . getName ( ) ;
}
2014-04-16 16:02:16 +02:00
@Override
public int getVariableLength ( ) {
// TODO Auto-generated method stub
return 0 ;
}
2014-06-25 17:30:31 +02:00
2014-05-07 13:01:14 +02:00
@Override
2014-06-25 17:30:31 +02:00
public void setGenericParameter ( GenericDeclarationList params ) {
2014-05-07 13:01:14 +02:00
this . genericClassParameters = params ;
}
2014-04-26 19:33:26 +02:00
2014-06-25 17:30:31 +02:00
@Override
2014-07-16 14:35:12 +02:00
public String getGenericVarDeclarationString ( String genericVarDeclaration ) {
if ( this . genericClassParameters ! = null ) {
return " , " + genericVarDeclaration ;
} else {
return " < " + genericVarDeclaration + " > " ;
}
}
@Override
public int getGenericVarDeclarationOffset ( ) {
// Falls Generische Parameterliste vorhanden, hier Wert der Liste zur<75> ckgegebn
if ( this . genericClassParameters ! = null ) {
2014-07-31 15:15:33 +02:00
return this . genericClassParameters . getEndOffset ( ) ;
2014-07-16 14:35:12 +02:00
} else {
return this . offset ;
}
2014-06-25 17:30:31 +02:00
}
2014-07-16 10:33:34 +02:00
2014-09-14 18:38:43 +02:00
/ * *
* Die Super Klasse dieser Klasse .
* @return null f <EFBFBD> r Klasse Object
* /
2014-09-18 16:26:02 +02:00
public Type getSuperClass ( ) {
2014-09-14 18:38:43 +02:00
return this . superClass ;
}
2015-02-24 17:06:14 +01:00
@Override
public boolean isClass ( ) {
return true ;
}
2013-10-18 13:33:46 +02:00
}
// ino.end