mattermost-community-enterp.../public/shared/driver/conn.go
Claude ec1f89217a Merge: Complete Mattermost Server with Community Enterprise
Full Mattermost server source with integrated Community Enterprise features.
Includes vendor directory for offline/air-gapped builds.

Structure:
- enterprise-impl/: Enterprise feature implementations
- enterprise-community/: Init files that register implementations
- enterprise/: Bridge imports (community_imports.go)
- vendor/: All dependencies for offline builds

Build (online):
  go build ./cmd/mattermost

Build (offline/air-gapped):
  go build -mod=vendor ./cmd/mattermost

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-17 23:59:07 +09:00

118 lines
2.2 KiB
Go

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package driver
import (
"context"
"database/sql/driver"
"github.com/mattermost/mattermost/server/public/plugin"
)
// Conn is a DB driver conn implementation
// which executes queries using the Plugin DB API.
type Conn struct {
id string
api plugin.Driver
}
// driverConn is a super-interface combining the basic
// driver.Conn interface with some new additions later.
type driverConn interface {
driver.Conn
driver.ConnBeginTx
driver.ConnPrepareContext
driver.ExecerContext
driver.QueryerContext
driver.Pinger
}
var (
// Compile-time check to ensure Conn implements the interface.
_ driverConn = &Conn{}
)
func (c *Conn) Begin() (tx driver.Tx, err error) {
txID, err := c.api.Tx(c.id, driver.TxOptions{})
if err != nil {
return nil, err
}
t := &wrapperTx{
id: txID,
api: c.api,
}
return t, nil
}
func (c *Conn) BeginTx(_ context.Context, opts driver.TxOptions) (driver.Tx, error) {
txID, err := c.api.Tx(c.id, opts)
if err != nil {
return nil, err
}
t := &wrapperTx{
id: txID,
api: c.api,
}
return t, nil
}
func (c *Conn) Prepare(q string) (driver.Stmt, error) {
stID, err := c.api.Stmt(c.id, q)
if err != nil {
return nil, err
}
st := &wrapperStmt{
id: stID,
api: c.api,
}
return st, nil
}
func (c *Conn) PrepareContext(_ context.Context, q string) (driver.Stmt, error) {
stID, err := c.api.Stmt(c.id, q)
if err != nil {
return nil, err
}
st := &wrapperStmt{
id: stID,
api: c.api,
}
return st, nil
}
func (c *Conn) ExecContext(_ context.Context, q string, args []driver.NamedValue) (driver.Result, error) {
resultContainer, err := c.api.ConnExec(c.id, q, args)
if err != nil {
return nil, err
}
res := &wrapperResult{
res: resultContainer,
}
return res, nil
}
func (c *Conn) QueryContext(_ context.Context, q string, args []driver.NamedValue) (driver.Rows, error) {
rowsID, err := c.api.ConnQuery(c.id, q, args)
if err != nil {
return nil, err
}
rows := &wrapperRows{
id: rowsID,
api: c.api,
}
return rows, nil
}
func (c *Conn) Ping(_ context.Context) error {
return c.api.ConnPing(c.id)
}
func (c *Conn) Close() error {
return c.api.ConnClose(c.id)
}