aboutsummaryrefslogtreecommitdiff
path: root/stage1/Stage1Lib.scala
Commit message (Collapse)AuthorAgeFilesLines
* Merge separate hashmaps for persistent cache into oneChristopher Vogt2017-02-011-5/+8
| | | | | | | This isn’t type-safe, but re-using that same hashmap for both keys and classloaders allows to reduce the number of members in Context. Also we can re-use the same hashMap for other things as well in the coming commits, e.g. timestamps.
* swap out System.out and System.err in a way that affects JDK and ScalaChristopher Vogt2016-10-131-6/+29
| | | | | | | | Before it only affected jdk, because scala.Console captures our and err before the swap. This is needed when running main classes like Scaladoc or the compiler and wanting to redirect output to standard error
* do not interpret exceptions during redirectOutToErr as scalac crashesChristopher Vogt2016-10-131-22/+22
|
* Fix exit code trapping across classloadersChristopher Vogt2016-10-071-4/+4
| | | | | | | | | | A SecurityManager is once installed globally and stays the same across all classloaders. TrapSecurityManager was installed this way, but it looked up the `trapExitCode` in it's own classloader, while classes in other classloaders (when cbt was using another version of cbt) were writing it to their own classloader. This flag needs to be in a global place instead to fix this, so we'll put it straight into the TrapSecurityManager itself.
* fix pickOne error messagerockjam2016-10-031-1/+1
|
* clean up main class discovery mechanism and offer interactive choiceChristopher Vogt2016-10-021-36/+54
| | | | if multiple main classes are found
* Added run with package discoveryChavXO2016-09-291-0/+37
|
* Use correct main method for Dottydoc - the java interfaceChristopher Vogt2016-09-281-5/+11
| | | | and work around the fact that the main method is not static (huh?)
* use lower case instead of upper case for hashes to be consistent with SBTChristopher Vogt2016-09-191-3/+3
|
* fix checksum check for downloaded jars by ignoring caseChristopher Vogt2016-09-151-3/+3
|
* fix behavior of System.exit trappingChristopher Vogt2016-09-151-2/+4
| | | | | | | | | Installing one globally for the JVM live-time and make behavior dependent on a thread local variable seems safer than globally switching it out and having race conditions. Also now all other calls are forwarded to a potential Nailgun SecurityManager, which should fix some bugs.
* Support proxy settings in CBT.Benjamin Frank2016-07-061-1/+1
| | | | | | | Proxy settings can be supplied either via Java system-properties or via environment variables (http_proxy/https_proxy/no_proxy). Java system-properties take precedence over env vars. Evaluation of proxy settings happens only during nailgun startup for now.
* Get rid of Build default imports to reduce noise in build files. This also ↵Christopher Vogt2016-06-151-3/+1
| | | | changes builds from using immutable.Seq to using Predef.Seq in favor of simplicity over purity. This has been discussed on gitter.
* scalajs cross project support as pluginKatrin Shechtman2016-06-131-1/+1
|
* Always create directory before trying to write fileChristopher Vogt2016-06-081-2/+4
|
* display message in stderr when downloading things (better than just pausing)Christopher Vogt2016-06-011-1/+1
|
* Convenience factory methods for ResolversChristopher Vogt2016-05-031-5/+5
|
* Do not cache classloaders for Builds. This wasn't supposed to happen yetChristopher Vogt2016-04-291-10/+10
|
* Reproducible builds, composing different CBT version and various improvementsChristopher Vogt2016-04-281-20/+99
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | One large commit, because it is was hard to do these things in isolation or to separate them now. CBT now knows how to load other versions of itself - Support for reproducible builds (!), by providing a CBT git URL and hash to tie build to - Support for composing builds using different CBT versions (!) - introduce (in compatibility/) Java interfaces all CBT versions need to stay compatible with, so they can talk to each other. And put extension methods to these interfaces in cbt package object Class loading - add some sanity checks for class loading - improve class loader invalidation to fix bugs - implement caching in Java land class loaders. In particular to prevent the system class loader to repeatedly generate ClassNotFound exceptions in each sink of the class loader DAG for non JDK classes (meaning major speed up for projects with many classes). - getting rid of transient class loader cache unifying into "persistent" one instead (which is still wrong as invalidation eventually needs to invalidate entire sub graphs of the class loading DAG, not single class loaders. Seems like we'll have to abandon the hashmap based approach and tie caching to dependency objects) Other Caching - cache dependencies extracted from xml files, which was one major time killer, but invalidate cache when cbt changed (maven dependency user facing api needs simplification now!) - memorize last successful compile time in the file system rather than memory, to guard against unnecessary recompiling even across launches (or when using cbt direct) Structural improvements - Factor out ClassLoaderCache on Java land into its own class. - Port MultiClassLoader to Java land, to better compose classloaders in NailgunLauncher. - Remove many global constants and variables (in object paths and in NailgunLauncher) and pass them through instead. Needed for composing of builds. - move more code from resolver into Lib for less entanglement with classes (needed to compatibility interfaces) and better re-usability - remove canBeCached. Everything can be cached now, but we need to be careful about correct invalidation. - remove build announcing produced jars. We can add if ever needed. - change callNullary to return exit code instead of Unit as preparation for next commit introducing "recursive" ScalaTest - Makes ScalaTest support work (still a bit too inflexible, but mostly works well)
* if compiler crashed, print commands to reproduce it outside of cbtChristopher Vogt2016-04-281-14/+43
|
* minor cleanup, better logging for downloadsChristopher Vogt2016-04-281-2/+3
|
* cross building and automatic snaphot idsChristopher Vogt2016-04-071-1/+10
| | | | | Adds support for cross building for multiple scala versions And for automatically appending -SNAPSHOT to the id, when publishing a snapshot.
* Correctly interact with build in cwd instead of loading it's managed build ↵Christopher Vogt2016-04-061-1/+1
| | | | in case of a BuildBuild.
* Implement alternative resolversChristopher Vogt2016-04-031-26/+49
| | | | | | | | | | | | This commit also - requires Dependencies to explicitly implement canBeCached - unifies some logic for dependency downloading - moves SBT-like dependency DSL into its own trait - error message showing build directory for exceptions in builds Not splitting this up in favor of faster progress to 1.0. The user facing API can probably be slightly improved using implicits inside of BasicBuild, but we can do that later.
* propagate info if cbt has changed across builds, so they can be re-compiledChristopher Vogt2016-04-021-1/+1
|
* only compile and only produce jars if there are actually files.Christopher Vogt2016-04-021-51/+53
| | | | This seem desirable, but also fixes a test failure for which I have no idea why it didn't fail before but now.
* Makes zinc usage smarter, so we do not need to call it when no files changed ↵Christopher Vogt2016-03-301-16/+23
| | | | | | (and safe up to 0.1s for each call) There still seem to be 2 bugs related to CBT development in the code. One if you simpy save a stage1 file unchanged and re-run cbt, it fails to call Stage2.run reflectively. Also in case of compile errors in stage1, a TrappedExitCode exception is thrown and not caught.
* replace Scala reflection with Java reflection seems to fix the weird ↵Christopher Vogt2016-03-281-16/+0
| | | | exceptions that happened in the previous commit. Also gets rid of scala.reflect dependency in stage2.
* Early classloading improvementsChristopher Vogt2016-03-281-23/+5
| | | | | | | | | - Changed launcher to already load zinc - use code generation to generate necessary dependencies - changed resolver to linearize dependency DAG in a way that guarantees that every transitive dependee of a node in the DAG is a transitive dependee of that node in the linear sequence - move exit code trapping code into java so it can be used for zinc early There seems to be a bug in this version, where CBT crashes about half of the time with a "object is not an instance of declaring class" Exception during running the task from the build object via reflection.
* better toString for Java URLClassLoader. Minor enhancementsChristopher Vogt2016-03-201-1/+1
|
* replace two level classloader with hierarchyChristopher Vogt2016-03-191-0/+2
| | | | | | replace two level classloader (one for non-cachable dependencies with a cached parent one for cachable ones) with a hierachy of classloaders corresponding this should eventually allow re-using CBT's classloader between stage1 and stage2 this change breaks the ScalaTest support for now
* minor enhancements to classloadingChristopher Vogt2016-03-191-1/+1
|
* Refactored ClassLoaderCache to use key locked cache to pave the way for ↵Christopher Vogt2016-03-191-2/+3
| | | | caching classloaders hierarchically without deadlocks
* Make trapExitCode pass on previous exit codesChristopher Vogt2016-03-191-4/+4
|
* fix zinc interface dependenciesChristopher Vogt2016-03-121-13/+13
|
* Merge remote-tracking branch 'origin/master' into farmdawg/zinc-exit-codesChristopher Vogt2016-03-121-8/+19
|\ | | | | | | | | | | # Conflicts: # stage1/Stage1Lib.scala # stage1/resolver.scala
| * Improved how to express dependenciesChristopher Vogt2016-03-121-10/+20
| | | | | | | | | | | | Add - Constructor syntax for cross-scala-version dependencies (as rightfully requested on reddit) and encouraged over SBT's still supported operator syntax - Add support for classifiers other than "sources"
* | Always reset security manager to what it was during startup. Should be less ↵Christopher Vogt2016-03-121-2/+1
| | | | | | | | fragile with regards to concurrency and user code setting security managers.
* | Clean up some of the zinc invocation.Matt Farmer2016-03-121-18/+27
| |
* | Re-enable cache detection.Matt Farmer2016-03-121-1/+1
| | | | | | | | | | | | | | | | | | We had previously disabled needsRecompile caching because we weren't properly capturing zinc's status at the conclusion of a compile. So we *always* had to recompile. Now that we've fixed the exit detection on zinc, we can correctly cache things and not recompile if the sources haven't changed.
* | Bubble zinc error codes to calling script.Matt Farmer2016-03-121-46/+39
|/ | | | | We were previously eating zinc error codes because we invoked trapExitCode twice in the same call stack.
* Split ClassLoader classes into separate files and a few fixesChristopher Vogt2016-03-111-0/+8
|
* cleanup: whitespace changes, separated more things into their own files, use ↵Christopher Vogt2016-03-071-43/+21
| | | | ++ for strings everywhere. Added ++ method to File and URL and use it in many places
* trap and pass exit codes throug the app, pass logger on to tests, remove the ↵Christopher Vogt2016-03-061-23/+83
| | | | lib. qualification from Stage1 for better readability
* The condition disables zinc too eagerly, which can easilyChristopher Vogt2016-03-061-1/+1
| | | | | | | | | | | | | | | | lead to half compiled sets of class files after a type error and no attempt to re-compile unless a source file is changed. This workaround fixes it but needs to run zinc more often which comes with a roughly 0.1 seconds time penalty every time (despite classloader caching) for every involved sub build. A fix would trep zinc's exit code (or call zinc differently) in order to determine if it succeeded and if it did not do something that makes it run again the next time, like deleting the class files or touching a source file. Probably there is a better way.
* Fix READMEChristopher Vogt2016-03-051-1/+1
|
* CBT Version 1.0-BETAChristopher Vogt2016-03-041-0/+184