Commit Graph

1121 Commits

Author SHA1 Message Date
Dale Wijnand e45d9a254b
Switch version patterns to Long instead of Int
For sbt/sbt#3011 reasons.
2017-06-09 15:36:06 +01:00
Dale Wijnand 039e2e6b6a
Change the sbt API/binary version for sbt 1.x to be 1.0 2017-06-09 12:17:46 +01:00
Dale Wijnand f98ee86668
Clarify NonRelease variants in CrossVersion 2017-06-09 12:17:42 +01:00
Dale Wijnand 1bbc4719c6
Cleanup CrossVersion code & tests 2017-06-09 11:47:38 +01:00
eugene yokota 46cc7055b1 Merge pull request #111 from eed3si9n/wip/null
Guard ManagedChecksums setting retrieval
2017-05-30 00:45:13 -04:00
Eugene Yokota 128798247c Guard ManagedChecksums setting retrieval
This setting doesn't exist for ivysettings.xml, which then causes null problem.

Fixes sbt/librarymanagement#110
2017-05-30 00:32:44 -04:00
eugene yokota fae2b0de51 Merge pull request #105 from scalacenter/managed-checksums
Implement `managedChecksums` in ivy
2017-05-27 18:01:57 -04:00
jvican 9d0dfce869
Move checksum to artifact
This is a more elegant solution than before since module IDs can bring
different artifacts (in updateClassifiers, for instance).
2017-05-27 23:48:21 +02:00
eugene yokota be972124c6 Merge pull request #107 from eed3si9n/fport/3202
[fport] Improve the eviction warning presentation
2017-05-27 00:19:34 -04:00
eugene yokota 5558a13cd4 Merge pull request #106 from eed3si9n/fport/3152
[fport] Fix default scalaBinaryVersion for Dotty
2017-05-27 00:19:20 -04:00
Eugene Yokota 182b50a12b Improve the eviction warning presentation.
Fixes sbt/sbt#2699

Before:

    [warn] There may be incompatibilities among your library dependencies.
    [warn] Here are some of the libraries that were evicted:
    [warn]  * com.google.code.findbugs:jsr305:2.0.1 -> 3.0.0
    [warn] Run 'evicted' to see detailed eviction warnings

After:

    [warn] Found version conflict(s) in library dependencies; some are suspected to be binary incompatible:
    [warn]
    [warn] 	* com.typesafe.akka:akka-actor_2.12:2.5.0 is selected over 2.4.17
    [warn] 	    +- de.heikoseeberger:akka-log4j_2.12:1.4.0            (depends on 2.5.0)
    [warn] 	    +- com.typesafe.akka:akka-parsing_2.12:10.0.6         (depends on 2.4.17)
    [warn] 	    +- com.typesafe.akka:akka-stream_2.12:2.4.17 ()       (depends on 2.4.17)
    [warn]
    [warn] Run 'evicted' to see detailed eviction warnings
2017-05-26 23:21:33 -04:00
Eugene Yokota 182a07402a update EvictionWarningSpec 2017-05-26 23:07:25 -04:00
Eugene Yokota a50f96c7c4 change EvictionWarningOptions.default
Fixes sbt/sbt#3171

change EvictionWarningOptions.default to include transitive evictions and caller info.
2017-05-26 22:53:07 -04:00
Guillaume Martres 87a53986e3 Fix default scalaBinaryVersion for Dotty
Dotty is versioned as 0.*, but `CrossVersionUtil#binaryScalaVersion`
will return the full version instead of just `major.minor` for all
compiler versions < 2.10, add a special case for Dotty to avoid this.
2017-05-26 22:11:51 -04:00
eugene yokota 2e46857ae3 Merge pull request #104 from eed3si9n/wip/gigahorse2
use okhttp to download the artifacts
2017-05-26 15:19:16 -04:00
jvican 27bf130853
Move `managedChecksums` to InlineIvyConfiguration
`UpdateOptions` is only meant for user-provided options. Since this
option should not be exposed to users, it's moved to inline ivy
configuration, whose parameters require information about the build and
is usually defined project-wide instead of `Global`-wide.
2017-05-26 20:10:53 +02:00
jvican e3a52c3e1f
Make explicit where we deviate from ivy behaviour 2017-05-26 14:47:01 +02:00
jvican 7bf60557d9
Implement `managedChecksums` in ivy
Managed checksums tells ivy to forget about checking checksums for jar
files and just persist them in the cache.

The user that enables that option will take care of verifying they are
correct.

This is a big deal because:

