1
restaurant-search/geo/cache.go

98 lines
2.3 KiB
Go
Raw Normal View History

2015-08-13 10:18:17 +00:00
/*
* Copyright (c) 2015 Alex Yatskov <alex@foosoft.net>
* Author: Alex Yatskov <alex@foosoft.net>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
2015-08-14 11:11:31 +00:00
package geo
2015-08-13 10:18:17 +00:00
import (
"encoding/json"
"io/ioutil"
"os"
2015-08-14 07:56:44 +00:00
"time"
2015-08-13 10:18:17 +00:00
"github.com/kellydunn/golang-geo"
)
2015-08-14 11:11:31 +00:00
type Coord struct {
2015-08-13 10:18:17 +00:00
Latitude float64
Longitude float64
}
2015-08-14 11:11:31 +00:00
type Cache struct {
2015-08-14 01:10:49 +00:00
filename string
2015-08-14 11:11:31 +00:00
data map[string]Coord
2015-08-14 07:56:44 +00:00
ticker *time.Ticker
2015-08-14 01:10:49 +00:00
coder geo.GoogleGeocoder
2015-08-13 10:18:17 +00:00
}
2015-08-14 11:11:31 +00:00
func NewCache(filename string) (*Cache, error) {
cache := &Cache{
2015-08-14 01:10:49 +00:00
filename: filename,
2015-08-14 11:11:31 +00:00
data: make(map[string]Coord),
2015-08-14 07:56:44 +00:00
ticker: time.NewTicker(time.Millisecond * 200),
}
2015-08-13 10:18:17 +00:00
if err := cache.load(); err != nil {
return nil, err
}
return cache, nil
}
2015-08-14 11:11:31 +00:00
func (c *Cache) load() error {
2015-08-14 01:10:49 +00:00
file, err := os.Open(c.filename)
2015-08-13 10:18:17 +00:00
if os.IsNotExist(err) {
return nil
}
if err != nil {
return err
}
defer file.Close()
2015-08-14 01:10:49 +00:00
return json.NewDecoder(file).Decode(&c.data)
2015-08-13 10:18:17 +00:00
}
2015-08-14 11:11:31 +00:00
func (c *Cache) Save() error {
2015-08-14 01:10:49 +00:00
js, err := json.MarshalIndent(c.data, "", " ")
2015-08-13 10:18:17 +00:00
if err != nil {
return err
}
2015-08-14 01:10:49 +00:00
return ioutil.WriteFile(c.filename, js, 0644)
2015-08-13 10:18:17 +00:00
}
2015-08-14 11:11:31 +00:00
func (c *Cache) Decode(address string) (Coord, error) {
2015-08-14 01:10:49 +00:00
if coord, ok := c.data[address]; ok {
2015-08-13 10:18:17 +00:00
return coord, nil
}
2015-08-14 07:56:44 +00:00
<-c.ticker.C
2015-08-14 01:10:49 +00:00
point, err := c.coder.Geocode(address)
2015-08-13 10:18:17 +00:00
if err != nil {
2015-08-14 11:11:31 +00:00
return Coord{}, err
2015-08-13 10:18:17 +00:00
}
2015-08-14 11:11:31 +00:00
coord := Coord{point.Lat(), point.Lng()}
2015-08-14 01:10:49 +00:00
c.data[address] = coord
2015-08-13 10:18:17 +00:00
return coord, nil
}