Compare commits

..

3 Commits

Author SHA1 Message Date
Saksham Arya c8584677ce
Merge cd86308ad1 into e46bd52185 2024-11-22 07:44:49 +00:00
Saksham Arya cd86308ad1 add test case
fix lint
2024-11-22 13:14:41 +05:30
Saksham Arya c2e744e158 make headers thread safe
add reader lock
2024-11-22 12:43:32 +05:30
2 changed files with 9 additions and 8 deletions

View File

@ -21,7 +21,6 @@ import (
"time"
"github.com/gin-contrib/sse"
"github.com/gin-gonic/gin/binding"
"github.com/gin-gonic/gin/render"
)
@ -72,6 +71,9 @@ type Context struct {
// This mutex protects Keys map.
mu sync.RWMutex
// This mutex protects headers map
hmu sync.RWMutex
// Keys is a key/value pair exclusively for the context of each request.
Keys map[string]any
@ -984,8 +986,8 @@ func (c *Context) Status(code int) {
// It writes a header in the response.
// If value == "", this method removes the header `c.Writer.Header().Del(key)`
func (c *Context) Header(key, value string) {
c.mu.Lock()
defer c.mu.Unlock()
c.hmu.Lock()
defer c.hmu.Unlock()
if value == "" {
c.Writer.Header().Del(key)
return
@ -995,8 +997,8 @@ func (c *Context) Header(key, value string) {
// GetHeader returns value from request headers.
func (c *Context) GetHeader(key string) string {
c.mu.RLock()
defer c.mu.RUnlock()
c.hmu.RLock()
defer c.hmu.RUnlock()
return c.requestHeader(key)
}

View File

@ -27,12 +27,11 @@ import (
"time"
"github.com/gin-contrib/sse"
"github.com/gin-gonic/gin/binding"
testdata "github.com/gin-gonic/gin/testdata/protoexample"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"google.golang.org/protobuf/proto"
"github.com/gin-gonic/gin/binding"
testdata "github.com/gin-gonic/gin/testdata/protoexample"
)
var _ context.Context = (*Context)(nil)