2014-08-21 12:23:42 +02:00
|
|
|
package processing.app;
|
|
|
|
|
2014-08-21 13:18:54 +02:00
|
|
|
import static processing.app.I18n._;
|
|
|
|
|
2014-08-21 12:35:01 +02:00
|
|
|
import java.io.File;
|
2014-08-21 19:47:33 +02:00
|
|
|
import java.io.FileInputStream;
|
2014-08-25 18:57:18 +02:00
|
|
|
import java.io.FileWriter;
|
2014-08-21 13:43:10 +02:00
|
|
|
import java.io.IOException;
|
2014-08-21 19:47:33 +02:00
|
|
|
import java.io.InputStream;
|
2015-02-02 15:30:34 +01:00
|
|
|
import java.net.URISyntaxException;
|
2015-01-30 16:42:04 +01:00
|
|
|
import java.util.*;
|
2014-08-21 18:43:13 +02:00
|
|
|
import java.util.logging.Level;
|
|
|
|
import java.util.logging.Logger;
|
|
|
|
|
|
|
|
import org.apache.commons.logging.impl.LogFactoryImpl;
|
|
|
|
import org.apache.commons.logging.impl.NoOpLog;
|
2014-08-21 12:35:01 +02:00
|
|
|
|
2014-08-22 16:49:39 +02:00
|
|
|
import cc.arduino.packages.DiscoveryManager;
|
2014-09-10 18:48:34 +02:00
|
|
|
import cc.arduino.packages.Uploader;
|
2014-08-22 16:49:39 +02:00
|
|
|
|
2014-09-10 18:48:34 +02:00
|
|
|
import processing.app.debug.Compiler;
|
2014-08-21 13:38:28 +02:00
|
|
|
import processing.app.debug.TargetBoard;
|
2014-08-21 13:18:54 +02:00
|
|
|
import processing.app.debug.TargetPackage;
|
|
|
|
import processing.app.debug.TargetPlatform;
|
|
|
|
import processing.app.debug.TargetPlatformException;
|
2014-08-21 20:13:05 +02:00
|
|
|
import processing.app.helpers.BasicUserNotifier;
|
2014-09-10 18:48:34 +02:00
|
|
|
import processing.app.helpers.CommandlineParser;
|
2014-08-21 12:35:01 +02:00
|
|
|
import processing.app.helpers.OSUtils;
|
2014-08-21 13:38:28 +02:00
|
|
|
import processing.app.helpers.PreferencesMap;
|
2014-08-21 19:47:33 +02:00
|
|
|
import processing.app.helpers.UserNotifier;
|
2014-08-21 13:18:54 +02:00
|
|
|
import processing.app.helpers.filefilters.OnlyDirs;
|
2014-08-21 14:06:25 +02:00
|
|
|
import processing.app.helpers.filefilters.OnlyFilesWithExtension;
|
2014-08-21 13:43:10 +02:00
|
|
|
import processing.app.legacy.PApplet;
|
2014-08-21 14:06:25 +02:00
|
|
|
import processing.app.packages.Library;
|
|
|
|
import processing.app.packages.LibraryList;
|
2014-08-21 12:35:01 +02:00
|
|
|
|
2014-08-21 12:23:42 +02:00
|
|
|
public class BaseNoGui {
|
|
|
|
|
2014-11-18 14:04:14 +01:00
|
|
|
/** Version string to be used for build */
|
2015-03-11 11:42:55 +01:00
|
|
|
public static final int REVISION = 10602;
|
2014-11-18 14:04:14 +01:00
|
|
|
/** Extended version string displayed on GUI */
|
2015-03-11 11:42:55 +01:00
|
|
|
static String VERSION_NAME = "1.6.2";
|
2014-08-21 12:23:42 +02:00
|
|
|
|
2014-08-26 19:14:45 +02:00
|
|
|
static File buildFolder;
|
|
|
|
|
2014-08-21 13:18:54 +02:00
|
|
|
// Current directory to use for relative paths specified on the
|
|
|
|
// commandline
|
|
|
|
static String currentDirectory = System.getProperty("user.dir");
|
|
|
|
|
2014-08-22 16:49:39 +02:00
|
|
|
private static DiscoveryManager discoveryManager = new DiscoveryManager();
|
|
|
|
|
2014-08-25 18:57:18 +02:00
|
|
|
// these are static because they're used by Sketch
|
|
|
|
static private File examplesFolder;
|
|
|
|
static private File toolsFolder;
|
|
|
|
|
2014-08-21 14:06:25 +02:00
|
|
|
// maps #included files to their library folder
|
|
|
|
public static Map<String, Library> importToLibraryTable;
|
|
|
|
|
|
|
|
// maps library name to their library folder
|
|
|
|
static private LibraryList libraries;
|
|
|
|
|
2014-08-25 18:57:18 +02:00
|
|
|
static private List<File> librariesFolders;
|
|
|
|
|
2014-08-21 20:13:05 +02:00
|
|
|
static UserNotifier notifier = new BasicUserNotifier();
|
2014-08-21 19:47:33 +02:00
|
|
|
|
2014-08-21 13:18:54 +02:00
|
|
|
static public Map<String, TargetPackage> packages;
|
|
|
|
|
2014-08-21 13:33:46 +02:00
|
|
|
static Platform platform;
|
|
|
|
|
2014-08-21 13:18:54 +02:00
|
|
|
static File portableFolder = null;
|
|
|
|
|
2014-08-26 11:48:25 +02:00
|
|
|
static final String portableSketchbookFolder = "sketchbook";
|
|
|
|
|
2014-08-21 13:18:54 +02:00
|
|
|
// Returns a File object for the given pathname. If the pathname
|
|
|
|
// is not absolute, it is interpreted relative to the current
|
|
|
|
// directory when starting the IDE (which is not the same as the
|
|
|
|
// current working directory!).
|
|
|
|
static public File absoluteFile(String path) {
|
|
|
|
if (path == null) return null;
|
|
|
|
|
|
|
|
File file = new File(path);
|
|
|
|
if (!file.isAbsolute()) {
|
|
|
|
file = new File(currentDirectory, path);
|
|
|
|
}
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
2014-08-22 18:35:15 +02:00
|
|
|
/**
|
|
|
|
* Get the number of lines in a file by counting the number of newline
|
|
|
|
* characters inside a String (and adding 1).
|
|
|
|
*/
|
|
|
|
static public int countLines(String what) {
|
|
|
|
int count = 1;
|
|
|
|
for (char c : what.toCharArray()) {
|
|
|
|
if (c == '\n') count++;
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2014-08-26 19:14:45 +02:00
|
|
|
/**
|
|
|
|
* Get the path to the platform's temporary folder, by creating
|
|
|
|
* a temporary temporary file and getting its parent folder.
|
|
|
|
* <br/>
|
|
|
|
* Modified for revision 0094 to actually make the folder randomized
|
|
|
|
* to avoid conflicts in multi-user environments. (Bug 177)
|
|
|
|
*/
|
|
|
|
static public File createTempFolder(String name) {
|
|
|
|
try {
|
|
|
|
File folder = File.createTempFile(name, null);
|
|
|
|
//String tempPath = ignored.getParent();
|
|
|
|
//return new File(tempPath);
|
|
|
|
folder.delete();
|
|
|
|
folder.mkdirs();
|
|
|
|
return folder;
|
|
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2014-08-21 12:35:01 +02:00
|
|
|
static public String getAvrBasePath() {
|
|
|
|
String path = getHardwarePath() + File.separator + "tools" +
|
|
|
|
File.separator + "avr" + File.separator + "bin" + File.separator;
|
|
|
|
if (OSUtils.isLinux() && !(new File(path)).exists()) {
|
|
|
|
return ""; // use distribution provided avr tools if bundled tools missing
|
|
|
|
}
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2014-08-26 19:14:45 +02:00
|
|
|
static public File getBuildFolder() {
|
|
|
|
if (buildFolder == null) {
|
2014-09-10 18:48:34 +02:00
|
|
|
String buildPath = PreferencesData.get("build.path");
|
2014-08-26 19:14:45 +02:00
|
|
|
if (buildPath != null) {
|
|
|
|
buildFolder = absoluteFile(buildPath);
|
|
|
|
if (!buildFolder.exists())
|
|
|
|
buildFolder.mkdirs();
|
|
|
|
} else {
|
|
|
|
//File folder = new File(getTempFolder(), "build");
|
|
|
|
//if (!folder.exists()) folder.mkdirs();
|
|
|
|
buildFolder = createTempFolder("build");
|
|
|
|
buildFolder.deleteOnExit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return buildFolder;
|
|
|
|
}
|
|
|
|
|
2014-08-21 13:38:28 +02:00
|
|
|
static public PreferencesMap getBoardPreferences() {
|
|
|
|
TargetBoard board = getTargetBoard();
|
2014-05-01 16:17:43 +02:00
|
|
|
if (board == null)
|
|
|
|
return null;
|
2015-01-27 20:22:22 +01:00
|
|
|
String boardId = board.getId();
|
2014-08-21 13:38:28 +02:00
|
|
|
|
|
|
|
PreferencesMap prefs = new PreferencesMap(board.getPreferences());
|
2015-01-27 20:22:22 +01:00
|
|
|
|
|
|
|
String extendedName = prefs.get("name");
|
2014-08-21 13:38:28 +02:00
|
|
|
for (String menuId : board.getMenuIds()) {
|
2015-01-27 20:22:22 +01:00
|
|
|
if (!board.hasMenu(menuId))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Get "custom_[MENU_ID]" preference (for example "custom_cpu")
|
2014-08-22 12:47:43 +02:00
|
|
|
String entry = PreferencesData.get("custom_" + menuId);
|
2015-01-27 20:22:22 +01:00
|
|
|
if (entry != null && entry.startsWith(boardId)) {
|
|
|
|
|
|
|
|
String selectionId = entry.substring(boardId.length() + 1);
|
2014-08-21 13:38:28 +02:00
|
|
|
prefs.putAll(board.getMenuPreferences(menuId, selectionId));
|
2015-01-27 20:22:22 +01:00
|
|
|
|
|
|
|
// Update the name with the extended configuration
|
|
|
|
extendedName += ", " + board.getMenuLabel(menuId, selectionId);
|
2014-08-21 13:38:28 +02:00
|
|
|
}
|
|
|
|
}
|
2015-01-27 20:22:22 +01:00
|
|
|
prefs.put("name", extendedName);
|
2014-08-21 13:38:28 +02:00
|
|
|
return prefs;
|
|
|
|
}
|
|
|
|
|
2014-08-21 12:35:01 +02:00
|
|
|
static public File getContentFile(String name) {
|
2015-01-30 16:42:04 +01:00
|
|
|
File path = new File(System.getProperty("user.dir"));
|
2014-08-21 12:35:01 +02:00
|
|
|
|
|
|
|
if (OSUtils.isMacOS()) {
|
2015-02-03 17:00:51 +01:00
|
|
|
if (System.getProperty("WORK_DIR") != null) {
|
|
|
|
path = new File(System.getProperty("WORK_DIR"));
|
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
path = new File(BaseNoGui.class.getProtectionDomain().getCodeSource().getLocation().toURI().getPath()).getParentFile();
|
|
|
|
} catch (URISyntaxException e) {
|
|
|
|
throw new RuntimeException(e);
|
|
|
|
}
|
2015-02-02 15:30:34 +01:00
|
|
|
}
|
2014-08-21 12:35:01 +02:00
|
|
|
}
|
2015-01-30 16:42:04 +01:00
|
|
|
|
|
|
|
return new File(path, name);
|
2014-08-21 12:35:01 +02:00
|
|
|
}
|
|
|
|
|
2014-08-21 19:00:29 +02:00
|
|
|
static public TargetPlatform getCurrentTargetPlatformFromPackage(String pack) {
|
2014-08-22 12:47:43 +02:00
|
|
|
return getTargetPlatform(pack, PreferencesData.get("target_platform"));
|
2014-08-21 19:00:29 +02:00
|
|
|
}
|
|
|
|
|
2014-08-26 12:19:53 +02:00
|
|
|
static public File getDefaultSketchbookFolder() {
|
|
|
|
if (getPortableFolder() != null)
|
|
|
|
return new File(getPortableFolder(), getPortableSketchbookFolder());
|
|
|
|
|
|
|
|
File sketchbookFolder = null;
|
|
|
|
try {
|
|
|
|
sketchbookFolder = getPlatform().getDefaultSketchbookFolder();
|
|
|
|
} catch (Exception e) { }
|
|
|
|
|
|
|
|
return sketchbookFolder;
|
|
|
|
}
|
|
|
|
|
2014-08-22 16:49:39 +02:00
|
|
|
public static DiscoveryManager getDiscoveryManager() {
|
|
|
|
return discoveryManager;
|
|
|
|
}
|
|
|
|
|
2014-08-25 18:57:18 +02:00
|
|
|
static public File getExamplesFolder() {
|
|
|
|
return examplesFolder;
|
|
|
|
}
|
|
|
|
|
|
|
|
static public String getExamplesPath() {
|
|
|
|
return examplesFolder.getAbsolutePath();
|
|
|
|
}
|
|
|
|
|
2014-08-21 12:35:01 +02:00
|
|
|
static public File getHardwareFolder() {
|
|
|
|
// calculate on the fly because it's needed by Preferences.init() to find
|
|
|
|
// the boards.txt and programmers.txt preferences files (which happens
|
|
|
|
// before the other folders / paths get cached).
|
|
|
|
return getContentFile("hardware");
|
|
|
|
}
|
|
|
|
|
|
|
|
static public String getHardwarePath() {
|
|
|
|
return getHardwareFolder().getAbsolutePath();
|
|
|
|
}
|
|
|
|
|
2014-08-21 14:06:25 +02:00
|
|
|
static public LibraryList getLibraries() {
|
|
|
|
return libraries;
|
|
|
|
}
|
|
|
|
|
2014-08-25 18:57:18 +02:00
|
|
|
static public List<File> getLibrariesPath() {
|
|
|
|
return librariesFolders;
|
|
|
|
}
|
|
|
|
|
2014-08-21 19:47:33 +02:00
|
|
|
/**
|
|
|
|
* Return an InputStream for a file inside the Processing lib folder.
|
|
|
|
*/
|
|
|
|
static public InputStream getLibStream(String filename) throws IOException {
|
|
|
|
return new FileInputStream(new File(getContentFile("lib"), filename));
|
|
|
|
}
|
|
|
|
|
2014-08-21 13:33:46 +02:00
|
|
|
static public Platform getPlatform() {
|
|
|
|
return platform;
|
|
|
|
}
|
|
|
|
|
2014-08-21 13:18:54 +02:00
|
|
|
static public File getPortableFolder() {
|
|
|
|
return portableFolder;
|
|
|
|
}
|
|
|
|
|
2014-08-26 11:48:25 +02:00
|
|
|
static public String getPortableSketchbookFolder() {
|
|
|
|
return portableSketchbookFolder;
|
|
|
|
}
|
|
|
|
|
2014-08-21 19:47:33 +02:00
|
|
|
/**
|
|
|
|
* Convenience method to get a File object for the specified filename inside
|
|
|
|
* the settings folder.
|
|
|
|
* For now, only used by Preferences to get the preferences.txt file.
|
|
|
|
* @param filename A file inside the settings folder.
|
|
|
|
* @return filename wrapped as a File object inside the settings folder
|
|
|
|
*/
|
|
|
|
static public File getSettingsFile(String filename) {
|
|
|
|
return new File(getSettingsFolder(), filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
static public File getSettingsFolder() {
|
2014-08-22 13:41:41 +02:00
|
|
|
if (getPortableFolder() != null)
|
|
|
|
return getPortableFolder();
|
2014-08-21 19:47:33 +02:00
|
|
|
|
|
|
|
File settingsFolder = null;
|
|
|
|
|
2014-08-22 12:47:43 +02:00
|
|
|
String preferencesPath = PreferencesData.get("settings.path");
|
2014-08-21 19:47:33 +02:00
|
|
|
if (preferencesPath != null) {
|
|
|
|
settingsFolder = absoluteFile(preferencesPath);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
settingsFolder = getPlatform().getSettingsFolder();
|
|
|
|
} catch (Exception e) {
|
|
|
|
showError(_("Problem getting data folder"),
|
|
|
|
_("Error getting the Arduino data folder."), e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// create the folder if it doesn't exist already
|
|
|
|
if (!settingsFolder.exists()) {
|
|
|
|
if (!settingsFolder.mkdirs()) {
|
|
|
|
showError(_("Settings issues"),
|
|
|
|
_("Arduino cannot run because it could not\n" +
|
|
|
|
"create a folder to store your settings."), null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return settingsFolder;
|
|
|
|
}
|
|
|
|
|
2014-08-21 13:18:54 +02:00
|
|
|
static public File getSketchbookFolder() {
|
|
|
|
if (portableFolder != null)
|
2014-08-22 12:47:43 +02:00
|
|
|
return new File(portableFolder, PreferencesData.get("sketchbook.path"));
|
|
|
|
return absoluteFile(PreferencesData.get("sketchbook.path"));
|
2014-08-21 13:18:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static public File getSketchbookHardwareFolder() {
|
|
|
|
return new File(getSketchbookFolder(), "hardware");
|
|
|
|
}
|
|
|
|
|
2014-08-25 18:57:18 +02:00
|
|
|
static public File getSketchbookLibrariesFolder() {
|
|
|
|
File libdir = new File(getSketchbookFolder(), "libraries");
|
|
|
|
if (!libdir.exists()) {
|
|
|
|
try {
|
|
|
|
libdir.mkdirs();
|
|
|
|
File readme = new File(libdir, "readme.txt");
|
|
|
|
FileWriter freadme = new FileWriter(readme);
|
|
|
|
freadme.write(_("For information on installing libraries, see: " +
|
|
|
|
"http://arduino.cc/en/Guide/Libraries\n"));
|
|
|
|
freadme.close();
|
|
|
|
} catch (Exception e) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return libdir;
|
|
|
|
}
|
|
|
|
|
2014-08-26 11:27:08 +02:00
|
|
|
static public String getSketchbookPath() {
|
|
|
|
// Get the sketchbook path, and make sure it's set properly
|
2014-08-26 12:19:53 +02:00
|
|
|
String sketchbookPath = PreferencesData.get("sketchbook.path");
|
2014-08-26 11:27:08 +02:00
|
|
|
|
|
|
|
// If a value is at least set, first check to see if the folder exists.
|
|
|
|
// If it doesn't, warn the user that the sketchbook folder is being reset.
|
|
|
|
if (sketchbookPath != null) {
|
|
|
|
File sketchbookFolder;
|
2014-08-26 12:19:53 +02:00
|
|
|
if (getPortableFolder() != null)
|
|
|
|
sketchbookFolder = new File(getPortableFolder(), sketchbookPath);
|
2014-08-26 11:27:08 +02:00
|
|
|
else
|
|
|
|
sketchbookFolder = absoluteFile(sketchbookPath);
|
|
|
|
if (!sketchbookFolder.exists()) {
|
|
|
|
showWarning(_("Sketchbook folder disappeared"),
|
|
|
|
_("The sketchbook folder no longer exists.\n" +
|
|
|
|
"Arduino will switch to the default sketchbook\n" +
|
|
|
|
"location, and create a new sketchbook folder if\n" +
|
|
|
|
"necessary. Arduino will then stop talking about\n" +
|
|
|
|
"himself in the third person."), null);
|
|
|
|
sketchbookPath = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return sketchbookPath;
|
|
|
|
}
|
|
|
|
|
2014-08-21 13:38:28 +02:00
|
|
|
public static TargetBoard getTargetBoard() {
|
2014-05-01 16:17:43 +02:00
|
|
|
TargetPlatform targetPlatform = getTargetPlatform();
|
|
|
|
if (targetPlatform == null)
|
|
|
|
return null;
|
2014-08-22 12:47:43 +02:00
|
|
|
String boardId = PreferencesData.get("board");
|
2014-05-01 16:17:43 +02:00
|
|
|
return targetPlatform.getBoard(boardId);
|
2014-08-21 13:38:28 +02:00
|
|
|
}
|
|
|
|
|
2014-08-25 19:57:54 +02:00
|
|
|
/**
|
|
|
|
* Returns a specific TargetPackage
|
|
|
|
*
|
|
|
|
* @param packageName
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
static public TargetPackage getTargetPackage(String packageName) {
|
|
|
|
return packages.get(packageName);
|
|
|
|
}
|
|
|
|
|
2014-08-21 13:18:54 +02:00
|
|
|
/**
|
|
|
|
* Returns the currently selected TargetPlatform.
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
static public TargetPlatform getTargetPlatform() {
|
2014-08-22 12:47:43 +02:00
|
|
|
String packageName = PreferencesData.get("target_package");
|
|
|
|
String platformName = PreferencesData.get("target_platform");
|
2014-08-21 13:18:54 +02:00
|
|
|
return getTargetPlatform(packageName, platformName);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a specific TargetPlatform searching Package/Platform
|
|
|
|
*
|
|
|
|
* @param packageName
|
|
|
|
* @param platformName
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
static public TargetPlatform getTargetPlatform(String packageName,
|
|
|
|
String platformName) {
|
|
|
|
TargetPackage p = packages.get(packageName);
|
|
|
|
if (p == null)
|
|
|
|
return null;
|
|
|
|
return p.get(platformName);
|
|
|
|
}
|
|
|
|
|
2014-08-25 18:57:18 +02:00
|
|
|
static public File getToolsFolder() {
|
|
|
|
return toolsFolder;
|
|
|
|
}
|
|
|
|
|
|
|
|
static public String getToolsPath() {
|
|
|
|
return toolsFolder.getAbsolutePath();
|
|
|
|
}
|
|
|
|
|
2014-08-21 14:06:25 +02:00
|
|
|
static public LibraryList getUserLibs() {
|
|
|
|
if (libraries == null)
|
|
|
|
return new LibraryList();
|
|
|
|
return libraries.filterLibrariesInSubfolder(getSketchbookFolder());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Given a folder, return a list of the header files in that folder (but not
|
|
|
|
* the header files in its sub-folders, as those should be included from
|
|
|
|
* within the header files at the top-level).
|
|
|
|
*/
|
|
|
|
static public String[] headerListFromIncludePath(File path) throws IOException {
|
|
|
|
String[] list = path.list(new OnlyFilesWithExtension(".h"));
|
|
|
|
if (list == null) {
|
|
|
|
throw new IOException();
|
|
|
|
}
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
2014-09-10 18:48:34 +02:00
|
|
|
static public void init(String[] args) {
|
|
|
|
getPlatform().init();
|
|
|
|
|
|
|
|
String sketchbookPath = getSketchbookPath();
|
|
|
|
|
|
|
|
// If no path is set, get the default sketchbook folder for this platform
|
|
|
|
if (sketchbookPath == null) {
|
|
|
|
if (BaseNoGui.getPortableFolder() != null)
|
|
|
|
PreferencesData.set("sketchbook.path", getPortableSketchbookFolder());
|
|
|
|
else
|
|
|
|
showError(_("No sketchbook"), _("Sketchbook path not defined"), null);
|
|
|
|
}
|
|
|
|
|
|
|
|
BaseNoGui.initPackages();
|
|
|
|
|
|
|
|
// Setup board-dependent variables.
|
|
|
|
onBoardOrPortChange();
|
|
|
|
|
|
|
|
CommandlineParser parser = CommandlineParser.newCommandlineParser(args);
|
|
|
|
|
|
|
|
for (String path: parser.getFilenames()) {
|
|
|
|
// Correctly resolve relative paths
|
|
|
|
File file = absoluteFile(path);
|
|
|
|
|
|
|
|
// Fix a problem with systems that use a non-ASCII languages. Paths are
|
|
|
|
// being passed in with 8.3 syntax, which makes the sketch loader code
|
|
|
|
// unhappy, since the sketch folder naming doesn't match up correctly.
|
|
|
|
// http://dev.processing.org/bugs/show_bug.cgi?id=1089
|
|
|
|
if (OSUtils.isWindows()) {
|
|
|
|
try {
|
|
|
|
file = file.getCanonicalFile();
|
|
|
|
} catch (IOException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!parser.isVerifyOrUploadMode() && !parser.isGetPrefMode())
|
|
|
|
showError(_("Mode not supported"), _("Only --verify, --upload or --get-pref are supported"), null);
|
|
|
|
|
|
|
|
if (!parser.isForceSavePrefs())
|
|
|
|
PreferencesData.setDoSave(false);
|
|
|
|
if (!file.exists()) {
|
|
|
|
String mess = I18n.format(_("Failed to open sketch: \"{0}\""), path);
|
|
|
|
// Open failure is fatal in upload/verify mode
|
|
|
|
showError(null, mess, 2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Save the preferences. For GUI mode, this happens in the quit
|
|
|
|
// handler, but for other modes we should also make sure to save
|
|
|
|
// them.
|
|
|
|
PreferencesData.save();
|
|
|
|
|
|
|
|
if (parser.isVerifyOrUploadMode()) {
|
|
|
|
// Set verbosity for command line build
|
|
|
|
PreferencesData.set("build.verbose", "" + parser.isDoVerboseBuild());
|
|
|
|
PreferencesData.set("upload.verbose", "" + parser.isDoVerboseUpload());
|
|
|
|
|
|
|
|
// Make sure these verbosity preferences are only for the
|
|
|
|
// current session
|
|
|
|
PreferencesData.setDoSave(false);
|
|
|
|
|
|
|
|
if (parser.isUploadMode()) {
|
|
|
|
|
|
|
|
if (parser.getFilenames().size() != 1)
|
|
|
|
{
|
2014-09-19 16:51:47 +02:00
|
|
|
showError(_("Multiple files not supported"), _("The --upload option supports only one file at a time"), null);
|
2014-09-10 18:48:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
List<String> warningsAccumulator = new LinkedList<String>();
|
|
|
|
boolean success = false;
|
|
|
|
try {
|
2015-01-14 18:05:00 +01:00
|
|
|
// Editor constructor loads the sketch with handleOpenInternal() that
|
|
|
|
// creates a new Sketch that, in trun, calls load() inside its constructor
|
|
|
|
// This translates here as:
|
2014-09-10 18:48:34 +02:00
|
|
|
// SketchData data = new SketchData(file);
|
|
|
|
// File tempBuildFolder = getBuildFolder();
|
|
|
|
// data.load();
|
|
|
|
SketchData data = new SketchData(absoluteFile(parser.getFilenames().get(0)));
|
|
|
|
File tempBuildFolder = getBuildFolder();
|
|
|
|
data.load();
|
|
|
|
|
|
|
|
// Sketch.exportApplet()
|
2015-01-14 18:05:00 +01:00
|
|
|
// - calls Sketch.prepare() that calls Sketch.ensureExistence()
|
|
|
|
// - calls Sketch.build(verbose=false) that calls Sketch.ensureExistence(), set progressListener and calls Compiler.build()
|
|
|
|
// - calls Sketch.upload() (see later...)
|
2014-09-10 18:48:34 +02:00
|
|
|
if (!data.getFolder().exists()) showError(_("No sketch"), _("Can't find the sketch in the specified path"), null);
|
2014-09-19 16:51:47 +02:00
|
|
|
String suggestedClassName = Compiler.build(data, tempBuildFolder.getAbsolutePath(), tempBuildFolder, null, parser.isDoVerboseBuild());
|
2014-09-10 18:48:34 +02:00
|
|
|
if (suggestedClassName == null) showError(_("Error while verifying"), _("An error occurred while verifying the sketch"), null);
|
2014-09-19 16:51:47 +02:00
|
|
|
showMessage(_("Done compiling"), _("Done compiling"));
|
|
|
|
|
2014-09-10 18:48:34 +02:00
|
|
|
// - chiama Sketch.upload() ... to be continued ...
|
2014-09-19 16:51:47 +02:00
|
|
|
Uploader uploader = Compiler.getUploaderByPreferences(parser.isNoUploadPort());
|
2015-01-14 18:05:00 +01:00
|
|
|
if (uploader.requiresAuthorization() && !PreferencesData.has(uploader.getAuthorizationKey())) showError("...", "...", null);
|
2014-09-10 18:48:34 +02:00
|
|
|
try {
|
2014-09-19 16:51:47 +02:00
|
|
|
success = Compiler.upload(data, uploader, tempBuildFolder.getAbsolutePath(), suggestedClassName, parser.isDoUseProgrammer(), parser.isNoUploadPort(), warningsAccumulator);
|
|
|
|
showMessage(_("Done uploading"), _("Done uploading"));
|
2014-09-10 18:48:34 +02:00
|
|
|
} finally {
|
|
|
|
if (uploader.requiresAuthorization() && !success) {
|
|
|
|
PreferencesData.remove(uploader.getAuthorizationKey());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (Exception e) {
|
|
|
|
showError(_("Error while verifying/uploading"), _("An error occurred while verifying/uploading the sketch"), e);
|
|
|
|
}
|
|
|
|
for (String warning : warningsAccumulator) {
|
|
|
|
System.out.print(_("Warning"));
|
|
|
|
System.out.print(": ");
|
|
|
|
System.out.println(warning);
|
|
|
|
}
|
|
|
|
if (!success) showError(_("Error while uploading"), _("An error occurred while uploading the sketch"), null);
|
|
|
|
} else {
|
|
|
|
|
|
|
|
for (String path : parser.getFilenames())
|
|
|
|
{
|
|
|
|
try {
|
2015-01-14 18:05:00 +01:00
|
|
|
// Editor constructor loads sketch with handleOpenInternal() that
|
|
|
|
// creates a new Sketch that calls load() in its constructor
|
|
|
|
// This translates here as:
|
2014-09-10 18:48:34 +02:00
|
|
|
// SketchData data = new SketchData(file);
|
|
|
|
// File tempBuildFolder = getBuildFolder();
|
|
|
|
// data.load();
|
|
|
|
SketchData data = new SketchData(absoluteFile(path));
|
|
|
|
File tempBuildFolder = getBuildFolder();
|
|
|
|
data.load();
|
|
|
|
|
2015-01-14 18:05:00 +01:00
|
|
|
// Sketch.prepare() calls Sketch.ensureExistence()
|
|
|
|
// Sketch.build(verbose) calls Sketch.ensureExistence() and set progressListener and, finally, calls Compiler.build()
|
|
|
|
// This translates here as:
|
2014-09-10 18:48:34 +02:00
|
|
|
// if (!data.getFolder().exists()) showError(...);
|
|
|
|
// String ... = Compiler.build(data, tempBuildFolder.getAbsolutePath(), tempBuildFolder, null, verbose);
|
|
|
|
if (!data.getFolder().exists()) showError(_("No sketch"), _("Can't find the sketch in the specified path"), null);
|
|
|
|
String suggestedClassName = Compiler.build(data, tempBuildFolder.getAbsolutePath(), tempBuildFolder, null, parser.isDoVerboseBuild());
|
|
|
|
if (suggestedClassName == null) showError(_("Error while verifying"), _("An error occurred while verifying the sketch"), null);
|
2014-09-19 16:51:47 +02:00
|
|
|
showMessage(_("Done compiling"), _("Done compiling"));
|
2014-09-10 18:48:34 +02:00
|
|
|
} catch (Exception e) {
|
|
|
|
showError(_("Error while verifying"), _("An error occurred while verifying the sketch"), e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// No errors exit gracefully
|
|
|
|
System.exit(0);
|
|
|
|
}
|
|
|
|
else if (parser.isGetPrefMode()) {
|
|
|
|
String value = PreferencesData.get(parser.getGetPref(), null);
|
|
|
|
if (value != null) {
|
|
|
|
System.out.println(value);
|
|
|
|
System.exit(0);
|
|
|
|
} else {
|
|
|
|
System.exit(4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-21 18:43:13 +02:00
|
|
|
static public void initLogger() {
|
|
|
|
System.setProperty(LogFactoryImpl.LOG_PROPERTY, NoOpLog.class.getCanonicalName());
|
|
|
|
Logger.getLogger("javax.jmdns").setLevel(Level.OFF);
|
|
|
|
}
|
|
|
|
|
2014-08-21 13:18:54 +02:00
|
|
|
static public void initPackages() {
|
|
|
|
packages = new HashMap<String, TargetPackage>();
|
|
|
|
loadHardware(getHardwareFolder());
|
|
|
|
loadHardware(getSketchbookHardwareFolder());
|
|
|
|
if (packages.size() == 0) {
|
|
|
|
System.out.println(_("No valid configured cores found! Exiting..."));
|
|
|
|
System.exit(3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-21 13:33:46 +02:00
|
|
|
static protected void initPlatform() {
|
|
|
|
try {
|
|
|
|
Class<?> platformClass = Class.forName("processing.app.Platform");
|
|
|
|
if (OSUtils.isMacOS()) {
|
|
|
|
platformClass = Class.forName("processing.app.macosx.Platform");
|
|
|
|
} else if (OSUtils.isWindows()) {
|
|
|
|
platformClass = Class.forName("processing.app.windows.Platform");
|
|
|
|
} else if (OSUtils.isLinux()) {
|
|
|
|
platformClass = Class.forName("processing.app.linux.Platform");
|
|
|
|
}
|
|
|
|
platform = (Platform) platformClass.newInstance();
|
|
|
|
} catch (Exception e) {
|
2014-08-21 19:55:50 +02:00
|
|
|
showError(_("Problem Setting the Platform"),
|
|
|
|
_("An unknown error occurred while trying to load\n" +
|
|
|
|
"platform-specific code for your machine."), e);
|
2014-08-21 13:33:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-21 13:18:54 +02:00
|
|
|
static public void initPortableFolder() {
|
|
|
|
// Portable folder
|
|
|
|
portableFolder = getContentFile("portable");
|
|
|
|
if (!portableFolder.exists())
|
|
|
|
portableFolder = null;
|
|
|
|
}
|
|
|
|
|
2014-08-21 18:43:13 +02:00
|
|
|
static public void initVersion() {
|
|
|
|
// help 3rd party installers find the correct hardware path
|
2014-08-22 12:47:43 +02:00
|
|
|
PreferencesData.set("last.ide." + VERSION_NAME + ".hardwarepath", getHardwarePath());
|
|
|
|
PreferencesData.set("last.ide." + VERSION_NAME + ".daterun", "" + (new Date()).getTime() / 1000);
|
2014-08-21 18:43:13 +02:00
|
|
|
}
|
|
|
|
|
2014-08-22 18:27:50 +02:00
|
|
|
/**
|
|
|
|
* Return true if the name is valid for a Processing sketch.
|
|
|
|
*/
|
|
|
|
static public boolean isSanitaryName(String name) {
|
|
|
|
return sanitizeName(name).equals(name);
|
|
|
|
}
|
|
|
|
|
2014-08-21 13:18:54 +02:00
|
|
|
static protected void loadHardware(File folder) {
|
|
|
|
if (!folder.isDirectory()) return;
|
|
|
|
|
|
|
|
String list[] = folder.list(new OnlyDirs());
|
|
|
|
|
|
|
|
// if a bad folder or something like that, this might come back null
|
|
|
|
if (list == null) return;
|
|
|
|
|
|
|
|
// alphabetize list, since it's not always alpha order
|
|
|
|
// replaced hella slow bubble sort with this feller for 0093
|
|
|
|
Arrays.sort(list, String.CASE_INSENSITIVE_ORDER);
|
|
|
|
|
|
|
|
for (String target : list) {
|
|
|
|
// Skip reserved 'tools' folder.
|
|
|
|
if (target.equals("tools"))
|
|
|
|
continue;
|
|
|
|
File subfolder = new File(folder, target);
|
|
|
|
|
|
|
|
try {
|
2014-08-22 13:41:41 +02:00
|
|
|
packages.put(target, new TargetPackage(target, subfolder));
|
2014-08-21 13:18:54 +02:00
|
|
|
} catch (TargetPlatformException e) {
|
|
|
|
System.out.println("WARNING: Error loading hardware folder " + target);
|
|
|
|
System.out.println(" " + e.getMessage());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-22 18:35:15 +02:00
|
|
|
/**
|
|
|
|
* Grab the contents of a file as a string.
|
|
|
|
*/
|
|
|
|
static public String loadFile(File file) throws IOException {
|
|
|
|
String[] contents = PApplet.loadStrings(file);
|
|
|
|
if (contents == null) return null;
|
|
|
|
return PApplet.join(contents, "\n");
|
|
|
|
}
|
|
|
|
|
2014-09-10 18:48:34 +02:00
|
|
|
static public void main(String args[]) throws Exception {
|
2014-09-19 16:51:47 +02:00
|
|
|
if (args.length == 0)
|
|
|
|
showError(_("No parameters"), _("No command line parameters found"), null);
|
|
|
|
|
2014-09-10 18:48:34 +02:00
|
|
|
initPlatform();
|
|
|
|
|
|
|
|
initPortableFolder();
|
|
|
|
|
2014-09-23 10:55:47 +02:00
|
|
|
initParameters(args);
|
2014-09-10 18:48:34 +02:00
|
|
|
|
|
|
|
init(args);
|
|
|
|
}
|
|
|
|
|
2014-08-25 18:57:18 +02:00
|
|
|
static public void onBoardOrPortChange() {
|
|
|
|
examplesFolder = getContentFile("examples");
|
|
|
|
toolsFolder = getContentFile("tools");
|
|
|
|
librariesFolders = new ArrayList<File>();
|
|
|
|
librariesFolders.add(getContentFile("libraries"));
|
2014-05-01 16:17:43 +02:00
|
|
|
|
|
|
|
// Add library folder for the current selected platform
|
|
|
|
TargetPlatform targetPlatform = getTargetPlatform();
|
|
|
|
if (targetPlatform != null) {
|
2015-02-12 17:27:58 +01:00
|
|
|
String core = getBoardPreferences().get("build.core", "arduino");
|
2014-05-01 16:17:43 +02:00
|
|
|
if (core.contains(":")) {
|
|
|
|
String referencedCore = core.split(":")[0];
|
|
|
|
TargetPlatform referencedPlatform = getTargetPlatform(referencedCore, targetPlatform.getId());
|
|
|
|
if (referencedPlatform != null) {
|
|
|
|
File referencedPlatformFolder = referencedPlatform.getFolder();
|
|
|
|
librariesFolders.add(new File(referencedPlatformFolder, "libraries"));
|
|
|
|
}
|
2014-08-25 18:57:18 +02:00
|
|
|
}
|
2014-05-01 16:17:43 +02:00
|
|
|
File platformFolder = targetPlatform.getFolder();
|
|
|
|
librariesFolders.add(new File(platformFolder, "libraries"));
|
|
|
|
librariesFolders.add(getSketchbookLibrariesFolder());
|
2014-08-25 18:57:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Scan for libraries in each library folder.
|
|
|
|
// Libraries located in the latest folders on the list can override
|
|
|
|
// other libraries with the same name.
|
|
|
|
try {
|
|
|
|
scanAndUpdateLibraries(librariesFolders);
|
|
|
|
} catch (IOException e) {
|
|
|
|
showWarning(_("Error"), _("Error loading libraries"), e);
|
|
|
|
}
|
|
|
|
|
|
|
|
populateImportToLibraryTable();
|
|
|
|
}
|
|
|
|
|
2014-08-22 13:41:41 +02:00
|
|
|
static public void populateImportToLibraryTable() {
|
|
|
|
// Populate importToLibraryTable
|
2014-08-21 14:06:25 +02:00
|
|
|
importToLibraryTable = new HashMap<String, Library>();
|
2014-08-22 13:41:41 +02:00
|
|
|
for (Library lib : getLibraries()) {
|
|
|
|
try {
|
|
|
|
String headers[] = headerListFromIncludePath(lib.getSrcFolder());
|
|
|
|
for (String header : headers) {
|
|
|
|
Library old = importToLibraryTable.get(header);
|
|
|
|
if (old != null) {
|
2015-02-23 12:26:07 +01:00
|
|
|
// This is the case where 2 libraries have a .h header
|
|
|
|
// with the same name. We must decide which library to
|
|
|
|
// use when a sketch has #include "name.h"
|
|
|
|
//
|
|
|
|
// When all other factors are equal, "libName" is
|
|
|
|
// used in preference to "oldName", because getLibraries()
|
|
|
|
// gives the library list in order from less specific to
|
|
|
|
// more specific locations.
|
|
|
|
//
|
|
|
|
// But often one library is more clearly the user's
|
|
|
|
// intention to use. Many cases are tested, always first
|
|
|
|
// for "libName", then for "oldName".
|
|
|
|
//
|
|
|
|
String name = header.substring(0, header.length() - 2); // name without ".h"
|
|
|
|
String oldName = old.getFolder().getName(); // just the library folder name
|
|
|
|
String libName = lib.getFolder().getName(); // just the library folder name
|
|
|
|
//System.out.println("name conflict: " + name);
|
|
|
|
//System.out.println(" old = " + oldName + " -> " + old.getFolder().getPath());
|
|
|
|
//System.out.println(" new = " + libName + " -> " + lib.getFolder().getPath());
|
|
|
|
String name_lc = name.toLowerCase();
|
|
|
|
String oldName_lc = oldName.toLowerCase();
|
|
|
|
String libName_lc = libName.toLowerCase();
|
|
|
|
// always favor a perfect name match
|
|
|
|
if (libName.equals(name)) {
|
|
|
|
} else if (oldName.equals(name)) {
|
|
|
|
continue;
|
|
|
|
// check for "-master" appended (zip file from github)
|
|
|
|
} else if (libName.equals(name+"-master")) {
|
|
|
|
} else if (oldName.equals(name+"-master")) {
|
|
|
|
continue;
|
|
|
|
// next, favor a match with other stuff appended
|
|
|
|
} else if (libName.startsWith(name)) {
|
|
|
|
} else if (oldName.startsWith(name)) {
|
|
|
|
continue;
|
|
|
|
// otherwise, favor a match with stuff prepended
|
|
|
|
} else if (libName.endsWith(name)) {
|
|
|
|
} else if (oldName.endsWith(name)) {
|
|
|
|
continue;
|
|
|
|
// as a last resort, match if stuff prepended and appended
|
|
|
|
} else if (libName.contains(name)) {
|
|
|
|
} else if (oldName.contains(name)) {
|
|
|
|
continue;
|
|
|
|
// repeat all the above tests, with case insensitive matching
|
|
|
|
} else if (libName_lc.equals(name_lc)) {
|
|
|
|
} else if (oldName_lc.equals(name_lc)) {
|
|
|
|
continue;
|
|
|
|
} else if (libName_lc.equals(name_lc+"-master")) {
|
|
|
|
} else if (oldName_lc.equals(name_lc+"-master")) {
|
|
|
|
continue;
|
|
|
|
} else if (libName_lc.startsWith(name_lc)) {
|
|
|
|
} else if (oldName_lc.startsWith(name_lc)) {
|
|
|
|
continue;
|
|
|
|
} else if (libName_lc.endsWith(name_lc)) {
|
|
|
|
} else if (oldName_lc.endsWith(name_lc)) {
|
|
|
|
continue;
|
|
|
|
} else if (libName_lc.contains(name_lc)) {
|
|
|
|
} else if (oldName_lc.contains(name_lc)) {
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
// none of these tests matched, so just default to "libName".
|
|
|
|
}
|
2014-08-22 13:41:41 +02:00
|
|
|
}
|
|
|
|
importToLibraryTable.put(header, lib);
|
|
|
|
}
|
|
|
|
} catch (IOException e) {
|
|
|
|
showWarning(_("Error"), I18n
|
|
|
|
.format("Unable to list header files in {0}", lib.getSrcFolder()), e);
|
|
|
|
}
|
|
|
|
}
|
2014-08-21 14:06:25 +02:00
|
|
|
}
|
|
|
|
|
2014-09-23 10:55:47 +02:00
|
|
|
static public void initParameters(String args[]) {
|
2014-08-21 18:43:13 +02:00
|
|
|
String preferencesFile = null;
|
|
|
|
|
|
|
|
// Do a first pass over the commandline arguments, the rest of them
|
|
|
|
// will be processed by the Base constructor. Note that this loop
|
|
|
|
// does not look at the last element of args, to prevent crashing
|
|
|
|
// when no parameter was specified to an option. Later, Base() will
|
|
|
|
// then show an error for these.
|
|
|
|
for (int i = 0; i < args.length - 1; i++) {
|
|
|
|
if (args[i].equals("--preferences-file")) {
|
|
|
|
++i;
|
|
|
|
preferencesFile = args[i];
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (args[i].equals("--curdir")) {
|
|
|
|
i++;
|
|
|
|
currentDirectory = args[i];
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// run static initialization that grabs all the prefs
|
2014-08-22 12:47:43 +02:00
|
|
|
PreferencesData.init(absoluteFile(preferencesFile));
|
2014-08-21 18:43:13 +02:00
|
|
|
}
|
|
|
|
|
2014-08-22 18:12:34 +02:00
|
|
|
/**
|
|
|
|
* Recursively remove all files within a directory,
|
|
|
|
* used with removeDir(), or when the contents of a dir
|
|
|
|
* should be removed, but not the directory itself.
|
|
|
|
* (i.e. when cleaning temp files from lib/build)
|
|
|
|
*/
|
|
|
|
static public void removeDescendants(File dir) {
|
|
|
|
if (!dir.exists()) return;
|
|
|
|
|
|
|
|
String files[] = dir.list();
|
|
|
|
for (int i = 0; i < files.length; i++) {
|
|
|
|
if (files[i].equals(".") || files[i].equals("..")) continue;
|
|
|
|
File dead = new File(dir, files[i]);
|
|
|
|
if (!dead.isDirectory()) {
|
2014-08-22 18:27:50 +02:00
|
|
|
if (!PreferencesData.getBoolean("compiler.save_build_files")) {
|
2014-08-22 18:12:34 +02:00
|
|
|
if (!dead.delete()) {
|
|
|
|
// temporarily disabled
|
|
|
|
System.err.println(I18n.format(_("Could not delete {0}"), dead));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
removeDir(dead);
|
|
|
|
//dead.delete();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove all files in a directory and the directory itself.
|
|
|
|
*/
|
|
|
|
static public void removeDir(File dir) {
|
|
|
|
if (dir.exists()) {
|
|
|
|
removeDescendants(dir);
|
|
|
|
if (!dir.delete()) {
|
|
|
|
System.err.println(I18n.format(_("Could not delete {0}"), dir));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-22 18:27:50 +02:00
|
|
|
/**
|
|
|
|
* Produce a sanitized name that fits our standards for likely to work.
|
|
|
|
* <p/>
|
|
|
|
* Java classes have a wider range of names that are technically allowed
|
|
|
|
* (supposedly any Unicode name) than what we support. The reason for
|
|
|
|
* going more narrow is to avoid situations with text encodings and
|
|
|
|
* converting during the process of moving files between operating
|
|
|
|
* systems, i.e. uploading from a Windows machine to a Linux server,
|
|
|
|
* or reading a FAT32 partition in OS X and using a thumb drive.
|
|
|
|
* <p/>
|
|
|
|
* This helper function replaces everything but A-Z, a-z, and 0-9 with
|
|
|
|
* underscores. Also disallows starting the sketch name with a digit.
|
|
|
|
*/
|
|
|
|
static public String sanitizeName(String origName) {
|
|
|
|
char c[] = origName.toCharArray();
|
|
|
|
StringBuffer buffer = new StringBuffer();
|
|
|
|
|
|
|
|
// can't lead with a digit, so start with an underscore
|
|
|
|
if ((c[0] >= '0') && (c[0] <= '9')) {
|
|
|
|
buffer.append('_');
|
|
|
|
}
|
|
|
|
for (int i = 0; i < c.length; i++) {
|
|
|
|
if (((c[i] >= '0') && (c[i] <= '9')) ||
|
|
|
|
((c[i] >= 'a') && (c[i] <= 'z')) ||
|
|
|
|
((c[i] >= 'A') && (c[i] <= 'Z')) ||
|
|
|
|
((i > 0) && (c[i] == '-')) ||
|
|
|
|
((i > 0) && (c[i] == '.'))) {
|
|
|
|
buffer.append(c[i]);
|
|
|
|
} else {
|
|
|
|
buffer.append('_');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// let's not be ridiculous about the length of filenames.
|
|
|
|
// in fact, Mac OS 9 can handle 255 chars, though it can't really
|
|
|
|
// deal with filenames longer than 31 chars in the Finder.
|
|
|
|
// but limiting to that for sketches would mean setting the
|
|
|
|
// upper-bound on the character limit here to 25 characters
|
|
|
|
// (to handle the base name + ".class")
|
|
|
|
if (buffer.length() > 63) {
|
|
|
|
buffer.setLength(63);
|
|
|
|
}
|
|
|
|
return buffer.toString();
|
|
|
|
}
|
|
|
|
|
2014-08-21 13:43:10 +02:00
|
|
|
/**
|
|
|
|
* Spew the contents of a String object out to a file.
|
|
|
|
*/
|
|
|
|
static public void saveFile(String str, File file) throws IOException {
|
|
|
|
File temp = File.createTempFile(file.getName(), null, file.getParentFile());
|
|
|
|
PApplet.saveStrings(temp, new String[] { str });
|
|
|
|
if (file.exists()) {
|
|
|
|
boolean result = file.delete();
|
|
|
|
if (!result) {
|
|
|
|
throw new IOException(
|
|
|
|
I18n.format(
|
|
|
|
_("Could not remove old version of {0}"),
|
|
|
|
file.getAbsolutePath()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
boolean result = temp.renameTo(file);
|
|
|
|
if (!result) {
|
|
|
|
throw new IOException(
|
|
|
|
I18n.format(
|
|
|
|
_("Could not replace {0}"),
|
|
|
|
file.getAbsolutePath()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-21 14:06:25 +02:00
|
|
|
static public void scanAndUpdateLibraries(List<File> folders) throws IOException {
|
|
|
|
libraries = scanLibraries(folders);
|
|
|
|
}
|
|
|
|
|
|
|
|
static public LibraryList scanLibraries(List<File> folders) throws IOException {
|
|
|
|
LibraryList res = new LibraryList();
|
|
|
|
for (File folder : folders)
|
|
|
|
res.addOrReplaceAll(scanLibraries(folder));
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static public LibraryList scanLibraries(File folder) throws IOException {
|
|
|
|
LibraryList res = new LibraryList();
|
|
|
|
|
|
|
|
String list[] = folder.list(new OnlyDirs());
|
|
|
|
// if a bad folder or something like that, this might come back null
|
|
|
|
if (list == null)
|
|
|
|
return res;
|
|
|
|
|
|
|
|
for (String libName : list) {
|
|
|
|
File subfolder = new File(folder, libName);
|
2014-08-22 18:27:50 +02:00
|
|
|
if (!isSanitaryName(libName)) {
|
2014-08-21 14:06:25 +02:00
|
|
|
String mess = I18n.format(_("The library \"{0}\" cannot be used.\n"
|
|
|
|
+ "Library names must contain only basic letters and numbers.\n"
|
|
|
|
+ "(ASCII only and no spaces, and it cannot start with a number)"),
|
|
|
|
libName);
|
2014-08-21 19:55:50 +02:00
|
|
|
showMessage(_("Ignoring bad library name"), mess);
|
2014-08-21 14:06:25 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
Library lib = Library.create(subfolder);
|
|
|
|
// (also replace previously found libs with the same name)
|
|
|
|
if (lib != null)
|
|
|
|
res.addOrReplace(lib);
|
|
|
|
} catch (IOException e) {
|
|
|
|
System.out.println(I18n.format(_("Invalid library found in {0}: {1}"),
|
|
|
|
subfolder, e.getMessage()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2014-08-26 14:03:17 +02:00
|
|
|
static public void selectBoard(TargetBoard targetBoard) {
|
2014-08-25 19:57:54 +02:00
|
|
|
TargetPlatform targetPlatform = targetBoard.getContainerPlatform();
|
|
|
|
TargetPackage targetPackage = targetPlatform.getContainerPackage();
|
|
|
|
|
|
|
|
PreferencesData.set("target_package", targetPackage.getId());
|
|
|
|
PreferencesData.set("target_platform", targetPlatform.getId());
|
|
|
|
PreferencesData.set("board", targetBoard.getId());
|
|
|
|
|
|
|
|
File platformFolder = targetPlatform.getFolder();
|
|
|
|
PreferencesData.set("runtime.platform.path", platformFolder.getAbsolutePath());
|
|
|
|
PreferencesData.set("runtime.hardware.path", platformFolder.getParentFile().getAbsolutePath());
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void selectSerialPort(String port) {
|
|
|
|
PreferencesData.set("serial.port", port);
|
|
|
|
if (port.startsWith("/dev/"))
|
|
|
|
PreferencesData.set("serial.port.file", port.substring(5));
|
|
|
|
else
|
|
|
|
PreferencesData.set("serial.port.file", port);
|
|
|
|
}
|
|
|
|
|
2014-09-19 16:51:47 +02:00
|
|
|
public static void setBuildFolder(File newBuildFolder) {
|
|
|
|
buildFolder = newBuildFolder;
|
|
|
|
}
|
|
|
|
|
2014-08-25 12:34:50 +02:00
|
|
|
static public void showError(String title, String message, int exit_code) {
|
|
|
|
showError(title, message, null, exit_code);
|
|
|
|
}
|
|
|
|
|
2014-08-21 19:47:33 +02:00
|
|
|
static public void showError(String title, String message, Throwable e) {
|
|
|
|
notifier.showError(title, message, e, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show an error message that's actually fatal to the program.
|
|
|
|
* This is an error that can't be recovered. Use showWarning()
|
|
|
|
* for errors that allow P5 to continue running.
|
|
|
|
*/
|
|
|
|
static public void showError(String title, String message, Throwable e, int exit_code) {
|
|
|
|
notifier.showError(title, message, e, exit_code);
|
|
|
|
}
|
|
|
|
|
2014-08-21 19:55:50 +02:00
|
|
|
/**
|
|
|
|
* "No cookie for you" type messages. Nothing fatal or all that
|
|
|
|
* much of a bummer, but something to notify the user about.
|
|
|
|
*/
|
|
|
|
static public void showMessage(String title, String message) {
|
|
|
|
notifier.showMessage(title, message);
|
|
|
|
}
|
2014-08-21 20:25:23 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Non-fatal error message with optional stack trace side dish.
|
|
|
|
*/
|
|
|
|
static public void showWarning(String title, String message, Exception e) {
|
|
|
|
notifier.showWarning(title, message, e);
|
|
|
|
}
|
|
|
|
|
2014-08-21 12:23:42 +02:00
|
|
|
}
|