Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1a79add06c438e0fb790da443574663ea2c4b55f (plain) (blame)
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
/**
 * Copyright (c) 2006 IBM Corporation and others.
 * All rights reserved.   This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors: 
 *   IBM - Initial API and implementation
 */
package org.eclipse.emf.codegen.merge.java.facade.ast;

import java.util.Iterator;
import java.util.List;

import org.eclipse.jdt.core.dom.ASTNode;
import org.eclipse.jdt.core.dom.Annotation;
import org.eclipse.jdt.core.dom.ChildListPropertyDescriptor;
import org.eclipse.jdt.core.dom.FieldDeclaration;
import org.eclipse.jdt.core.dom.IExtendedModifier;
import org.eclipse.jdt.core.dom.VariableDeclarationFragment;
import org.eclipse.jdt.core.dom.rewrite.ASTRewrite;
import org.eclipse.jdt.core.dom.rewrite.ListRewrite;
import org.eclipse.emf.codegen.merge.java.facade.JField;


/**
 * Represents a single variable in a field declaration.
 * <p>
 * If multiple variables are declared in the same field declaration, there is a unique
 * <code>ASTJField</code> for each variable. Each <code>ASTJField</code> has reference
 * to {@link FieldDeclaration} and {@link VariableDeclarationFragment}. Multiple <code>ASTJField</code>
 * can share the same {@link FieldDeclaration}.
 * <p>
 * If the field declaration referenced by <code>ASJField</code> has more than 1 variable,
 * calls to some <code>set...()</code> methods on the field and its children (e.g. annotations)
 * will result in a separation of the variable referenced by <code>ASTJField</code> from
 * the field declaration. The new declaration is inserted before the original declaration. 
 * After the separation, calls to <code>get...()</code> methods will no longer return the correct
 * original content.
 * 
 * @since 2.2.0
 */
public class ASTJField extends ASTJMember<FieldDeclaration> implements JField
{
  /**
   * Cached value of initializer of this field.
   * <p>
   * Note that change in initializer should not result in splitting variables in the field declaration.
   * <p>
   * If <code>setInitializer()</code> has been called, and <code>performSplit()</code> is
   * called after, then <code>performSplit()</code> should not overwrite the initializer.
   */  
  protected String initializer = UNITIALIZED_STRING;

  /**
   * Cached type of the field
   * @see #getType()
   * @see #setType(String)
   */
  protected String type = UNITIALIZED_STRING;
  
  /**
   * Original field declaration before the split.
   */
  private FieldDeclaration originalFieldDeclaration = null;  
  
  /**
   * Indicates whether the variable declaration fragment is the only fragment
   * in the field declaration.
   */
  protected boolean splitPerformed = false;
  
  /**
   * Variable declaration fragment that is wrapped by ASTJField and to be used by <code>set...</code>
   * and <code>get...</code> methods. Note that when field is removed, this variable is <b>not</b> changed.
   * On the other hand, wrappedVariableDeclarationFragment is updated to reflect current node in the tree.
   * <p>
   * Since the same {@link FieldDeclaration} can have multiple variables declared in it,
   * but {@link JField} object must be unique for 1 variable, each
   * ASTJField has reference to FieldDeclaration and {@link VariableDeclarationFragment}.
   * 
   * @see org.eclipse.jdt.core.dom.VariableDeclarationFragment
   */
  protected VariableDeclarationFragment variableDeclarationFragment;

  /**
   * Variable declaration fragment that is wrapped by ASTJField and reflects current node in the
   * rewritten tree that is used by this field.
   * <p>
   * Actual wrapped object is FieldDeclaration object, while VariableDeclarationFragment is stored
   * as an attribute of ASTJField and returned by {@link #getWrappedObject()}.
   * 
   * @see org.eclipse.jdt.core.dom.VariableDeclarationFragment
   */
  protected VariableDeclarationFragment wrappedVariableDeclarationFragment;

