Chromium 中chrome.bookmarks扩展接口c++实现

一、扩展接口定义 chrome.bookmarks

使用 chrome.bookmarks API 创建、整理以及以其他方式操纵书签。另请参阅覆盖网页(可用于创建自定义“书签管理器”页面)。

更多参考chrome.bookmarks  |  API  |  Chrome for Developers (google.cn)

扩展可以请从 chrome-extension-samples 安装 bookmarks API 示例 存储库

二、扩展接口c++定义

chrome\common\extensions\api\bookmarks.json

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.[{"namespace": "bookmarks","description": "Use the <code>chrome.bookmarks</code> API to create, organize, and otherwise manipulate bookmarks. Also see <a href='override'>Override Pages</a>, which you can use to create a custom Bookmark Manager page.","properties": {"MAX_WRITE_OPERATIONS_PER_HOUR": {"value": 1000000,"deprecated": "Bookmark write operations are no longer limited by Chrome.","description": ""},"MAX_SUSTAINED_WRITE_OPERATIONS_PER_MINUTE": {"value": 1000000,"deprecated": "Bookmark write operations are no longer limited by Chrome.","description": ""}},"types": [{"id": "BookmarkTreeNodeUnmodifiable","type": "string","enum": ["managed"],"description": "Indicates the reason why this node is unmodifiable. The <var>managed</var> value indicates that this node was configured by the system administrator. Omitted if the node can be modified by the user and the extension (default)."},{"id": "BookmarkTreeNode","type": "object","description": "A node (either a bookmark or a folder) in the bookmark tree.  Child nodes are ordered within their parent folder.","properties": {"id": {"type": "string","minimum": 0,"description": "The unique identifier for the node. IDs are unique within the current profile, and they remain valid even after the browser is restarted."},"parentId": {"type": "string","minimum": 0,"optional": true,"description": "The <code>id</code> of the parent folder.  Omitted for the root node."},"index": {"type": "integer","optional": true,"description": "The 0-based position of this node within its parent folder."},"url": {"type": "string","optional": true,"description": "The URL navigated to when a user clicks the bookmark. Omitted for folders."},"title": {"type": "string","description": "The text displayed for the node."},"dateAdded": {"type": "number","optional": true,"description": "When this node was created, in milliseconds since the epoch (<code>new Date(dateAdded)</code>)."},"dateLastUsed": {"type": "number","optional": true,"description": "When this node was last opened, in milliseconds since the epoch. Not set for folders."},"dateGroupModified": {"type": "number","optional": true,"description": "When the contents of this folder last changed, in milliseconds since the epoch."},"unmodifiable": {"$ref": "BookmarkTreeNodeUnmodifiable","optional": true,"description": "Indicates the reason why this node is unmodifiable. The <var>managed</var> value indicates that this node was configured by the system administrator or by the custodian of a supervised user. Omitted if the node can be modified by the user and the extension (default)."},"children": {"type": "array","optional": true,"items": { "$ref": "BookmarkTreeNode" },"description": "An ordered list of children of this node."}}},{"id": "CreateDetails","description": "Object passed to the create() function.","inline_doc": true,"type": "object","properties": {"parentId": {"type": "string","serialized_type": "int64","optional": true,"description": "Defaults to the Other Bookmarks folder."},"index": {"type": "integer","minimum": 0,"optional": true},"title": {"type": "string","optional": true},"url": {"type": "string","optional": true}}}],"functions": [{"name": "get","type": "function","description": "Retrieves the specified BookmarkTreeNode(s).","parameters": [{"name": "idOrIdList","description": "A single string-valued id, or an array of string-valued ids","choices": [{"type": "string","serialized_type": "int64"},{"type": "array","items": {"type": "string","serialized_type": "int64"},"minItems": 1}]}],"returns_async": {"name": "callback","parameters": [{"name": "results","type": "array","items": { "$ref": "BookmarkTreeNode" }}]}},{"name": "getChildren","type": "function","description": "Retrieves the children of the specified BookmarkTreeNode id.","parameters": [{"type": "string","serialized_type": "int64","name": "id"}],"returns_async": {"name": "callback","parameters": [{"name": "results","type": "array","items": { "$ref": "BookmarkTreeNode"}}]}},{"name": "getRecent","type": "function","description": "Retrieves the recently added bookmarks.","parameters": [{"type": "integer","minimum": 1,"name": "numberOfItems","description": "The maximum number of items to return."}],"returns_async": {"name": "callback","parameters": [{"name": "results","type": "array","items": { "$ref": "BookmarkTreeNode" }}]}},{"name": "getTree","type": "function","description": "Retrieves the entire Bookmarks hierarchy.","parameters": [],"returns_async": {"name": "callback","parameters": [{"name": "results","type": "array","items": { "$ref": "BookmarkTreeNode" }}]}},{"name": "getSubTree","type": "function","description": "Retrieves part of the Bookmarks hierarchy, starting at the specified node.","parameters": [{"type": "string","serialized_type": "int64","name": "id","description": "The ID of the root of the subtree to retrieve."}],"returns_async": {"name": "callback","parameters": [{"name": "results","type": "array","items": { "$ref": "BookmarkTreeNode" }}]}},{"name": "search","type": "function","description": "Searches for BookmarkTreeNodes matching the given query. Queries specified with an object produce BookmarkTreeNodes matching all specified properties.","parameters": [{"name": "query","description": "Either a string of words and quoted phrases that are matched against bookmark URLs and titles, or an object. If an object, the properties <code>query</code>, <code>url</code>, and <code>title</code> may be specified and bookmarks matching all specified properties will be produced.","choices": [{"type": "string","description": "A string of words and quoted phrases that are matched against bookmark URLs and titles."},{"type": "object","description": "An object specifying properties and values to match when searching. Produces bookmarks matching all properties.","properties": {"query": {"type": "string","optional": true,"description": "A string of words and quoted phrases that are matched against bookmark URLs and titles."},"url": {"type": "string","optional": true,"description": "The URL of the bookmark; matches verbatim. Note that folders have no URL."},"title": {"type": "string","optional": true,"description": "The title of the bookmark; matches verbatim."}}}]}],"returns_async": {"name": "callback","parameters": [{"name": "results","type": "array","items": { "$ref": "BookmarkTreeNode" }}]}},{"name": "create","type": "function","description": "Creates a bookmark or folder under the specified parentId.  If url is NULL or missing, it will be a folder.","parameters": [{"$ref": "CreateDetails","name": "bookmark"}],"returns_async": {"name": "callback","optional": true,"parameters": [{"name": "result","$ref": "BookmarkTreeNode"}]}},{"name": "move","type": "function","description": "Moves the specified BookmarkTreeNode to the provided location.","parameters": [{"type": "string","serialized_type": "int64","name": "id"},{"type": "object","name": "destination","properties": {"parentId": {"type": "string","optional": true},"index": {"type": "integer","minimum": 0,"optional": true}}}],"returns_async": {"name": "callback","optional": true,"parameters": [{"name": "result","$ref": "BookmarkTreeNode"}]}},{"name": "update","type": "function","description": "Updates the properties of a bookmark or folder. Specify only the properties that you want to change; unspecified properties will be left unchanged.  <b>Note:</b> Currently, only 'title' and 'url' are supported.","parameters": [{"type": "string","serialized_type": "int64","name": "id"},{"type": "object","name": "changes","properties": {"title": {"type": "string","optional": true},"url": {"type": "string","optional": true}}}],"returns_async": {"name": "callback","optional": true,"parameters": [{"name": "result","$ref": "BookmarkTreeNode"}]}},{"name": "remove","type": "function","description": "Removes a bookmark or an empty bookmark folder.","parameters": [{"type": "string","serialized_type": "int64","name": "id"}],"returns_async": {"name": "callback","optional": true,"parameters": []}},{"name": "removeTree","type": "function","description": "Recursively removes a bookmark folder.","parameters": [{"type": "string","serialized_type": "int64","name": "id"}],"returns_async": {"name": "callback","optional": true,"parameters": []}}],"events": [{"name": "onCreated","type": "function","description": "Fired when a bookmark or folder is created.","parameters": [{"type": "string","name": "id"},{"$ref": "BookmarkTreeNode","name": "bookmark"}]},{"name": "onRemoved","type": "function","description": "Fired when a bookmark or folder is removed.  When a folder is removed recursively, a single notification is fired for the folder, and none for its contents.","parameters": [{"type": "string","name": "id"},{"type": "object","name": "removeInfo","properties": {"parentId": { "type": "string" },"index": { "type": "integer" },"node": { "$ref": "BookmarkTreeNode" }}}]},{"name": "onChanged","type": "function","description": "Fired when a bookmark or folder changes.  <b>Note:</b> Currently, only title and url changes trigger this.","parameters": [{"type": "string","name": "id"},{"type": "object","name": "changeInfo","properties": {"title": { "type": "string" },"url": {"type": "string","optional": true}}}]},{"name": "onMoved","type": "function","description": "Fired when a bookmark or folder is moved to a different parent folder.","parameters": [{"type": "string","name": "id"},{"type": "object","name": "moveInfo","properties": {"parentId": { "type": "string" },"index": { "type": "integer" },"oldParentId": { "type": "string" },"oldIndex": { "type": "integer" }}}]},{"name": "onChildrenReordered","type": "function","description": "Fired when the children of a folder have changed their order due to the order being sorted in the UI.  This is not called as a result of a move().","parameters": [{"type": "string","name": "id"},{"type": "object","name": "reorderInfo","properties": {"childIds": {"type": "array","items": { "type": "string" }}}}]},{"name": "onImportBegan","type": "function","description": "Fired when a bookmark import session is begun.  Expensive observers should ignore onCreated updates until onImportEnded is fired.  Observers should still handle other notifications immediately.","parameters": []},{"name": "onImportEnded","type": "function","description": "Fired when a bookmark import session is ended.","parameters": []}]}
]

bookmarks.json生成对应文件:

out\Debug\gen\chrome\common\extensions\api\bookmarks.cc

out\Debug\gen\chrome\common\extensions\api\bookmarks.h

三、bookmarks函数实现:

chrome\browser\extensions\api\bookmarks\bookmarks_api.h

chrome\browser\extensions\api\bookmarks\bookmarks_api.cc

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.#ifndef CHROME_BROWSER_EXTENSIONS_API_BOOKMARKS_BOOKMARKS_API_H_
#define CHROME_BROWSER_EXTENSIONS_API_BOOKMARKS_BOOKMARKS_API_H_#include <stdint.h>#include <memory>
#include <set>
#include <string>
#include <vector>#include "base/memory/raw_ptr.h"
#include "base/memory/ref_counted.h"
#include "base/values.h"
#include "components/bookmarks/browser/base_bookmark_model_observer.h"
#include "components/bookmarks/browser/bookmark_node.h"
#include "extensions/browser/browser_context_keyed_api_factory.h"
#include "extensions/browser/event_router.h"
#include "extensions/browser/extension_function.h"
#include "ui/shell_dialogs/select_file_dialog.h"class Profile;namespace base {
class FilePath;
}namespace bookmarks {
class BookmarkModel;
class ManagedBookmarkService;
}namespace content {
class BrowserContext;
}namespace extensions {namespace api {
namespace bookmarks {
struct CreateDetails;
}
}// Observes BookmarkModel and then routes the notifications as events to
// the extension system.
class BookmarkEventRouter : public bookmarks::BookmarkModelObserver {public:explicit BookmarkEventRouter(Profile* profile);BookmarkEventRouter(const BookmarkEventRouter&) = delete;BookmarkEventRouter& operator=(const BookmarkEventRouter&) = delete;~BookmarkEventRouter() override;// bookmarks::BookmarkModelObserver:void BookmarkModelLoaded(bookmarks::BookmarkModel* model,bool ids_reassigned) override;void BookmarkModelBeingDeleted(bookmarks::BookmarkModel* model) override;void BookmarkNodeMoved(bookmarks::BookmarkModel* model,const bookmarks::BookmarkNode* old_parent,size_t old_index,const bookmarks::BookmarkNode* new_parent,size_t new_index) override;void BookmarkNodeAdded(bookmarks::BookmarkModel* model,const bookmarks::BookmarkNode* parent,size_t index,bool added_by_user) override;void BookmarkNodeRemoved(bookmarks::BookmarkModel* model,const bookmarks::BookmarkNode* parent,size_t old_index,const bookmarks::BookmarkNode* node,const std::set<GURL>& removed_urls) override;void BookmarkAllUserNodesRemoved(bookmarks::BookmarkModel* model,const std::set<GURL>& removed_urls) override;void BookmarkNodeChanged(bookmarks::BookmarkModel* model,const bookmarks::BookmarkNode* node) override;void BookmarkNodeFaviconChanged(bookmarks::BookmarkModel* model,const bookmarks::BookmarkNode* node) override;void BookmarkNodeChildrenReordered(bookmarks::BookmarkModel* model,const bookmarks::BookmarkNode* node) override;void ExtensiveBookmarkChangesBeginning(bookmarks::BookmarkModel* model) override;void ExtensiveBookmarkChangesEnded(bookmarks::BookmarkModel* model) override;private:// Helper to actually dispatch an event to extension listeners.void DispatchEvent(events::HistogramValue histogram_value,const std::string& event_name,base::Value::List event_args);raw_ptr<content::BrowserContext> browser_context_;raw_ptr<bookmarks::BookmarkModel> model_;raw_ptr<bookmarks::ManagedBookmarkService> managed_;
};class BookmarksAPI : public BrowserContextKeyedAPI,public EventRouter::Observer {public:explicit BookmarksAPI(content::BrowserContext* context);~BookmarksAPI() override;// KeyedService implementation.void Shutdown() override;// BrowserContextKeyedAPI implementation.static BrowserContextKeyedAPIFactory<BookmarksAPI>* GetFactoryInstance();// EventRouter::Observer implementation.void OnListenerAdded(const EventListenerInfo& details) override;private:friend class BrowserContextKeyedAPIFactory<BookmarksAPI>;raw_ptr<content::BrowserContext> browser_context_;// BrowserContextKeyedAPI implementation.static const char* service_name() {return "BookmarksAPI";}static const bool kServiceIsNULLWhileTesting = true;// Created lazily upon OnListenerAdded.std::unique_ptr<BookmarkEventRouter> bookmark_event_router_;
};class BookmarksFunction : public ExtensionFunction,public bookmarks::BaseBookmarkModelObserver {public:// ExtensionFunction:ResponseAction Run() override;protected:~BookmarksFunction() override {}// Run semantic equivalent called when the bookmarks are ready.// Overrides can return nullptr to further delay responding (a.k.a.// RespondLater()).virtual ResponseValue RunOnReady() = 0;// Helper to get the BookmarkModel.bookmarks::BookmarkModel* GetBookmarkModel();// Helper to get the ManagedBookmarkService.bookmarks::ManagedBookmarkService* GetManagedBookmarkService();// Helper to get the bookmark node from a given string id.// If the given id can't be parsed or doesn't refer to a valid node, sets// |error| and returns nullptr.const bookmarks::BookmarkNode* GetBookmarkNodeFromId(const std::string& id_string,std::string* error);// Helper to create a bookmark node from a CreateDetails object. If a node// can't be created based on the given details, sets |error| and returns// nullptr.const bookmarks::BookmarkNode* CreateBookmarkNode(bookmarks::BookmarkModel* model,const api::bookmarks::CreateDetails& details,std::string* error);// Helper that checks if bookmark editing is enabled.bool EditBookmarksEnabled();// Helper that checks if |node| can be modified. Returns false if |node|// is nullptr, or a managed node, or the root node. In these cases the node// can't be edited, can't have new child nodes appended, and its direct// children can't be moved or reordered.bool CanBeModified(const bookmarks::BookmarkNode* node, std::string* error);Profile* GetProfile();private:// bookmarks::BaseBookmarkModelObserver:void BookmarkModelChanged() override;void BookmarkModelLoaded(bookmarks::BookmarkModel* model,bool ids_reassigned) override;// ExtensionFunction:void OnResponded() override;
};class BookmarksGetFunction : public BookmarksFunction {public:DECLARE_EXTENSION_FUNCTION("bookmarks.get", BOOKMARKS_GET)protected:~BookmarksGetFunction() override {}// BookmarksFunction:ResponseValue RunOnReady() override;
};class BookmarksGetChildrenFunction : public BookmarksFunction {public:DECLARE_EXTENSION_FUNCTION("bookmarks.getChildren", BOOKMARKS_GETCHILDREN)protected:~BookmarksGetChildrenFunction() override {}// BookmarksFunction:ResponseValue RunOnReady() override;
};class BookmarksGetRecentFunction : public BookmarksFunction {public:DECLARE_EXTENSION_FUNCTION("bookmarks.getRecent", BOOKMARKS_GETRECENT)protected:~BookmarksGetRecentFunction() override {}// BookmarksFunction:ResponseValue RunOnReady() override;
};class BookmarksGetTreeFunction : public BookmarksFunction {public:DECLARE_EXTENSION_FUNCTION("bookmarks.getTree", BOOKMARKS_GETTREE)protected:~BookmarksGetTreeFunction() override {}// BookmarksFunction:ResponseValue RunOnReady() override;
};class BookmarksGetSubTreeFunction : public BookmarksFunction {public:DECLARE_EXTENSION_FUNCTION("bookmarks.getSubTree", BOOKMARKS_GETSUBTREE)protected:~BookmarksGetSubTreeFunction() override {}// BookmarksFunction:ResponseValue RunOnReady() override;
};class BookmarksSearchFunction : public BookmarksFunction {public:DECLARE_EXTENSION_FUNCTION("bookmarks.search", BOOKMARKS_SEARCH)protected:~BookmarksSearchFunction() override {}// BookmarksFunction:ResponseValue RunOnReady() override;
};class BookmarksRemoveFunctionBase : public BookmarksFunction {protected:~BookmarksRemoveFunctionBase() override {}virtual bool is_recursive() const = 0;// BookmarksFunction:ResponseValue RunOnReady() override;
};class BookmarksRemoveFunction : public BookmarksRemoveFunctionBase {public:DECLARE_EXTENSION_FUNCTION("bookmarks.remove", BOOKMARKS_REMOVE)protected:~BookmarksRemoveFunction() override {}// BookmarksRemoveFunctionBase:bool is_recursive() const override;
};class BookmarksRemoveTreeFunction : public BookmarksRemoveFunctionBase {public:DECLARE_EXTENSION_FUNCTION("bookmarks.removeTree", BOOKMARKS_REMOVETREE)protected:~BookmarksRemoveTreeFunction() override {}// BookmarksRemoveFunctionBase:bool is_recursive() const override;
};class BookmarksCreateFunction : public BookmarksFunction {public:DECLARE_EXTENSION_FUNCTION("bookmarks.create", BOOKMARKS_CREATE)protected:~BookmarksCreateFunction() override {}// BookmarksFunction:ResponseValue RunOnReady() override;
};class BookmarksMoveFunction : public BookmarksFunction {public:DECLARE_EXTENSION_FUNCTION("bookmarks.move", BOOKMARKS_MOVE)protected:~BookmarksMoveFunction() override {}// BookmarksFunction:ResponseValue RunOnReady() override;
};class BookmarksUpdateFunction : public BookmarksFunction {public:DECLARE_EXTENSION_FUNCTION("bookmarks.update", BOOKMARKS_UPDATE)protected:~BookmarksUpdateFunction() override {}// BookmarksFunction:ResponseValue RunOnReady() override;
};}  // namespace extensions#endif  // CHROME_BROWSER_EXTENSIONS_API_BOOKMARKS_BOOKMARKS_API_H_

总结:扩展通过chrome.bookmarks.get 等方法会进入此实现,需要拦截更改可以在此处修改。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/881575.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

安卓/iOS H5传递动态参数方法,App渠道归因方案

需求和痛点 负责渠道分发的部门都需要收集区分不同安装渠道的转化量&#xff08;注册、付费等数据&#xff09;做数据分析&#xff0c;通常包括官网跳转、KOL营销、用户分享、广告投放、活动拉新等多个渠道。 场景 用户在网页上进行用户行为&#xff0c;产生了数据&#xff0c…

Vue 项目文件大小优化

优化逻辑 任何优化需求&#xff0c;都有一个前提&#xff0c;即可衡量。 那 Vue 加载速度的优化需求&#xff0c;本质上是要降低加载静态资源的大小。 所以&#xff0c;优化前&#xff0c;需要有一个了解项目现状的资源加载大小情况。 主要分 3 步走&#xff1a; 找到方法测…

ZYNQ使用XGPIO驱动外设模块(前半部分)

目录 目录 一、新建BD文档&#xff0c;添加ZYNQ处理器 1.BD文档: 2.在Vivado中&#xff0c;BD文件的生成过程通常包括以下步骤&#xff1a; 1)什么是Tcl Console: 3.PL部分是FPGA可编程逻辑部分&#xff0c;它提供了丰富的IO资源&#xff0c;可以用于实现各种硬件接口和功…

