Skip to content

Commit

Permalink
Log.
Browse files Browse the repository at this point in the history
  • Loading branch information
ncruces committed Nov 6, 2024
1 parent af473c7 commit 23737a6
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
10 changes: 10 additions & 0 deletions config.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package sqlite3

import (
"context"
"fmt"
"strconv"

"github.com/tetratelabs/wazero/api"
Expand Down Expand Up @@ -70,6 +71,15 @@ func logCallback(ctx context.Context, mod api.Module, _, iCode, zMsg uint32) {
}
}

// Log writes a message into the error log established by [Conn.ConfigLog].
//
// https://sqlite.org/c3ref/log.html
func (c *Conn) Log(code ExtendedErrorCode, format string, a ...any) {
if c.log != nil {
c.log(code, fmt.Sprintf(format, a...))
}
}

// FileControl allows low-level control of database files.
// Only a subset of opcodes are supported.
//
Expand Down
10 changes: 10 additions & 0 deletions error.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,11 @@ func (e ErrorCode) Temporary() bool {
return e == BUSY
}

// ExtendedCode returns the extended error code for this error.
func (e ErrorCode) ExtendedCode() ExtendedErrorCode {
return ExtendedErrorCode(e)
}

// Error implements the error interface.
func (e ExtendedErrorCode) Error() string {
return util.ErrorCodeString(uint32(e))
Expand Down Expand Up @@ -136,6 +141,11 @@ func (e ExtendedErrorCode) Timeout() bool {
return e == BUSY_TIMEOUT
}

// Code returns the primary error code for this error.
func (e ExtendedErrorCode) Code() ErrorCode {
return ErrorCode(e)
}

func errorCode(err error, def ErrorCode) (msg string, code uint32) {
switch code := err.(type) {
case nil:
Expand Down
8 changes: 7 additions & 1 deletion tests/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,15 @@ func TestConn_ConfigLog(t *testing.T) {

db.Prepare(`SELECT * FRM sqlite_schema`)

if code != sqlite3.ExtendedErrorCode(sqlite3.ERROR) {
if code != sqlite3.ERROR.ExtendedCode() {
t.Error("want sqlite3.ERROR")
}

db.Log(sqlite3.NOTICE.ExtendedCode(), "")

if code.Code() != sqlite3.NOTICE {
t.Error("want sqlite3.NOTICE")
}
}

func TestConn_FileControl(t *testing.T) {
Expand Down

0 comments on commit 23737a6

Please sign in to comment.