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
|
/*
* Copyright 2000-2013 Vaadin Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.vaadin.server.themeutils;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.PrintStream;
import java.net.URL;
import java.util.Map;
import com.vaadin.server.widgetsetutils.ClassPathExplorer;
import com.vaadin.server.widgetsetutils.ClassPathExplorer.LocationInfo;
/**
* Helper class for managing the addon imports and creating an a SCSS file for
* importing all your addon themes. The helper method searches the classpath for
* Vaadin addons and uses the 'Vaadin-Themes' metadata to create the imports.
*
* <p>
* The addons.scss is always overwritten when this tool is invoked.
* </p>
*
* @since 7.1
*/
public class SASSAddonImportFileCreator {
private static final String ADDON_IMPORTS_FILE = "addons.scss";
private static final String ADDON_IMPORTS_FILE_TEXT = "This file is managed by the Eclipse plug-in and "
+ "will be overwritten from time to time. Do not manually edit this file.";
/**
*
* @param args
* Theme directory where the addons.scss file should be created
*/
public static void main(String[] args) throws IOException {
if (args.length == 0) {
printUsage();
} else {
String themeDirectory = args[0];
updateTheme(themeDirectory);
}
}
/**
* Updates a themes addons.scss with the addon themes found on the classpath
*
* @param themeDirectory
* The target theme directory
*/
public static void updateTheme(String themeDirectory) throws IOException {
File addonImports = new File(themeDirectory, ADDON_IMPORTS_FILE);
if (!addonImports.exists()) {
// Ensure directory exists
addonImports.getParentFile().mkdirs();
// Ensure file exists
addonImports.createNewFile();
}
LocationInfo info = ClassPathExplorer.getAvailableWidgetSetsAndStylesheets();
try {
PrintStream printStream = new PrintStream(new FileOutputStream(
addonImports));
printStream.println("/* " + ADDON_IMPORTS_FILE_TEXT + " */");
printStream.println();
Map<String, URL> addonThemes = info.getAddonStyles();
for (String path : addonThemes.keySet()) {
addImport(printStream, path, addonThemes.get(path));
}
} catch (FileNotFoundException e) {
// Should not happen since file is checked before this
e.printStackTrace();
}
}
private static void addImport(PrintStream stream, String file, URL location) {
// Add import comment
printImportComment(stream, location);
if (file.endsWith(".css")) {
stream.print("@import url(\"../" + file + "\");\n");
} else {
// Assume SASS
stream.print("@import \"../" + file + "\";\n");
// Convention is to name the mixing after the stylesheet. Strip
// .scss from filename
String mixin = file.substring(file.lastIndexOf("/") + 1,
file.length()
- ".scss".length());
stream.print("@include " + mixin + ";");
}
stream.println();
}
private static void printImportComment(PrintStream stream, URL location) {
// file:/absolute/path/to/addon.jar!/
String path = location.getPath();
try {
// Try to parse path for better readability
path = path.substring(path.lastIndexOf(":") + 1,
path.lastIndexOf("!"));
// Extract jar archive filename
path = path.substring(path.lastIndexOf("/") + 1);
} catch (Exception e) {
// Parsing failed but no worries, we then use whatever
// location.getPath() returns
}
stream.println("/* Added by Vaadin Plug-in for Eclipse from " + path
+ " */");
}
private static void printUsage() {
String className = SASSAddonImportFileCreator.class.getSimpleName();
PrintStream o = System.out;
o.println(className + " usage:");
o.println();
o.println("./" + className + " [Path to target theme folder]");
}
}
|