Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Close SCIP/LSIF feature gap #557

Merged
merged 1 commit into from
Apr 20, 2023
Merged

Close SCIP/LSIF feature gap #557

merged 1 commit into from
Apr 20, 2023

Conversation

olafurpg
Copy link
Member

Previously, scip-java had custom support for Scala that was only
supported by the LSIF writer. This meant that Scala users were
recommended to use LSIF instead of SCIP.

Now that Sourcegraph supports native SCIP uploads (and stores SCIP in
the database) it's time to close this feature gap so that Scala
users can use SCIP instead of LSIF.

Test plan

See updated snapshot tests.

@olafurpg olafurpg requested a review from keynmol April 19, 2023 18:58
@olafurpg olafurpg force-pushed the olafurpg/scip-gap branch from 9d47410 to 63e7a2e Compare April 20, 2023 04:21
Comment on lines 169 to 184
0.until(info.getDocumentationCount)
.foreach { n =>
val documentation = info.getDocumentation(n)
out
.append(prefix)
.append("documentation ")
.append(documentation.replace("\n", "\\n").replace("\t", "\\t"))
.append("\n")
}
0.until(info.getRelationshipsCount)
.foreach { n =>
val relationship = info.getRelationships(n)
out.append(prefix).append("relationship")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we

  1. Sort relationships by symbol?
  2. Sort documentation strings?

I can't reproduce the failures locally, but on CI it seems to be order related:

+//                      relationship is_reference is_implementation semanticdb maven . . com/airbnb/epoxy/BaseEpoxyTouchCallback#clearView().
 //                      relationship is_reference is_implementation semanticdb maven . . com/airbnb/epoxy/EpoxyTouchHelperCallback#clearView(+1).
 //                      relationship is_reference is_implementation semanticdb maven . . com/airbnb/epoxy/EpoxyTouchHelperCallback#clearView().
-//                      relationship is_reference is_implementation semanticdb maven . . com/airbnb/epoxy/BaseEpoxyTouchCallback#clearView().
 //                      ^ reference semanticdb maven . . com/airbnb/epoxy/EpoxyModelTouchCallback#[T]

Here's suggested patch (but this will require regenerating snapshots):

Suggested change
0.until(info.getDocumentationCount)
.foreach { n =>
val documentation = info.getDocumentation(n)
out
.append(prefix)
.append("documentation ")
.append(documentation.replace("\n", "\\n").replace("\t", "\\t"))
.append("\n")
}
0.until(info.getRelationshipsCount)
.foreach { n =>
val relationship = info.getRelationships(n)
out.append(prefix).append("relationship")
val docs =
0.until(info.getDocumentationCount).map(info.getDocumentation).sorted
docs.foreach { documentation =>
out
.append(prefix)
.append("documentation ")
.append(documentation.replace("\n", "\\n").replace("\t", "\\t"))
.append("\n")
}
val relationships = 0
.until(info.getRelationshipsCount())
.map(info.getRelationships)
.sortBy(_.getSymbol())
relationships.foreach { relationship =>
out.append(prefix).append("relationship")

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The failure was probably because I hadn't rebased on top of the scip-snapshots branch, which was failing with the same error. I've rebased now and will see if CI becomes green.

Previously, scip-java had custom support for Scala that was only
supported by the LSIF writer. This meant that Scala users were
recommended to use LSIF instead of SCIP.

Now that Sourcegraph supports native SCIP uploads (and stores SCIP in
the database) it's time to close this feature gap so that Scala
users can use SCIP instead of LSIF.
@olafurpg olafurpg force-pushed the olafurpg/scip-gap branch from 63e7a2e to 2bc9b3e Compare April 20, 2023 12:59
@olafurpg olafurpg enabled auto-merge April 20, 2023 13:01
@olafurpg
Copy link
Member Author

CI is green :letsgooo:

@olafurpg olafurpg requested a review from keynmol April 20, 2023 13:16
@olafurpg olafurpg merged commit bf4ca0c into main Apr 20, 2023
@keynmol keynmol deleted the olafurpg/scip-gap branch April 20, 2023 13:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants