Skip to content

Commit ee1e99b

Browse files
committed
native Bun support
1 parent 34ca241 commit ee1e99b

12 files changed

+41
-37
lines changed

.tool-versions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nodejs 16.17.0
1+
nodejs 20.10.0

bun.lockb

356 Bytes
Binary file not shown.

package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
"proto-gen-spawn-actor": "protoc --ts_out ./src/protos/eigr/functions/protocol/actors --proto_path protos/eigr/functions/protocol/actors protos/eigr/functions/protocol/actors/actor.proto",
2424
"proto-gen-spawn-state": "protoc --ts_out ./src/protos/eigr/functions/protocol/actors --proto_path protos/eigr/functions/protocol/actors protos/eigr/functions/protocol/actors/state.proto",
2525
"start": "ts-node --esm --require tsconfig-paths/register index.ts",
26-
"run-benchmark": "ts-node --esm --require tsconfig-paths/register benchmark/benchmark.ts",
27-
"run-benchmark-bun": "bun run benchmark/benchmark.ts",
26+
"benchmark": "bun run benchmark/benchmark.ts",
2827
"test": "bun test --forceExit --runInBand --detectOpenHandles",
29-
"format": "prettier --config .prettierrc '{src,test}/**/*.ts' --write"
28+
"format": "prettier --config .prettierrc '{src,test}/**/*.ts' --write",
29+
"bun:build": "bun build --outdir _build"
3030
},
3131
"author": "eigr",
3232
"license": "ISC",
@@ -39,6 +39,7 @@
3939
"@types/jest": "^28.1.4",
4040
"@types/stoppable": "^1.1.1",
4141
"benny": "^3.7.1",
42+
"bun-types": "^1.0.18",
4243
"jest": "^29.0.3",
4344
"prettier": "^2.8.2",
4445
"ts-jest": "^29.0.1",

src/integration/controller/invoke-actions-controller.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ async function register(
6868
}
6969

7070
try {
71-
console.log('callback?')
7271
const value = await callback(context, finalPayload)
7372
const parsedValue = value.parse()
7473

@@ -109,8 +108,8 @@ export const registerControllerHandlerNode = (
109108
export const registerControllerHandlerBun = async (
110109
req: Request,
111110
actorCallbacks: Map<string, ActorCallbackConnector>
112-
) => {
111+
): Promise<Response> => {
113112
const buffer = Buffer.from(await req.arrayBuffer())
114113

115-
return register(buffer, actorCallbacks, null)
114+
return register(buffer, actorCallbacks, null) as Promise<Response>
116115
}

src/integration/server.ts

+24-8
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import {
55
registerControllerHandlerBun
66
} from './controller/invoke-actions-controller'
77
import { ActorCallbackConnector } from '../spawn'
8-
import stoppable = require('stoppable')
98

109
export function sendResponse(
1110
status: number,
@@ -15,9 +14,7 @@ export function sendResponse(
1514
// this is Bun
1615
if (res === null) {
1716
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), {
2118
status,
2219
headers: {
2320
'Content-Type': 'application/octet-stream',
@@ -26,7 +23,7 @@ export function sendResponse(
2623
})
2724
}
2825

29-
return new Response(Buffer.from(''), {
26+
return new Response('', {
3027
status
3128
})
3229
}
@@ -49,15 +46,15 @@ export function sendResponse(
4946
res.end()
5047
}
5148

52-
const getActionPort = () => process.env.USER_FUNCTION_PORT || 8090
49+
const getActionPort = (): number | string => process.env.USER_FUNCTION_PORT || 8090
5350

5451
export function startServer(actorCallbacks: Map<string, ActorCallbackConnector>) {
5552
let server: any = null
5653

57-
if (typeof Bun.serve === 'function') {
54+
if (typeof Bun !== 'undefined' && typeof Bun.serve === 'function') {
5855
server = Bun.serve({
5956
port: getActionPort(),
60-
fetch(req: Request) {
57+
fetch(req: Request): Promise<Response> | Response {
6158
const url = new URL(req.url)
6259
if (url.pathname === '/api/v1/actors/actions') {
6360
return registerControllerHandlerBun(req, actorCallbacks)
@@ -66,7 +63,10 @@ export function startServer(actorCallbacks: Map<string, ActorCallbackConnector>)
6663
return new Response('404!', { status: 404 })
6764
}
6865
})
66+
console.log(`[SpawnSystem] Server listening on :${getActionPort()}`)
6967
} else {
68+
const stoppable = require('stoppable')
69+
7070
server = stoppable(
7171
http.createServer((req: IncomingMessage, res: ServerResponse) => {
7272
if (req.url === '/api/v1/actors/actions') {
@@ -86,3 +86,19 @@ export function startServer(actorCallbacks: Map<string, ActorCallbackConnector>)
8686

8787
return server
8888
}
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+
}

src/spawn.ts

+4-9
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import {
2424
scheduledToBigInt,
2525
unpackPayload
2626
} from './integration/parsers'
27-
import { startServer } from './integration/server'
27+
import { startServer, stopServer } from './integration/server'
2828
import { MessageType } from '@protobuf-ts/runtime'
2929
import { Value } from './client-actor/value'
3030

@@ -228,14 +228,9 @@ const createSystem = (system: string = uniqueDefaultSystem): SpawnSystem => {
228228
return doRegister()
229229
},
230230
destroy: async () => {
231-
return new Promise((resolve, reject) => {
232-
server.stop((err: any) => {
233-
if (err) return reject()
234-
235-
registered = false
236-
systemCreated = false
237-
resolve(true)
238-
})
231+
return stopServer(server).then(() => {
232+
registered = false
233+
systemCreated = false
239234
})
240235
}
241236
}

test/actors-workflow.test.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ function timeout(ms: number) {
99
}
1010

1111
describe('testing workflows', () => {
12-
// jest.setTimeout(5_000)
13-
1412
const randomActorName = crypto.randomUUID()
1513
let system: SpawnSystem
1614

@@ -21,7 +19,7 @@ describe('testing workflows', () => {
2119
createRandomActor(system, randomActorName)
2220

2321
const registered = await system.register()
24-
expect(registered.status?.message).toBe('Accepted')
22+
if (registered.status?.message != 'Accepted') throw new Error('Failed to register system')
2523
})
2624

2725
afterAll(async () => {

test/spawn-abstract.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ describe('testing spawn unnamed actor', () => {
1212
createUnnamedActor(system)
1313

1414
const registered = await system.register()
15-
expect(registered.status?.message).toBe('Accepted')
15+
if (registered.status?.message != 'Accepted') throw new Error('Failed to register system')
1616
})
1717

1818
afterAll(async () => {

test/spawn-invoke-json.test.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ import { createJsonActor } from './stubs/actors'
33
import { describe, beforeAll, afterAll, test, expect } from 'bun:test'
44

55
describe('testing invoke', () => {
6-
// jest.setTimeout(30_000)
7-
86
let system: SpawnSystem
97

108
beforeAll(async () => {
@@ -13,7 +11,7 @@ describe('testing invoke', () => {
1311
createJsonActor(system)
1412

1513
const registered = await system.register()
16-
expect(registered.status?.message).toBe('Accepted')
14+
if (registered.status?.message != 'Accepted') throw new Error('Failed to register system')
1715
})
1816

1917
afterAll(async () => {

test/spawn-invoke.test.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ import { createRandomActor, createUserActor } from './stubs/actors'
1010
import { describe, beforeAll, afterAll, test, expect } from 'bun:test'
1111

1212
describe('testing invoke', () => {
13-
// jest.setTimeout(120_000)
14-
1513
const randomActorName = crypto.randomUUID()
1614
let system: SpawnSystem
1715

@@ -22,7 +20,7 @@ describe('testing invoke', () => {
2220
createRandomActor(system, randomActorName)
2321

2422
const registered = await system.register()
25-
expect(registered.status?.message).toBe('Accepted')
23+
if (registered.status?.message != 'Accepted') throw new Error('Failed to register system')
2624
})
2725

2826
afterAll(async () => {

test/spawn-pooled.test.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ import { createPooledActor } from './stubs/actors'
44
import { describe, beforeAll, afterAll, test, expect } from 'bun:test'
55

66
describe('testing spawn pooled actor', () => {
7-
// jest.setTimeout(120_000)
8-
97
let system: SpawnSystem
108

119
beforeAll(async () => {
@@ -14,7 +12,7 @@ describe('testing spawn pooled actor', () => {
1412
createPooledActor(system)
1513

1614
const registered = await system.register()
17-
expect(registered.status?.message).toBe('Accepted')
15+
if (registered.status?.message != 'Accepted') throw new Error('Failed to register system')
1816
})
1917

2018
afterAll(async () => {

tsconfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"target": "ES2020",
1919
"module": "commonjs",
2020
"sourceMap": true,
21+
"types": ["bun-types"],
2122

2223
"outDir": "_build",
2324
"declaration": true

0 commit comments

Comments
 (0)