blob: 68f5cf8734db0667f30eb064f7f26f495c802e4f [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package syncbase
import (
"v.io/v23/context"
wire "v.io/v23/services/syncbase"
)
//////////////////////////////////////////
// Implementation of SchemaManager (Not part of public client API)
type schemaManagerImpl struct {
c wire.DatabaseClientMethods
}
func newSchemaManager(client wire.DatabaseClientMethods) schemaManagerImpl {
return schemaManagerImpl{
c: client,
}
}
// GetSchemaMetadata retrieves the schema metadata for the database it is
// derived from.
func (sm *schemaManagerImpl) getSchemaMetadata(ctx *context.T) (wire.SchemaMetadata, error) {
return sm.c.GetSchemaMetadata(ctx)
}
// SetSchemaMetadata stores the schema metadata for the database it is
// derived from.
func (sm *schemaManagerImpl) setSchemaMetadata(ctx *context.T, metadata wire.SchemaMetadata) error {
return sm.c.SetSchemaMetadata(ctx, metadata)
}