lisette-stdlib 0.1.10

Little language inspired by Rust that compiles to Go
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
// Generated by Lisette bindgen
// Source: database/sql/driver (Go stdlib)
// Go: 1.25.5
// Lisette: 0.1.9

import "go:context"
import "go:reflect"

/// IsScanValue is equivalent to [IsValue].
/// It exists for compatibility.
pub fn IsScanValue(v: Unknown) -> bool

/// IsValue reports whether v is a valid [Value] parameter type.
pub fn IsValue(v: Unknown) -> bool

/// ColumnConverter may be optionally implemented by [Stmt] if the
/// statement is aware of its own columns' types and can convert from
/// any type to a driver [Value].
/// 
/// Deprecated: Drivers should implement [NamedValueChecker].
pub interface ColumnConverter {
  fn ColumnConverter(idx: int) -> ValueConverter
}

/// Conn is a connection to a database. It is not used concurrently
/// by multiple goroutines.
/// 
/// Conn is assumed to be stateful.
pub interface Conn {
  fn Begin() -> Result<Tx, error>
  fn Close() -> Result<(), error>
  fn Prepare(query: string) -> Result<Stmt, error>
}

/// ConnBeginTx enhances the [Conn] interface with context and [TxOptions].
pub interface ConnBeginTx {
  fn BeginTx(ctx: context.Context, opts: TxOptions) -> Result<Tx, error>
}

/// ConnPrepareContext enhances the [Conn] interface with context.
pub interface ConnPrepareContext {
  fn PrepareContext(ctx: context.Context, query: string) -> Result<Stmt, error>
}

/// A Connector represents a driver in a fixed configuration
/// and can create any number of equivalent Conns for use
/// by multiple goroutines.
/// 
/// A Connector can be passed to [database/sql.OpenDB], to allow drivers
/// to implement their own [database/sql.DB] constructors, or returned by
/// [DriverContext]'s OpenConnector method, to allow drivers
/// access to context and to avoid repeated parsing of driver
/// configuration.
/// 
/// If a Connector implements [io.Closer], the [database/sql.DB.Close]
/// method will call the Close method and return error (if any).
pub interface Connector {
  fn Connect(arg0: context.Context) -> Result<Conn, error>
  fn Driver() -> Driver
}

/// Driver is the interface that must be implemented by a database
/// driver.
/// 
/// Database drivers may implement [DriverContext] for access
/// to contexts and to parse the name only once for a pool of connections,
/// instead of once per connection.
pub interface Driver {
  fn Open(name: string) -> Result<Conn, error>
}

/// If a [Driver] implements DriverContext, then [database/sql.DB] will call
/// OpenConnector to obtain a [Connector] and then invoke
/// that [Connector]'s Connect method to obtain each needed connection,
/// instead of invoking the [Driver]'s Open method for each connection.
/// The two-step sequence allows drivers to parse the name just once
/// and also provides access to per-[Conn] contexts.
pub interface DriverContext {
  fn OpenConnector(name: string) -> Result<Connector, error>
}

/// Execer is an optional interface that may be implemented by a [Conn].
/// 
/// If a [Conn] implements neither [ExecerContext] nor [Execer],
/// the [database/sql.DB.Exec] will first prepare a query, execute the statement,
/// and then close the statement.
/// 
/// Exec may return [ErrSkip].
/// 
/// Deprecated: Drivers should implement [ExecerContext] instead.
pub interface Execer {
  fn Exec(query: string, args: Slice<Value>) -> Result<Result, error>
}

/// ExecerContext is an optional interface that may be implemented by a [Conn].
/// 
/// If a [Conn] does not implement [ExecerContext], the [database/sql.DB.Exec]
/// will fall back to [Execer]; if the Conn does not implement Execer either,
/// [database/sql.DB.Exec] will first prepare a query, execute the statement, and then
/// close the statement.
/// 
/// ExecContext may return [ErrSkip].
/// 
/// ExecContext must honor the context timeout and return when the context is canceled.
pub interface ExecerContext {
  fn ExecContext(ctx: context.Context, query: string, args: Slice<NamedValue>) -> Result<Result, error>
}

