-
Notifications
You must be signed in to change notification settings - Fork 1
/
dal.go
85 lines (69 loc) · 1.41 KB
/
dal.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package main
import (
"database/sql"
"fmt"
_ "github.com/mattn/go-sqlite3"
"io/ioutil"
"log"
"os"
)
type DAL struct {
Db *sql.DB
DataFile *os.File
}
func NewDAL() *DAL {
createTmpFile()
db, err := sql.Open("sqlite3", tmpDBFile())
if err != nil {
log.Fatal(err)
}
db.SetMaxOpenConns(1)
db.SetMaxIdleConns(1)
dataFile := fmt.Sprintf("%s/thumbnails.data", getInputDir())
f, err := os.Open(dataFile)
if err != nil {
log.Fatal(err)
}
return &DAL{
db,
f,
}
}
func (d *DAL) FindThumnails() *sql.Rows {
rows, err := d.Db.Query("SELECT width, height, bitspercomponent, bitsperpixel, bytesperrow, bitmapdata_location, bitmapdata_length FROM thumbnails")
if err != nil {
log.Fatal(err)
}
return rows
}
func (d *DAL) Shutdown() {
d.Db.Close()
d.DataFile.Close()
os.Remove(tmpDBFile())
log.Print("Shutdown Complete")
}
func createTmpFile() (err error) {
dbLocation := fmt.Sprintf("%s/index.sqlite", getInputDir())
data, err := ioutil.ReadFile(dbLocation)
if err != nil {
return
}
err = ioutil.WriteFile(tmpDBFile(), data, 0644)
if err != nil {
return
}
return
}
func getTmpDir() (tmpDir string) {
tmpDir = os.TempDir()
if len(tmpDir) == 0 {
tmpDir = os.Getenv("TMPDIR")
}
return
}
func tmpDBFile() string {
return fmt.Sprintf("%s/tmposxthumbnails.sqlite", getTmpDir())
}
func getInputDir() string {
return fmt.Sprintf("%s../C/com.apple.QuickLook.thumbnailcache", getTmpDir())
}