blob: 8fa75c04127193afa9a209a833ddd5ec62efb4aa [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
library fuchsia.stash;
using fuchsia.mem;
/// Strings over 12 kb will be tossed. This number is chosen arbitrarily, if you
/// think it should be higher just ask.
const MAX_STRING_SIZE uint64 = 12000;
const MAX_KEY_SIZE uint64 = 256;
/// ValueType encodes a type for a field in the store
type ValueType = strict enum : uint8 {
INT_VAL = 1;
FLOAT_VAL = 2;
BOOL_VAL = 3;
STRING_VAL = 4;
BYTES_VAL = 5;
};
/// ListItem is returned when a series of keys are being listed.
type ListItem = struct {
key string:MAX_KEY_SIZE;
type ValueType;
};
/// KeyValue is used when a series of keys are being read, or the default state
/// for the store is being set.
type KeyValue = resource struct {
key string:MAX_KEY_SIZE;
val Value;
};
/// Value holds a value for a given key.
type Value = strict resource union {
1: intval int64;
2: floatval float64;
3: boolval bool;
4: stringval string:MAX_STRING_SIZE;
5: bytesval fuchsia.mem.Buffer;
};
// FlushError enumerates the various ways in which flushing the stash
// to disk may fail.
type FlushError = strict enum {
// Failed to flush because the accessor is read-only.
READ_ONLY = 1;
// Failed to commit the requested operations.
COMMIT_FAILED = 2;
};
/// The iterator returned when a series of keys are being listed. Returns an
/// empty vector when there are no more remaining ListItems.
closed protocol ListIterator {
strict GetNext() -> (struct {
keys vector<ListItem>:MAX;
});
};
/// The iterator returned when a series of keys are being read. Returns an
/// empty vector when there are no more remaining KeyValues.
closed protocol GetIterator {
strict GetNext() -> (resource struct {
kvs vector<KeyValue>:MAX;
});
};
/// The interface returned when a new accessor is created.
closed protocol StoreAccessor {
/// Gets a single value from the store.
strict GetValue(struct {
key string:MAX_KEY_SIZE;
}) -> (resource struct {
val Value:optional;
});
/// Sets a single value in the store. Overwrites existing values. Commit()
/// must be called for this change to take effect.
strict SetValue(resource struct {
key string:MAX_KEY_SIZE;
val Value;
});
/// Deletes a single value in the store. Does nothing if the value doesn't
/// exist. Commit() must be called for this change to take effect.
strict DeleteValue(struct {
key string:MAX_KEY_SIZE;
});
/// Lists all keys under a given prefix.
strict ListPrefix(resource struct {
prefix string:MAX_KEY_SIZE;
it server_end:ListIterator;
});
/// Reads the values of all keys under a given prefix.
strict GetPrefix(resource struct {
prefix string:MAX_KEY_SIZE;
it server_end:GetIterator;
});
/// Deletes the all keys under a given prefix.
strict DeletePrefix(struct {
prefix string:MAX_KEY_SIZE;
});
/// Atomically causes all of the state modifications that happened in this
/// accessor to take place.
strict Commit();
/// Atomically causes all of the state modifications that happened
/// in this accessor to take place, returning only when those
/// modifications were written to disk.
/// This operation is equivalent to Commit.
/// Returns a FlushError if this operations could not be committed.
strict Flush() -> () error FlushError;
};
/// Interface used to interact with a given client's key/value store
@discoverable
closed protocol Store {
/// Identify should be called at the beginning of a connection to identify
/// which client service's store is to be accessed. In the future this will
/// be deprecated in favor of component monikers, and each client will only
/// be able to access its own store.
strict Identify(struct {
name string:MAX_KEY_SIZE;
});
/// Creates a accessor for interacting with the store. The resulting
/// interface can be used to inspect and modify the state of the store.
strict CreateAccessor(resource struct {
read_only bool;
accessor_request server_end:StoreAccessor;
});
};
/// A copy of |Store| in all but name. Behaves identically to |Store|.
/// See: https://fxbug.dev/42125700
@discoverable
closed protocol Store2 {
compose Store;
};
/// Interface used to interact with a given client's key/value store. The bytes
/// type is disabled in this store.
@discoverable
closed protocol SecureStore {
compose Store;
};