  /**
   * Sets wrapped object to {@link VariableDeclarationFragment}, and prepares variable
   * separation if required
   * 
   * @param variableDeclarationFragment must have parent of type {@link FieldDeclaration}
   * @param facadeHelper facade helper to use for this field, must not be <code>null</code>
   * @param rewriter to use, must not be <code>null</code>
   * @see #prepareSplit()
   */
  public ASTJField(VariableDeclarationFragment variableDeclarationFragment, ASTFacadeHelper facadeHelper, ASTRewrite rewriter)
  {
    super((FieldDeclaration)variableDeclarationFragment.getParent());
    this.originalFieldDeclaration = (FieldDeclaration)variableDeclarationFragment.getParent();
    this.variableDeclarationFragment = variableDeclarationFragment;
    this.wrappedVariableDeclarationFragment = variableDeclarationFragment;
    setFacadeHelper(facadeHelper);
    this.rewriter = rewriter;
    if (rewriter != null && getFacadeHelper() != null)
    {
      prepareSplit();
    }
  }
  
  @Override
  public void dispose()
  {
    originalFieldDeclaration = null;
    variableDeclarationFragment = null;
    wrappedVariableDeclarationFragment = null;
    initializer = null;
    type = null;    
    
    super.dispose();
  }
  
  public FieldDeclaration getOriginalFieldDeclaration()
  {
    return originalFieldDeclaration;
  }
  
  public VariableDeclarationFragment getWrappedVariableDeclarationFragment()
  {
    return wrappedVariableDeclarationFragment;
  }
  
  public VariableDeclarationFragment getVariableDeclarationFragment()
  {
    return variableDeclarationFragment;
  }  

  @Override
  public boolean addChild(ASTJNode<?> child)
  {
    performSplit();
    return super.addChild(child);
  }

  @Override
  public String getComment()
  {
    if (comment == UNITIALIZED_STRING)
    {
      comment = getFacadeHelper().toString(originalFieldDeclaration.getJavadoc());
    }
    return comment;
  }

  /**
   * May split the declaration same way as {@link ASTJField#setType(String)}.
   * <p>
   * If the declaration has been split, <code>getComment()</code> might not return the correct value.
   * 
   * @see org.eclipse.emf.codegen.merge.java.facade.ast.ASTJMember#setComment(java.lang.String)
   */
  @Override
  public void setComment(String comment)
  {
    // if there are multiple variables in declaration, 
    // separate this variable fragment into a separate declaration    
    performSplit();
    super.setComment(comment);
  }

  /**
   * Return the original declaration contents (including all variable declaration fragments in the
   * declaration).
   * <p>
   * If the declaration has been split, the returned value will not be correct.
   * 
   * @see org.eclipse.emf.codegen.merge.java.facade.ast.ASTJNode#getContents()
   */
  @Override
  public String getContents()
  {
    // return the whole declaration contents (not just variableDeclarationFragment)
    return getFacadeHelper().toString(originalFieldDeclaration);
  }
  
  /**
   * Return original flags of the field declaration.
   * @see org.eclipse.emf.codegen.merge.java.facade.ast.ASTJMember#getFlags()
   */
  @Override
  public int getFlags()
  {
    return originalFieldDeclaration.getModifiers();
  }  
  
  /**
   * May split the declaration same way as {@link ASTJField#setType(String)}
   * If the declaration has been split, <code>getFlags()</code> might not return 
   * the correct value.
   * @see org.eclipse.emf.codegen.merge.java.facade.ast.ASTJMember#setFlags(int)
   */
  @Override
  public void setFlags(int flags)
  {
    // if there are multiple variables in declaration, 
    // separate this variable fragment into a separate declaration
    performSplit();
    super.setFlags(flags);
  }

  /**
   * Returns original initializer of variable declaration fragment.
   * 
   * @see org.eclipse.emf.codegen.merge.java.facade.JField#getInitializer()
   */
  public String getInitializer()
  {
    if (initializer == UNITIALIZED_STRING)
    {
      initializer = getFacadeHelper().toString(variableDeclarationFragment.getInitializer());
    }
    return initializer;
  }  

  /**
   * Sets initializer of variable declaration fragment.  This operation does 
   * not result in splitting fields.
   * @see org.eclipse.emf.codegen.merge.java.facade.JField#setInitializer(java.lang.String)
   */
  public void setInitializer(String initializer)
  {
    // indicate that initializer has been changed
    // (required to not overwrite initializer if variables are split later)
    this.initializer = initializer;
    
    setTrackedNodeProperty(
      variableDeclarationFragment,
      initializer,
      variableDeclarationFragment.getInitializerProperty(),
      ASTNode.INITIALIZER);
  }

  /**
   * Returns name of variable declaration fragment.
   * 
   * @see org.eclipse.emf.codegen.merge.java.facade.JNode#getName()
   */
  public String getName()
  {
    if (name == UNITIALIZED_STRING)
    {
      name = ASTFacadeHelper.toString(variableDeclarationFragment.getName());
    }
    return name;
  }

  /**
   * Sets name of variable declaration fragment.
   * @see org.eclipse.emf.codegen.merge.java.facade.JNode#setName(java.lang.String)
   */
  public void setName(String name)
  {
    this.name = name;
    setNodeProperty(variableDeclarationFragment, name, VariableDeclarationFragment.NAME_PROPERTY, ASTNode.SIMPLE_NAME);
  }

  /**
   * Returns original type of {@link FieldDeclaration}.
   * The dimensions declared after variable name are appended to the type.
   * @see org.eclipse.emf.codegen.merge.java.facade.JField#getType()
   */
  public String getType()
  {
    if (type == UNITIALIZED_STRING)
    {
      type = getFacadeHelper().toString(originalFieldDeclaration.getType());
  
      // append extra dimensions since they are not stored in Type object
      for (int i = 0; i < variableDeclarationFragment.getExtraDimensions(); i++)
      {
        type += "[]";
      }
    }    
    return type;
  }
  
  /**
   * Sets the type of {@link FieldDeclaration}.
   * <p>
   * If there is only one {@link VariableDeclarationFragment} in this declaration, 
   * only the type of the FieldDeclaration is changed.
   * <p>
   * If there are multiple {@link VariableDeclarationFragment}s in this declaration,
   * variable declaration fragment of this ASTJField is moved to a new
   * {@link FieldDeclaration}, and the type of new declaration is set. 
   * <p>
   * Note that if field declaration has been split, 
   * <code>getType()</code>, <code>getContents()</code>, <code>getComment()</code>,
   * <code>getInitializer()</code> will not return
   * the original content. 
   * 
   * @see org.eclipse.emf.codegen.merge.java.facade.JField#setType(String)
   */
  @SuppressWarnings("deprecation")
  public void setType(String type)
  {
    // if there are multiple variables in declaration, 
    // separate this variable fragment into a separate declaration
    performSplit();
    
    this.type = type;
    setNodeProperty(variableDeclarationFragment, 0, VariableDeclarationFragment.EXTRA_DIMENSIONS_PROPERTY);
    setTrackedNodeProperty(getASTNode(), type, FieldDeclaration.TYPE_PROPERTY, ASTNode.SIMPLE_TYPE);
  }

  @Override
  public boolean insertSibling(ASTJNode<?> node, ASTJNode<?> newSibling, boolean before)
  {
    performSplit();
    return super.insertSibling(node, newSibling, before);
  }
  
  @Override
  protected void childToBeChanged(ASTJNode<?> child)
  {
    performSplit();
  }

