2013-03-23 23:00:17 -07:00
|
|
|
// Copyright 2013 Prometheus Team
|
|
|
|
// 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 leveldb
|
|
|
|
|
|
|
|
import (
|
2013-04-05 09:03:45 -07:00
|
|
|
"fmt"
|
2013-03-23 23:00:17 -07:00
|
|
|
"github.com/jmhodges/levigo"
|
|
|
|
"github.com/prometheus/prometheus/coding"
|
|
|
|
)
|
|
|
|
|
|
|
|
type batch struct {
|
|
|
|
batch *levigo.WriteBatch
|
2013-04-05 09:03:45 -07:00
|
|
|
drops uint32
|
|
|
|
puts uint32
|
2013-03-23 23:00:17 -07:00
|
|
|
}
|
|
|
|
|
2013-04-05 09:03:45 -07:00
|
|
|
func NewBatch() *batch {
|
|
|
|
return &batch{
|
2013-03-23 23:00:17 -07:00
|
|
|
batch: levigo.NewWriteBatch(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-05 09:03:45 -07:00
|
|
|
func (b *batch) Drop(key coding.Encoder) {
|
2013-05-15 14:54:18 -07:00
|
|
|
keyEncoded := key.MustEncode()
|
2013-04-05 09:03:45 -07:00
|
|
|
b.drops++
|
2013-03-23 23:00:17 -07:00
|
|
|
|
|
|
|
b.batch.Delete(keyEncoded)
|
|
|
|
}
|
|
|
|
|
2013-04-05 09:03:45 -07:00
|
|
|
func (b *batch) Put(key, value coding.Encoder) {
|
2013-05-15 14:54:18 -07:00
|
|
|
keyEncoded := key.MustEncode()
|
|
|
|
valueEncoded := value.MustEncode()
|
2013-04-05 09:03:45 -07:00
|
|
|
b.puts++
|
2013-03-23 23:00:17 -07:00
|
|
|
|
|
|
|
b.batch.Put(keyEncoded, valueEncoded)
|
|
|
|
}
|
|
|
|
|
2013-04-01 04:22:38 -07:00
|
|
|
func (b batch) Close() {
|
2013-03-23 23:00:17 -07:00
|
|
|
b.batch.Close()
|
|
|
|
}
|
2013-04-05 09:03:45 -07:00
|
|
|
|
|
|
|
func (b batch) String() string {
|
|
|
|
return fmt.Sprintf("LevelDB batch with %d puts and %d drops.", b.puts, b.drops)
|
|
|
|
}
|