1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 03:25:23 +00:00
v2fly/common/session/session.go

50 lines
1.0 KiB
Go
Raw Normal View History

2018-04-03 20:34:59 +00:00
// Package session provides functions for sessions of incoming requests.
package session // import "v2ray.com/core/common/session"
2018-02-22 14:26:00 +00:00
import (
"context"
"math/rand"
"v2ray.com/core/common/errors"
2018-02-22 14:26:00 +00:00
)
2018-04-03 20:34:59 +00:00
// ID of a session.
2018-02-22 14:26:00 +00:00
type ID uint32
2018-04-03 20:34:59 +00:00
// NewID generates a new ID. The generated ID is high likely to be unique, but not cryptographically secure.
// The generated ID will never be 0.
2018-02-22 14:26:00 +00:00
func NewID() ID {
for {
id := ID(rand.Uint32())
if id != 0 {
return id
}
}
}
type sessionKey int
const (
idSessionKey sessionKey = iota
)
2018-04-03 20:34:59 +00:00
// ContextWithID returns a new context with the given ID.
2018-02-22 14:26:00 +00:00
func ContextWithID(ctx context.Context, id ID) context.Context {
return context.WithValue(ctx, idSessionKey, id)
}
2018-04-03 20:34:59 +00:00
// IDFromContext returns ID in this context, or 0 if not contained.
2018-02-22 14:26:00 +00:00
func IDFromContext(ctx context.Context) ID {
if id, ok := ctx.Value(idSessionKey).(ID); ok {
return id
}
return 0
}
func ExportIDToError(ctx context.Context) errors.ExportOption {
id := IDFromContext(ctx)
return func(h *errors.ExportOptionHolder) {
h.SessionID = uint32(id)
}
}