/// IsolationLevel is the transaction isolation level stored in [TxOptions].
/// 
/// This type should be considered identical to [database/sql.IsolationLevel] along
/// with any values defined on it.
pub struct IsolationLevel(int)

/// NamedValue holds both the value name and value.
pub struct NamedValue {
  pub Name: string,
  pub Ordinal: int,
  pub Value: Value,
}

/// NamedValueChecker may be optionally implemented by [Conn] or [Stmt]. It provides
/// the driver more control to handle Go and database types beyond the default
/// [Value] types allowed.
/// 
/// The [database/sql] package checks for value checkers in the following order,
/// stopping at the first found match: Stmt.NamedValueChecker, Conn.NamedValueChecker,
/// Stmt.ColumnConverter, [DefaultParameterConverter].
/// 
/// If CheckNamedValue returns [ErrRemoveArgument], the [NamedValue] will not be included in
/// the final query arguments. This may be used to pass special options to
/// the query itself.
/// 
/// If [ErrSkip] is returned the column converter error checking
/// path is used for the argument. Drivers may wish to return [ErrSkip] after
/// they have exhausted their own special cases.
pub interface NamedValueChecker {
  fn CheckNamedValue(arg0: Ref<NamedValue>) -> Result<(), error>
}

/// NotNull is a type that implements [ValueConverter] by disallowing nil
/// values but otherwise delegating to another [ValueConverter].
pub struct NotNull {
  pub Converter: Option<ValueConverter>,
}

/// Null is a type that implements [ValueConverter] by allowing nil
/// values but otherwise delegating to another [ValueConverter].
pub struct Null {
  pub Converter: Option<ValueConverter>,
}

/// Pinger is an optional interface that may be implemented by a [Conn].
/// 
/// If a [Conn] does not implement Pinger, the [database/sql.DB.Ping] and
/// [database/sql.DB.PingContext] will check if there is at least one [Conn] available.
/// 
/// If Conn.Ping returns [ErrBadConn], [database/sql.DB.Ping] and [database/sql.DB.PingContext] will remove
/// the [Conn] from pool.
pub interface Pinger {
  fn Ping(ctx: context.Context) -> Result<(), error>
}

/// Queryer is an optional interface that may be implemented by a [Conn].
/// 
/// If a [Conn] implements neither [QueryerContext] nor [Queryer],
/// the [database/sql.DB.Query] will first prepare a query, execute the statement,
/// and then close the statement.
/// 
/// Query may return [ErrSkip].
/// 
/// Deprecated: Drivers should implement [QueryerContext] instead.
pub interface Queryer {
  fn Query(query: string, args: Slice<Value>) -> Result<Rows, error>
}

/// QueryerContext is an optional interface that may be implemented by a [Conn].
/// 
/// If a [Conn] does not implement QueryerContext, the [database/sql.DB.Query]
/// will fall back to [Queryer]; if the [Conn] does not implement [Queryer] either,
/// [database/sql.DB.Query] will first prepare a query, execute the statement, and then
/// close the statement.
/// 
/// QueryContext may return [ErrSkip].
/// 
/// QueryContext must honor the context timeout and return when the context is canceled.
pub interface QueryerContext {
  fn QueryContext(ctx: context.Context, query: string, args: Slice<NamedValue>) -> Result<Rows, error>
}

/// Result is the result of a query execution.
pub interface Result {
  fn LastInsertId() -> Result<int64, error>
  fn RowsAffected() -> Result<int64, error>
}

/// Rows is an iterator over an executed query's results.
pub interface Rows {
  fn Close() -> Result<(), error>
  fn Columns() -> Slice<string>
  fn Next(mut dest: Slice<Value>) -> Result<(), error>
}

/// RowsAffected implements [Result] for an INSERT or UPDATE operation
/// which mutates a number of rows.
pub struct RowsAffected(int64)

