pkg/

directory
v0.0.0-...-bb15e6e Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 23, 2024 License: Apache-2.0

Directories

Path Synopsis
Package app provides helpers for server applications interacting with Perkeep.
Package app provides helpers for server applications interacting with Perkeep.
Package auth implements Camlistore authentication.
Package auth implements Camlistore authentication.
Package blob defines types to refer to and retrieve low-level Perkeep blobs.
Package blob defines types to refer to and retrieve low-level Perkeep blobs.
Package blobserver defines how raw blobs are stored and accessed.
Package blobserver defines how raw blobs are stored and accessed.
archiver
Package archiver zips lots of little blobs into bigger zip files and stores them somewhere.
Package archiver zips lots of little blobs into bigger zip files and stores them somewhere.
azure
Package azure registers the "azure" blobserver storage type, storing blobs in a Microsoft Azure Blob Storage container.
Package azure registers the "azure" blobserver storage type, storing blobs in a Microsoft Azure Blob Storage container.
blobpacked
Package blobpacked registers the "blobpacked" blobserver storage type, storing blobs initially as one physical blob per logical blob, but then rearranging little physical blobs into large contiguous blobs organized by how they'll likely be accessed.
Package blobpacked registers the "blobpacked" blobserver storage type, storing blobs initially as one physical blob per logical blob, but then rearranging little physical blobs into large contiguous blobs organized by how they'll likely be accessed.
cond
Package cond registers the "cond" conditional blobserver storage type to select routing of get/put operations on blobs to other storage targets as a function of their content.
Package cond registers the "cond" conditional blobserver storage type to select routing of get/put operations on blobs to other storage targets as a function of their content.
dir
Package dir implements the blobserver Storage interface for a directory, detecting whether the directory is file-per-blob (localdisk) or diskpacked.
Package dir implements the blobserver Storage interface for a directory, detecting whether the directory is file-per-blob (localdisk) or diskpacked.
diskpacked
Package diskpacked registers the "diskpacked" blobserver storage type, storing blobs packed together into monolithic data files with an index listing the sizes and offsets of the little blobs within the large files.
Package diskpacked registers the "diskpacked" blobserver storage type, storing blobs packed together into monolithic data files with an index listing the sizes and offsets of the little blobs within the large files.
encrypt
Package encrypt registers the "encrypt" blobserver storage type which stores all blobs and metadata with age encryption into other wrapped storage targets (e.g.
Package encrypt registers the "encrypt" blobserver storage type which stores all blobs and metadata with age encryption into other wrapped storage targets (e.g.
files
Package files implements the blobserver interface by storing each blob in its own file in nested directories.
Package files implements the blobserver interface by storing each blob in its own file in nested directories.
gethandler
Package gethandler implements the HTTP handler for fetching blobs.
Package gethandler implements the HTTP handler for fetching blobs.
google/cloudstorage
Package cloudstorage registers the "googlecloudstorage" blob storage type, storing blobs on Google Cloud Storage (not Google Drive).
Package cloudstorage registers the "googlecloudstorage" blob storage type, storing blobs on Google Cloud Storage (not Google Drive).
google/drive
Package drive registers the "googledrive" blobserver storage type, storing blobs in a Google Drive folder.
Package drive registers the "googledrive" blobserver storage type, storing blobs in a Google Drive folder.
google/drive/service
Package service translates blobserver.Storage methods into Google Drive API methods.
Package service translates blobserver.Storage methods into Google Drive API methods.
handlers
Package handlers implements the HTTP interface to the Perkeep blob server.
Package handlers implements the HTTP interface to the Perkeep blob server.
local
Package local implements functionality common to both the "localdisk" and "diskpacked" storage mechanisms.
Package local implements functionality common to both the "localdisk" and "diskpacked" storage mechanisms.
localdisk
Package localdisk registers the "filesystem" blobserver storage type, storing blobs in a forest of sharded directories at the specified root.
Package localdisk registers the "filesystem" blobserver storage type, storing blobs in a forest of sharded directories at the specified root.
memory
Package memory registers the "memory" blobserver storage type, storing blobs in an in-memory map.
Package memory registers the "memory" blobserver storage type, storing blobs in an in-memory map.
mongo
Package mongo registers the "mongo" blobserver storage type, storing blobs using MongoDB.
Package mongo registers the "mongo" blobserver storage type, storing blobs using MongoDB.
namespace
Package namespace implements the "namespace" blobserver storage type.
Package namespace implements the "namespace" blobserver storage type.
overlay
Package overlay registers the "overlay" blobserver storage type that presents storage that is the result of overlaying a storage ("upper") on top of another storage ("lower").
Package overlay registers the "overlay" blobserver storage type that presents storage that is the result of overlaying a storage ("upper") on top of another storage ("lower").
protocol
Package protocol contains types for Perkeep protocol types.
Package protocol contains types for Perkeep protocol types.
proxycache
Package proxycache registers the "proxycache" blobserver storage type, which uses a provided blobserver as a cache for a second origin blobserver.
Package proxycache registers the "proxycache" blobserver storage type, which uses a provided blobserver as a cache for a second origin blobserver.
remote
Package remote registers the "remote" blobserver storage type, storing and fetching blobs from a remote Perkeep server over HTTPS.
Package remote registers the "remote" blobserver storage type, storing and fetching blobs from a remote Perkeep server over HTTPS.
replica
Package replica registers the "replica" blobserver storage type, providing synchronous replication to one more backends.
Package replica registers the "replica" blobserver storage type, providing synchronous replication to one more backends.
s3
Package s3 registers the "s3" blobserver storage type, storing blobs in an Amazon Web Services' S3 storage bucket.
Package s3 registers the "s3" blobserver storage type, storing blobs in an Amazon Web Services' S3 storage bucket.
sftp
Package sftp registers the "sftp" blobserver storage type, storing blobs one-per-file in a forest of sharded directories to a remote SFTP server over an SSH connection.
Package sftp registers the "sftp" blobserver storage type, storing blobs one-per-file in a forest of sharded directories to a remote SFTP server over an SSH connection.
shard
Package shard registers the "shard" blobserver storage type, predictably spraying out blobs out over the provided backends based on their blobref.
Package shard registers the "shard" blobserver storage type, predictably spraying out blobs out over the provided backends based on their blobref.
stats
Package stats contains an in-memory StatReceiver that only stores sizes of received blobs but not their contents.
Package stats contains an in-memory StatReceiver that only stores sizes of received blobs but not their contents.
storagetest
Package storagetest tests blobserver.Storage implementations
Package storagetest tests blobserver.Storage implementations
union
Package union registers the "union" read-only blobserver storage type to read from the given subsets, serving the first responding.
Package union registers the "union" read-only blobserver storage type to read from the given subsets, serving the first responding.
Package buildinfo provides information about the current build.
Package buildinfo provides information about the current build.
Package cacher provides various blobref fetching caching mechanisms.
Package cacher provides various blobref fetching caching mechanisms.
Package camerrors define specific errors that are used to decide on how to deal with some failure cases.
Package camerrors define specific errors that are used to decide on how to deal with some failure cases.
Package camlegal registers the Perkeep License
Package camlegal registers the Perkeep License
Package client implements a Perkeep client.
Package client implements a Perkeep client.
android
Package android contains code specific to running the Perkeep client code as a child process on Android.
Package android contains code specific to running the Perkeep client code as a child process on Android.
Package cmdmain contains the shared implementation for pk-get, pk-put, pk, and other Perkeep command-line tools.
Package cmdmain contains the shared implementation for pk-get, pk-put, pk, and other Perkeep command-line tools.
Package constants contains Perkeep constants.
Package constants contains Perkeep constants.
Package conv contains utilities for parsing values delimited by spaces.
Package conv contains utilities for parsing values delimited by spaces.
Package env detects what sort of environment Perkeep is running in.
Package env detects what sort of environment Perkeep is running in.
Package fs implements a FUSE filesystem for Perkeep and is used by the pk-mount binary.
Package fs implements a FUSE filesystem for Perkeep and is used by the pk-mount binary.
Package gc defines a generic garbage collector.
Package gc defines a generic garbage collector.
Package importer imports content from third-party websites.
Package importer imports content from third-party websites.
allimporters
Package allimporters registers all the importer implementations.
Package allimporters registers all the importer implementations.
dummy
Package dummy is an example importer for development purposes.
Package dummy is an example importer for development purposes.
feed
Package feed implements an importer for RSS, Atom, and RDF feeds.
Package feed implements an importer for RSS, Atom, and RDF feeds.
feed/atom
Package atom defines XML data structures for an Atom feed.
Package atom defines XML data structures for an Atom feed.
feed/rdf
Package rdf defines XML data structures for an RDF feed.
Package rdf defines XML data structures for an RDF feed.
feed/rss
Package rss defines XML data structures for an RSS feed.
Package rss defines XML data structures for an RSS feed.
flickr
Package flickr implements an importer for flickr.com accounts.
Package flickr implements an importer for flickr.com accounts.
gphotos
Package gphotos implements a Google Photos importer, using the Google Drive API to access the Google Photos folder.
Package gphotos implements a Google Photos importer, using the Google Drive API to access the Google Photos folder.
instapaper
Package instapaper implements a instapaper.com importer.
Package instapaper implements a instapaper.com importer.
mastodon
Package mastodon provides an importer for servers using the Mastodon API.
Package mastodon provides an importer for servers using the Mastodon API.
picasa
Package picasa implements an importer for picasa.com accounts.
Package picasa implements an importer for picasa.com accounts.
pinboard
Package pinboard imports pinboard.in posts.
Package pinboard imports pinboard.in posts.
plaid
Package plaid implements an importer for financial transactions from plaid.com
Package plaid implements an importer for financial transactions from plaid.com
swarm
Package swarm implements an importer for Foursquare Swarm check-ins.
Package swarm implements an importer for Foursquare Swarm check-ins.
test
Package test provides common functionality for importer tests.
Package test provides common functionality for importer tests.
twitter
Package twitter implements a twitter.com importer.
Package twitter implements a twitter.com importer.
Package index provides a generic indexing system on top of the abstract sorted.KeyValue interface.
Package index provides a generic indexing system on top of the abstract sorted.KeyValue interface.
indextest
Package indextest contains the unit tests for the indexer so they can be re-used for each specific implementation of the index Storage interface.
Package indextest contains the unit tests for the indexer so they can be re-used for each specific implementation of the index Storage interface.
Package jsonsign implements Perkeep's cryptographic signing and verification of JSON blobs.
Package jsonsign implements Perkeep's cryptographic signing and verification of JSON blobs.
signhandler
Package signhandler implements the HTTP interface to signing and verifying Perkeep JSON blobs.
Package signhandler implements the HTTP interface to signing and verifying Perkeep JSON blobs.
Package kvutil contains helpers related to modernc.org/kv.
Package kvutil contains helpers related to modernc.org/kv.
Package publish exposes the types and functions that can be used from a Go template, for publishing.
Package publish exposes the types and functions that can be used from a Go template, for publishing.
Package schema manipulates Camlistore schema blobs.
Package schema manipulates Camlistore schema blobs.
nodeattr
Package nodeattr contains constants for permanode attribute names.
Package nodeattr contains constants for permanode attribute names.
Package search describes and answers Perkeep search queries.
Package search describes and answers Perkeep search queries.
Package server implements the server HTTP interface for the UI, publishing, setup, status, sync, thubnailing, etc.
Package server implements the server HTTP interface for the UI, publishing, setup, status, sync, thubnailing, etc.
app
Package app helps with configuring and starting server applications from Perkeep.
Package app helps with configuring and starting server applications from Perkeep.
Package serverinit is responsible for mapping from a Perkeep configuration file and instantiating HTTP Handlers for all the necessary endpoints.
Package serverinit is responsible for mapping from a Perkeep configuration file and instantiating HTTP Handlers for all the necessary endpoints.
Package sorted provides a KeyValue interface and constructor registry.
Package sorted provides a KeyValue interface and constructor registry.
buffer
Package buffer provides a sorted.KeyValue implementation that buffers one KeyValue implementation in front of an another.
Package buffer provides a sorted.KeyValue implementation that buffers one KeyValue implementation in front of an another.
kvfile
Package kvfile provides an implementation of sorted.KeyValue on top of a single mutable database file on disk using modernc.org/kv.
Package kvfile provides an implementation of sorted.KeyValue on top of a single mutable database file on disk using modernc.org/kv.
kvtest
Package kvtest tests sorted.KeyValue implementations.
Package kvtest tests sorted.KeyValue implementations.
leveldb
Package leveldb provides an implementation of sorted.KeyValue on top of a single mutable database file on disk using github.com/syndtr/goleveldb.
Package leveldb provides an implementation of sorted.KeyValue on top of a single mutable database file on disk using github.com/syndtr/goleveldb.
mongo
Package mongo provides an implementation of sorted.KeyValue using MongoDB.
Package mongo provides an implementation of sorted.KeyValue using MongoDB.
mysql
Package mysql provides an implementation of sorted.KeyValue on top of MySQL.
Package mysql provides an implementation of sorted.KeyValue on top of MySQL.
postgres
Package postgres provides an implementation of sorted.KeyValue on top of PostgreSQL.
Package postgres provides an implementation of sorted.KeyValue on top of PostgreSQL.
sqlite
Package sqlite provides an implementation of sorted.KeyValue using an SQLite database file.
Package sqlite provides an implementation of sorted.KeyValue using an SQLite database file.
sqlkv
Package sqlkv implements the sorted.KeyValue interface using an *sql.DB.
Package sqlkv implements the sorted.KeyValue interface using an *sql.DB.
Package test provides common Perkeep test objects.
Package test provides common Perkeep test objects.
dockertest
Package dockertest contains helper functions for setting up and tearing down docker containers to aid in testing.
Package dockertest contains helper functions for setting up and tearing down docker containers to aid in testing.
types
camtypes
Package camtypes is like the types package, but higher-level and contains Perkeep-specific types.
Package camtypes is like the types package, but higher-level and contains Perkeep-specific types.
clientconfig
Package clientconfig provides types related to the client configuration file.
Package clientconfig provides types related to the client configuration file.
serverconfig
Package serverconfig provides types related to the server configuration file.
Package serverconfig provides types related to the server configuration file.
Package webserver implements a superset wrapper of http.Server.
Package webserver implements a superset wrapper of http.Server.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL