gosuki/modules/browser.go

324 lines
8.3 KiB
Go

package modules
import (
"fmt"
"path"
"path/filepath"
"time"
"git.blob42.xyz/gomark/gosuki/database"
"git.blob42.xyz/gomark/gosuki/index"
"git.blob42.xyz/gomark/gosuki/logging"
"git.blob42.xyz/gomark/gosuki/parsing"
"git.blob42.xyz/gomark/gosuki/hooks"
"git.blob42.xyz/gomark/gosuki/tree"
"git.blob42.xyz/gomark/gosuki/utils"
"git.blob42.xyz/gomark/gosuki/watch"
)
type BrowserType uint8
// Browser types
const (
// Chromium based browsers (chrome, brave ... )
TChrome BrowserType = iota
// Firefox based browsers ie. they relay on places.sqlite
TFirefox
// Other
TCustom
)
// reducer channel length, bigger means less sensitivity to events
var (
log = logging.GetLogger("BASE")
ReducerChanLen = 1000
)
type Browser interface {
// Returns a pointer to an initialized browser config
Config() *BrowserConfig
}
// The profile preferences for modules with builtin profile management.
type ProfilePrefs struct {
// Whether to watch all the profiles for multi-profile modules
WatchAllProfiles bool `toml:"watch_all_profiles"`
}
// BrowserConfig is the main browser configuration shared by all browser modules.
type BrowserConfig struct {
Name string
Type BrowserType
// Absolute path to the browser's bookmark directory
BkDir string
// Name of bookmarks file
BkFile string
ProfilePrefs
// In memory sqlite db (named `memcache`).
// Used to keep a browser's state of bookmarks across jobs.
BufferDB *database.DB
// Fast query db using an RB-Tree hashmap.
// It represents a URL index of the last running job
URLIndex index.HashTree
// Pointer to the root of the node tree
// The node tree is built again for every Run job on a browser
NodeTree *tree.Node
// Various parsing and timing stats
*parsing.Stats
watcher *watch.WatchDescriptor
UseFileWatcher bool
// Hooks registered by the browser module identified by name
UseHooks []string
// Registered hooks
hooks map[string]hooks.Hook
}
func (b *BrowserConfig) GetWatcher() *watch.WatchDescriptor {
return b.watcher
}
func (b BrowserConfig) BookmarkDir() (string, error) {
var err error
bDir, err := filepath.EvalSymlinks(utils.ExpandPath(b.BkDir))
if err != nil {
return "", err
}
exists, err := utils.CheckDirExists(bDir)
if err != nil {
return "", err
}
if !exists {
return "", fmt.Errorf("not a bookmark dir: %s ", bDir)
}
return bDir, nil
}
// CallHooks calls all registered hooks for this browser for the given
// *tree.Node. The hooks are called in the order they were registered. This is
// usually done within the parsing logic of a browser module, typically in the
// Run() method.
func (b BrowserConfig) CallHooks(node *tree.Node) error {
for _, hook := range b.hooks {
log.Debugf("calling hook <%s> on node", hook.Name)
if err := hook.Func(node); err != nil {
return err
}
}
return nil
}
// Registers hooks for this browser. Hooks are identified by their name.
func (b BrowserConfig) AddHooks(hooks ...hooks.Hook) {
for _, hook := range hooks {
b.hooks[hook.Name] = hook
}
}
func (b BrowserConfig) HasHook(hook hooks.Hook) bool {
_, ok := b.hooks[hook.Name]
return ok
}
//TODO!: use this method instead of manually building bookmark path
// full abosulte path to the bookmark file
// note: this could be non relevant to some browsers
func (b BrowserConfig) BookmarkPath() (string, error) {
bPath, err := filepath.EvalSymlinks(path.Join(utils.ExpandPath(b.BkDir),
b.BkFile))
if err != nil {
log.Error(err)
}
exists, err := utils.CheckFileExists(bPath)
if err != nil {
return "", err
}
if !exists {
return "", fmt.Errorf("not a bookmark path: %s ", bPath)
}
return bPath, nil
}
// Rebuilds the memory url index after parsing all bookmarks.
// Keeps the memory url index in sync with last known state of browser bookmarks
func (b BrowserConfig) RebuildIndex() {
start := time.Now()
log.Debugf("<%s> rebuilding index based on current nodeTree", b.Name)
b.URLIndex = index.NewIndex()
tree.WalkBuildIndex(b.NodeTree, b.URLIndex)
log.Debugf("<%s> index rebuilt in %s", b.Name, time.Since(start))
}
func (b BrowserConfig) ResetStats() {
log.Debugf("<%s> resetting stats", b.Name)
b.LastURLCount = b.CurrentURLCount
b.LastNodeCount = b.CurrentNodeCount
b.CurrentNodeCount = 0
b.CurrentURLCount = 0
}
// Browser who implement this interface need to handle all shuttind down and
// cleanup logic in the defined methods. This is usually called at the end of
// the browser instance lifetime
type Shutdowner interface {
Shutdown() error
}
// Loader is an interface for modules which is run only once when the module
// starts. It should have the same effect as Watchable.Run().
// Run() is automatically called for watched events, Load() is called once
// before starting to watch events.
//
// Loader allows modules to do a first pass of Run() logic before the watcher
// threads is spawned
type Loader interface {
// Load() will be called right after a browser is initialized
Load() error
}
// Initialize the module before any data loading or callbacks
// If a module wants to do any preparation and prepare custom state before Loader.Load()
// is called and before any Watchable.Run() or other callbacks are executed.
type Initializer interface {
// Init() is the first method called after a browser instance is created
// and registered.
// Return ok, error
Init(*Context) error
}
// Every browser is setup once, the following methods are called in order of
// their corresponding interfaces are implemented.
// TODO!: integrate with refactoring
// 0- Provision: Sets up and custom configiguration to the browser
// 1- Init : any variable and state initialization
// 2- Load: Does the first loading of data (ex first loading of bookmarks )
func Setup(browser BrowserModule, c *Context) error {
//TODO!: default init
bConf := browser.Config()
// Setup registered hooks
bConf.hooks = make(map[string]hooks.Hook)
for _, hookName := range bConf.UseHooks {
hook, ok := hooks.Predefined[hookName]
if !ok {
return fmt.Errorf("hook <%s> not defined", hookName)
}
bConf.AddHooks(hook)
}
// Init browsers' BufferDB
buffer, err := database.NewBuffer(bConf.Name)
if err != nil {
return err
}
bConf.BufferDB = buffer
// Creates in memory Index (RB-Tree)
bConf.URLIndex = index.NewIndex()
log.Infof("setting up browser <%s>", browser.ModInfo().ID)
browserID := browser.ModInfo().ID
// Handle Initializers custom Init from Browser module
initializer, ok := browser.(Initializer)
if ok {
log.Debugf("<%s> custom init", browserID)
if err := initializer.Init(c); err != nil {
return fmt.Errorf("<%s> initialization error: %v", browserID, err)
}
} else {
log.Warningf("<%s> does not implement Initializer, not calling Init()", browserID)
}
// Default browser loading logic
// Make sure that cache is initialized
if !database.Cache.IsInitialized() {
return fmt.Errorf("<%s> Loading bookmarks while cache not yet initialized", browserID)
}
//handle Loader interface
loader, ok := browser.(Loader)
if ok {
log.Debugf("<%s> custom loading", browserID)
err := loader.Load()
if err != nil {
return fmt.Errorf("loading error <%s>: %v", browserID, err)
// continue
}
}
return nil
}
// Setup a watcher service using the provided []Watch elements
// Returns true if a new watcher was created. false if it was previously craeted
// or if the browser does not need a watcher (UseFileWatcher == false).
func SetupWatchers(browserConf *BrowserConfig, watches ...*watch.Watch) (bool, error) {
var err error
if !browserConf.UseFileWatcher {
log.Warningf("<%s> does not use file watcher but asked for it", browserConf.Name)
return false, nil
}
browserConf.watcher, err = watch.NewWatcher(browserConf.Name, watches...)
if err != nil {
return false, err
}
return true, nil
}
func SetupWatchersWithReducer(browserConf *BrowserConfig,
reducerChanLen int,
watches ...*watch.Watch) (bool, error) {
var err error
if !browserConf.UseFileWatcher {
return false, nil
}
browserConf.watcher, err = watch.NewWatcherWithReducer(browserConf.Name, reducerChanLen, watches...)
if err != nil {
return false, err
}
return true, nil
}
// Used to store bookmark paths and other
// data related to a particular browser kind
// _TODO: replace in chrome with ProfileManager and remove this ref
// type BrowserPaths struct {
// BookmarkFile string
// BookmarkDir string
// }