2013-03-24 06:00:17 +00: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 16:03:45 +00:00
|
|
|
"fmt"
|
2013-06-08 08:27:44 +00:00
|
|
|
|
|
|
|
"code.google.com/p/goprotobuf/proto"
|
2013-03-24 06:00:17 +00:00
|
|
|
"github.com/jmhodges/levigo"
|
|
|
|
)
|
|
|
|
|
|
|
|
type batch struct {
|
|
|
|
batch *levigo.WriteBatch
|
2013-04-05 16:03:45 +00:00
|
|
|
drops uint32
|
|
|
|
puts uint32
|
2013-03-24 06:00:17 +00:00
|
|
|
}
|
|
|
|
|
2013-04-05 16:03:45 +00:00
|
|
|
func NewBatch() *batch {
|
|
|
|
return &batch{
|
2013-03-24 06:00:17 +00:00
|
|
|
batch: levigo.NewWriteBatch(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-08 08:27:44 +00:00
|
|
|
func (b *batch) Drop(key proto.Message) {
|
2013-08-29 13:15:22 +00:00
|
|
|
buf, _ := buffers.Get()
|
|
|
|
defer buffers.Give(buf)
|
|
|
|
|
|
|
|
if err := buf.Marshal(key); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
b.batch.Delete(buf.Bytes())
|
2013-03-24 06:00:17 +00:00
|
|
|
|
2013-06-08 08:27:44 +00:00
|
|
|
b.drops++
|
2013-03-24 06:00:17 +00:00
|
|
|
}
|
|
|
|
|
2013-06-08 08:27:44 +00:00
|
|
|
func (b *batch) Put(key, value proto.Message) {
|
2013-08-29 13:15:22 +00:00
|
|
|
keyBuf, _ := buffers.Get()
|
|
|
|
defer buffers.Give(keyBuf)
|
|
|
|
|
|
|
|
if err := keyBuf.Marshal(key); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
valBuf, _ := buffers.Get()
|
|
|
|
defer buffers.Give(valBuf)
|
|
|
|
|
|
|
|
if err := valBuf.Marshal(value); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
b.batch.Put(keyBuf.Bytes(), valBuf.Bytes())
|
2013-06-08 08:27:44 +00:00
|
|
|
|
2013-04-05 16:03:45 +00:00
|
|
|
b.puts++
|
2013-03-24 06:00:17 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-06-08 08:27:44 +00:00
|
|
|
func (b *batch) Close() {
|
2013-03-24 06:00:17 +00:00
|
|
|
b.batch.Close()
|
|
|
|
}
|
2013-04-05 16:03:45 +00:00
|
|
|
|
2013-06-08 08:27:44 +00:00
|
|
|
func (b *batch) String() string {
|
2013-04-05 16:03:45 +00:00
|
|
|
return fmt.Sprintf("LevelDB batch with %d puts and %d drops.", b.puts, b.drops)
|
|
|
|
}
|