mirror of
https://github.com/lightpanda-io/browser.git
synced 2025-12-16 16:28:58 +00:00
74 lines
2.5 KiB
Zig
74 lines
2.5 KiB
Zig
// Copyright (C) 2023-2025 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");
|
|
pub const App = @import("App.zig");
|
|
pub const Server = @import("Server.zig");
|
|
pub const Page = @import("browser/Page.zig");
|
|
pub const Browser = @import("browser/Browser.zig");
|
|
pub const Session = @import("browser/Session.zig");
|
|
|
|
pub const log = @import("log.zig");
|
|
pub const js = @import("browser/js/js.zig");
|
|
pub const dump = @import("browser/dump.zig");
|
|
pub const build_config = @import("build_config");
|
|
|
|
const Allocator = std.mem.Allocator;
|
|
|
|
pub const FetchOpts = struct {
|
|
wait_ms: u32 = 5000,
|
|
dump: dump.RootOpts,
|
|
writer: ?*std.Io.Writer = null,
|
|
};
|
|
pub fn fetch(app: *App, url: [:0]const u8, opts: FetchOpts) !void {
|
|
var browser = try Browser.init(app);
|
|
defer browser.deinit();
|
|
|
|
var session = try browser.newSession();
|
|
const page = try session.createPage();
|
|
|
|
// // Comment this out to get a profile of the JS code in v8/profile.json.
|
|
// // You can open this in Chrome's profiler.
|
|
// // I've seen it generate invalid JSON, but I'm not sure why. It only
|
|
// // happens rarely, and I manually fix the file.
|
|
// page.js.startCpuProfiler();
|
|
// defer {
|
|
// if (page.js.stopCpuProfiler()) |profile| {
|
|
// std.fs.cwd().writeFile(.{
|
|
// .sub_path = "v8/profile.json",
|
|
// .data = profile,
|
|
// }) catch |err| {
|
|
// log.err(.app, "profile write error", .{ .err = err });
|
|
// };
|
|
// } else |err| {
|
|
// log.err(.app, "profile error", .{ .err = err });
|
|
// }
|
|
// }
|
|
|
|
_ = try page.navigate(url, .{});
|
|
_ = session.fetchWait(opts.wait_ms);
|
|
|
|
const writer = opts.writer orelse return;
|
|
try dump.root(opts.dump, writer, page);
|
|
try writer.flush();
|
|
}
|
|
|
|
test {
|
|
std.testing.refAllDecls(@This());
|
|
}
|