1
restaurant-search/build/geocache.go

98 lines
2.4 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-15 08:37:34 +00:00
package main
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-15 08:37:34 +00:00
type geoPos struct {
2015-08-13 10:18:17 +00:00
Latitude float64
Longitude float64
}
2015-08-15 08:37:34 +00:00
type geoCache struct {
2015-08-14 01:10:49 +00:00
filename string
2015-08-15 08:37:34 +00:00
data map[string]geoPos
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-15 08:37:34 +00:00
func newGeoCache(filename string) (*geoCache, error) {
cache := &geoCache{
2015-08-14 01:10:49 +00:00
filename: filename,
2015-08-15 08:37:34 +00:00
data: make(map[string]geoPos),
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-15 08:37:34 +00:00
func (c *geoCache) 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-15 08:37:34 +00:00
func (c *geoCache) 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-15 08:37:34 +00:00
func (c *geoCache) decode(address string) (geoPos, error) {
if pos, ok := c.data[address]; ok {
return pos, nil
2015-08-13 10:18:17 +00:00
}
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-15 08:37:34 +00:00
return geoPos{}, err
2015-08-13 10:18:17 +00:00
}
2015-08-15 08:37:34 +00:00
pos := geoPos{point.Lat(), point.Lng()}
c.data[address] = pos
return pos, nil
2015-08-13 10:18:17 +00:00
}