123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- // Copyright 2021 INTECH Process Automation Ltd.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package sqlite
- import (
- "database/sql"
- "fmt"
- _ "github.com/mattn/go-sqlite3"
- "os"
- "path"
- "sync"
- )
- type Database struct {
- db *sql.DB
- Path string
- mu sync.Mutex
- }
- func NewSqliteDatabase(conf Config) (error, *Database) {
- dir := conf.Path
- name := "sqliteKV.db"
- if conf.Name != "" {
- name = conf.Name
- }
- if _, err := os.Stat(dir); os.IsNotExist(err) {
- os.MkdirAll(dir, os.ModePerm)
- }
- dbPath := path.Join(dir, name)
- return nil, &Database{
- db: nil,
- Path: dbPath,
- mu: sync.Mutex{},
- }
- }
- func (d *Database) Connect() error {
- db, err := sql.Open("sqlite3", connectionString(d.Path))
- if err != nil {
- return err
- }
- db.SetMaxIdleConns(1)
- db.SetMaxOpenConns(1)
- db.SetConnMaxLifetime(-1)
- d.db = db
- return nil
- }
- func connectionString(dpath string) string {
- return fmt.Sprintf("file:%s?cache=shared", dpath)
- }
- func (d *Database) Disconnect() error {
- err := d.db.Close()
- return err
- }
- func (d *Database) Apply(f func(db *sql.DB) error) error {
- d.mu.Lock()
- err := f(d.db)
- d.mu.Unlock()
- return err
- }
|