Official Go implementation of the Ethereum protocol
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-ethereum/server.go

81 lines
1.4 KiB

package main
import (
"container/list"
11 years ago
"net"
"log"
)
11 years ago
var Db *LDBDatabase
type Server struct {
// Channel for shutting down the server
shutdownChan chan bool
// DB interface
db *LDBDatabase
11 years ago
// 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
}
11 years ago
Db = db
server := &Server{
shutdownChan: make(chan bool),
11 years ago
blockManager: NewBlockManager(),
db: db,
peers: list.New(),
}
return server, nil
}
11 years ago
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
11 years ago
ln, err := net.Listen("tcp", ":12345")
if err != nil {
log.Fatal(err)
}
11 years ago
go func() {
for {
11 years ago
conn, err := ln.Accept()
if err != nil {
log.Println(err)
continue
}
go s.AddPeer(conn)
11 years ago
}
}()
}
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
}