mirror of
https://github.com/lightpanda-io/browser.git
synced 2026-01-29 00:33:57 -05:00
Adding HTTP & websocket awareness to the TCP server. HTTP server handles `GET /json/version` and websocket upgrade requests. Conceptually, websocket handling is the same code as before, but receiving data will parse the websocket frames and writing data will wrap it in a websocket frame. The previous `Ctx` was split into a `Server` and a `Client`. This was largely done to make it easy to write unit tests, since the `Client` is a generic, all its dependencies (i.e. the server) can be mocked out. This also makes it a bit nicer to know if there is or isn't a client (via the server's client optional). Added a MemoryPool for the Send object (I thought that was a nice touch!) Removed MacOS hack on accept/conn completion usage. Known issues: - When framing an outgoing message, the entire message has to be duped. This is no worse than how it was before, but it should be possible to eliminate this in the future. Probably not part of this PR. - Websocket parsing will reject continuation frames. I don't know of a single client that will send a fragmented message (websocket has its own message fragmentation), but we should probably still support this just in case. - I don't think the receive, timeout and close completions can safely be re-used like we're doing. I believe they need to be associated with a specific client socket. - A new connection creates a new browser session. I think this is right (??), but for the very first, we're throwing out a perfectly usable session. I'm thinking this might be a change to how Browser/Sessions work. - zig build test won't compile. This branch reproduces the issue with none of these changes: https://github.com/karlseguin/browser/tree/broken_test_build (or, as a diff to main): https://github.com/lightpanda-io/browser/compare/main...karlseguin:broken_test_build
196 lines
6.0 KiB
Zig
196 lines
6.0 KiB
Zig
// Copyright (C) 2023-2024 Lightpanda (Selecy SAS)
|
|
//
|
|
// Francis Bouvier <francis@lightpanda.io>
|
|
// Pierre Tachoire <pierre@lightpanda.io>
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
// License, or (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
const std = @import("std");
|
|
const builtin = @import("builtin");
|
|
|
|
const jsruntime = @import("jsruntime");
|
|
|
|
const server = @import("../server.zig");
|
|
const Ctx = server.Ctx;
|
|
const cdp = @import("cdp.zig");
|
|
const result = cdp.result;
|
|
const IncomingMessage = @import("msg.zig").IncomingMessage;
|
|
const Input = @import("msg.zig").Input;
|
|
const stringify = cdp.stringify;
|
|
const target = @import("target.zig");
|
|
|
|
const log = std.log.scoped(.cdp);
|
|
|
|
const Methods = enum {
|
|
enable,
|
|
runIfWaitingForDebugger,
|
|
evaluate,
|
|
addBinding,
|
|
callFunctionOn,
|
|
releaseObject,
|
|
};
|
|
|
|
pub fn runtime(
|
|
alloc: std.mem.Allocator,
|
|
msg: *IncomingMessage,
|
|
action: []const u8,
|
|
ctx: *Ctx,
|
|
) ![]const u8 {
|
|
const method = std.meta.stringToEnum(Methods, action) orelse
|
|
// NOTE: we could send it anyway to the JS runtime but it's good to check it
|
|
return error.UnknownMethod;
|
|
return switch (method) {
|
|
.runIfWaitingForDebugger => runIfWaitingForDebugger(alloc, msg, ctx),
|
|
else => sendInspector(alloc, method, msg, ctx),
|
|
};
|
|
}
|
|
|
|
fn sendInspector(
|
|
alloc: std.mem.Allocator,
|
|
method: Methods,
|
|
msg: *IncomingMessage,
|
|
ctx: *Ctx,
|
|
) ![]const u8 {
|
|
|
|
// save script in file at debug mode
|
|
if (std.log.defaultLogEnabled(.debug)) {
|
|
|
|
// input
|
|
var id: u16 = undefined;
|
|
var script: ?[]const u8 = null;
|
|
|
|
if (method == .evaluate) {
|
|
const Params = struct {
|
|
expression: []const u8,
|
|
contextId: ?u8 = null,
|
|
returnByValue: ?bool = null,
|
|
awaitPromise: ?bool = null,
|
|
userGesture: ?bool = null,
|
|
};
|
|
|
|
const input = try Input(Params).get(alloc, msg);
|
|
defer input.deinit();
|
|
log.debug("Req > id {d}, method {s} (script saved on cache)", .{ input.id, "runtime.evaluate" });
|
|
const params = input.params;
|
|
const func = try alloc.alloc(u8, params.expression.len);
|
|
@memcpy(func, params.expression);
|
|
script = func;
|
|
id = input.id;
|
|
} else if (method == .callFunctionOn) {
|
|
const Params = struct {
|
|
functionDeclaration: []const u8,
|
|
objectId: ?[]const u8 = null,
|
|
executionContextId: ?u8 = null,
|
|
arguments: ?[]struct {
|
|
value: ?[]const u8 = null,
|
|
objectId: ?[]const u8 = null,
|
|
} = null,
|
|
returnByValue: ?bool = null,
|
|
awaitPromise: ?bool = null,
|
|
userGesture: ?bool = null,
|
|
};
|
|
|
|
const input = try Input(Params).get(alloc, msg);
|
|
defer input.deinit();
|
|
log.debug("Req > id {d}, method {s} (script saved on cache)", .{ input.id, "runtime.callFunctionOn" });
|
|
const params = input.params;
|
|
const func = try alloc.alloc(u8, params.functionDeclaration.len);
|
|
@memcpy(func, params.functionDeclaration);
|
|
script = func;
|
|
id = input.id;
|
|
}
|
|
|
|
if (script) |src| {
|
|
try cdp.dumpFile(alloc, id, src);
|
|
alloc.free(src);
|
|
}
|
|
}
|
|
|
|
if (msg.sessionId) |s| {
|
|
ctx.state.sessionID = cdp.SessionID.parse(s) catch |err| {
|
|
log.err("parse sessionID: {s} {any}", .{ s, err });
|
|
return err;
|
|
};
|
|
}
|
|
|
|
// remove awaitPromise true params
|
|
// TODO: delete when Promise are correctly handled by zig-js-runtime
|
|
if (method == .callFunctionOn or method == .evaluate) {
|
|
if (std.mem.indexOf(u8, msg.json, "\"awaitPromise\":true")) |_| {
|
|
const buf = try alloc.alloc(u8, msg.json.len + 1);
|
|
defer alloc.free(buf);
|
|
_ = std.mem.replace(u8, msg.json, "\"awaitPromise\":true", "\"awaitPromise\":false", buf);
|
|
try ctx.sendInspector(buf);
|
|
return "";
|
|
}
|
|
}
|
|
|
|
try ctx.sendInspector(msg.json);
|
|
|
|
if (msg.id == null) return "";
|
|
|
|
return result(alloc, msg.id.?, null, null, msg.sessionId);
|
|
}
|
|
|
|
pub const AuxData = struct {
|
|
isDefault: bool = true,
|
|
type: []const u8 = "default",
|
|
frameId: []const u8 = cdp.FrameID,
|
|
};
|
|
|
|
pub fn executionContextCreated(
|
|
alloc: std.mem.Allocator,
|
|
ctx: *Ctx,
|
|
id: u16,
|
|
origin: []const u8,
|
|
name: []const u8,
|
|
uniqueID: []const u8,
|
|
auxData: ?AuxData,
|
|
sessionID: ?[]const u8,
|
|
) !void {
|
|
const Params = struct {
|
|
context: struct {
|
|
id: u64,
|
|
origin: []const u8,
|
|
name: []const u8,
|
|
uniqueId: []const u8,
|
|
auxData: ?AuxData = null,
|
|
},
|
|
};
|
|
const params = Params{
|
|
.context = .{
|
|
.id = id,
|
|
.origin = origin,
|
|
.name = name,
|
|
.uniqueId = uniqueID,
|
|
.auxData = auxData,
|
|
},
|
|
};
|
|
try cdp.sendEvent(alloc, ctx, "Runtime.executionContextCreated", Params, params, sessionID);
|
|
}
|
|
|
|
// TODO: noop method
|
|
// should we be passing this also to the JS Inspector?
|
|
fn runIfWaitingForDebugger(
|
|
alloc: std.mem.Allocator,
|
|
msg: *IncomingMessage,
|
|
_: *Ctx,
|
|
) ![]const u8 {
|
|
const input = try Input(void).get(alloc, msg);
|
|
defer input.deinit();
|
|
log.debug("Req > id {d}, method {s}", .{ input.id, "runtime.runIfWaitingForDebugger" });
|
|
|
|
return result(alloc, input.id, null, null, input.sessionId);
|
|
}
|