/// RowsColumnTypeDatabaseTypeName may be implemented by [Rows]. It should return the
/// database system type name without the length. Type names should be uppercase.
/// Examples of returned types: "VARCHAR", "NVARCHAR", "VARCHAR2", "CHAR", "TEXT",
/// "DECIMAL", "SMALLINT", "INT", "BIGINT", "BOOL", "[]BIGINT", "JSONB", "XML",
/// "TIMESTAMP".
pub interface RowsColumnTypeDatabaseTypeName {
  fn Close() -> Result<(), error>
  fn ColumnTypeDatabaseTypeName(index: int) -> string
  fn Columns() -> Slice<string>
  fn Next(mut dest: Slice<Value>) -> Result<(), error>
}

/// RowsColumnTypeLength may be implemented by [Rows]. It should return the length
/// of the column type if the column is a variable length type. If the column is
/// not a variable length type ok should return false.
/// If length is not limited other than system limits, it should return [math.MaxInt64].
/// The following are examples of returned values for various types:
/// 
/// 	TEXT          (math.MaxInt64, true)
/// 	varchar(10)   (10, true)
/// 	nvarchar(10)  (10, true)
/// 	decimal       (0, false)
/// 	int           (0, false)
/// 	bytea(30)     (30, true)
pub interface RowsColumnTypeLength {
  fn Close() -> Result<(), error>
  fn ColumnTypeLength(index: int) -> Option<int64>
  fn Columns() -> Slice<string>
  fn Next(mut dest: Slice<Value>) -> Result<(), error>
}

/// RowsColumnTypeNullable may be implemented by [Rows]. The nullable value should
/// be true if it is known the column may be null, or false if the column is known
/// to be not nullable.
/// If the column nullability is unknown, ok should be false.
pub interface RowsColumnTypeNullable {
  fn Close() -> Result<(), error>
  fn ColumnTypeNullable(index: int) -> Option<bool>
  fn Columns() -> Slice<string>
  fn Next(mut dest: Slice<Value>) -> Result<(), error>
}

/// RowsColumnTypePrecisionScale may be implemented by [Rows]. It should return
/// the precision and scale for decimal types. If not applicable, ok should be false.
/// The following are examples of returned values for various types:
/// 
/// 	decimal(38, 4)    (38, 4, true)
/// 	int               (0, 0, false)
/// 	decimal           (math.MaxInt64, math.MaxInt64, true)
pub interface RowsColumnTypePrecisionScale {
  fn Close() -> Result<(), error>
  fn ColumnTypePrecisionScale(index: int) -> Option<(int64, int64)>
  fn Columns() -> Slice<string>
  fn Next(mut dest: Slice<Value>) -> Result<(), error>
}

/// RowsColumnTypeScanType may be implemented by [Rows]. It should return
/// the value type that can be used to scan types into. For example, the database
/// column type "bigint" this should return "[reflect.TypeOf](int64(0))".
pub interface RowsColumnTypeScanType {
  fn Close() -> Result<(), error>
  fn ColumnTypeScanType(index: int) -> reflect.Type
  fn Columns() -> Slice<string>
  fn Next(mut dest: Slice<Value>) -> Result<(), error>
}

/// RowsNextResultSet extends the [Rows] interface by providing a way to signal
/// the driver to advance to the next result set.
pub interface RowsNextResultSet {
  fn Close() -> Result<(), error>
  fn Columns() -> Slice<string>
  fn HasNextResultSet() -> bool
  fn Next(mut dest: Slice<Value>) -> Result<(), error>
  fn NextResultSet() -> Result<(), error>
}

/// SessionResetter may be implemented by [Conn] to allow drivers to reset the
/// session state associated with the connection and to signal a bad connection.
pub interface SessionResetter {
  fn ResetSession(ctx: context.Context) -> Result<(), error>
}

/// Stmt is a prepared statement. It is bound to a [Conn] and not
/// used by multiple goroutines concurrently.
pub interface Stmt {
  fn Close() -> Result<(), error>
  fn Exec(args: Slice<Value>) -> Result<Result, error>
  fn NumInput() -> int
  fn Query(args: Slice<Value>) -> Result<Rows, error>
}

/// StmtExecContext enhances the [Stmt] interface by providing Exec with context.
pub interface StmtExecContext {
  fn ExecContext(ctx: context.Context, args: Slice<NamedValue>) -> Result<Result, error>
}

