zazuko / xrm

A friendly language for mappings to RDF
MIT License
1 stars 0 forks source link

Content proposals for LSP #110

Closed mchlrch closed 2 years ago

mchlrch commented 3 years ago

Move the existing xrm proposal logic to the generic IdeContentProposalProvider.

(Follow-up of https://github.com/zazuko/rdf-mapping-dsl/issues/92#issuecomment-738791272)

nnamtug commented 3 years ago

work in progress. fyi: works on branch in inner eclipse. next steps:

nnamtug commented 2 years ago

How to debug VS-Code having the language server in running debug mode within eclipse:

  1. start server within eclipse using RunPlainTcpServer.java
  2. stage vscode, copy expressive-rdf-mapper-vscode/vscode-extension-self-contained/src/extension-***.ts.txt to extension.ts
  3. run vscode: ./gradlew startcode

optionally: link tcpmon.jar by tunneling ports 4388-->4389 (and stage vscode accordingly). The good old tcpmon.jar had to be modified in order to build it, find it in my fork for tcpmon.jar

nnamtug commented 2 years ago

In the debugging setup above, IdeContentProposalProvider may not be replaced, since the default languages always will be registered when launching from eclipse. Next step: Find out whether IdeContentProposalProvider will properly be replaced in the standalone-server backing vscode by RdfMappingIdeProposalProvider

mchlrch commented 2 years ago

I was able to replicate the setup for debugging as described above with running the RunPlainTcpServer in Eclipse.

I saw that the createProposals hook didn't get called, so I tried with adding the binding for RdfMappingIdeProposalProvider.

After this change, I can see that the createProposals hook in the RdfMappingIdeProposalProvider does get called in the debugging setup

nnamtug commented 2 years ago

rdf-mapping-dsl: pullrequest #117 is available

expressive-rdf-mapping: what do we need to do there? how are the changes to be verified? which flavors are affected by this, like vscode standalone, theia, gitpot, others? so I did not create a pullrequest yet

mchlrch commented 2 years ago

I haven't verified the proposals in the vscode standalone build systematically yet. I plan to do that in the next days.

PR merged. Closing this.