  /**
   * Ensures that the field wrapped by this ASTJField have only 1 variable in the declaration.
   * <p>
   * If required, this method creates a new field declaration, and sets rewritten AST node
   * to it. The ASTNode of all annotations of the new field is updated to use the original node.
   * <p>
   * Note that the no changes are added to the rewriter or wrapped object until {@link #performSplit()} is called.
   * <p>
   * This method must be called when field is created to ensure that annotations are unique for each <code>ASTJField</code>.
   * 
   * @see #performSplit()
   */
  protected void prepareSplit()
  {
    // check number of fragments
    ListRewrite listRewrite = rewriter.getListRewrite(originalFieldDeclaration, FieldDeclaration.FRAGMENTS_PROPERTY);
    List<?> fragments = listRewrite.getRewrittenList();
    if (splitPerformed || fragments.size() <= 1)
    {
      splitPerformed = true;
      return;
    }
  
    // create a copy of declaration
    FieldDeclaration newDeclaration = (FieldDeclaration)ASTNode.copySubtree(originalFieldDeclaration.getAST(), originalFieldDeclaration);
  
    // set original node of annotations (to allow get methods to work correctly)
    @SuppressWarnings("unchecked")
    Iterator<IExtendedModifier> newModifiersIterator = newDeclaration.modifiers().iterator();
    @SuppressWarnings("unchecked")
    Iterator<IExtendedModifier> originalModifiersIterator = originalFieldDeclaration.modifiers().iterator();
  
    for (; newModifiersIterator.hasNext() && originalModifiersIterator.hasNext();)
    {
      IExtendedModifier modifier = newModifiersIterator.next();
      IExtendedModifier originalModifier = originalModifiersIterator.next();
      if (originalModifier.isAnnotation())
      {
        Annotation annotation = (Annotation)modifier;
        Annotation originalAnnotation = (Annotation)originalModifier;
        ASTJAnnotation astjAnnotation = (ASTJAnnotation)getFacadeHelper().convertToNode(annotation);
        astjAnnotation.setRewriter(getRewriter());
        astjAnnotation.setASTNode(originalAnnotation);
      }
    }
  
    // new declaration will not have fragments until performSplit() is called
    newDeclaration.fragments().clear();
    setASTNode(newDeclaration);
  }

  /**
   * Revert the changes made by <code>prepareSplit()</code>.
   * @see #prepareSplit()
   */
  protected void revertPrepareSplit()
  {
    if (splitPerformed)
    {
      return;
    }
    
    @SuppressWarnings("unchecked")
    Iterator<IExtendedModifier> newModifiersIterator = getASTNode().modifiers().iterator();
    @SuppressWarnings("unchecked")
    Iterator<IExtendedModifier> originalModifiersIterator = originalFieldDeclaration.modifiers().iterator();
    
    for (; newModifiersIterator.hasNext() && originalModifiersIterator.hasNext();)
    {
      IExtendedModifier modifier = newModifiersIterator.next();
      IExtendedModifier originalModifier = originalModifiersIterator.next();
      if (originalModifier.isAnnotation())
      {
        Annotation annotation = (Annotation)modifier;
        Annotation originalAnnotation = (Annotation)originalModifier;
        ASTJAnnotation astjAnnotation = (ASTJAnnotation)getFacadeHelper().convertToNode(annotation);
        astjAnnotation.setRewrittenASTNode(originalAnnotation);
        astjAnnotation.setWrappedObject(originalAnnotation);
        getFacadeHelper().updateObjectToNodeMap(astjAnnotation);
      }
    }
  
    // set rewritten node to be the original
    setASTNode(originalFieldDeclaration);
    splitPerformed = true;
  }

