2013-02-07 10:38:01 +00:00
|
|
|
// Copyright 2013 Prometheus Team
|
2012-11-26 19:11:34 +00:00
|
|
|
// 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.
|
|
|
|
|
2012-11-26 18:56:51 +00:00
|
|
|
package raw
|
2012-11-24 11:33:34 +00:00
|
|
|
|
2012-11-25 15:07:05 +00:00
|
|
|
import (
|
2013-06-08 08:27:44 +00:00
|
|
|
"code.google.com/p/goprotobuf/proto"
|
|
|
|
|
2013-02-06 16:05:23 +00:00
|
|
|
"github.com/prometheus/prometheus/storage"
|
2012-11-25 15:07:05 +00:00
|
|
|
)
|
|
|
|
|
2014-02-14 18:36:27 +00:00
|
|
|
// Database provides a few very basic methods to manage a database and inquire
|
|
|
|
// its state.
|
|
|
|
type Database interface {
|
|
|
|
// Close reaps all of the underlying system resources associated with
|
|
|
|
// this database. For databases that don't need that kind of clean-up,
|
|
|
|
// it is implemented as a no-op (so that clients don't need to reason
|
|
|
|
// and always call Close 'just in case').
|
|
|
|
Close() error
|
|
|
|
// State reports the state of the database as a DatabaseState object.
|
|
|
|
State() *DatabaseState
|
|
|
|
// Size returns the total size of the database in bytes. The number may
|
|
|
|
// be an approximation, depending on the underlying database type.
|
|
|
|
Size() (uint64, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ForEacher is implemented by databases that can be iterated through.
|
2013-08-03 16:46:02 +00:00
|
|
|
type ForEacher interface {
|
2014-02-14 18:36:27 +00:00
|
|
|
// ForEach is responsible for iterating through all records in the
|
|
|
|
// database until one of the following conditions are met:
|
2013-08-03 16:46:02 +00:00
|
|
|
//
|
|
|
|
// 1.) A system anomaly in the database scan.
|
|
|
|
// 2.) The last record in the database is reached.
|
|
|
|
// 3.) A FilterResult of STOP is emitted by the Filter.
|
|
|
|
//
|
|
|
|
// Decoding errors for an entity cause that entity to be skipped.
|
|
|
|
ForEach(storage.RecordDecoder, storage.RecordFilter, storage.RecordOperator) (scannedEntireCorpus bool, err error)
|
|
|
|
}
|
|
|
|
|
2014-02-14 18:36:27 +00:00
|
|
|
// Pruner is implemented by a database that can be pruned in some way.
|
|
|
|
type Pruner interface {
|
|
|
|
Prune()
|
|
|
|
}
|
|
|
|
|
2013-03-24 06:00:17 +00:00
|
|
|
// Persistence models a key-value store for bytes that supports various
|
|
|
|
// additional operations.
|
2012-11-24 11:33:34 +00:00
|
|
|
type Persistence interface {
|
2014-02-14 18:36:27 +00:00
|
|
|
Database
|
2013-08-03 16:46:02 +00:00
|
|
|
ForEacher
|
|
|
|
|
2013-03-24 06:00:17 +00:00
|
|
|
// Has informs the user whether a given key exists in the database.
|
2013-06-08 08:27:44 +00:00
|
|
|
Has(key proto.Message) (bool, error)
|
2014-02-14 18:36:27 +00:00
|
|
|
// Get populates 'value' with the value of 'key', if present, in which
|
|
|
|
// case 'present' is returned as true.
|
2013-06-08 08:27:44 +00:00
|
|
|
Get(key, value proto.Message) (present bool, err error)
|
2013-03-24 06:00:17 +00:00
|
|
|
// Drop removes the key from the database.
|
2013-06-08 08:27:44 +00:00
|
|
|
Drop(key proto.Message) error
|
2013-03-24 06:00:17 +00:00
|
|
|
// Put sets the key to a given value.
|
2013-06-08 08:27:44 +00:00
|
|
|
Put(key, value proto.Message) error
|
2013-03-24 06:00:17 +00:00
|
|
|
// Commit applies the Batch operations to the database.
|
|
|
|
Commit(Batch) error
|
2012-11-24 11:33:34 +00:00
|
|
|
}
|
2013-03-24 06:00:17 +00:00
|
|
|
|
|
|
|
// Batch models a pool of mutations for the database that can be committed
|
|
|
|
// en masse. The interface implies no protocol around the atomicity of
|
|
|
|
// effectuation.
|
|
|
|
type Batch interface {
|
2014-02-14 18:36:27 +00:00
|
|
|
// Close reaps all of the underlying system resources associated with
|
|
|
|
// this batch mutation.
|
2013-04-01 11:22:38 +00:00
|
|
|
Close()
|
2013-03-24 06:00:17 +00:00
|
|
|
// Put follows the same protocol as Persistence.Put.
|
2013-06-08 08:27:44 +00:00
|
|
|
Put(key, value proto.Message)
|
2013-03-24 06:00:17 +00:00
|
|
|
// Drop follows the same protocol as Persistence.Drop.
|
2013-06-08 08:27:44 +00:00
|
|
|
Drop(key proto.Message)
|
2013-03-24 06:00:17 +00:00
|
|
|
}
|