aboutsummaryrefslogtreecommitdiff
path: root/src/spiProcessor/lombok/spi/SpiProcessorPersistence.java
blob: c9bd745f54a8fe481ce20c14a31aa5dbdc7d4a0a (plain)
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
/*
 * Copyright (C) 2021 The Project Lombok Authors.
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
package lombok.spi;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.Reader;
import java.io.Writer;
import java.net.URI;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import java.util.Locale;

import javax.annotation.processing.Filer;
import javax.annotation.processing.Messager;
import javax.tools.Diagnostic.Kind;
import javax.tools.FileObject;
import javax.tools.StandardLocation;

class SpiProcessorPersistence {
	private final String name;
	private final String path;
	final Filer filer;
	private final Messager logger;
	
	SpiProcessorPersistence(String name, Filer filer, Messager logger) {
		this.name = name;
		this.logger = logger;
		this.path = SpiProcessor.getRootPathOfServiceFiles();
		this.filer = filer;
	}
	
	static CharSequence readFilerResource(FileObject resource, Messager logger, String pathName) {
		try {
			// Eclipse can't handle getCharContent, so we must use a reader...
			return tryWithReader(resource);
		} catch (FileNotFoundException e) {
			return null;
		} catch (IOException e) {
			if (
				e.getClass().getName().equals("org.eclipse.core.internal.resources.ResourceException") &&
				e.getMessage() != null &&
				e.getMessage().endsWith("does not exist.")) {
				
				return null;
			}
			
			logger.printMessage(Kind.ERROR, SpiProcessor.toErrorMsg(e, pathName));
			return null;
		} catch (Exception other) {
			// otherwise, probably javac: Some versions don't support the `openReader` method.
			try {
				return resource.getCharContent(true);
			} catch (FileNotFoundException e) {
				return null;
			} catch (IOException e) {
				logger.printMessage(Kind.ERROR, SpiProcessor.toErrorMsg(e, pathName));
				return null;
			}
		}
	}
	
	private static CharSequence tryWithReader(FileObject resource) throws IOException {
		StringBuilder sb = new StringBuilder();
		Reader raw = resource.openReader(true);
		try {
			BufferedReader in = new BufferedReader(raw);
			for (String line = in.readLine(); line != null; line = in.readLine()) sb.append(line).append('\n');
			return sb;
		} finally {
			if (raw != null) raw.close();
		}
	}
	
	Collection<String> tryFind() {
		File dir = determineOutputLocation();
		if (dir == null || !dir.isDirectory()) return Collections.emptyList();
		List<String> out = new ArrayList<String>();
		for (File p : dir.listFiles()) {
			if (!p.isFile()) continue;
			out.add(p.getName());
		}
		return out;
	}
	
	private File determineOutputLocation() {
		FileObject resource;
		try {
			resource = filer.createResource(StandardLocation.CLASS_OUTPUT, "META-INF", "locator.tmp");
		} catch (FileNotFoundException e) {
			e.printStackTrace();
			// Could happen
			return null;
		} catch (IOException e) {
			e.printStackTrace();
			logger.printMessage(Kind.NOTE, "IOException while determining output location: " + e.getMessage());
			return null;
		} catch (IllegalArgumentException e) {
			e.printStackTrace();
			// Happens when the path is invalid. For instance absolute or relative to a path 
			// not part of the class output folder.
			//
			// Due to a bug in javac for Linux, this also occurs when no output path is specified 
			// for javac using the -d parameter.
			// See http://forums.sun.com/thread.jspa?threadID=5240999&tstart=45
			// and http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6647996
			
			return null;
		}
		
		URI uri = resource.toUri();
		return new File(new File(uri).getParentFile(), "services");
	}
	
	void write(String serviceName, String value) throws IOException {
		FileObject output = filer.createResource(StandardLocation.CLASS_OUTPUT, "", path + serviceName);
		Writer writer = output.openWriter();
		writer.write("# Generated by " + name + "\n");
		writer.write("# " + new SimpleDateFormat("EEE, d MMM yyyy HH:mm:ss Z", Locale.US).format(new Date()) + "\n");
		writer.write(value);
		writer.close();
	}
}