3dsMax添加天空盒

点击渲染&#xff0c;环境 &#xff0c; 点击位图 找到要设置的天空HDR&#xff0c;可以使用HDR(EXR)贴图 一个可以下载HDR贴图的网站 https://polyhaven.com/hdris在渲染的时候不要使用使用微软输入法&#xff0c;3dsmax会卡死&#xff0c; 在渲染的时候不要使用使用微软…

架构师之路-学渣到学霸历程-10

文件传输讲解 今天分享两个文件传输的命令&#xff1b; 这个实验做起来也是非常简单的&#xff0c;可以跟着去做就能够实现了&#xff1b; 增强一下自己的成就感也不错&#xff1b; 1.scp命令 作用&#xff1a;加码的方式在本地主机和远程主机之间复制文件语法&#xff1a;s…

【Kubernetes】常见面试题汇总(五十九)

目录 129.问题&#xff1a;pod 使用 PV 后&#xff0c;无法访问其内容&#xff1f; 130.查看节点状态失败&#xff1f; 特别说明&#xff1a; 题目 1-68 属于【Kubernetes】的常规概念题&#xff0c;即 “ 汇总&#xff08;一&#xff09;~&#xff08;二十二&#xf…

《向量数据库指南》 ——KG-RAG 新突破:有限跳数假设下的高效解法