1. Ivy takes *a lot of time* checking timestamps for big jars, and does
   it sequentially. The user (sbt) can do better by running these checks
   in parallel, speeding up the whole resolution process!
2. The fact that the sha files are not present in the cache means that
   build tools cannot check if a checksum is correct without preprocessing
   the jar.

Note that the user is responsible for keeping the cache consistent. If
the checksum is not correct, the user should report it and overwrite the
checksum file with the valid digest.
2017-05-26 12:43:06 +02:00
jvican 4c8036c7cb
Add `managedChecksums` to `UpdateOptions` 2017-05-26 12:43:06 +02:00
jvican 892f6e3775
Add checksum to ModuleID
A checksum in a `ModuleID` ensures that the checksum of the resolved
module id matches. This checksum check is done at the same time ivy
checks it.
2017-05-26 12:43:05 +02:00
jvican 7500291dfc
Fix bug in updateOptionsFormat 2017-05-26 12:43:05 +02:00
jvican 80ee35b01c
Add custom checksum checks to ivy 2017-05-26 12:42:56 +02:00
Eugene Yokota fd7cec0148 use okhttp to download the artifacts
This adds a custom URLHandler that internally uses Square OkHttp.

Fixes sbt/librarymanagement#95
2017-05-26 04:13:55 -04:00
eugene yokota 4d9013a3a3 Merge pull request #102 from eed3si9n/wip/gigahorse
add Gigahorse
2017-05-25 14:16:56 -04:00
Eugene Yokota dd4b33105b add Gigahorse 2017-05-15 16:34:38 -04:00
eugene yokota 9e799a80f3 Merge pull request #97 from scalacenter/unique-resolvers
Allow to define concrete resolvers for dependencies
2017-05-12 22:57:53 -04:00
jvican 8bb1676e61
Allow to define concrete resolvers for dependencies
Sometimes, for predictability and performance, we may be interested in
specifying the concrete resolver that a `ModuleID` should use.

This patch achieves this by adding a new field to `UpdateOptions` and
then getting this information from the `SbtChainResolver`, that will
select the concrete resolver for a given dependency descriptor.

Why is this useful? Well, two reasons:

* Predictable behaviour. We have the guarantee that an artifact only
  comes from a concrete resolver.
* Resolution speedup. Around 1/3 or 1/2 times faster than normal
  resolution in a moderate test case scenario. If there is a lot of
  latency or network connection is poor, speedups will be higher.

LOGS:

```
NORMAL RESOLUTION TIME 1790
FASTER RESOLUTION TIME 1054
```

```
NORMAL RESOLUTION TIME 2078
FASTER RESOLUTION TIME 1055
```

Lots of projects can benefit from this option, as well as organizations
and companies. This will eventually integrate with the dependency lock
file, but can be used independently of it.
2017-05-12 23:47:05 +02:00
eugene yokota 3b55a30141 Merge pull request #98 from scalacenter/issue-3051
Fix sbt/sbt#2650: Degrade log level and clarify
2017-05-12 13:24:20 -04:00
jvican 92cc5339eb
Fix sbt/sbt#2650: Degrade log level and clarify
To ensure that SNAPSHOTs are always the latest, we go through all the
resolved modules and check their timestamps. Good.

