package org.simantics.scl.osgi.internal;
+
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import org.simantics.scl.compiler.module.repository.UpdateListener;
import org.simantics.scl.compiler.source.EncodedTextualModuleSource;
import org.simantics.scl.compiler.types.Type;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
import gnu.trove.set.hash.THashSet;
public class BundleModuleSource extends EncodedTextualModuleSource implements UpdateListener.Observable {
+ private static final Logger LOGGER = LoggerFactory.getLogger(BundleModuleSource.class);
+
public static final ImportDeclaration[] DEFAULT_IMPORTS = new ImportDeclaration[] {
new ImportDeclaration("Builtin", ""),
new ImportDeclaration("StandardLibrary", "")
}
return digest.digest();
} catch (NoSuchAlgorithmException e) {
- e.printStackTrace();
+ LOGGER.error("No SHA1 algorithm available", e);
return new byte[0];
} finally {
stream.close();
}
} catch(IOException e) {
- e.printStackTrace();
+ LOGGER.error("Could not compute digest for {}", this);
return new byte[0];
}
}
return false;
return Files.exists(path);
} catch (IOException e) {
+ LOGGER.debug("Could not check if {} is updateable", this, e);
return false;
}
}
-
+
@Override
public void update(String newSourceText) {
try {
return;
Files.write(path, newSourceText.getBytes(Charset.forName("UTF-8")));
} catch(IOException e) {
- e.printStackTrace();
+ LOGGER.error("Could not update {} with {}", this, newSourceText, e);
}
checkUpdates();
}