mapserver/db/sqlite/initialblocks.go

92 lines
1.9 KiB
Go
Raw Normal View History

2019-02-11 18:32:39 +03:00
package sqlite
import (
"mapserver/coords"
"mapserver/db"
2019-02-14 10:34:16 +03:00
"mapserver/layer"
2019-02-14 11:05:39 +03:00
"mapserver/settings"
2019-02-15 19:53:32 +03:00
_ "github.com/mattn/go-sqlite3"
2019-02-14 10:34:16 +03:00
)
const (
2019-02-15 11:08:22 +03:00
SETTING_LAST_POS = "last_pos"
SETTING_TOTAL_LEGACY_COUNT = "total_legacy_count"
2019-02-15 10:58:04 +03:00
SETTING_PROCESSED_LEGACY_COUNT = "total_processed_legacy_count"
2019-02-11 18:32:39 +03:00
)
2019-02-13 17:44:05 +03:00
const getLastBlockQuery = `
select pos,data,mtime
from blocks b
2019-02-15 19:53:32 +03:00
where b.pos > ?
2019-02-13 17:44:05 +03:00
order by b.pos asc, b.mtime asc
limit ?
`
2019-02-14 10:34:16 +03:00
func (this *Sqlite3Accessor) FindNextInitialBlocks(s settings.Settings, layers []*layer.Layer, limit int) (*db.InitialBlocksResult, error) {
2019-02-11 18:32:39 +03:00
result := &db.InitialBlocksResult{}
blocks := make([]*db.Block, 0)
2019-02-14 10:50:54 +03:00
lastpos := s.GetInt64(SETTING_LAST_POS, coords.MinPlainCoord-1)
2019-02-11 18:32:39 +03:00
2019-02-15 10:58:04 +03:00
processedcount := s.GetInt64(SETTING_PROCESSED_LEGACY_COUNT, 0)
totallegacycount := s.GetInt64(SETTING_TOTAL_LEGACY_COUNT, -1)
if totallegacycount == -1 {
//Query from db
2019-02-15 19:53:32 +03:00
totallegacycount, err := this.CountBlocks()
2019-02-15 10:58:04 +03:00
if err != nil {
panic(err)
}
s.SetInt64(SETTING_TOTAL_LEGACY_COUNT, int64(totallegacycount))
}
2019-02-14 10:34:16 +03:00
rows, err := this.db.Query(getLastBlockQuery, lastpos, limit)
2019-02-11 18:32:39 +03:00
if err != nil {
return nil, err
}
defer rows.Close()
for rows.Next() {
2019-02-14 10:34:16 +03:00
result.HasMore = true
result.UnfilteredCount++
2019-02-11 18:32:39 +03:00
var pos int64
var data []byte
var mtime int64
err = rows.Scan(&pos, &data, &mtime)
if err != nil {
return nil, err
}
2019-02-15 19:33:49 +03:00
if mtime > result.LastMtime {
result.LastMtime = mtime
}
2019-02-11 18:32:39 +03:00
mb := convertRows(pos, data, mtime)
2019-02-13 17:44:05 +03:00
2019-02-14 10:34:16 +03:00
// new position
lastpos = pos
blockcoordy := mb.Pos.Y
2019-02-14 10:34:16 +03:00
currentlayer := layer.FindLayerByY(layers, blockcoordy)
if currentlayer != nil {
blocks = append(blocks, mb)
}
2019-02-11 18:32:39 +03:00
}
2019-02-15 11:08:22 +03:00
s.SetInt64(SETTING_PROCESSED_LEGACY_COUNT, int64(result.UnfilteredCount)+processedcount)
2019-02-15 10:58:04 +03:00
result.Progress = float64(processedcount) / float64(totallegacycount)
2019-02-11 18:32:39 +03:00
result.List = blocks
2019-02-13 17:44:05 +03:00
//Save current positions of initial run
2019-02-14 10:34:16 +03:00
s.SetInt64(SETTING_LAST_POS, lastpos)
2019-02-13 17:44:05 +03:00
2019-02-11 18:32:39 +03:00
return result, nil
}