Skip to content

Commit

Permalink
GODRIVER-2824 Remove non-int64 Exported Connection IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
prestonvasquez committed Nov 6, 2023
1 parent 848b7c2 commit 2678e1b
Show file tree
Hide file tree
Showing 15 changed files with 46 additions and 53 deletions.
6 changes: 3 additions & 3 deletions event/monitoring.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ type CommandStartedEvent struct {
ConnectionID string
// ServerConnectionID64 contains the connection ID from the server of the operation. If the server does not
// return this value (e.g. on MDB < 4.2), it is unset.
ServerConnectionID64 *int64
ServerConnectionID *int64
// ServiceID contains the ID of the server to which the command was sent if it is running behind a load balancer.
// Otherwise, it is unset.
ServiceID *primitive.ObjectID
Expand All @@ -40,7 +40,7 @@ type CommandFinishedEvent struct {
ConnectionID string
// ServerConnectionID64 contains the connection ID from the server of the operation. If the server does not
// return this value (e.g. on MDB < 4.2), it is unset.
ServerConnectionID64 *int64
ServerConnectionID *int64
// ServiceID contains the ID of the server to which the command was sent if it is running behind a load balancer.
// Otherwise, it is unset.
ServiceID *primitive.ObjectID
Expand Down Expand Up @@ -101,7 +101,7 @@ type MonitorPoolOptions struct {
type PoolEvent struct {
Type string `json:"type"`
Address string `json:"address"`
ConnectionID uint64 `json:"connectionId"`
ConnectionID int64 `json:"connectionId"`
PoolOptions *MonitorPoolOptions `json:"options"`
Reason string `json:"reason"`
// ServiceID is only set if the Type is PoolCleared and the server is deployed behind a load balancer. This field
Expand Down
5 changes: 2 additions & 3 deletions internal/logger/component.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,7 @@ func EnvHasComponentVariables() bool {
// Command is a struct defining common fields that must be included in all
// commands.
type Command struct {
// TODO(GODRIVER-2824): change the DriverConnectionID type to int64.
DriverConnectionID uint64 // Driver's ID for the connection
DriverConnectionID int64 // Driver's ID for the connection
Name string // Command name
DatabaseName string // Database name
Message string // Message associated with the command
Expand Down Expand Up @@ -226,7 +225,7 @@ func SerializeConnection(conn Connection, extraKeysAndValues ...interface{}) Key

// Server contains data that all server messages MAY contain.
type Server struct {
DriverConnectionID uint64 // Driver's ID for the connection
DriverConnectionID int64 // Driver's ID for the connection
TopologyID primitive.ObjectID // Driver's unique ID for this topology
Message string // Message associated with the topology
ServerConnectionID *int64 // Server's ID for the connection
Expand Down
8 changes: 4 additions & 4 deletions internal/logger/component_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func TestSerializeCommand(t *testing.T) {
want: KeyValues{
KeyCommandName, "",
KeyDatabaseName, "",
KeyDriverConnectionID, uint64(0),
KeyDriverConnectionID, int64(0),
KeyMessage, "",
KeyOperationID, int32(0),
KeyRequestID, int64(0),
Expand All @@ -63,7 +63,7 @@ func TestSerializeCommand(t *testing.T) {
want: KeyValues{
KeyCommandName, "foo",
KeyDatabaseName, "db",
KeyDriverConnectionID, uint64(1),
KeyDriverConnectionID, int64(1),
KeyMessage, "bar",
KeyOperationID, int32(2),
KeyRequestID, int64(3),
Expand Down Expand Up @@ -145,7 +145,7 @@ func TestSerializeServer(t *testing.T) {
{
name: "empty",
want: KeyValues{
KeyDriverConnectionID, uint64(0),
KeyDriverConnectionID, int64(0),
KeyMessage, "",
KeyServerHost, "",
KeyTopologyID, primitive.ObjectID{}.Hex(),
Expand All @@ -162,7 +162,7 @@ func TestSerializeServer(t *testing.T) {
ServerPort: "27017",
},
want: KeyValues{
KeyDriverConnectionID, uint64(1),
KeyDriverConnectionID, int64(1),
KeyMessage, "foo",
KeyServerHost, "localhost",
KeyTopologyID, topologyID.Hex(),
Expand Down
3 changes: 1 addition & 2 deletions mongo/integration/mtest/opmsg_deployment.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@ func (*connection) ID() string {
}

// DriverConnectionID returns a fixed identifier for the driver pool connection.
// TODO(GODRIVER-2824): replace return type with int64.
func (*connection) DriverConnectionID() uint64 {
func (*connection) DriverConnectionID() int64 {
return 0
}

Expand Down
4 changes: 2 additions & 2 deletions mongo/integration/server_selection_prose_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ import (
"go.mongodb.org/mongo-driver/mongo/options"
)

type saturatedConnections map[uint64]bool
type saturatedConnections map[int64]bool

// saturatedHosts is used to maintain information about events with specific host+pool combinations.
type saturatedHosts map[string]saturatedConnections

func (set saturatedHosts) add(host string, connectionID uint64) {
func (set saturatedHosts) add(host string, connectionID int64) {
if set[host] == nil {
set[host] = make(saturatedConnections)
}
Expand Down
6 changes: 3 additions & 3 deletions mongo/integration/unified/event_verification.go
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ func verifyCommandEvents(ctx context.Context, client *clientEntity, expectedEven
}
}
if expected.HasServerConnectionID != nil {
if err := verifyServerConnectionID(*expected.HasServerConnectionID, actual.ServerConnectionID64); err != nil {
if err := verifyServerConnectionID(*expected.HasServerConnectionID, actual.ServerConnectionID); err != nil {
return newEventVerificationError(idx, client, "error verifying serverConnectionID: %v", err)
}
}
Expand Down Expand Up @@ -259,7 +259,7 @@ func verifyCommandEvents(ctx context.Context, client *clientEntity, expectedEven
}
}
if expected.HasServerConnectionID != nil {
if err := verifyServerConnectionID(*expected.HasServerConnectionID, actual.ServerConnectionID64); err != nil {
if err := verifyServerConnectionID(*expected.HasServerConnectionID, actual.ServerConnectionID); err != nil {
return newEventVerificationError(idx, client, "error verifying serverConnectionID: %v", err)
}
}
Expand All @@ -286,7 +286,7 @@ func verifyCommandEvents(ctx context.Context, client *clientEntity, expectedEven
}
}
if expected.HasServerConnectionID != nil {
if err := verifyServerConnectionID(*expected.HasServerConnectionID, actual.ServerConnectionID64); err != nil {
if err := verifyServerConnectionID(*expected.HasServerConnectionID, actual.ServerConnectionID); err != nil {
return newEventVerificationError(idx, client, "error verifying serverConnectionID: %v", err)
}
}
Expand Down
2 changes: 1 addition & 1 deletion x/mongo/driver/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ type Connection interface {

ID() string
ServerConnectionID() *int64
DriverConnectionID() uint64 // TODO(GODRIVER-2824): change type to int64.
DriverConnectionID() int64
Address() address.Address
Stale() bool
}
Expand Down
3 changes: 1 addition & 2 deletions x/mongo/driver/drivertest/channel_conn.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,7 @@ func (c *ChannelConn) ID() string {
}

// DriverConnectionID implements the driver.Connection interface.
// TODO(GODRIVER-2824): replace return type with int64.
func (c *ChannelConn) DriverConnectionID() uint64 {
func (c *ChannelConn) DriverConnectionID() int64 {
return 0
}

Expand Down
32 changes: 16 additions & 16 deletions x/mongo/driver/operation.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ type startedInformation struct {
cmdName string
documentSequenceIncluded bool
connID string
driverConnectionID uint64 // TODO(GODRIVER-2824): change type to int64.
driverConnectionID int64
serverConnID *int64
redacted bool
serviceID *primitive.ObjectID
Expand All @@ -110,7 +110,7 @@ type finishedInformation struct {
response bsoncore.Document
cmdErr error
connID string
driverConnectionID uint64 // TODO(GODRIVER-2824): change type to int64.
driverConnectionID int64
serverConnID *int64
redacted bool
serviceID *primitive.ObjectID
Expand Down Expand Up @@ -1933,13 +1933,13 @@ func (op Operation) publishStartedEvent(ctx context.Context, info startedInforma

if op.canPublishStartedEvent() {
started := &event.CommandStartedEvent{
Command: redactStartedInformationCmd(op, info),
DatabaseName: op.Database,
CommandName: info.cmdName,
RequestID: int64(info.requestID),
ConnectionID: info.connID,
ServerConnectionID64: info.serverConnID,
ServiceID: info.serviceID,
Command: redactStartedInformationCmd(op, info),
DatabaseName: op.Database,
CommandName: info.cmdName,
RequestID: int64(info.requestID),
ConnectionID: info.connID,
ServerConnectionID: info.serverConnID,
ServiceID: info.serviceID,
}
op.CommandMonitor.Started(ctx, started)
}
Expand Down Expand Up @@ -2012,13 +2012,13 @@ func (op Operation) publishFinishedEvent(ctx context.Context, info finishedInfor
}

finished := event.CommandFinishedEvent{
CommandName: info.cmdName,
DatabaseName: op.Database,
RequestID: int64(info.requestID),
ConnectionID: info.connID,
Duration: info.duration,
ServerConnectionID64: info.serverConnID,
ServiceID: info.serviceID,
CommandName: info.cmdName,
DatabaseName: op.Database,
RequestID: int64(info.requestID),
ConnectionID: info.connID,
Duration: info.duration,
ServerConnectionID: info.serverConnID,
ServiceID: info.serviceID,
}

if info.success() {
Expand Down
3 changes: 1 addition & 2 deletions x/mongo/driver/operation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -736,8 +736,7 @@ func (m *mockConnection) CurrentlyStreaming() bool { return m.rStreaming
func (m *mockConnection) SetStreaming(streaming bool) { m.rStreaming = streaming }
func (m *mockConnection) Stale() bool { return false }

// TODO:(GODRIVER-2824) replace return type with int64.
func (m *mockConnection) DriverConnectionID() uint64 { return 0 }
func (m *mockConnection) DriverConnectionID() int64 { return 0 }

func (m *mockConnection) WriteWireMessage(_ context.Context, wm []byte) error {
m.pWriteWM = wm
Expand Down
2 changes: 1 addition & 1 deletion x/mongo/driver/session/client_session.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ type LoadBalancedTransactionConnection interface {
Close() error
ID() string
ServerConnectionID() *int64
DriverConnectionID() uint64 // TODO(GODRIVER-2824): change type to int64.
DriverConnectionID() int64
Address() address.Address
Stale() bool

Expand Down
2 changes: 1 addition & 1 deletion x/mongo/driver/topology/CMAP_spec_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ var skippedTestDescriptions = map[string]string{
type cmapEvent struct {
EventType string `json:"type"`
Address interface{} `json:"address"`
ConnectionID uint64 `json:"connectionId"`
ConnectionID int64 `json:"connectionId"`
Options interface{} `json:"options"`
Reason string `json:"reason"`
}
Expand Down
9 changes: 3 additions & 6 deletions x/mongo/driver/topology/connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,7 @@ type connection struct {
// pool related fields
pool *pool

// TODO(GODRIVER-2824): change driverConnectionID type to int64.
driverConnectionID uint64
driverConnectionID int64
generation uint64
}

Expand Down Expand Up @@ -107,8 +106,7 @@ func newConnection(addr address.Address, opts ...ConnectionOption) *connection {
}

// DriverConnectionID returns the driver connection ID.
// TODO(GODRIVER-2824): change return type to int64.
func (c *connection) DriverConnectionID() uint64 {
func (c *connection) DriverConnectionID() int64 {
return c.driverConnectionID
}

Expand Down Expand Up @@ -802,8 +800,7 @@ func (c *Connection) unpin(reason string) error {
}

// DriverConnectionID returns the driver connection ID.
// TODO(GODRIVER-2824): change return type to int64.
func (c *Connection) DriverConnectionID() uint64 {
func (c *Connection) DriverConnectionID() int64 {
return c.connection.DriverConnectionID()
}

Expand Down
12 changes: 6 additions & 6 deletions x/mongo/driver/topology/pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ type pool struct {
// - atomic bug: https://pkg.go.dev/sync/atomic#pkg-note-BUG
// - suggested layout: https://go101.org/article/memory-layout.html

nextID uint64 // nextID is the next pool ID for a new connection.
nextID int64 // nextID is the next pool ID for a new connection.
pinnedCursorConnections uint64
pinnedTransactionConnections uint64

Expand Down Expand Up @@ -118,9 +118,9 @@ type pool struct {
// to the state of the guarded values must be made while holding the lock to prevent undefined
// behavior in the createConnections() waiting logic.
createConnectionsCond *sync.Cond
cancelBackgroundCtx context.CancelFunc // cancelBackgroundCtx is called to signal background goroutines to stop.
conns map[uint64]*connection // conns holds all currently open connections.
newConnWait wantConnQueue // newConnWait holds all wantConn requests for new connections.
cancelBackgroundCtx context.CancelFunc // cancelBackgroundCtx is called to signal background goroutines to stop.
conns map[int64]*connection // conns holds all currently open connections.
newConnWait wantConnQueue // newConnWait holds all wantConn requests for new connections.

idleMu sync.Mutex // idleMu guards idleConns, idleConnWait
idleConns []*connection // idleConns holds all idle connections.
Expand Down Expand Up @@ -219,7 +219,7 @@ func newPool(config poolConfig, connOpts ...ConnectionOption) *pool {
maintainReady: make(chan struct{}, 1),
backgroundDone: &sync.WaitGroup{},
createConnectionsCond: sync.NewCond(&sync.Mutex{}),
conns: make(map[uint64]*connection, config.MaxPoolSize),
conns: make(map[int64]*connection, config.MaxPoolSize),
idleConns: make([]*connection, 0, config.MaxPoolSize),
}
// minSize must not exceed maxSize if maxSize is not 0
Expand Down Expand Up @@ -1002,7 +1002,7 @@ func (p *pool) createConnections(ctx context.Context, wg *sync.WaitGroup) {

conn := newConnection(p.address, p.connOpts...)
conn.pool = p
conn.driverConnectionID = atomic.AddUint64(&p.nextID, 1)
conn.driverConnectionID = atomic.AddInt64(&p.nextID, 1)
p.conns[conn.driverConnectionID] = conn

return w, conn, true
Expand Down
2 changes: 1 addition & 1 deletion x/mongo/driver/topology/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ func logServerMessage(srv *Server, msg string, keysAndValues ...interface{}) {
serverPort = ""
}

var driverConnectionID uint64
var driverConnectionID int64
var serverConnectionID *int64

if srv.conn != nil {
Expand Down

0 comments on commit 2678e1b

Please sign in to comment.