forked from TrueCloudLab/frostfs-node
71b87155ef
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
140 lines
2.8 KiB
Go
140 lines
2.8 KiB
Go
package locodedb
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/util/locode"
|
|
locodecolumn "github.com/nspcc-dev/neofs-node/pkg/util/locode/column"
|
|
)
|
|
|
|
// Key represents the key in NeoFS location database.
|
|
type Key struct {
|
|
cc *CountryCode
|
|
|
|
lc *LocationCode
|
|
}
|
|
|
|
// NewKey calculates Key from LOCODE.
|
|
func NewKey(lc locode.LOCODE) (*Key, error) {
|
|
country, err := CountryCodeFromString(lc.CountryCode())
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not parse country: %w", err)
|
|
}
|
|
|
|
location, err := LocationCodeFromString(lc.LocationCode())
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not parse location: %w", err)
|
|
}
|
|
|
|
return &Key{
|
|
cc: country,
|
|
lc: location,
|
|
}, nil
|
|
}
|
|
|
|
// CountryCode returns location's country code.
|
|
func (k *Key) CountryCode() *CountryCode {
|
|
return k.cc
|
|
}
|
|
|
|
// LocationCode returns location code.
|
|
func (k *Key) LocationCode() *LocationCode {
|
|
return k.lc
|
|
}
|
|
|
|
// Record represents the entry in NeoFS location database.
|
|
type Record struct {
|
|
countryName string
|
|
|
|
locationName string
|
|
|
|
subDivName string
|
|
|
|
subDivCode string
|
|
|
|
p *Point
|
|
|
|
cont *Continent
|
|
}
|
|
|
|
var errParseCoordinates = errors.New("invalid coordinates")
|
|
|
|
// NewRecord calculates Record from UN/LOCODE table record.
|
|
func NewRecord(r locode.Record) (*Record, error) {
|
|
crd, err := locodecolumn.CoordinatesFromString(r.Coordinates)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("%w: %v", errParseCoordinates, err)
|
|
}
|
|
|
|
point, err := PointFromCoordinates(crd)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not parse geo point: %w", err)
|
|
}
|
|
|
|
return &Record{
|
|
locationName: r.NameWoDiacritics,
|
|
subDivCode: r.SubDiv,
|
|
p: point,
|
|
}, nil
|
|
}
|
|
|
|
// CountryName returns country name.
|
|
func (r *Record) CountryName() string {
|
|
return r.countryName
|
|
}
|
|
|
|
// SetCountryName sets country name.
|
|
func (r *Record) SetCountryName(name string) {
|
|
r.countryName = name
|
|
}
|
|
|
|
// LocationName returns location name.
|
|
func (r *Record) LocationName() string {
|
|
return r.locationName
|
|
}
|
|
|
|
// SetLocationName sets location name.
|
|
func (r *Record) SetLocationName(name string) {
|
|
r.locationName = name
|
|
}
|
|
|
|
// SubDivCode returns subdivision code.
|
|
func (r *Record) SubDivCode() string {
|
|
return r.subDivCode
|
|
}
|
|
|
|
// SetSubDivCode sets subdivision code.
|
|
func (r *Record) SetSubDivCode(name string) {
|
|
r.subDivCode = name
|
|
}
|
|
|
|
// SubDivName returns subdivision name.
|
|
func (r *Record) SubDivName() string {
|
|
return r.subDivName
|
|
}
|
|
|
|
// SetSubDivName sets subdivision name.
|
|
func (r *Record) SetSubDivName(name string) {
|
|
r.subDivName = name
|
|
}
|
|
|
|
// GeoPoint returns geo point of the location.
|
|
func (r *Record) GeoPoint() *Point {
|
|
return r.p
|
|
}
|
|
|
|
// SetGeoPoint sets geo point of the location.
|
|
func (r *Record) SetGeoPoint(p *Point) {
|
|
r.p = p
|
|
}
|
|
|
|
// Continent returns location continent.
|
|
func (r *Record) Continent() *Continent {
|
|
return r.cont
|
|
}
|
|
|
|
// SetContinent sets location continent.
|
|
func (r *Record) SetContinent(c *Continent) {
|
|
r.cont = c
|
|
}
|