/* * 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. * *
* The addons.scss is always overwritten when this tool is invoked. *
* * @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