finish server/client logical
parent
c87800ed83
commit
bf4658d8f4
@ -1,48 +1,147 @@
|
||||
package nghttp2
|
||||
|
||||
/*
|
||||
#include "_nghttp2.h"
|
||||
*/
|
||||
import "C"
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"net"
|
||||
"net/http"
|
||||
"strings"
|
||||
"time"
|
||||
"unsafe"
|
||||
)
|
||||
|
||||
type stream struct {
|
||||
streamID int
|
||||
conn *Conn
|
||||
dp *dataProvider
|
||||
bp *bodyProvider
|
||||
request *http.Request
|
||||
response *http.Response
|
||||
resch chan *http.Response
|
||||
streamID int
|
||||
conn *Conn
|
||||
dp *dataProvider
|
||||
bp *bodyProvider
|
||||
request *http.Request
|
||||
response *http.Response
|
||||
resch chan *http.Response
|
||||
headersEnd bool
|
||||
streamEnd bool
|
||||
closed bool
|
||||
cdp C.nghttp2_data_provider
|
||||
}
|
||||
|
||||
var _ net.Conn = &stream{}
|
||||
|
||||
func (s *stream) Read(buf []byte) (int, error) {
|
||||
return 0, errors.New("not implement")
|
||||
if s.bp != nil {
|
||||
return s.bp.Read(buf)
|
||||
}
|
||||
return 0, errors.New("empty body")
|
||||
}
|
||||
|
||||
func (s *stream) WriteHeader(code int) {
|
||||
if s.response == nil {
|
||||
s.response = &http.Response{
|
||||
Proto: "http/2",
|
||||
ProtoMajor: 2,
|
||||
ProtoMinor: 0,
|
||||
Header: make(http.Header),
|
||||
}
|
||||
}
|
||||
if s.response.StatusCode != 0 {
|
||||
return
|
||||
}
|
||||
|
||||
s.response.StatusCode = code
|
||||
s.response.Status = http.StatusText(code)
|
||||
|
||||
nv := []C.nghttp2_nv{}
|
||||
nv = append(nv, newNV(":status", fmt.Sprintf("%d", code)))
|
||||
for k, v := range s.response.Header {
|
||||
_k := strings.ToLower(k)
|
||||
if _k == "host" || _k == "connection" || _k == "transfer-encoding" {
|
||||
continue
|
||||
}
|
||||
nv = append(nv, newNV(k, v[0]))
|
||||
}
|
||||
|
||||
s.cdp = C.nghttp2_data_provider{}
|
||||
s.dp = newDataProvider(unsafe.Pointer(&s.cdp), s.conn.lock, 0)
|
||||
s.dp.session = s.conn.session
|
||||
s.dp.streamID = s.streamID
|
||||
|
||||
s.conn.lock.Lock()
|
||||
ret := C._nghttp2_submit_response(s.conn.session, C.int(s.streamID),
|
||||
C.size_t(uintptr(unsafe.Pointer(&nv[0]))), C.size_t(len(nv)), &s.cdp)
|
||||
s.conn.lock.Unlock()
|
||||
|
||||
if int(ret) < 0 {
|
||||
panic(fmt.Sprintf("submit response error: %s", C.GoString(C.nghttp2_strerror(ret))))
|
||||
}
|
||||
}
|
||||
|
||||
func (s *stream) Header() http.Header {
|
||||
if s.response == nil {
|
||||
s.response = &http.Response{
|
||||
Proto: "http/2",
|
||||
ProtoMajor: 2,
|
||||
ProtoMinor: 0,
|
||||
Header: make(http.Header),
|
||||
}
|
||||
}
|
||||
return s.response.Header
|
||||
}
|
||||
|
||||
func (s *stream) Write(buf []byte) (int, error) {
|
||||
if s.conn.isServer {
|
||||
return 0, errors.New("not implement")
|
||||
if s.conn.isServer && s.response == nil {
|
||||
s.WriteHeader(http.StatusOK)
|
||||
}
|
||||
|
||||
if s.dp != nil {
|
||||
return s.dp.Write(buf)
|
||||
}
|
||||
return 0, errors.New("not implement")
|
||||
return 0, errors.New("empty dp")
|
||||
}
|
||||
|
||||
func (s *stream) Close() error {
|
||||
if s.closed {
|
||||
return nil
|
||||
}
|
||||
s.closed = true
|
||||
if s.dp != nil {
|
||||
s.dp.Close()
|
||||
}
|
||||
if s.bp != nil {
|
||||
s.bp.Close()
|
||||
}
|
||||
//s.conn.lock.Lock()
|
||||
//if _, ok := s.conn.streams[s.streamID]; ok {
|
||||
// delete(s.conn.streams, s.streamID)
|
||||
///}
|
||||
//s.conn.lock.Unlock()
|
||||
if s.request != nil && s.request.Method == "CONNECT" {
|
||||
//log.Println("rst stream")
|
||||
s.conn.lock.Lock()
|
||||
C.nghttp2_submit_rst_stream(s.conn.session, 0, C.int(s.streamID), 8)
|
||||
s.conn.lock.Unlock()
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (s *stream) LocalAddr() net.Addr {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (s *stream) RemoteAddr() net.Addr {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (s *stream) SetDeadline(t time.Time) error {
|
||||
return errors.New("not implement")
|
||||
}
|
||||
|
||||
func (s *stream) SetReadDeadline(t time.Time) error {
|
||||
return errors.New("not implement")
|
||||
}
|
||||
|
||||
func (s *stream) SetWriteDeadline(t time.Time) error {
|
||||
return errors.New("not implement")
|
||||
}
|
||||
|
Loading…
Reference in New Issue