-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathTutorRascalMojo.java
More file actions
197 lines (165 loc) · 7.52 KB
/
TutorRascalMojo.java
File metadata and controls
197 lines (165 loc) · 7.52 KB
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
/*
* Copyright (c) 2009-2025, NWO-I Centrum Wiskunde & Informatica (CWI)
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.rascalmpl.maven;
import static org.twdata.maven.mojoexecutor.MojoExecutor.configuration;
import static org.twdata.maven.mojoexecutor.MojoExecutor.element;
import static org.twdata.maven.mojoexecutor.MojoExecutor.executeMojo;
import static org.twdata.maven.mojoexecutor.MojoExecutor.executionEnvironment;
import static org.twdata.maven.mojoexecutor.MojoExecutor.goal;
import static org.twdata.maven.mojoexecutor.MojoExecutor.plugin;
import java.io.File;
import java.nio.file.Path;
import java.util.Map;
import java.util.stream.Collectors;
import org.apache.maven.execution.MavenSession;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.plugins.annotations.ResolutionScope;
import org.apache.maven.project.MavenProject;
/**
* Maven Goal for Rascal Tutor Documentation compilation. The input is a list of
* Rascal source folders, and course folders, and the output is for each module
* a markdown file and for each markdown file in a source course an output markdown
* file. The compiler also copies images from source to a target assets folder.
* Also a list of errors and warnings is printed on stderr.
*
* Note that during the compilation of documentation, the Rascal interpreter is
* used to execute code examples for inclusion in the docs. This uses the REPL interface.
*/
@Mojo(name="tutor", inheritByDefault=false, defaultPhase = LifecyclePhase.GENERATE_RESOURCES, requiresDependencyCollection = ResolutionScope.COMPILE_PLUS_RUNTIME, requiresDependencyResolution = ResolutionScope.COMPILE_PLUS_RUNTIME)
public class TutorRascalMojo extends AbstractRascalMojo
{
@Parameter(property="license", required=false, defaultValue="${project.basedir}/LICENSE.md")
private String license;
@Parameter(property="citation", required=false, defaultValue="${project.basedir}/CITATION.md")
private String citation;
@Parameter(property="sources", required=false, defaultValue="http://github.com/usethesource/${project.name}/blob/main")
private String sources;
@Parameter(property="funding", required=false, defaultValue="${project.basedir}/FUNDING.md")
private String funding;
@Parameter(property="authors", required=false, defaultValue="${project.basedir}/AUTHORS.md")
private String authors;
@Parameter(property="issues", required=false, defaultValue="http://github.com/usethesource/${project.name}/issues")
private String issues;
@Parameter(property="isPackageCourse", required=false, defaultValue="true")
private boolean isPackageCourse;
@Parameter(property="releaseNotes", required=false, defaultValue="${project.basedir}/RELEASE-NOTES.md")
private String releaseNotes;
@Parameter(property="errorsAsWarnings", required=false, defaultValue="false")
private boolean errorsAsWarnings;
@Parameter(property="warningsAsErrors", required=false, defaultValue="false")
private boolean warningsAsErrors;
@Parameter(defaultValue = "0.2.1", required = false, readonly = false)
private String screenShotFeatureVersion;
public TutorRascalMojo() {
super("org.rascalmpl.shell.RascalTutorCompile", "tutor");
}
/**
* Enables tutor bootstrap
*/
protected Path getRascalRuntime() {
if (isRascalProject()) {
// bootstrap mode
return bin.toPath();
}
return super.getRascalRuntime();
}
@Override
public void execute() throws MojoExecutionException {
try {
if (System.getProperty("rascal." + skipTag + ".skip") != null) {
getLog().info("Skipping " + getClass().getName() + " completely");
return;
}
getLog().debug("configuring paths");
for (File src : srcs) {
getLog().debug("\tregistered source location: " + src);
}
for (File ignore : ignores) {
getLog().debug("\tignoring sources in: " + ignore);
}
var deps = collectDependentArtifactLibraries(project);
libs.addAll(deps);
for (File lib : libs) {
getLog().debug("\tregistered library location: " + lib);
}
getLog().debug("Paths have been configured.");
extraParameters.putAll(Map.of(
"license", license,
"citation", citation,
"funding", funding,
"authors", authors,
"releaseNotes", releaseNotes,
"isPackageCourse", Boolean.toString(isPackageCourse),
"errorsAsWarnings", Boolean.toString(errorsAsWarnings),
"warningsAsErrors", Boolean.toString(warningsAsErrors)
));
extraParameters.put("groupId", project.getGroupId());
extraParameters.put("artifactId", project.getArtifactId());
extraParameters.put("version", project.getVersion());
String screenshotter = null;
try {
screenshotter = installScreenshotFeature(project, session).toString();
}
catch (MojoExecutionException e) {
getLog().warn("Could not install rascal-tutor-screenshot feature. Ignoring.", e);
screenshotter = "";
}
deps.add(0, bin);
int exitCode = runMain(
verbose,
screenshotter + (isRascalProject() ? (File.pathSeparator + deps.stream().map(Object::toString).collect(Collectors.joining(File.pathSeparator))) : ""),
srcs,
ignores,
libs,
resources,
bin,
extraParameters,
true)
.waitFor();
if (exitCode != 0) {
throw new MojoExecutionException(mainClass + " terminated with errors.");
}
}
catch (InterruptedException e) {
throw new MojoExecutionException(mainClass + " was killed.", e);
}
catch (Throwable e) {
throw new MojoExecutionException(mainClass + " terminated with an exception.", e);
}
}
protected Path installScreenshotFeature(MavenProject project, MavenSession session) throws MojoExecutionException {
// download the boostrap version from our maven site
executeMojo(
plugin(
"org.apache.maven.plugins",
"maven-dependency-plugin",
"3.1.1"
),
goal("get"),
configuration(
element("artifact", "org.rascalmpl:rascal-tutor-screenshot:" + screenShotFeatureVersion)
),
executionEnvironment(
project,
session,
pluginManager
)
);
// resolve the jar file in the .m2 repository
return Path.of(session.getSettings().getLocalRepository(),
"org", "rascalmpl", "rascal-tutor-screenshot", screenShotFeatureVersion, "rascal-tutor-screenshot-" + screenShotFeatureVersion + ".jar");
}
}