5
5
registerControllerHandlerBun
6
6
} from './controller/invoke-actions-controller'
7
7
import { ActorCallbackConnector } from '../spawn'
8
- import stoppable = require( 'stoppable' )
9
8
10
9
export function sendResponse (
11
10
status : number ,
@@ -15,9 +14,7 @@ export function sendResponse(
15
14
// this is Bun
16
15
if ( res === null ) {
17
16
if ( resp && status === 200 ) {
18
- console . log ( 'resp?' )
19
-
20
- return new Response ( Buffer . from ( ActorInvocationResponse . toBinary ( resp ) ) , {
17
+ return new Response ( ActorInvocationResponse . toBinary ( resp ) , {
21
18
status,
22
19
headers : {
23
20
'Content-Type' : 'application/octet-stream' ,
@@ -26,7 +23,7 @@ export function sendResponse(
26
23
} )
27
24
}
28
25
29
- return new Response ( Buffer . from ( '' ) , {
26
+ return new Response ( '' , {
30
27
status
31
28
} )
32
29
}
@@ -49,15 +46,15 @@ export function sendResponse(
49
46
res . end ( )
50
47
}
51
48
52
- const getActionPort = ( ) => process . env . USER_FUNCTION_PORT || 8090
49
+ const getActionPort = ( ) : number | string => process . env . USER_FUNCTION_PORT || 8090
53
50
54
51
export function startServer ( actorCallbacks : Map < string , ActorCallbackConnector > ) {
55
52
let server : any = null
56
53
57
- if ( typeof Bun . serve === 'function' ) {
54
+ if ( typeof Bun !== 'undefined' && typeof Bun . serve === 'function' ) {
58
55
server = Bun . serve ( {
59
56
port : getActionPort ( ) ,
60
- fetch ( req : Request ) {
57
+ fetch ( req : Request ) : Promise < Response > | Response {
61
58
const url = new URL ( req . url )
62
59
if ( url . pathname === '/api/v1/actors/actions' ) {
63
60
return registerControllerHandlerBun ( req , actorCallbacks )
@@ -66,7 +63,10 @@ export function startServer(actorCallbacks: Map<string, ActorCallbackConnector>)
66
63
return new Response ( '404!' , { status : 404 } )
67
64
}
68
65
} )
66
+ console . log ( `[SpawnSystem] Server listening on :${ getActionPort ( ) } ` )
69
67
} else {
68
+ const stoppable = require ( 'stoppable' )
69
+
70
70
server = stoppable (
71
71
http . createServer ( ( req : IncomingMessage , res : ServerResponse ) => {
72
72
if ( req . url === '/api/v1/actors/actions' ) {
@@ -86,3 +86,19 @@ export function startServer(actorCallbacks: Map<string, ActorCallbackConnector>)
86
86
87
87
return server
88
88
}
89
+
90
+ export async function stopServer ( server : any ) {
91
+ if ( typeof Bun !== 'undefined' && typeof Bun . serve === 'function' ) {
92
+ server . stop ( true )
93
+
94
+ return true
95
+ }
96
+
97
+ return new Promise ( ( resolve , reject ) => {
98
+ server . stop ( ( err : any ) => {
99
+ if ( err ) return reject ( )
100
+
101
+ resolve ( true )
102
+ } )
103
+ } )
104
+ }
0 commit comments