diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-05-01 23:57:34 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-05-02 16:22:10 +0530 |
| commit | 0da44615dcf97ad34b4576da8ef0b77f6c9fc01f (patch) | |
| tree | b3b7eebd1cc2e823cb8e5522952e4e4009c7041a | |
| parent | 9c812753e2b1f01b2e0c85be9904ff7694f0e6ec (diff) | |
| download | null-browser-0da44615dcf97ad34b4576da8ef0b77f6c9fc01f.tar.gz null-browser-0da44615dcf97ad34b4576da8ef0b77f6c9fc01f.zip | |
Vendor inspect + fix urlchanged event use-after free
Diffstat (limited to '')
| -rw-r--r-- | TODO.org | 23 | ||||
| -rw-r--r-- | flake.nix | 2 | ||||
| -rw-r--r-- | init.lua | 12 | ||||
| -rw-r--r-- | lua/null-browser/api.lua | 2 | ||||
| -rw-r--r-- | lua/null-browser/extras/history.lua | 10 | ||||
| -rw-r--r-- | lua/null-browser/extras/search-engines.lua | 10 | ||||
| -rw-r--r-- | lua/null-browser/inspect.lua | 380 | ||||
| -rw-r--r-- | lua/null-browser/utils.lua (renamed from lua/null-browser/stdlib.lua) | 18 | ||||
| -rw-r--r-- | src/events/UrlChangedEvent.hpp | 6 |
9 files changed, 417 insertions, 46 deletions
@@ -1,21 +1,12 @@ ** Usable -- [X] `web.inspect`: like vim.inspect -- [X] static linking for libluv -- [X] Update window title on current webview title change -- [X] Search text in page -- [X] Dev tools -- [X] Configuration -- [X] Searchengines -- [X] Scroll api (for j/k/h/l/gg/G) -- [X] table extend/merge -- [X] window.opener controls (use tab for now?) -- [X] Permission requests handling -- [X] Notifications - [-] Tests for api - [ ] Config permission persist (persist_permission_state = 'always' | 'never' | 'in_memory') - [ ] Permission list/allow/deny api - [ ] Fullscreen - [ ] Zoom in/out +- [ ] Run JS in page (web.view.eval_js()) +- [ ] Use table for all internals api options? +- [ ] Create window with new profile ** Bugs - [ ] INVESTIGATE: segfault on api module error @@ -24,19 +15,17 @@ - [ ] INVESTIGATE: Errors in keymap/thread segfaults ** Next +- [ ] web.win.* apis (list, current_id) - [ ] Allow toggling devtools - [ ] Tests for window - [ ] More tests for stack - [ ] Tests for router -- [ ] Run JS in page (web.view.eval_js()) -- [ ] Window list api +- [ ] Set search text as the user is typing (dmenu -r) - [ ] Log stdout, errors and results from lua somewhere -- [ ] Use table for all internals api options? - [ ] Conflict in keymap (keymap already exists) - [ ] Allow pattern filtering for event listeners - [ ] Allow tab_id, win_id filtering for event listeners - [ ] Handle resource cleanup + signal disconnecting -- [ ] Open url sanitize/humanize (add protocol if missing, remove quotes, etc) - [ ] Profiles - [ ] Private window (in-memory profile) - [ ] Read page contents via lua @@ -47,7 +36,7 @@ - [ ] User stylesheets (per site and global?) - [ ] Support multiple modes for keymap.set: `web.keymap.set({'n','i'}, ...)` - [ ] static linking for qt -- [ ] vendor web.inspect with build +- [X] vendor web.inspect with build - [ ] Right click context menu items - [ ] Listen to renderprocesstermination signal - [ ] Create view with html (web.view.set_html()) @@ -17,7 +17,6 @@ lua-libluv = pkgs.callPackage (import ./nix/libluv.nix) { inherit (myPkgs) libuv luajit; }; - lua-inspect = pkgs.luajitPackages.inspect; # TODO: include with build? }; dependencies = [ @@ -26,7 +25,6 @@ myPkgs.luajit myPkgs.libuv myPkgs.lua-libluv - myPkgs.lua-inspect ]; in { devShells.default = pkgs.mkShell rec { @@ -1,14 +1,15 @@ print('hello starting up...') -web.set('new_view_url', 'https://lite.duckduckgo.com') -web.set('close_window_when_no_views', true) --- web.set('user_agent', 'MacOS | Safari - $500 edition') -web.set('downloads_dir', os.getenv('HOME') .. '/Downloads/firefox') - local dmenu = require 'null-browser.extras.dmenu' local history = require 'null-browser.extras.history' local search_engines = require 'null-browser.extras.search-engines' +web.set('new_view_url', 'https://lite.duckduckgo.com') +web.set('close_window_when_no_views', true) +web.set('user_agent', + 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36') +web.set('downloads_dir', os.getenv('HOME') .. '/Downloads/firefox') + history.attach_hooks() search_engines.urls['ld'] = 'https://lite.duckduckgo.com/?q={}' @@ -35,6 +36,7 @@ web.event.add_listener('PermissionRequested', { web.event.add_listener('NotificationReceived', { callback = function(event) + -- TODO: Add action/click (-A) local args = { '-a', 'null-browser', '-r', event.tag, event.title, event.message } uv.spawn('notify-send', { args = args }, function(code) if code ~= 0 then diff --git a/lua/null-browser/api.lua b/lua/null-browser/api.lua index cb8fd77..b3f1db1 100644 --- a/lua/null-browser/api.lua +++ b/lua/null-browser/api.lua @@ -10,7 +10,7 @@ web.view = web.view or {} web.history = web.history or {} web.event = web.event or {} -require 'null-browser.stdlib' +require 'lua.null-browser.utils' --- Add a keymap --- diff --git a/lua/null-browser/extras/history.lua b/lua/null-browser/extras/history.lua index 8c53d96..8106178 100644 --- a/lua/null-browser/extras/history.lua +++ b/lua/null-browser/extras/history.lua @@ -3,6 +3,8 @@ local history = { max_entires = 200, } +local hook_registered = false + function history.list() local file = uv.fs_open(history.path, 'r', 438) if not file then return {} end @@ -14,7 +16,7 @@ function history.list() for line in string.gmatch(data, '[^\r\n]+') do local already_exists = false for _, url in ipairs(urls) do - if url == line or url .. '/' == line then already_exists = true end + if history.are_urls_similar(url, line) then already_exists = true end end if #urls >= history.max_entires then break end if not already_exists then @@ -25,6 +27,10 @@ function history.list() return urls end +function history.are_urls_similar(url1, url2) + return url1 == url2 or url1 .. '/' == url2 +end + function history.update(func) local urls = history.list() local file = assert(uv.fs_open(history.path, 'w', 438)) @@ -54,6 +60,8 @@ function history.delete(url_to_delete) end function history.attach_hooks() + if hook_registered then return end + web.event.add_listener('UrlChanged', { callback = function(opts) print('url change', web.inspect(opts)); diff --git a/lua/null-browser/extras/search-engines.lua b/lua/null-browser/extras/search-engines.lua index 107e945..e381a89 100644 --- a/lua/null-browser/extras/search-engines.lua +++ b/lua/null-browser/extras/search-engines.lua @@ -6,16 +6,16 @@ local M = { default = 'd', } -function M.preprocess_url(url) - local url_trimmed, _ = string.gsub(url, '^%s*(.-)%s*$', '%1') - if M.is_url(url_trimmed) then return url_trimmed end +function M.transform_url_input(input) + local url = web.utils.string_trim(input) + if M.is_url(url) then return url end for key, _ in pairs(M.urls) do - local url_out, found = M.parse_search_string(key, url_trimmed) + local url_out, found = M.parse_search_string(key, url) if found then return M.substitute(key, url_out) end end - return M.substitute(M.default, url_trimmed) + return M.substitute(M.default, url) end function M.is_url(str) return string.match(str, "^https?://") end diff --git a/lua/null-browser/inspect.lua b/lua/null-browser/inspect.lua new file mode 100644 index 0000000..b5782da --- /dev/null +++ b/lua/null-browser/inspect.lua @@ -0,0 +1,380 @@ +local _tl_compat; if (tonumber((_VERSION or ''):match('[%d.]*$')) or 0) < 5.3 then + local p, m = pcall(require, 'compat53.module'); if p then _tl_compat = m end +end; local math = _tl_compat and _tl_compat.math or math; local string = _tl_compat and _tl_compat.string or string; local table = + _tl_compat and _tl_compat.table or table +local inspect = { Options = {}, } + + + + + + + + + + + + + + + + + +inspect._VERSION = 'inspect.lua 3.1.0' +inspect._URL = 'http://github.com/kikito/inspect.lua' +inspect._DESCRIPTION = 'human-readable representations of tables' +inspect._LICENSE = [[ + MIT LICENSE + + Copyright (c) 2022 Enrique GarcĂa Cota + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +]] +inspect.KEY = setmetatable({}, { __tostring = function() return 'inspect.KEY' end }) +inspect.METATABLE = setmetatable({}, { __tostring = function() return 'inspect.METATABLE' end }) + +local tostring = tostring +local rep = string.rep +local match = string.match +local char = string.char +local gsub = string.gsub +local fmt = string.format + +local _rawget +if rawget then + _rawget = rawget +else + _rawget = function(t, k) return t[k] end +end + +local function rawpairs(t) + return next, t, nil +end + + + +local function smartQuote(str) + if match(str, '"') and not match(str, "'") then + return "'" .. str .. "'" + end + return '"' .. gsub(str, '"', '\\"') .. '"' +end + + +local shortControlCharEscapes = { + ["\a"] = "\\a", + ["\b"] = "\\b", + ["\f"] = "\\f", + ["\n"] = "\\n", + ["\r"] = "\\r", + ["\t"] = "\\t", + ["\v"] = "\\v", + ["\127"] = "\\127", +} +local longControlCharEscapes = { ["\127"] = "\127" } +for i = 0, 31 do + local ch = char(i) + if not shortControlCharEscapes[ch] then + shortControlCharEscapes[ch] = "\\" .. i + longControlCharEscapes[ch] = fmt("\\%03d", i) + end +end + +local function escape(str) + return (gsub(gsub(gsub(str, "\\", "\\\\"), + "(%c)%f[0-9]", longControlCharEscapes), + "%c", shortControlCharEscapes)) +end + +local luaKeywords = { + ['and'] = true, + ['break'] = true, + ['do'] = true, + ['else'] = true, + ['elseif'] = true, + ['end'] = true, + ['false'] = true, + ['for'] = true, + ['function'] = true, + ['goto'] = true, + ['if'] = true, + ['in'] = true, + ['local'] = true, + ['nil'] = true, + ['not'] = true, + ['or'] = true, + ['repeat'] = true, + ['return'] = true, + ['then'] = true, + ['true'] = true, + ['until'] = true, + ['while'] = true, +} + +local function isIdentifier(str) + return type(str) == "string" and + not not str:match("^[_%a][_%a%d]*$") and + not luaKeywords[str] +end + +local flr = math.floor +local function isSequenceKey(k, sequenceLength) + return type(k) == "number" and + flr(k) == k and + 1 <= (k) and + k <= sequenceLength +end + +local defaultTypeOrders = { + ['number'] = 1, + ['boolean'] = 2, + ['string'] = 3, + ['table'] = 4, + ['function'] = 5, + ['userdata'] = 6, + ['thread'] = 7, +} + +local function sortKeys(a, b) + local ta, tb = type(a), type(b) + + + if ta == tb and (ta == 'string' or ta == 'number') then + return (a) < (b) + end + + local dta = defaultTypeOrders[ta] or 100 + local dtb = defaultTypeOrders[tb] or 100 + + + return dta == dtb and ta < tb or dta < dtb +end + +local function getKeys(t) + local seqLen = 1 + while _rawget(t, seqLen) ~= nil do + seqLen = seqLen + 1 + end + seqLen = seqLen - 1 + + local keys, keysLen = {}, 0 + for k in rawpairs(t) do + if not isSequenceKey(k, seqLen) then + keysLen = keysLen + 1 + keys[keysLen] = k + end + end + table.sort(keys, sortKeys) + return keys, keysLen, seqLen +end + +local function countCycles(x, cycles) + if type(x) == "table" then + if cycles[x] then + cycles[x] = cycles[x] + 1 + else + cycles[x] = 1 + for k, v in rawpairs(x) do + countCycles(k, cycles) + countCycles(v, cycles) + end + countCycles(getmetatable(x), cycles) + end + end +end + +local function makePath(path, a, b) + local newPath = {} + local len = #path + for i = 1, len do newPath[i] = path[i] end + + newPath[len + 1] = a + newPath[len + 2] = b + + return newPath +end + + +local function processRecursive(process, + item, + path, + visited) + if item == nil then return nil end + if visited[item] then return visited[item] end + + local processed = process(item, path) + if type(processed) == "table" then + local processedCopy = {} + visited[item] = processedCopy + local processedKey + + for k, v in rawpairs(processed) do + processedKey = processRecursive(process, k, makePath(path, k, inspect.KEY), visited) + if processedKey ~= nil then + processedCopy[processedKey] = processRecursive(process, v, makePath(path, processedKey), visited) + end + end + + local mt = processRecursive(process, getmetatable(processed), makePath(path, inspect.METATABLE), visited) + if type(mt) ~= 'table' then mt = nil end + setmetatable(processedCopy, mt) + processed = processedCopy + end + return processed +end + +local function puts(buf, str) + buf.n = buf.n + 1 + buf[buf.n] = str +end + + + +local Inspector = {} + + + + + + + + + + +local Inspector_mt = { __index = Inspector } + +local function tabify(inspector) + puts(inspector.buf, inspector.newline .. rep(inspector.indent, inspector.level)) +end + +function Inspector:getId(v) + local id = self.ids[v] + local ids = self.ids + if not id then + local tv = type(v) + id = (ids[tv] or 0) + 1 + ids[v], ids[tv] = id, id + end + return tostring(id) +end + +function Inspector:putValue(v) + local buf = self.buf + local tv = type(v) + if tv == 'string' then + puts(buf, smartQuote(escape(v))) + elseif tv == 'number' or tv == 'boolean' or tv == 'nil' or + tv == 'cdata' or tv == 'ctype' then + puts(buf, tostring(v)) + elseif tv == 'table' and not self.ids[v] then + local t = v + + if t == inspect.KEY or t == inspect.METATABLE then + puts(buf, tostring(t)) + elseif self.level >= self.depth then + puts(buf, '{...}') + else + if self.cycles[t] > 1 then puts(buf, fmt('<%d>', self:getId(t))) end + + local keys, keysLen, seqLen = getKeys(t) + + puts(buf, '{') + self.level = self.level + 1 + + for i = 1, seqLen + keysLen do + if i > 1 then puts(buf, ',') end + if i <= seqLen then + puts(buf, ' ') + self:putValue(t[i]) + else + local k = keys[i - seqLen] + tabify(self) + if isIdentifier(k) then + puts(buf, k) + else + puts(buf, "[") + self:putValue(k) + puts(buf, "]") + end + puts(buf, ' = ') + self:putValue(t[k]) + end + end + + local mt = getmetatable(t) + if type(mt) == 'table' then + if seqLen + keysLen > 0 then puts(buf, ',') end + tabify(self) + puts(buf, '<metatable> = ') + self:putValue(mt) + end + + self.level = self.level - 1 + + if keysLen > 0 or type(mt) == 'table' then + tabify(self) + elseif seqLen > 0 then + puts(buf, ' ') + end + + puts(buf, '}') + end + else + puts(buf, fmt('<%s %d>', tv, self:getId(v))) + end +end + +function inspect.inspect(root, options) + options = options or {} + + local depth = options.depth or (math.huge) + local newline = options.newline or '\n' + local indent = options.indent or ' ' + local process = options.process + + if process then + root = processRecursive(process, root, {}, {}) + end + + local cycles = {} + countCycles(root, cycles) + + local inspector = setmetatable({ + buf = { n = 0 }, + ids = {}, + cycles = cycles, + depth = depth, + level = 0, + newline = newline, + indent = indent, + }, Inspector_mt) + + inspector:putValue(root) + + return table.concat(inspector.buf) +end + +setmetatable(inspect, { + __call = function(_, root, options) + return inspect.inspect(root, options) + end, +}) + +return inspect diff --git a/lua/null-browser/stdlib.lua b/lua/null-browser/utils.lua index 737f747..244fa6f 100644 --- a/lua/null-browser/stdlib.lua +++ b/lua/null-browser/utils.lua @@ -2,18 +2,12 @@ _G.web = _G.web or {} web.utils = web.utils or {} --- inspect lua tables -local inspector_loaded, inspector = pcall(require, 'inspect') -if inspector_loaded then - web.inspect = inspector.inspect -else - --- Returns human-readable string representation of Lua tables - --- - --- @link https://github.com/kikito/inspect.lua - web.inspect = function(val) - print('[warn] "inspect" module not loaded'); return val - end -end +local inspector = require 'null-browser.inspect' + +--- Returns human-readable string representation of Lua tables +--- +--- @link https://github.com/kikito/inspect.lua +web.inspect = inspector.inspect -- TODO: Documentation function web.utils.string_trim(str) diff --git a/src/events/UrlChangedEvent.hpp b/src/events/UrlChangedEvent.hpp index 1685c89..812f8db 100644 --- a/src/events/UrlChangedEvent.hpp +++ b/src/events/UrlChangedEvent.hpp @@ -9,12 +9,12 @@ class UrlChangedEvent : public Event { public: - const QString &url; + const QString url; const WebViewId webview_id; const WindowId win_id; - UrlChangedEvent(const QString &url, WebViewId webview_id, WindowId win_id) - : url(url), webview_id(webview_id), win_id(win_id) { + UrlChangedEvent(QString url, WebViewId webview_id, WindowId win_id) + : url(std::move(url)), webview_id(webview_id), win_id(win_id) { kind = "UrlChanged"; } |