However, if in the process of reparsing/redownloading the module
descriptor we fail (or it's not found in that resolver at all), then we
cannot refresh the resolved module that could have been internalized or
heavily cached in memory by ivy. We do this for correctness.

This patch does two things:

1. Adds more comments.
2. Warns only when there are parsing errors in ivy files.
3. Adds debug info in the rest of the cases.

This removes the pain of seeing `Unable to parse` that could be caused by
other reasons that are not related to parsing at all and which would not
affect the algorithm at hand. For instance, if we get a URLResource,
that's totally fine -- there is no way we could parse the ivy file. Ivy
uses URLResources in several cases where the artifact origin URL is
specified.
2017-05-12 18:56:00 +02:00
eugene yokota ccc63d3ee0 Merge pull request #100 from scalacenter/add-frozen-mode
Add a frozen mode to update configuration
2017-05-12 12:43:24 -04:00
eugene yokota 40fa6dcd3b Merge pull request #96 from scalacenter/sbt-chain-resolver-rewrite
Make `SbtChainResolver` readable
2017-05-12 12:40:26 -04:00
jvican b1e36e50c8
Add review comments and improve docs 2017-05-11 18:10:01 +02:00
jvican 5ff32f2a99
Add a frozen mode to update configuration
The frozen mode is used by the dependency lock file.

It makes sure that the resolution is always intransitive and that ivy
does not check for changed dependencies and stores that information in
the resolved ivy files. Following the ivy documentation, the last change
may bring a slight performance improvement:

http://ant.apache.org/ivy/history/latest-milestone/use/resolve.html
2017-05-11 18:00:24 +02:00
jvican 7391290d8a
Add comments to `SbtChainResolver` implementation 2017-05-10 20:34:41 +02:00
eugene yokota 498367dbf4 Merge pull request #92 from scalacenter/offline-mode
Add offline mode to `UpdateConfiguration`
2017-05-10 14:30:24 -04:00
jvican 57d5908737
Make `SbtChainResolver` readable
This is the most important part of the sbt ivy management and it's
almost unreadable in the previous shape...

This attempts to make a rewrite without any semantic change.
2017-05-10 20:27:53 +02:00
jvican 89b722c132
Update ivy version to include IVY-1515
https://github.com/sbt/ivy/pull/25
2017-05-09 11:02:34 +02:00
jvican 96c775c445
Remove previous custom offline implementation
The previous custom offline implementation was not working on 100% of
the cases and relied on the TTL of ivy. As the previous commit
enabled the native offline implementation provided by ivy as of 2.3.0,
this functionality is not useful anymore.

The current place to specify offline is `UpdateConfiguration`, and not
`InlineIvyConfiguration` that is required to instantiate sbt. With the
current approach, we can be online or offline without having to
instantiate ivy sbt twice.

I will provide a Scalafix rewrite for this change.
2017-05-09 11:02:34 +02:00
jvican 67d9012a17
Add offline mode to `UpdateConfiguration`
The following commit tries to address the well-known issue that sbt
cannot be used in offline mode. In order to enable that use case, this
commit adds support for a flag in update configuration called `offline`
that users can change as they wish (and that sbt will expose via
settings).

It adds tests to check that the resolution uses the caches instead of
trying to resolve from the Internet. Unfortunately, ivy does not expose
a way to know whether a resolution was made from the cache or the
Internet, so the test case invents a metric to check that resolution
indeed happens from cache.

In order to benefit from this 100%, we need to update to ivy 2.4.0 or
cherry-pick a commit because a major issue in `useCacheOnly` has been
fixed: https://issues.apache.org/jira/browse/IVY-1515.

In short, this is good for the dependency lock file too. Since we can
make sure that once we have downloaded and resolved all the dependencies
locally, we do resolve from the cache.
2017-05-09 11:02:34 +02:00
jvican 1a11fd86a3
Disable parallel execution 2017-05-09 11:02:34 +02:00
eugene yokota a3eb9fd1a2 Merge pull request #91 from scalacenter/clean-update
Deduplicate and remove deprecations in `IvyActions`
2017-05-02 12:19:03 -04:00
eugene yokota ec652130f0 Merge pull request #90 from scalacenter/add-parallel-ivy
Fix sbt/sbt#2982: Add a parallel Ivy engine
2017-05-02 12:13:49 -04:00
eugene yokota eaf6af2dc9 Merge pull request #88 from scalacenter/issue/1518
Fix sbt/sbt#1518: Handle cross-versioned exclusions
2017-05-02 12:11:10 -04:00
jvican 0885ae1a96
Add documentation to `updateEither` 2017-04-28 11:28:38 +02:00
jvican 429dd84393
Remove deprecated methods in `IvyActions` 2017-04-28 10:19:12 +02:00
jvican 1f4030ff17
Remove unused apply in `UnresolvedWarning` 2017-04-28 10:19:12 +02:00
jvican c84d297912
Turn `ResolveException` private[sbt]
Plus, remove deprecated method using `ResolveException`.
2017-04-28 10:19:12 +02:00
jvican 258cb7c5ac
Remove unused instance of `retrieve`
This commit removes the second instance of `retrieve` that was private
and unused, therefore reducing the API surface of `IvyActions`.
2017-04-28 10:19:12 +02:00
jvican eea500d64f
Remove coded uplication in `updateEither`
This commit reduces the code duplication in `updateEither` which was
duplicating a good deal of the resolution logic to deal with the
different resolution mechanisms: the simple one and the cached one.

It also unifies the signatures of the helpers that are invoked by
`updateEither`, removing the weirdness of the different return type
signatures and ad-hoc logic handling.
2017-04-28 10:19:11 +02:00
jvican b68498d013
Remove unused arguments in clean and use site
`cleanCachedResolutionCache` and `clean` were doing extra work because
`clean` does only need to clean the cache in the configuration (that is
a class parameter).
2017-04-28 10:19:06 +02:00