aboutsummaryrefslogtreecommitdiffstats
path: root/server.go
blob: c8fb492d5ba2b7e1e2f00dc936efb952a90b0a22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package main

import (
  "container/list"
  "time"
)

type Server struct {
  // Channel for shutting down the server
  shutdownChan chan bool
  // DB interface
  db          *LDBDatabase
  // Peers (NYI)
  peers       *list.List
}

func NewServer() (*Server, error) {
  db, err := NewLDBDatabase()
  if err != nil {
    return nil, err
  }

  server := &Server{
    shutdownChan:    make(chan bool),
    db:              db,
    peers:           list.New(),
  }

  return server, nil
}

// Start the server
func (s *Server) Start() {
  // For now this function just blocks the main thread
  for {
    time.Sleep( time.Second )
  }
}

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
}