influxdb/node.go

121 lines
2.0 KiB
Go
Raw Permalink Normal View History

2015-12-23 15:48:25 +00:00
package influxdb
import (
"encoding/json"
2016-01-27 19:50:32 +00:00
"fmt"
"os"
"path/filepath"
2016-01-25 23:13:06 +00:00
"strconv"
)
2016-01-27 19:50:32 +00:00
const (
nodeFile = "node.json"
oldNodeFile = "id"
peersFilename = "peers.json"
)
2015-12-23 15:48:25 +00:00
type Node struct {
path string
ID uint64
2015-12-23 15:48:25 +00:00
}
2016-01-25 23:13:06 +00:00
// LoadNode will load the node information from disk if present
func LoadNode(path string) (*Node, error) {
2016-01-25 23:13:06 +00:00
// Always check to see if we are upgrading first
if err := upgradeNodeFile(path); err != nil {
2016-01-25 23:13:06 +00:00
return nil, err
}
n := &Node{
path: path,
}
f, err := os.Open(filepath.Join(path, nodeFile))
if err != nil {
2016-01-25 23:13:06 +00:00
return nil, err
}
defer f.Close()
if err := json.NewDecoder(f).Decode(n); err != nil {
return nil, err
}
return n, nil
2015-12-23 15:48:25 +00:00
}
2016-01-26 03:08:23 +00:00
// NewNode will return a new node
func NewNode(path string) *Node {
2016-01-26 03:08:23 +00:00
return &Node{
path: path,
2016-01-26 03:08:23 +00:00
}
}
// Save will save the node file to disk and replace the existing one if present
func (n *Node) Save() error {
file := filepath.Join(n.path, nodeFile)
tmpFile := file + "tmp"
f, err := os.Create(tmpFile)
if err != nil {
return err
}
if err = json.NewEncoder(f).Encode(n); err != nil {
f.Close()
return err
}
if err = f.Close(); nil != err {
return err
}
return os.Rename(tmpFile, file)
2015-12-23 15:48:25 +00:00
}
2016-01-25 23:13:06 +00:00
func upgradeNodeFile(path string) error {
2016-01-25 23:13:06 +00:00
oldFile := filepath.Join(path, oldNodeFile)
2022-03-31 21:17:57 +00:00
b, err := os.ReadFile(oldFile)
2016-01-25 23:13:06 +00:00
if err != nil {
if os.IsNotExist(err) {
return nil
}
return err
}
// We shouldn't have an empty ID file, but if we do, ignore it
if len(b) == 0 {
return nil
}
2016-01-27 19:50:32 +00:00
peers := []string{}
2022-03-31 21:17:57 +00:00
pb, err := os.ReadFile(filepath.Join(path, peersFilename))
2016-01-27 19:50:32 +00:00
if err != nil {
if os.IsNotExist(err) {
return nil
}
return err
}
2016-01-27 19:50:32 +00:00
err = json.Unmarshal(pb, &peers)
if err != nil {
return err
}
2016-01-27 19:50:32 +00:00
if len(peers) > 1 {
return fmt.Errorf("to upgrade a cluster, please contact support at influxdata")
}
2016-01-25 23:13:06 +00:00
n := &Node{
path: path,
2016-01-25 23:13:06 +00:00
}
if n.ID, err = strconv.ParseUint(string(b), 10, 64); err != nil {
return err
}
if err := n.Save(); err != nil {
return err
}
if err := os.Remove(oldFile); err != nil {
return err
}
return nil
}