quorum/server.go

81 lines
1.4 KiB
Go
Raw Normal View History

package main
import (
"container/list"
2014-01-09 14:15:51 -08:00
"net"
"log"
)
2014-01-08 14:43:20 -08:00
var Db *LDBDatabase
type Server struct {
// Channel for shutting down the server
shutdownChan chan bool
// DB interface
db *LDBDatabase
2014-01-08 14:43:20 -08:00
// Block manager for processing new blocks and managing the block chain
blockManager *BlockManager
// Peers (NYI)
peers *list.List
}
func NewServer() (*Server, error) {
db, err := NewLDBDatabase()
if err != nil {
return nil, err
}
2014-01-08 14:43:20 -08:00
Db = db
server := &Server{
shutdownChan: make(chan bool),
2014-01-08 14:43:20 -08:00
blockManager: NewBlockManager(),
db: db,
peers: list.New(),
}
return server, nil
}
2014-01-09 14:15:51 -08:00
func (s *Server) AddPeer(conn net.Conn) {
s.peers.PushBack(NewPeer(conn, s))
}
// Start the server
func (s *Server) Start() {
// For now this function just blocks the main thread
2014-01-09 14:15:51 -08:00
ln, err := net.Listen("tcp", ":12345")
if err != nil {
log.Fatal(err)
}
2014-01-08 14:43:20 -08:00
go func() {
for {
2014-01-09 14:15:51 -08:00
conn, err := ln.Accept()
if err != nil {
log.Println(err)
continue
}
go s.AddPeer(conn)
2014-01-08 14:43:20 -08:00
}
}()
}
func (s *Server) Stop() {
// Close the database
defer s.db.Close()
// Loop thru the peers and close them (if we had them)
for e := s.peers.Front(); e != nil; e = e.Next() {
// peer close etc
}
s.shutdownChan <- true
}
// This function will wait for a shutdown and resumes main thread execution
func (s *Server) WaitForShutdown() {
<- s.shutdownChan
}