forked from jaegertracing/jaeger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gocql.go
110 lines (88 loc) · 3 KB
/
gocql.go
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
// Copyright (c) 2017 Uber Technologies, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package gocql
import (
"github.com/gocql/gocql"
"github.com/jaegertracing/jaeger/pkg/cassandra"
)
// CQLSession is a wrapper around gocql.Session.
type CQLSession struct {
session *gocql.Session
}
// WrapCQLSession creates a Session out of *gocql.Session.
func WrapCQLSession(session *gocql.Session) CQLSession {
return CQLSession{session: session}
}
// Query delegates to gocql.Session#Query and wraps the result as Query.
func (s CQLSession) Query(stmt string, values ...interface{}) cassandra.Query {
return WrapCQLQuery(s.session.Query(stmt, values...))
}
// Close delegates to gocql.Session#Close.
func (s CQLSession) Close() {
s.session.Close()
}
// ---
// CQLQuery is a wrapper around gocql.Query.
type CQLQuery struct {
query *gocql.Query
}
// WrapCQLQuery creates a Query out of *gocql.Query.
func WrapCQLQuery(query *gocql.Query) CQLQuery {
return CQLQuery{query: query}
}
// Exec delegates to gocql.Query#Exec.
func (q CQLQuery) Exec() error {
return q.query.Exec()
}
// ScanCAS delegates to gocql.Query#ScanCAS.
func (q CQLQuery) ScanCAS(dest ...interface{}) (bool, error) {
return q.query.ScanCAS(dest...)
}
// Iter delegates to gocql.Query#Iter and wraps the result as Iterator.
func (q CQLQuery) Iter() cassandra.Iterator {
return WrapCQLIterator(q.query.Iter())
}
// Bind delegates to gocql.Query#Bind and wraps the result as Query.
func (q CQLQuery) Bind(v ...interface{}) cassandra.Query {
return WrapCQLQuery(q.query.Bind(v...))
}
// Consistency delegates to gocql.Query#Consistency and wraps the result as Query.
func (q CQLQuery) Consistency(level cassandra.Consistency) cassandra.Query {
return WrapCQLQuery(q.query.Consistency(gocql.Consistency(level)))
}
// String returns string representation of this query.
func (q CQLQuery) String() string {
return q.query.String()
}
// PageSize delegates to gocql.Query#PageSize and wraps the result as Query.
func (q CQLQuery) PageSize(n int) cassandra.Query {
return WrapCQLQuery(q.query.PageSize(n))
}
// ---
// CQLIterator is a wrapper around gocql.Iter.
type CQLIterator struct {
iter *gocql.Iter
}
// WrapCQLIterator creates an Iterator out of *gocql.Iter.
func WrapCQLIterator(iter *gocql.Iter) CQLIterator {
return CQLIterator{iter: iter}
}
// Scan delegates to gocql.Iter#Scan.
func (i CQLIterator) Scan(dest ...interface{}) bool {
return i.iter.Scan(dest...)
}
// Close delegates to gocql.Iter#Close.
func (i CQLIterator) Close() error {
return i.iter.Close()
}