Skip to content

Commit

Permalink
Merge branch 'flix:master' into test/method-arg-placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
LoZander committed Sep 12, 2024
2 parents 5f26bbd + 8bbfea4 commit e05181c
Show file tree
Hide file tree
Showing 14 changed files with 121 additions and 89 deletions.
2 changes: 0 additions & 2 deletions client/src/engine/jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ export enum Request {
lspWorkspaceSymbols = 'lsp/workspaceSymbols',
lspShowAst = 'lsp/showAst',

internalRestart = 'ext/restart', // Internal Extension Request
internalDownloadLatest = 'ext/downloadLatest', // Internal Extension Request
internalReady = 'ext/ready', // Internal Extension Request
internalMessage = 'ext/message', // Internal Extension Request
internalError = 'ext/error', // Internal Extension Request
Expand Down
2 changes: 0 additions & 2 deletions client/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,6 @@ async function startSession(

client.onNotification(jobs.Request.internalDiagnostics, handlePrintDiagnostics)

client.onNotification(jobs.Request.internalRestart, makeHandleRestartClient(context))

client.onNotification(jobs.Request.internalMessage, vscode.window.showInformationMessage)

client.onNotification(jobs.Request.internalError, handleError)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Flix Language Server Extension",
"author": "Flix",
"license": "Apache-2.0",
"version": "1.30.0",
"version": "1.31.0",
"repository": {
"type": "git",
"url": "https://github.com/flix/vscode-flix"
Expand Down
74 changes: 68 additions & 6 deletions server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,13 @@
},
"dependencies": {
"portfinder": "^1.0.32",
"reconnecting-websocket": "^4.4.0",
"vscode-languageserver": "^8.0.2",
"vscode-languageserver-textdocument": "^1.0.8",
"ws": "^8.17.1"
},
"devDependencies": {
"@types/ws": "^8.5.10"
},
"scripts": {}
}
2 changes: 0 additions & 2 deletions server/src/engine/jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@ export enum Request {
lspSemanticTokens = 'lsp/semanticTokens',
lspShowAst = 'lsp/showAst',

internalRestart = 'ext/restart', // Internal Extension Request
internalDownloadLatest = 'ext/downloadLatest', // Internal Extension Request
internalReady = 'ext/ready', // Internal Extension Request
internalMessage = 'ext/message', // Internal Extension Request
internalError = 'ext/error', // Internal Extension Request
Expand Down
81 changes: 23 additions & 58 deletions server/src/engine/socket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,12 @@ import * as queue from './queue'
import { clearDiagnostics, sendNotification } from '../server'
import { EventEmitter } from 'events'
import { handleCrash, lspCheckResponseHandler } from '../handlers'
import { getPort } from 'portfinder'
import { USER_MESSAGE } from '../util/userMessages'
import { StatusCode } from '../util/statusCodes'
import ReconnectingWebSocket from 'reconnecting-websocket'
import WebSocket from 'ws'

const WebSocket = require('ws')

let webSocket: any
let webSocket: ReconnectingWebSocket
let webSocketOpen = false

// event emitter to handle communication between socket handlers and connection handlers
Expand Down Expand Up @@ -85,60 +84,41 @@ export function isClosed() {
let lastManualStopTimestamp: number = 0

export function initialiseSocket({ uri, onOpen, onClose }: InitialiseSocketInput) {
if (!uri) {
throw 'Must be called with an uri'
}
webSocket = new WebSocket(uri)
webSocket = new ReconnectingWebSocket(uri, [], {
WebSocket,
})

webSocket.addEventListener('open', function handleOpen() {
// The 'open' event is emitted every time the connection is established,
// even if it was just a temprorary interruption.
// This handler should only be called once, so remove it after the first call.
webSocket.removeEventListener('open', handleOpen)

webSocket.on('open', () => {
webSocketOpen = true
onOpen && setTimeout(onOpen!, 0)

onOpen?.()
})

webSocket.on('close', () => {
webSocket.addEventListener('close', () => {
webSocketOpen = false

if (lastManualStopTimestamp + 15000 < Date.now()) {
// This happends when the connections breaks unintentionally
// This happens when the connections breaks unintentionally
console.log(USER_MESSAGE.CONNECTION_LOST())
tryToConnect({ uri, onOpen, onClose }, 5).then(connected => {
if (!connected) {
console.log(USER_MESSAGE.CONNECTION_LOST_RESTARTING())
sendNotification(jobs.Request.internalRestart)
}
})
return
}
onClose && setTimeout(onClose!, 0)

onClose?.()
})

webSocket.on('message', (data: string) => {
const flixResponse: FlixResponse = JSON.parse(data)
const job: jobs.EnqueuedJob = jobs.getJob(flixResponse.id)
webSocket.addEventListener('message', message => {
const flixResponse: FlixResponse = JSON.parse(message.data)
const job = jobs.getJob(flixResponse.id)

handleResponse(flixResponse, job)
})
}

async function tryToConnect({ uri, onOpen, onClose }: InitialiseSocketInput, times: number) {
const uriPort = parseInt(uri.slice(-4))
getPort({ port: uriPort }, (err, freePort) => {
if (uriPort === freePort) {
// This happens if the previously used port is now free
sendNotification(jobs.Request.internalRestart)
return
}
})
let retries = times
while (retries-- > 0) {
initialiseSocket({ uri, onOpen, onClose })
await sleep(1000)
if (webSocketOpen) {
return true
}
}
return false
}

function clearTimer(id: string) {
clearTimeout(sentMessagesMap[id])
delete sentMessagesMap[id]
Expand Down Expand Up @@ -171,22 +151,7 @@ export async function closeSocket() {
}
}

export function sendMessage(job: jobs.EnqueuedJob, expectResponse = true, retries = 0) {
if (isClosed()) {
if (retries > 2) {
const errorMessage = USER_MESSAGE.REQUEST_TIMEOUT(retries)
sendNotification(jobs.Request.internalError, {
message: errorMessage,
actions: [],
})
return
}
setTimeout(() => {
sendMessage(job, expectResponse, retries + 1)
}, 1000)
return
}

export function sendMessage(job: jobs.EnqueuedJob, expectResponse = true) {
if (expectResponse) {
// register a timer to handle timeouts
sentMessagesMap[job.id] = setTimeout(() => {
Expand Down
2 changes: 1 addition & 1 deletion server/src/handlers/handlers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export function handleReplaceConfiguration(userConfiguration: engine.UserConfigu
}

/**
* Simulates the language server disconnecting.
* Simulates the compiler disconnecting.
* Used for testing.
*/
export function handleDisconnect() {
Expand Down
4 changes: 0 additions & 4 deletions server/src/util/userMessages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ export class USER_MESSAGE {
return 'Connection to the flix server was lost, trying to reconnect...'
}

static CONNECTION_LOST_RESTARTING() {
return 'Failed to connect to the flix server, restarting the compiler...'
}

static FAILED_TO_START() {
return 'Failed starting Flix'
}
Expand Down
4 changes: 3 additions & 1 deletion server/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
"strict": true,
"outDir": "out",
"rootDir": "src",
"allowJs": true
"allowJs": true,
"esModuleInterop": true,
"skipLibCheck": true
},
"include": ["src"],
"exclude": ["node_modules", ".vscode-test"]
Expand Down
4 changes: 4 additions & 0 deletions syntaxes/flix.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,10 @@
"name": "keyword.use.flix",
"match": "\\b(use)\\b"
},
{
"name": "keyword.mut.flix",
"match": "\\b(mut)\\b"
},
{
"name": "keyword.symbols.flix",
"match": "(\\->|~>|<\\-|=>)"
Expand Down
20 changes: 11 additions & 9 deletions test/src/disconnect.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,18 @@ suite('Server disconnect', () => {
})

test('Should reconnect automatically when server is disconnected', async () => {
await vscode.commands.executeCommand('flix.simulateDisconnect')
for (let i = 0; i < 3; i++) {
await vscode.commands.executeCommand('flix.simulateDisconnect')

// Wait for the server to disconnect, otherwise the next command will hang
await sleep(1000)
// Wait for the server to disconnect, otherwise the next command will hang
await sleep(1000)

// Ensure that the server is reconnected
const docUri = getTestDocUri('src/Main.flix')
const position = new vscode.Position(9, 12)
const r = await vscode.commands.executeCommand<vscode.Hover[]>('vscode.executeHoverProvider', docUri, position)
const contents = r[0].contents[0] as vscode.MarkdownString
assert.strictEqual(contents.value.includes('Type'), true)
// Ensure that the server is reconnected
const docUri = getTestDocUri('src/Main.flix')
const position = new vscode.Position(9, 12)
const r = await vscode.commands.executeCommand<vscode.Hover[]>('vscode.executeHoverProvider', docUri, position)
const contents = r[0].contents[0] as vscode.MarkdownString
assert.strictEqual(contents.value.includes('Type'), true)
}
})
})
5 changes: 4 additions & 1 deletion test/src/highlight.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ suite('Highlight uses', () => {
mainDocUri,
position,
)
assert.strictEqual(r, undefined)

// VS Code 1.93.0 and newer return an empty list.
// Older versions return undefined.
assert(r === undefined || r.length === 0)
})

async function testHighlight(uri: vscode.Uri, position: vscode.Position, expectedRanges: vscode.Range[]) {
Expand Down

0 comments on commit e05181c

Please sign in to comment.