blob: 510728381b73e775cc79da173c53f6f42fe41eea [file]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 iotdb_go
import (
"errors"
"sync"
"github.com/apache/iotdb-client-go/v2/client"
"github.com/apache/iotdb-client-go/v2/database/column"
)
type rows struct {
set *client.SessionDataSet
columns []column.Interface
closeFn func() error
closeOnce sync.Once
closeErr error
// release returns the underlying session to the pool. It must run exactly
// once, when the result set is closed — not when query() returns — because
// set keeps using the session's RPC client/session id for FetchResultsV2
// and CloseOperation. Returning it early would let another goroutine borrow
// the same session and use the transport concurrently while rows are live.
release func()
}
func (r *rows) Next() (bool, error) {
if r.set == nil {
return false, errors.New("rows is nil")
}
return r.set.Next()
}
func (r *rows) Close() error {
r.closeOnce.Do(func() {
if r.closeFn != nil {
r.closeErr = r.closeFn()
} else if r.set != nil {
r.closeErr = r.set.Close()
}
if r.release != nil {
r.release()
r.release = nil
}
r.set = nil
r.closeFn = nil
})
return r.closeErr
}