Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ccbb7c27b783811d9a5258c17d21daed488e4943 (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
/*******************************************************************************
 * Copyright (c) 2012 Sonatype, Inc.
 * 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:
 *      Sonatype, Inc. - initial API and implementation
 *******************************************************************************/

package org.eclipse.m2e.editor.xml;

import static org.eclipse.m2e.core.ui.internal.editing.PomEdits.createElement;
import static org.eclipse.m2e.core.ui.internal.editing.PomEdits.format;
import static org.eclipse.m2e.core.ui.internal.editing.PomEdits.getChild;
import static org.eclipse.m2e.core.ui.internal.editing.PomEdits.insertAt;
import static org.eclipse.m2e.core.ui.internal.editing.PomEdits.setText;

import org.w3c.dom.Document;
import org.w3c.dom.Element;

import org.eclipse.jface.text.Region;
import org.eclipse.swt.graphics.Point;
import org.eclipse.wst.sse.core.internal.provisional.IndexedRegion;

import org.eclipse.m2e.core.ui.internal.editing.PomEdits.Operation;
import org.eclipse.m2e.editor.xml.internal.dialogs.SPDXLicense;


@SuppressWarnings("restriction")
public class AddLicensePomOperation implements Operation {

  private final SPDXLicense license;

  private final PomTemplateContext context;

  private final Region region;

  private int generatedOffset = -1;

  private int generatedLength = -1;

  public AddLicensePomOperation(SPDXLicense license, PomTemplateContext context, Region region) {
    if(license == null) {
      throw new NullPointerException();
    }
    if(context != PomTemplateContext.PROJECT && context != PomTemplateContext.LICENSES) {
      throw new IllegalArgumentException();
    }
    if(context == PomTemplateContext.LICENSES && region == null) {
      throw new IllegalArgumentException();
    }

    this.license = license;
    this.context = context;
    this.region = region;
  }

  public void process(Document doc) {
    Element element;
    if(context == PomTemplateContext.PROJECT) {
      element = createLicenses(doc);
    } else {
      element = createLicense(doc);
    }
    format(element);

    if(element instanceof IndexedRegion) {
      generatedOffset = ((IndexedRegion) element).getStartOffset();
      generatedLength = ((IndexedRegion) element).getEndOffset() - generatedOffset;
    }
  }

  private Element createLicenses(Document doc) {
    Element licensesDom;
    if(region != null) {
      licensesDom = insertAt(doc.createElement("licenses"), region.getOffset());
    } else {
      licensesDom = getChild(doc.getDocumentElement(), "licenses");
    }

    setLicense(createElement(licensesDom, "license"));

    return licensesDom;
  }

  private Element createLicense(Document doc) {
    Element licenseDom = insertAt(doc.createElement("license"), region.getOffset());

    setLicense(licenseDom);

    return licenseDom;
  }

  void setLicense(Element licenseDom) {
    setText(getChild(licenseDom, "name"), license.getName());
    setText(getChild(licenseDom, "url"), license.getURL());
  }

  public Point getSelection() {
    return new Point(generatedOffset, generatedLength);
  }
}

Back to the top