aboutsummaryrefslogtreecommitdiff
path: root/stage1/resolver.scala
Commit message (Collapse)AuthorAgeFilesLines
* replace flawed concurrent hashmap cache with consistent replacementChristopher Vogt2017-02-011-2/+0
| | | | | | | | | | | | | | | | | | | | | | | The concurrent hashmap approach to classloader caching was flawed. Assume you have two concurrently running builds A and B and projects P2 and P3 depending on project P1. And assume a time sequence where A compiles P1, then compiles P2, then P1’s sources change, then B compiles P1, then A compiles P3. At the end P2 and P3 will have different versions of P1 as their parent classloaders. This is inconsistent. The easiest way to work around this is making sure only one thread is changing the classloader cache during it’s entire run. This would mean either no concurrency or what we have done here, which is letting threads work on a copy of the cache and replace the original cache in the end using an atomic operation. This means the thread that finishes last wins, but for caching that’s fine. Worst case some things aren’t cached in a concurrent execution. This change also means that we don’t need concurrent hashmaps for the classloader cache anymore since no two theads will access the same hashmap. We still need a concurrent hashmap for the class caches inside of the classloaders as multiple threads can access the same classloaders.
* Remove classifier from pom files.mchav2016-11-251-12/+11
|
* fix java.lang.LinkageError due to cache invalidation bugChristopher Vogt2016-11-091-3/+10
| | | | | | | | | | | | cbtHasChanged does never change across one run. However classLoaderRecursion removes the corresponding classloader if needsUpdate is true. It is called multiple times meaning it removes and re-creates the classloader on every call leading to potentially multiple conflicting cbt classloaders. needsUpdate should never be returning true more than ones across a single run. Otherwise it can lead to this error: java.lang.LinkageError: loader constraint violation in interface itable initialization: when resolving method "Build.lib()Lcbt/Lib;" the class loader (instance of cbt/URLClassLoader) of the current class, Build, and the class loader (instance of cbt/URLClassLoader) for interface cbt/BaseBuild have different Class objects for the type cbt/Lib used in the signature
* make BuildInterfaces an abstract class so it can have default valuesChristopher Vogt2016-10-031-2/+2
| | | | | and it becomes slightly easier to maintain source compatibility between cbt versions
* Get rid of Build default imports to reduce noise in build files. This also ↵Christopher Vogt2016-06-151-8/+4
| | | | changes builds from using immutable.Seq to using Predef.Seq in favor of simplicity over purity. This has been discussed on gitter.
* Fix BoundMavenDependency string representationChristopher Vogt2016-05-031-1/+2
|
* Convenience factory methods for ResolversChristopher Vogt2016-05-031-13/+13
|
* Fix use compatibility interfaces from main cbtChristopher Vogt2016-04-291-2/+4
|
* Reproducible builds, composing different CBT version and various improvementsChristopher Vogt2016-04-281-155/+94
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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)
* minor improvements to docs, imports, visibilitiesChristopher Vogt2016-04-281-5/+6
|
* remove dead codeChristopher Vogt2016-04-281-13/+0
|
* Speedup transitiveDependencies computation by removing duplicate versions ↵Christopher Vogt2016-04-281-10/+19
| | | | and doing less string processing
* add important commentChristopher Vogt2016-04-281-2/+4
|
* Allow substituting POM variables inside of strings, not only entire elementsChristopher Vogt2016-04-081-7/+11
|
* Temporarily cache classloaders for potentially changing filesChristopher Vogt2016-04-061-23/+23
| | | | to avoid creating classloaders for the same files more than once, which leads to conflicts.
* caching return values parameterized methods seems just wrongChristopher Vogt2016-04-061-14/+3
|
* Finally get rid of JDK 8 dependenciesChristopher Vogt2016-04-041-1/+3
|
* Implement alternative resolversChristopher Vogt2016-04-031-66/+85
| | | | | | | | | | | | 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.
* better error messages in case of messed up groupIds, artifactIds or versionsChristopher Vogt2016-04-021-6/+17
|
* Properly cache classloader for stage2 and make CbtDependency work correctly.Christopher Vogt2016-04-021-11/+14
| | | | This fixes the issues with crashes loading stage2 introduces in 57de43907e05d4cd3986e2994e0e3bff93e09b4e. Also should be faster when using nailgun.
* Classloaders aren't referentially transparent, so we should not compare them ↵Christopher Vogt2016-04-021-2/+2
| | | | structurally. (didn't cause any problem right now, but could some day)
* Improve cbt's maven resolver to handle variable substitutions for pom xml ↵Christopher Vogt2016-04-021-15/+41
| | | | tag contents
* Makes zinc usage smarter, so we do not need to call it when no files changed ↵Christopher Vogt2016-03-301-8/+8
| | | | | | (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.
* Early classloading improvementsChristopher Vogt2016-03-281-22/+31
| | | | | | | | | - 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
|
* get rid of ammonite dependencyChristopher Vogt2016-03-191-3/+0
|
* replace two level classloader with hierarchyChristopher Vogt2016-03-191-36/+69
| | | | | | 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
* avoid repeated filesystem lookups for maven dependenciesChristopher Vogt2016-03-191-1/+2
|
* maybe we were caching too muchChristopher Vogt2016-03-191-1/+1
|
* minor enhancements to classloadingChristopher Vogt2016-03-191-3/+4
|
* Refactored ClassLoaderCache to use key locked cache to pave the way for ↵Christopher Vogt2016-03-191-2/+5
| | | | caching classloaders hierarchically without deadlocks
* classloader for maven dependency can now cache it's own jar as wellChristopher Vogt2016-03-191-3/+5
|
* Add support for git dependenciesChristopher Vogt2016-03-181-1/+2
| | | | pair coded with @chavxo
* fixed previously too naive pom inheritance logic to properly handle ↵Christopher Vogt2016-03-171-9/+33
| | | | | | properties and dependencyManagement pom inheritance features pair-coded with @chavxo
* sort transitiveDependencies by exported classpath for hopefully more ↵Christopher Vogt2016-03-121-2/+7
| | | | determinism between dev machines and circle ci
* Merge remote-tracking branch 'origin/master' into farmdawg/zinc-exit-codesChristopher Vogt2016-03-121-25/+86
|\ | | | | | | | | | | # Conflicts: # stage1/Stage1Lib.scala # stage1/resolver.scala
| * two separate merges broke this.Christopher Vogt2016-03-121-1/+1
| |
| * Merge pull request #84 from cvogt/dependency-syntaxJan Christopher Vogt2016-03-121-25/+32
| |\ | | | | | | Improved how to express dependencies
| | * Improved how to express dependenciesChristopher Vogt2016-03-121-25/+32
| | | | | | | | | | | | | | | | | | 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"
| * | A draft implementation that runs builds concurrently (probably buggy right ↵Christopher Vogt2016-03-121-0/+54
| |/ | | | | | | now). Is CBT "reactive" now ;)?
* / minor simplification renamesChristopher Vogt2016-03-121-2/+2
|/
* Add feature for starting the Scala REPL in arbitrary versions, propagate ↵Christopher Vogt2016-03-091-16/+22
| | | | logger as implicits
* fix duplicate classloader. one is enoughChristopher Vogt2016-03-081-5/+4
|
* cleanup: whitespace changes, separated more things into their own files, use ↵Christopher Vogt2016-03-071-41/+45
| | | | ++ for strings everywhere. Added ++ method to File and URL and use it in many places
* CBT Version 1.0-BETAChristopher Vogt2016-03-041-0/+264