-
Notifications
You must be signed in to change notification settings - Fork 22
fix: watchdog for SSE + fix streaming messages in fallback #205 #206
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
Open
guillaume-sncfconnect
wants to merge
1
commit into
theopenconversationkit:master
Choose a base branch
from
guillaume-sncfconnect:205-sse-watchdog
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -40,15 +40,20 @@ async function getSseStatus(url: string) { | |
|
|
||
| export class TockEventSource { | ||
| private initialized: boolean; | ||
| private currentUrl: string | null; | ||
| private eventSource: EventSource | null; | ||
| private retryDelay: number; | ||
| private retryTimeoutId: number; | ||
| private retryOnPingTimeoutId?: number | ||
| private retryOnPingTimeoutMs: number; | ||
| onResponse: (botResponse: BotConnectorResponse) => void; | ||
| onStateChange: (state: number) => void; | ||
|
|
||
|
|
||
| constructor() { | ||
| constructor({retryOnPingTimeoutMs}: {retryOnPingTimeoutMs: number}) { | ||
| this.initialized = false; | ||
| this.retryDelay = INITIAL_RETRY_DELAY; | ||
| this.retryOnPingTimeoutMs = retryOnPingTimeoutMs; | ||
| } | ||
|
|
||
| isInitialized(): boolean { | ||
|
|
@@ -65,53 +70,85 @@ export class TockEventSource { | |
| */ | ||
| open(endpoint: string, userId: string): Promise<void> { | ||
| this.onStateChange(EventSource.CONNECTING); | ||
| const url = `${endpoint}/sse?userid=${userId}`; | ||
| this.currentUrl = `${endpoint}/sse?userid=${userId}`; | ||
| return new Promise<void>((resolve, reject): void => { | ||
| this.tryOpen(url, resolve, reject); | ||
| this.tryOpen( resolve, reject); | ||
| }); | ||
| } | ||
|
|
||
| private tryOpen(url: string, resolve: () => void, reject: () => void) { | ||
| this.eventSource = new EventSource(url); | ||
| private tryOpen( resolve?: () => void, reject?: () => void) { | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you run lint on updated files? |
||
| if (!this.currentUrl) { | ||
| reject?.(); | ||
| return; | ||
| } | ||
| this.eventSource = new EventSource(this.currentUrl); | ||
| this.eventSource.addEventListener('open', () => { | ||
| this.onStateChange(EventSource.OPEN); | ||
| this.initialized = true; | ||
| this.retryDelay = INITIAL_RETRY_DELAY; | ||
| resolve(); | ||
| this.scheduleRetryWatchdog({reason: "open"}); | ||
| resolve?.(); | ||
| }); | ||
| this.eventSource.addEventListener('error', () => { | ||
| this.eventSource?.close(); | ||
| this.retry(url, reject, resolve); | ||
| this.retry( reject, resolve); | ||
| }); | ||
| this.eventSource.addEventListener('message', (e) => { | ||
| this.scheduleRetryWatchdog({reason: "message"}); | ||
| this.onResponse(JSON.parse(e.data)); | ||
| }); | ||
| this.eventSource.addEventListener('ping', () => { | ||
| this.scheduleRetryWatchdog({reason: "ping"}); | ||
| }); | ||
| } | ||
|
|
||
| private retry(url: string, reject: () => void, resolve: () => void) { | ||
| private retry(reject?: () => void, resolve?: () => void) { | ||
| if (!this.currentUrl) { | ||
| reject?.(); | ||
| return; | ||
| } | ||
| const retryDelay = this.retryDelay; | ||
| this.retryDelay = Math.min( | ||
| MAX_RETRY_DELAY, | ||
| retryDelay + RETRY_DELAY_INCREMENT, | ||
| ); | ||
|
|
||
| this.onStateChange(EventSource.CONNECTING); | ||
|
|
||
| this.retryTimeoutId = window.setTimeout(async () => { | ||
| switch (await getSseStatus(url)) { | ||
| switch (await getSseStatus(this.currentUrl as string)) { | ||
| case SseStatus.UNSUPPORTED: | ||
| reject(); | ||
| reject?.(); | ||
| this.close(); | ||
| break; | ||
| case SseStatus.SUPPORTED: | ||
| this.tryOpen(url, resolve, reject); | ||
| this.tryOpen( resolve, reject); | ||
| break; | ||
| case SseStatus.SERVER_UNAVAILABLE: | ||
| this.retry(url, reject, resolve); | ||
| this.retry( reject, resolve); | ||
| break; | ||
| } | ||
| }, retryDelay); | ||
| } | ||
|
|
||
| // Set a watchdog timeout to trigger a retry if the server is not responding | ||
| private scheduleRetryWatchdog({reason}: {reason: string}) { | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is it useful to have named parameters for a private method? |
||
| window.clearTimeout(this.retryOnPingTimeoutId); | ||
| this.retryOnPingTimeoutId = window.setTimeout(() => { | ||
| this.triggerRetryWatchdog({reason}); | ||
| }, this.retryOnPingTimeoutMs); | ||
| } | ||
|
|
||
| // Trigger a retry if the watchdog timeout is reached | ||
| public triggerRetryWatchdog({reason}: {reason: string}) { | ||
| console.log(`TockEventSource::triggerRetryWatchdog (timeout: ${this.retryOnPingTimeoutMs}ms, reason: ${reason})`); | ||
| this.close(); | ||
| this.retry(); | ||
| } | ||
|
|
||
| close() { | ||
| window.clearTimeout(this.retryTimeoutId); | ||
| window.clearTimeout(this.retryOnPingTimeoutId); | ||
| this.eventSource?.close(); | ||
| this.eventSource = null; | ||
| this.initialized = false; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only if
TOCK_STREAM_RESPONSEis enabled on this response!