  /**
   * If required, separates the variable declaration fragment into a new {@link FieldDeclaration}
   * object. If this declaration does not need to be split, reverts the changes made by {@link #prepareSplit()}.
   * <p>
   * New field declaration will have only one variable declaration fragment. 
   * New declaration is added to the {@link ASTRewrite}.
   * The attributes of this ASTJField are updated to reference elements of the new declaration.
   * Only the javadoc, variable initializer, and annotations are copied as String, all other attributes are copied
   * using {@link ASTNode#copySubtree(org.eclipse.jdt.core.dom.AST, ASTNode)}. All
   * formatting except for Javadoc, initializer, and annotations is lost.
   * If field declaration wrapped by ASTJField has only one variable declaration
   * fragment left, no changes are made.
   * <p>
   * Note that this method must be called after {@link #prepareSplit()} and before any
   * changes are made to the nodes.
   * 
   * @see #prepareSplit()
   */
  protected void performSplit()
  {
    if (!splitPerformed && getASTNode() != originalFieldDeclaration)
    {
      ListRewrite listRewrite = rewriter.getListRewrite(originalFieldDeclaration, FieldDeclaration.FRAGMENTS_PROPERTY);
      List<?> fragments = listRewrite.getRewrittenList();
      
      // perform split if there is more than 1 fragment
      if (fragments.size() > 1)
      {
        FieldDeclaration newDeclaration = getASTNode();
  
        // set javadoc
        if (originalFieldDeclaration.getJavadoc() != null)
        {
          String javadocString = getFacadeHelper().applyFormatRules(getFacadeHelper().toString(originalFieldDeclaration.getJavadoc()));
          setTrackedNodeProperty(newDeclaration, javadocString, newDeclaration.getJavadocProperty(), ASTNode.JAVADOC);
        }
  
        // set initializer
        if (variableDeclarationFragment.getInitializer() != null)
        {
          if (initializer == UNITIALIZED_STRING)
          {
            initializer = getFacadeHelper().applyFormatRules(getFacadeHelper().toString(variableDeclarationFragment.getInitializer()));
          }
          setTrackedNodeProperty(
            variableDeclarationFragment,
            initializer,
            VariableDeclarationFragment.INITIALIZER_PROPERTY,
            ASTNode.JAVADOC);
        }
  
        // set annotations contents
        @SuppressWarnings("unchecked")
        Iterator<IExtendedModifier> newModifiersIterator = newDeclaration.modifiers().iterator();
        @SuppressWarnings("unchecked")
        Iterator<IExtendedModifier> originalModifiersIterator = originalFieldDeclaration.modifiers().iterator();        
        
        for (; newModifiersIterator.hasNext() && originalModifiersIterator.hasNext();)
        {
          IExtendedModifier modifier = newModifiersIterator.next();
          IExtendedModifier originalModifier = originalModifiersIterator.next();
          if (originalModifier.isAnnotation())
          {
            ASTJAnnotation astjAnnotation = (ASTJAnnotation)getFacadeHelper().convertToNode(modifier);
            astjAnnotation.trackAndReplace(
              astjAnnotation.getRewrittenASTNode(),
              getFacadeHelper().applyFormatRules(getFacadeHelper().toString(originalModifier)));
          }
        }
  
        // insert new declaration before this one
        listRewrite = rewriter.getListRewrite(originalFieldDeclaration.getParent(), (ChildListPropertyDescriptor)originalFieldDeclaration.getLocationInParent());
        listRewrite.insertBefore(newDeclaration, originalFieldDeclaration, null);
  
        // update the wrapped object
        setWrappedObject(newDeclaration);
  
        // delete variable fragment from old declaration
        removeNodeFromListProperty(originalFieldDeclaration, variableDeclarationFragment, FieldDeclaration.FRAGMENTS_PROPERTY);
  
        // add variable fragment to new declaration
        ListRewrite newListRewrite = rewriter.getListRewrite(newDeclaration, FieldDeclaration.FRAGMENTS_PROPERTY);
        newListRewrite.insertFirst(variableDeclarationFragment, null);
      }
      else
      {
        // only 1 fragment left - revert the changes
        revertPrepareSplit();
      }
    }
    // split is performed
    splitPerformed = true;          
  }

  @Override
  public boolean remove(ASTJNode<?> node)
  {
    performSplit();
    return super.remove(node);
  }

  /**
   * Sets wrapped object to be the given FieldDeclaration, 
   * and sets wrappedVariableDeclarationFragment attribute
   * to be the first variable declaration fragment in the given FieldDeclaration.
   * <p>
   * This method is mainly used by {@link #remove(ASTJNode)} to create a move target to allow
   * insertion of the nodes later.
   * 
   * @param node must be of type FieldDeclaration, ignored otherwise
   * 
   * @see org.eclipse.emf.codegen.merge.java.facade.ast.ASTJNode#setWrappedObject(org.eclipse.jdt.core.dom.ASTNode)
   */
  @Override
  protected void setWrappedObject(ASTNode node)
  {
    if (node instanceof FieldDeclaration)
    {
      super.setWrappedObject(node);
      FieldDeclaration fieldDeclaration = (FieldDeclaration)node;
      if (fieldDeclaration.fragments().size() > 0)
      {
        wrappedVariableDeclarationFragment = (VariableDeclarationFragment)fieldDeclaration.fragments().get(0);
      }
    }
  }

  /**
   * Commenting out a field results in splitting of the fields, and then commenting out
   * only the field that is commented out.
   * 
   * @see org.eclipse.emf.codegen.merge.java.facade.ast.ASTJNode#commentOut()
   */
  @Override
  public void commentOut()
  {
    performSplit();
    super.commentOut();
  }
}

Back to the top