我们观察到在实际的 KG-RAG 场景中,存在跳数有限性假设:在 KG-based RAG 中,实际问的 query 问题的查询路由只需要在知识图谱中进行有限的,且很少的跳数(如少于4跳)的查询,而并不需要在其中进行非常多次跳数。 我们的跳数有限性假设基于两点很重要的观察:1. query 复杂…

Flutter全局统一自定义导航栏返回按钮

Flutter全局统一自定义导航栏返回按钮 在Flutter开发中&#xff0c;导航栏&#xff08;AppBar&#xff09;是用户界面的重要组成部分&#xff0c;它不仅提供了页面标题&#xff0c;还可能包含返回按钮、导航按钮等。默认情况下&#xff0c;每个Scaffold的AppBar都会包含一个返…

Iceberg Catalog 的实现和迁移

Iceberg Catalog 的需求 Iceberg Catalog 的接口定义了各种 Catalog 需要实现的方法&#xff0c;主要包括列出存在的表&#xff0c;创建表&#xff0c;删除表&#xff0c;检查表是否存在&#xff0c;给表改名。 如果一个 Iceberg catalog 使用在生产中&#xff0c;主要需是原…

UE5运行时动态加载场景角色动画任意搭配-场景角色相机动画音乐加载方法(三)

1、将场景打包为Pak并加载 1、参考这篇文章将场景打包为pak,UE4打包并加载Pak-Windows/iOS/Android不同平台Editor/Runtime不同运行模式兼容 2、在Mount Pak后直接打开Map即可 void UMapManager::OpenMap(FString Path) {UWorld* World = UGlobalManager::GetInstance()->…

自然语言处理(NLP)论文数量的十年趋势:2014-2024

引言 近年来&#xff0c;自然语言处理&#xff08;NLP&#xff09;已成为人工智能&#xff08;AI&#xff09;和数据科学领域中的关键技术之一。随着数据规模的不断扩大和计算能力的提升&#xff0c;NLP技术从学术研究走向了广泛的实际应用。通过观察过去十年&#xff08;2014…

基于Zabbix进行服务器运行情况监测

文章目录 引言I Zabbix主要构成下载并安装Zabbix被监控主机安装zabbix agent创建被监控主机报警设置II 常见问题cannot use database "zabbix": its "users" table is empty (is this the Zabbix proxy database?)重置 Zabbix Web 界面密码Zabbix agent i…

还做单元测试吗?

软件单元测试分为狭义的单元测试和广义的单元测试。 前者是指对被测代码的各种函数、接口等进行测试&#xff0c;以验证它们的功能、性能和安全性。 后者是指对页面的每一个组件&#xff08;如文本框、按钮等&#xff09;进行测试&#xff0c;以验证它们的功能、性能和安全性…

京准电钟:NTP时间服务器让大数据时钟同步

京准电钟&#xff1a;NTP时间服务器让大数据时钟同步 京准电钟&#xff1a;NTP时间服务器让大数据时钟同步 NTP是一种用于同步网络中设备时间的协议&#xff0c;广泛用于互联网和局域网中。NTP网络时间服务器则是基于NTP协议构建&#xff0c;为网络中的设备提供时间同步服务的服…

MySQL学习笔记(持续更新,目前到十一章锁)

1、Mysql概述 1.1 数据库相关概念 三个概念&#xff1a;数据库、数据库管理系统、SQL 名称全称简称数据库存储数据的仓库&#xff0c;数据是有组织的进行存储DataBase&#xff08;DB&#xff09;数据库管理系统操纵和管理数据库的大型软件DataBase Mangement System&#xf…

【Qt】详细Qt基础 (包括自定义控件)

目录 QT 概述创建项目项目文件&#xff08;. pro&#xff09;main.cppmainwindow.uimainwindow.hmainwindow.cpp 窗口类QWidget 窗口显示QDialog 窗口 QPushButton创建显示 对象树基本概念功能 坐标体系控件Item WidgetsQListWidgetQTreeWidgetQTableWidget 自定义控件 QT 概述…

结构型设计模式详解与总结

一、什么是结构型设计模式 结构型设计模式的主要目的是处理类或对象之间的组合与继承问题&#xff0c;通过组织类和对象来形成更大的结构&#xff0c;帮助我们更好地解决类与类、对象与对象之间的耦合问题。这类模式通过定义如何组合对象来实现新的功能&#xff0c;着重于解决…

2024 年热门前端框架对比及选择指南

在前端开发的世界里&#xff0c;框架的选择对于项目的成功至关重要。不同的框架有着不同的设计理念、生态系统和适用场景&#xff0c;因此&#xff0c;开发者在选框架时需要权衡多个因素。本文将对当前最流行的前端框架——React、Vue、Angular、Svelte 和 Solid——进行详细对…

AI免费文档处理在线工具:ColPali文本检索文档

1、ColPali 原理还是对比学习&#xff0c;图像和文本&#xff0c;文档通过图像模型&#xff0c;文本通过大模型gemma https://huggingface.co/spaces/manu/ColPali-demo 检索pdf

k8s 中存储之 PV 持久卷 与 PVC 持久卷申请

目录 1 PV 与 PVC 介绍 1.1 PersistentVolume&#xff08;持久卷&#xff0c;简称PV&#xff09; 1.2 PersistentVolumeClaim&#xff08;持久卷声明&#xff0c;简称PVC&#xff09; 1.3 使用了PV和PVC之后&#xff0c;工作可以得到进一步的细分&#xff1a; 2 持久卷实验配置…