Documentation ¶
Overview ¶
Package dsfs glues datsets to cafs (content-addressed-file-system)
Index ¶
- Variables
- func CreateDataset(ctx context.Context, store cafs.Filestore, ds, dsPrev *dataset.Dataset, ...) (path string, err error)
- func DerefDataset(ctx context.Context, store cafs.Filestore, ds *dataset.Dataset) error
- func DerefDatasetCommit(ctx context.Context, store cafs.Filestore, ds *dataset.Dataset) error
- func DerefDatasetMeta(ctx context.Context, store cafs.Filestore, ds *dataset.Dataset) error
- func DerefDatasetReadme(ctx context.Context, store cafs.Filestore, ds *dataset.Dataset) error
- func DerefDatasetStructure(ctx context.Context, store cafs.Filestore, ds *dataset.Dataset) error
- func DerefDatasetTransform(ctx context.Context, store cafs.Filestore, ds *dataset.Dataset) error
- func DerefDatasetViz(ctx context.Context, store cafs.Filestore, ds *dataset.Dataset) error
- func GetHashBase(in, network string) string
- func JSONFile(name string, m json.Marshaler) (qfs.File, error)
- func LoadBody(ctx context.Context, store cafs.Filestore, ds *dataset.Dataset) (qfs.File, error)
- func LoadDataset(ctx context.Context, store cafs.Filestore, path string) (*dataset.Dataset, error)
- func LoadDatasetRefs(ctx context.Context, store cafs.Filestore, path string) (*dataset.Dataset, error)
- func LoadReadmeScript(ctx context.Context, store cafs.Filestore, dspath string) (qfs.File, error)
- func LoadTransformScript(ctx context.Context, store cafs.Filestore, dspath string) (qfs.File, error)
- func PackageFilepath(store cafs.Filestore, path string, pf PackageFile) string
- func WriteDataset(ctx context.Context, store cafs.Filestore, ds *dataset.Dataset, pin bool) (string, error)
- type PackageFile
Constants ¶
This section is empty.
Variables ¶
var ErrNoReadme = fmt.Errorf("this dataset has no readme component")
ErrNoReadme is the error for asking a dataset without a readme component for readme info
var ErrNoTransform = fmt.Errorf("this dataset has no transform component")
ErrNoTransform is the error for asking a dataset without a tranform component for viz info
var ErrNoViz = fmt.Errorf("this dataset has no viz component")
ErrNoViz is the error for asking a dataset without a viz component for viz info
var Timestamp = func() time.Time { return time.Now().UTC() }
Timestamp is an function for getting commit timestamps timestamps MUST be stored in UTC time zone
Functions ¶
func CreateDataset ¶
func CreateDataset(ctx context.Context, store cafs.Filestore, ds, dsPrev *dataset.Dataset, pk crypto.PrivKey, pin, force, shouldRender bool) (path string, err error)
CreateDataset places a new dataset in the store. Admittedly, this isn't a simple process. Store is where we're going to Dataset to be saved Pin the dataset if the underlying store supports the pinning interface All streaming files (Body, Transform Script, Viz Script) Must be Resolved before calling if data their data is to be saved
func DerefDataset ¶
DerefDataset attempts to fully dereference a dataset
func DerefDatasetCommit ¶
DerefDatasetCommit derferences a dataset's Commit element if required should be a no-op if ds.Structure is nil or isn't a reference
func DerefDatasetMeta ¶
DerefDatasetMeta derferences a dataset's transform element if required should be a no-op if ds.Structure is nil or isn't a reference
func DerefDatasetReadme ¶
DerefDatasetReadme dereferences a dataset's Readme element if required should be a no-op if ds.Readme is nil or isn't a reference
func DerefDatasetStructure ¶
DerefDatasetStructure derferences a dataset's structure element if required should be a no-op if ds.Structure is nil or isn't a reference
func DerefDatasetTransform ¶
DerefDatasetTransform derferences a dataset's transform element if required should be a no-op if ds.Structure is nil or isn't a reference
func DerefDatasetViz ¶
DerefDatasetViz dereferences a dataset's Viz element if required should be a no-op if ds.Viz is nil or isn't a reference
func GetHashBase ¶
GetHashBase strips paths to return just the hash
func LoadDataset ¶
LoadDataset reads a dataset from a cafs and dereferences structure, transform, and commitMsg if they exist, returning a fully-hydrated dataset
func LoadDatasetRefs ¶
func LoadDatasetRefs(ctx context.Context, store cafs.Filestore, path string) (*dataset.Dataset, error)
LoadDatasetRefs reads a dataset from a content addressed filesystem without dereferencing it's components
func LoadReadmeScript ¶
LoadReadmeScript loads script data from a dataset path if the given dataset has a readme script is specified the returned qfs.File will be the value of dataset.Readme.ScriptPath
func LoadTransformScript ¶
func LoadTransformScript(ctx context.Context, store cafs.Filestore, dspath string) (qfs.File, error)
LoadTransformScript loads transform script data from a dataset path if the given dataset has a transform script specified the returned qfs.File will be the value of dataset.Transform.ScriptPath TODO - this is broken, assumes file is JSON. fix & test or depricate
func PackageFilepath ¶
func PackageFilepath(store cafs.Filestore, path string, pf PackageFile) string
PackageFilepath returns the path to a package file for a given base path It relies relies on package storage conventions and cafs.Filestore path prefixes If you supply a path that does not match the filestore's naming conventions will return an invalid path
func WriteDataset ¶
func WriteDataset(ctx context.Context, store cafs.Filestore, ds *dataset.Dataset, pin bool) (string, error)
WriteDataset writes a dataset to a cafs, replacing subcomponents of a dataset with path references during the write process. Directory structure is according to PackageFile naming conventions. This method is currently exported, but 99% of use cases should use CreateDataset instead of this lower-level function
Types ¶
type PackageFile ¶
type PackageFile int
PackageFile specifies the different types of files that are stored in a package
const ( // PackageFileUnknown is the default package file, which // should be erroneous, as there is no sensible default // for PackageFile PackageFileUnknown PackageFile = iota // PackageFileDataset is the main dataset.json file // that contains all dataset metadata, and is the only // required file to constitute a dataset PackageFileDataset // PackageFileStructure isolates this dataset's structure // in it's own file PackageFileStructure // PackageFileAbstract is the abstract verion of // structure PackageFileAbstract // PackageFileResources lists the resource datasets // that went into creating a dataset // TODO - I think this can be removed now that Transform exists PackageFileResources // PackageFileCommit isolates the user-entered // documentation of the changes to this dataset's history PackageFileCommit // PackageFileTransform isloates the concrete transform that // generated this dataset PackageFileTransform // PackageFileAbstractTransform is the abstract version of // the operation performed to create this dataset PackageFileAbstractTransform // PackageFileMeta encapsulates human-readable metadata PackageFileMeta // PackageFileViz isolates the data related to representing a dataset as a visualization PackageFileViz // PackageFileRenderedViz is the rendered visualization of the dataset PackageFileRenderedViz // PackageFileReadme is the raw readme of the dataset PackageFileReadme // PackageFileRenderedReadme is the rendered readme of the dataset PackageFileRenderedReadme )
func (PackageFile) Filename ¶
func (p PackageFile) Filename() string
Filename gives the canonical filename for a PackageFile
func (PackageFile) String ¶
func (p PackageFile) String() string
String implements the io.Stringer interface for PackageFile
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
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 dsutil includes dataset util funcs, placed here to avoid dataset package bloat TODO - consider merging this package with the dsfs package, as most of the functions in here rely on a Filestore argument
|
Package dsutil includes dataset util funcs, placed here to avoid dataset package bloat TODO - consider merging this package with the dsfs package, as most of the functions in here rely on a Filestore argument |
Package subset provides methods for extracting defined abbreviations of a dataset document.
|
Package subset provides methods for extracting defined abbreviations of a dataset document. |