Documentation ¶
Overview ¶
Package base defines business that operates on local data. it's main job is to composing APIs from the lower half of our tech stack, providing uniform functions for higher up packages, mainly p2p and lib. p2p and lib use base as the only way of operate on the local repo Here's some ascii art to clarify the stack:
┌───────────────┐ ┌───────────────┐ │ cmd │ │ api │ └───────────────┘ └───────────────┘ ┌─────────────────────────────────┐ │ lib │ └─────────────────────────────────┘ ┌───────────────────────┐ │ p2p │ └───────────────────────┘ ┌─────────────────────────────────┐ │ base │ <-- you are here └─────────────────────────────────┘ ┌──────┐ ┌──────┐ ┌──────┐ ┌──────┐ │ repo │ │ dsfs │ │ qfs │ │ ... │ └──────┘ └──────┘ └──────┘ └──────┘
There are packages omitted from this diagram, but these are the vitals. base functions mainly work with repo.Repo instances, using repo interface methods and related packages to do their work. This is part of a larger pattern of having lib rely on lower level interfaces wherever possible to enhance configurability
Index ¶
- Constants
- Variables
- func ApplyPath(ds *dataset.Dataset, path string) (interface{}, error)
- func CloseDataset(ds *dataset.Dataset) (err error)
- func ConvertBodyFile(file qfs.File, in, out *dataset.Structure, limit, offset int, all bool) (data []byte, err error)
- func ConvertBodyFormat(bodyFile qfs.File, fromSt, toSt *dataset.Structure) (qfs.File, error)
- func CreateDataset(ctx context.Context, r repo.Repo, writeDest qfs.Filesystem, ...) (res *dataset.Dataset, err error)
- func CreatePreview(ctx context.Context, r repo.Repo, ref dsref.Ref) (ds *dataset.Dataset, err error)
- func Drop(ds *dataset.Dataset, revStr string) error
- func GenerateAvailableName(ctx context.Context, pro *profile.Profile, resolver dsref.Resolver, ...) string
- func InLocalNamespace(r repo.Repo, ref dsref.Ref) bool
- func InferValues(pro *profile.Profile, ds *dataset.Dataset) error
- func InlineJSONBody(ds *dataset.Dataset) error
- func ListDatasets(ctx context.Context, r repo.Repo, term string, limit, offset int, ...) (res []reporef.DatasetRef, err error)
- func LoadRevs(ctx context.Context, store cafs.Filestore, ref dsref.Ref, revs []*dsref.Rev) (res *dataset.Dataset, err error)
- func MaybeAddDefaultViz(ds *dataset.Dataset)
- func ModifyRepoUsername(ctx context.Context, r repo.Repo, book *logbook.Book, from, to string) error
- func NewLocalDatasetLoader(r repo.Repo) dsref.Loader
- func OpenDataset(ctx context.Context, fsys qfs.Filesystem, ds *dataset.Dataset) (err error)
- func PinDataset(ctx context.Context, r repo.Repo, path string) error
- func PrepareSaveRef(ctx context.Context, pro *profile.Profile, book *logbook.Book, ...) (dsref.Ref, bool, error)
- func RawDatasetRefs(ctx context.Context, r repo.Repo) (string, error)
- func ReadBody(ds *dataset.Dataset, format dataset.DataFormat, fcfg dataset.FormatConfig, ...) (data []byte, err error)
- func ReadDataset(ctx context.Context, r repo.Repo, path string) (ds *dataset.Dataset, err error)
- func ReadEntries(reader dsio.EntryReader) (interface{}, error)
- func Recall(ctx context.Context, store cafs.Filestore, ref dsref.Ref, revStr string) (*dataset.Dataset, error)
- func RemoveEntireDataset(ctx context.Context, r repo.Repo, ref dsref.Ref, history []DatasetLogItem) (didRemove string, removeErr error)
- func RemoveNVersionsFromStore(ctx context.Context, r repo.Repo, curr dsref.Ref, n int) (*dsref.VersionInfo, error)
- func RenameDatasetRef(ctx context.Context, r repo.Repo, ref dsref.Ref, newName string) (*dsref.VersionInfo, error)
- func Render(ctx context.Context, r repo.Repo, ds *dataset.Dataset, tmplData []byte) ([]byte, error)
- func RenderReadme(ctx context.Context, file qfs.File) (string, error)
- func ReplaceRefIfMoreRecent(r repo.Repo, prev, curr *reporef.DatasetRef) error
- func RewindDatasetRef(ctx context.Context, r repo.Repo, curr, next dsref.Ref) (*dsref.VersionInfo, error)
- func SaveDataset(ctx context.Context, r repo.Repo, writeDest qfs.Filesystem, ...) (ds *dataset.Dataset, err error)
- func Select(ctx context.Context, r repo.Repo, ref dsref.Ref, valuePath string) (interface{}, error)
- func SetPublishStatus(r repo.Repo, ref dsref.Ref, published bool) error
- func StoredHistoricalDatasets(ctx context.Context, r repo.Repo, headPath string, offset, limit int, ...) (log []*dataset.Dataset, err error)
- func TransformApply(ctx context.Context, ds *dataset.Dataset, r repo.Repo, ...) error
- func UnpinDataset(ctx context.Context, r repo.Repo, path string) error
- func Validate(ctx context.Context, r repo.Repo, body qfs.File, st *dataset.Structure) ([]jsonschema.KeyError, error)
- func ValidateDataset(ds *dataset.Dataset) (err error)
- type DatasetLogItem
- type SaveSwitches
Constants ¶
const ( // MaxNumDatasetRowsInPreview is the highest number of rows a dataset preview // can contain MaxNumDatasetRowsInPreview = 100 // MaxReadmePreviewBytes determines the maximum amount of bytes a readme // preview can be. three bytes less than 1000 to make room for an elipsis MaxReadmePreviewBytes = 997 )
const TimeoutDuration = 100 * time.Millisecond
TimeoutDuration is the duration allowed for a datasetLog lookup before it times out
Variables ¶
var DefaultTemplate = `` /* 249-byte string literal not displayed */
DefaultTemplate is the template that render will fall back to should no template be available
var ErrDatasetLogTimeout = fmt.Errorf("datasetLog: timeout")
ErrDatasetLogTimeout is an error for when getting the datasetLog times out
var ErrNameTaken = fmt.Errorf("name already in use")
ErrNameTaken is an error for when a name for a new dataset is already being used
var ( // OpenFileTimeoutDuration determines the maximium amount of time to wait for // a Filestore to open a file. Some filestores (like IPFS) fallback to a // network request when it can't find a file locally. Setting a short timeout // prevents waiting for a slow network response, at the expense of leaving // files unresolved. // TODO (b5) - allow -1 duration as a sentinel value for no timeout OpenFileTimeoutDuration = time.Millisecond * 250 )
Functions ¶
func ApplyPath ¶
ApplyPath gets a dataset value by applying a case.Sensitve.dot.separated.path ApplyPath cannot select file fields
func CloseDataset ¶ added in v0.7.0
CloseDataset ensures all open dataset files are closed
func ConvertBodyFile ¶ added in v0.7.2
func ConvertBodyFile(file qfs.File, in, out *dataset.Structure, limit, offset int, all bool) (data []byte, err error)
ConvertBodyFile takes an input file & structure, and converts a specified selection to the structure specified by out
func ConvertBodyFormat ¶ added in v0.6.1
ConvertBodyFormat rewrites a body from a source format to a destination format. TODO (b5): Combine this with ConvertBodyFile, update callers.
func CreateDataset ¶
func CreateDataset(ctx context.Context, r repo.Repo, writeDest qfs.Filesystem, ds, dsPrev *dataset.Dataset, sw SaveSwitches) (res *dataset.Dataset, err error)
CreateDataset uses dsfs to add a dataset to a repo's store, updating the refstore
func CreatePreview ¶ added in v0.9.5
func CreatePreview(ctx context.Context, r repo.Repo, ref dsref.Ref) (ds *dataset.Dataset, err error)
CreatePreview generates a preview for a dataset version
func GenerateAvailableName ¶ added in v0.9.3
func GenerateAvailableName(ctx context.Context, pro *profile.Profile, resolver dsref.Resolver, prefix string) string
GenerateAvailableName creates a name for the dataset that is not currently in use. Generated names start with _2, implying the "_1" file is the original no-suffix name.
func InLocalNamespace ¶
InLocalNamespace checks if a dataset ref is local, assumes the reference is already resolved
func InferValues ¶
InferValues populates any missing fields that must exist to create a snapshot
func InlineJSONBody ¶ added in v0.7.2
InlineJSONBody reads the contents dataset.BodyFile() into a json.RawMessage, assigning the result to dataset.Body
func ListDatasets ¶
func ListDatasets(ctx context.Context, r repo.Repo, term string, limit, offset int, RPC, publishedOnly, showVersions bool) (res []reporef.DatasetRef, err error)
ListDatasets lists datasets from a repo
func LoadRevs ¶
func LoadRevs(ctx context.Context, store cafs.Filestore, ref dsref.Ref, revs []*dsref.Rev) (res *dataset.Dataset, err error)
LoadRevs grabs a component of a dataset that exists <n>th generation ancestor of the referenced version, where presence of a component in a previous snapshot constitutes ancestry
func MaybeAddDefaultViz ¶ added in v0.8.0
MaybeAddDefaultViz sets a dataset viz component and template if none exists TODO(dlong): This is deprecated and should be removed.
func ModifyRepoUsername ¶ added in v0.9.4
func ModifyRepoUsername(ctx context.Context, r repo.Repo, book *logbook.Book, from, to string) error
ModifyRepoUsername performs all tasks necessary to switch a username (formerly: peername) for a local repo, and must be called when a username is changed TODO (b5) - make this transactional
func NewLocalDatasetLoader ¶ added in v0.9.9
NewLocalDatasetLoader creates a dsfs.Loader that operates on a filestore
func OpenDataset ¶ added in v0.7.0
OpenDataset prepares a dataset for use, checking each component for populated Path or Byte suffixed fields, consuming those fields to set File handlers that are ready for reading
func PinDataset ¶
PinDataset marks a dataset for retention in a store
func PrepareSaveRef ¶ added in v0.9.10
func PrepareSaveRef( ctx context.Context, pro *profile.Profile, book *logbook.Book, resolver dsref.Resolver, refStr string, bodyPathNameHint string, wantNewName bool, ) (dsref.Ref, bool, error)
PrepareSaveRef works out a dataset reference for saving a dataset version. When a dataset exists, resolve the initID & path. When no dataset with that name exists, ensure a locally-unique dataset name and create a new logbook history & InitID to write to. PrepareSaveRef returns a true boolean value if an initID was created successful calls to PrepareSaveRef always have an InitID, and will have the Path of the current version, if one exists
func RawDatasetRefs ¶ added in v0.9.3
RawDatasetRefs converts the dataset refs to a string
func ReadBody ¶ added in v0.9.1
func ReadBody(ds *dataset.Dataset, format dataset.DataFormat, fcfg dataset.FormatConfig, limit, offset int, all bool) (data []byte, err error)
ReadBody grabs some or all of a dataset's body, writing an output in the desired format
func ReadEntries ¶ added in v0.7.1
func ReadEntries(reader dsio.EntryReader) (interface{}, error)
ReadEntries reads entries and returns them as a native go array or map
func Recall ¶ added in v0.9.1
func Recall(ctx context.Context, store cafs.Filestore, ref dsref.Ref, revStr string) (*dataset.Dataset, error)
Recall loads revisions of a dataset from history of a resolved dataset reference
func RemoveEntireDataset ¶ added in v0.9.5
func RemoveEntireDataset(ctx context.Context, r repo.Repo, ref dsref.Ref, history []DatasetLogItem) (didRemove string, removeErr error)
RemoveEntireDataset removes all of the information in the repository about a dataset. It will continue on even if some error occurs, returning a comma-separated list of what locations data was removed from, as well the last error that occured, if any. Note that in particular, FSI is not handled at all by this function. Callers should also call any relevent FSI operations.
func RemoveNVersionsFromStore ¶ added in v0.9.1
func RemoveNVersionsFromStore(ctx context.Context, r repo.Repo, curr dsref.Ref, n int) (*dsref.VersionInfo, error)
RemoveNVersionsFromStore removes n versions of a dataset from the store starting with the most recent version when n == -1, remove all versions does not remove the dataset reference
func RenameDatasetRef ¶ added in v0.9.9
func RenameDatasetRef(ctx context.Context, r repo.Repo, ref dsref.Ref, newName string) (*dsref.VersionInfo, error)
RenameDatasetRef changes a dataset's pretty name by modifying the ref in the repository refstore, and returns a versionInfo describing the resulting dataset reference.
func Render ¶
Render executes a template for a dataset, returning a slice of HTML Render uses go's html/template package to generate html documents from an input dataset. It's API has been adjusted to use lowerCamelCase instead of UpperCamelCase naming conventions
func RenderReadme ¶ added in v0.9.1
RenderReadme converts the markdown from the file into html.
func ReplaceRefIfMoreRecent ¶ added in v0.9.1
func ReplaceRefIfMoreRecent(r repo.Repo, prev, curr *reporef.DatasetRef) error
ReplaceRefIfMoreRecent replaces the given ref in the ref store, if it is more recent then the ref currently in the refstore
func RewindDatasetRef ¶ added in v0.9.9
func RewindDatasetRef(ctx context.Context, r repo.Repo, curr, next dsref.Ref) (*dsref.VersionInfo, error)
RewindDatasetRef changes a dsref in the repository refstore, by setting the path back to an older value, and returns a versionInfo describing the resulting dataset reference.
func SaveDataset ¶ added in v0.9.1
func SaveDataset(ctx context.Context, r repo.Repo, writeDest qfs.Filesystem, initID, prevPath string, changes *dataset.Dataset, sw SaveSwitches) (ds *dataset.Dataset, err error)
SaveDataset saves a version of the dataset for the given initID at the current path
func SetPublishStatus ¶
SetPublishStatus updates the Published field of a dataset ref
func StoredHistoricalDatasets ¶ added in v0.9.9
func StoredHistoricalDatasets(ctx context.Context, r repo.Repo, headPath string, offset, limit int, loadDatasets bool) (log []*dataset.Dataset, err error)
StoredHistoricalDatasets fetches the history of changes to a dataset by walking backwards through dataset commits. if loadDatasets is true, dataset information will be populated
func TransformApply ¶ added in v0.9.9
func TransformApply( ctx context.Context, ds *dataset.Dataset, r repo.Repo, loader dsref.ParseResolveLoad, str ioes.IOStreams, scriptOut io.Writer, secrets map[string]string, ) error
TransformApply applies the transform script to order to modify the changing dataset
func UnpinDataset ¶
UnpinDataset unmarks a dataset for retention in a store
func Validate ¶ added in v0.9.1
func Validate(ctx context.Context, r repo.Repo, body qfs.File, st *dataset.Structure) ([]jsonschema.KeyError, error)
Validate checks a dataset body for errors based on the structure's schema
func ValidateDataset ¶
ValidateDataset checks that a dataset is semantically valid
Types ¶
type DatasetLogItem ¶ added in v0.9.1
type DatasetLogItem = logbook.DatasetLogItem
DatasetLogItem aliases the type from logbook
type SaveSwitches ¶ added in v0.9.8
type SaveSwitches = dsfs.SaveSwitches
SaveSwitches is an alias for the switches that control how saves happen
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
Package archive creates and consumes high-fidelity conversions of dataset documents for export & import
|
Package archive creates and consumes high-fidelity conversions of dataset documents for export & import |
Package dsfs glues datsets to cafs (content-addressed-file-system)
|
Package dsfs glues datsets to cafs (content-addressed-file-system) |
dstest
Package dstest defines an interface for reading test cases from static files leveraging directories of test dataset input files & expected output files
|
Package dstest defines an interface for reading test cases from static files leveraging directories of test dataset input files & expected output files |
Package fill assigns arbitrary values to struct fields using reflection.
|
Package fill assigns arbitrary values to struct fields using reflection. |