/// StmtQueryContext enhances the [Stmt] interface by providing Query with context.
pub interface StmtQueryContext {
  fn QueryContext(ctx: context.Context, args: Slice<NamedValue>) -> Result<Rows, error>
}

/// Tx is a transaction.
pub interface Tx {
  fn Commit() -> Result<(), error>
  fn Rollback() -> Result<(), error>
}

/// TxOptions holds the transaction options.
/// 
/// This type should be considered identical to [database/sql.TxOptions].
pub struct TxOptions {
  pub Isolation: IsolationLevel,
  pub ReadOnly: bool,
}

/// Validator may be implemented by [Conn] to allow drivers to
/// signal if a connection is valid or if it should be discarded.
/// 
/// If implemented, drivers may return the underlying error from queries,
/// even if the connection should be discarded by the connection pool.
pub interface Validator {
  fn IsValid() -> bool
}

/// Value is a value that drivers must be able to handle.
/// It is either nil, a type handled by a database driver's [NamedValueChecker]
/// interface, or an instance of one of these types:
/// 
/// 	int64
/// 	float64
/// 	bool
/// 	[]byte
/// 	string
/// 	time.Time
/// 
/// If the driver supports cursors, a returned Value may also implement the [Rows] interface
/// in this package. This is used, for example, when a user selects a cursor
/// such as "select cursor(select * from my_table) from dual". If the [Rows]
/// from the select is closed, the cursor [Rows] will also be closed.
pub struct Value(Unknown)

/// ValueConverter is the interface providing the ConvertValue method.
/// 
/// Various implementations of ValueConverter are provided by the
/// driver package to provide consistent implementations of conversions
/// between drivers. The ValueConverters have several uses:
/// 
///   - converting from the [Value] types as provided by the sql package
///     into a database table's specific column type and making sure it
///     fits, such as making sure a particular int64 fits in a
///     table's uint16 column.
/// 
///   - converting a value as given from the database into one of the
///     driver [Value] types.
/// 
///   - by the [database/sql] package, for converting from a driver's [Value] type
///     to a user's type in a scan.
pub interface ValueConverter {
  fn ConvertValue(v: Unknown) -> Result<Value, error>
}

/// Valuer is the interface providing the Value method.
/// 
/// Errors returned by the [Value] method are wrapped by the database/sql package.
/// This allows callers to use [errors.Is] for precise error handling after operations
/// like [database/sql.Query], [database/sql.Exec], or [database/sql.QueryRow].
/// 
/// Types implementing Valuer interface are able to convert
/// themselves to a driver [Value].
pub interface Valuer {
  fn Value() -> Result<Value, error>
}

pub var Bool: ()

pub var DefaultParameterConverter: ()

/// ErrBadConn should be returned by a driver to signal to the [database/sql]
/// package that a driver.[Conn] is in a bad state (such as the server
/// having earlier closed the connection) and the [database/sql] package should
/// retry on a new connection.
/// 
/// To prevent duplicate operations, ErrBadConn should NOT be returned
/// if there's a possibility that the database server might have
/// performed the operation. Even if the server sends back an error,
/// you shouldn't return ErrBadConn.
/// 
/// Errors will be checked using [errors.Is]. An error may
/// wrap ErrBadConn or implement the Is(error) bool method.
pub var ErrBadConn: error

/// ErrRemoveArgument may be returned from [NamedValueChecker] to instruct the
/// [database/sql] package to not pass the argument to the driver query interface.
/// Return when accepting query specific options or structures that aren't
/// SQL query arguments.
pub var ErrRemoveArgument: error

/// ErrSkip may be returned by some optional interfaces' methods to
/// indicate at runtime that the fast path is unavailable and the sql
/// package should continue as if the optional interface was not
/// implemented. ErrSkip is only supported where explicitly
/// documented.
pub var ErrSkip: error

pub var Int32: ()

pub var ResultNoRows: ()

pub var String: ()

impl NotNull {
  fn ConvertValue(self, v: Unknown) -> Result<Value, error>
}

impl Null {
  fn ConvertValue(self, v: Unknown) -> Result<Value, error>
}

impl RowsAffected {
  fn LastInsertId(self) -> Result<int64, error>

  fn RowsAffected(self) -> Result<int64, error>
}