|
| 1 | +/* |
| 2 | + * Copyright 2016 DiffPlug |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | +package com.diffplug.spotless.markdown; |
| 17 | + |
| 18 | +import java.io.Serializable; |
| 19 | +import java.lang.reflect.Method; |
| 20 | +import java.net.URLClassLoader; |
| 21 | +import java.util.Map; |
| 22 | +import java.util.Objects; |
| 23 | +import java.util.function.Consumer; |
| 24 | +import java.util.logging.Logger; |
| 25 | + |
| 26 | +import com.diffplug.spotless.FormatterFunc; |
| 27 | +import com.diffplug.spotless.FormatterStep; |
| 28 | +import com.diffplug.spotless.JarState; |
| 29 | +import com.diffplug.spotless.Provisioner; |
| 30 | +import com.diffplug.spotless.ThrowingEx.Supplier; |
| 31 | + |
| 32 | +/** A step for [FreshMark](https://github.com/diffplug/freshmark). */ |
| 33 | +public class FreshMarkStep { |
| 34 | + public static final String defaultVersion() { |
| 35 | + return DEFAULT_VERSION; |
| 36 | + } |
| 37 | + |
| 38 | + private static final String DEFAULT_VERSION = "1.3.1"; |
| 39 | + private static final String NAME = "freshmark"; |
| 40 | + private static final String MAVEN_COORDINATE = "com.diffplug.freshmark:freshmark:"; |
| 41 | + private static final String FORMATTER_CLASS = "com.diffplug.freshmark.FreshMark"; |
| 42 | + private static final String FORMATTER_METHOD = "compile"; |
| 43 | + |
| 44 | + /** Creates a formatter step for the given version and settings file. */ |
| 45 | + public static FormatterStep create(Supplier<Map<String, ?>> properties, Provisioner provisioner) { |
| 46 | + return create(defaultVersion(), properties, provisioner); |
| 47 | + } |
| 48 | + |
| 49 | + /** Creates a formatter step for the given version and settings file. */ |
| 50 | + public static FormatterStep create(String version, Supplier<Map<String, ?>> properties, Provisioner provisioner) { |
| 51 | + return FormatterStep.createCloseableLazy(NAME, |
| 52 | + () -> new State(new JarState(MAVEN_COORDINATE + version, provisioner), properties.get()), |
| 53 | + State::createFormat); |
| 54 | + } |
| 55 | + |
| 56 | + private static class State implements Serializable { |
| 57 | + private static final long serialVersionUID = 1L; |
| 58 | + |
| 59 | + /** The jar that contains the eclipse formatter. */ |
| 60 | + final JarState jarState; |
| 61 | + final Map<String, ?> properties; |
| 62 | + |
| 63 | + State(JarState jarState, Map<String, ?> properties) { |
| 64 | + this.jarState = Objects.requireNonNull(jarState); |
| 65 | + this.properties = Objects.requireNonNull(properties); |
| 66 | + } |
| 67 | + |
| 68 | + FormatterFunc.Closeable createFormat() throws Exception { |
| 69 | + Logger logger = Logger.getLogger(FreshMarkStep.class.getName()); |
| 70 | + Consumer<String> loggingStream = logger::warning; |
| 71 | + |
| 72 | + URLClassLoader classLoader = jarState.openIsolatedClassLoader(); |
| 73 | + |
| 74 | + // instantiate the formatter and get its format method |
| 75 | + Class<?> formatterClazz = classLoader.loadClass(FORMATTER_CLASS); |
| 76 | + Object formatter = formatterClazz.getConstructor(Map.class, Consumer.class).newInstance(properties, loggingStream); |
| 77 | + Method method = formatterClazz.getMethod(FORMATTER_METHOD, String.class); |
| 78 | + return FormatterFunc.Closeable.of(classLoader, input -> (String) method.invoke(formatter, input)); |
| 79 | + } |
| 80 | + } |
| 81 | +} |
0 commit comments