Created
March 8, 2025 15:14
-
-
Save Virviil/cb3af49fe98833432f62b8595fede864 to your computer and use it in GitHub Desktop.
OneShotServer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package osserver | |
import ( | |
"context" | |
"log" | |
"net" | |
"net/http" | |
) | |
// Listener | |
type singleConnListener struct { | |
conn net.Conn | |
doneChan chan struct{} | |
} | |
func (l *singleConnListener) Accept() (net.Conn, error) { | |
if l.conn == nil { | |
select { | |
case <-l.doneChan: | |
return nil, net.ErrClosed | |
} | |
} | |
conn := l.conn | |
l.conn = nil | |
return conn, nil | |
} | |
func (l *singleConnListener) Close() error { | |
l.doneChan <- struct{}{} | |
return nil | |
} | |
func (l *singleConnListener) Addr() net.Addr { | |
return l.conn.LocalAddr() | |
} | |
// Server | |
type OneShotServer struct { | |
conn net.Conn | |
mux *http.ServeMux | |
srv *http.Server | |
done chan bool | |
} | |
func NewOneShotServer(conn net.Conn, mux *http.ServeMux) *OneShotServer { | |
return &OneShotServer{ | |
conn: conn, | |
mux: mux, | |
done: make(chan bool), | |
} | |
} | |
func (s *OneShotServer) Serve(ctx context.Context) error { | |
listener := &singleConnListener{conn: s.conn, doneChan: make(chan struct{}, 1)} | |
defer listener.Close() | |
s.srv = &http.Server{ | |
Handler: doneMiddleware(s.mux, s.done), | |
} | |
go func() { | |
if err := s.srv.Serve(listener); err != http.ErrServerClosed { | |
log.Printf("Server error: %v", err) | |
} | |
s.done <- true | |
}() | |
<-s.done | |
// Gracefull shutdown | |
return s.srv.Shutdown(ctx) | |
} | |
func doneMiddleware(next http.Handler, done chan bool) http.Handler { | |
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { | |
next.ServeHTTP(w, r) | |
done <- true | |
}) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// somehow i got conn | |
mux := http.NewServeMux() | |
mux.HandleFunc("/ping", func(w http.ResponseWriter, r *http.Request) { | |
// Respond with a 200 OK status and "OK" message | |
w.WriteHeader(http.StatusOK) | |
fmt.Fprintf(w, "OK") | |
}) | |
server := NewOneShotServer(conn, mux) | |
server.Serve(ctx) //blocks untill request is fullfilled with either ok or error | |
// here i can do anything with my programm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment