pub struct ThreadStorage { /* private fields */ }Expand description
Main storage manager for threads and content-addressed objects.
Implementations§
Source§impl ThreadStorage
impl ThreadStorage
Sourcepub fn store_image(
&self,
bytes: &[u8],
explicit_tone: Option<String>,
) -> Result<StoredImage, StorageError>
pub fn store_image( &self, bytes: &[u8], explicit_tone: Option<String>, ) -> Result<StoredImage, StorageError>
Store image bytes using content-addressable storage.
Returns the hash and path to the stored image. If the image already exists with the same hash, returns the existing path.
Sourcepub fn store_image_from_path(
&self,
path: &str,
explicit_tone: Option<String>,
) -> Result<StoredImage, StorageError>
pub fn store_image_from_path( &self, path: &str, explicit_tone: Option<String>, ) -> Result<StoredImage, StorageError>
Store an image from a file path.
Sourcepub fn store_file(
&self,
bytes: &[u8],
extension: &str,
explicit_tone: Option<String>,
) -> Result<StoredImage, StorageError>
pub fn store_file( &self, bytes: &[u8], extension: &str, explicit_tone: Option<String>, ) -> Result<StoredImage, StorageError>
Store a generic file using content-addressable storage, preserving the extension.
pub fn object_dir(&self, hash: &str) -> Result<PathBuf, StorageError>
pub fn load_document_conversion( &self, source_hash: &str, source_extension: &str, ) -> Result<Option<DocumentConversion>, StorageError>
pub fn save_document_conversion( &self, conversion: &DocumentConversion, ) -> Result<(), StorageError>
pub fn object_manifest_path(&self, hash: &str) -> Result<PathBuf, StorageError>
pub fn find_object_blob(&self, hash: &str) -> Result<PathBuf, StorageError>
pub fn load_object_manifest( &self, hash: &str, ) -> Result<ObjectManifest, StorageError>
pub fn save_object_manifest( &self, hash: &str, manifest: &ObjectManifest, ) -> Result<(), StorageError>
pub fn lock_object_manifest( &self, hash: &str, ) -> Result<ObjectManifestLock, StorageError>
pub fn has_object_remotes(&self) -> Result<bool, StorageError>
Sourcepub fn get_image_path(&self, hash: &str) -> Result<String, StorageError>
pub fn get_image_path(&self, hash: &str) -> Result<String, StorageError>
Get the canonical blob path by hash.
Sourcepub fn get_image_tone(&self, hash: &str) -> Option<String>
pub fn get_image_tone(&self, hash: &str) -> Option<String>
Get the cached tone for a stored image by hash.
pub fn get_reverse_image_search_cache( &self, hash: &str, ) -> Result<Option<ReverseImageSearchCache>, StorageError>
pub fn save_reverse_image_search_cache( &self, hash: &str, imgbb_url: String, google_lens_url: String, ) -> Result<(), StorageError>
Source§impl ThreadStorage
impl ThreadStorage
pub fn create_workspace( &self, name: &str, directories: &[String], ) -> Result<WorkspaceMetadata, StorageError>
pub fn update_workspace( &self, workspace_id: &str, name: &str, directories: &[String], ) -> Result<WorkspaceMetadata, StorageError>
pub fn delete_workspace(&self, workspace_id: &str) -> Result<(), StorageError>
pub fn get_thread_workspace_id( &self, thread_id: &str, ) -> Result<Option<String>, StorageError>
pub fn list_sidechat_threads( &self, ) -> Result<Vec<SideChatMetadata>, StorageError>
Sourcepub fn group_threads(
&self,
first_id: &str,
second_id: &str,
) -> Result<WorkspaceMetadata, StorageError>
pub fn group_threads( &self, first_id: &str, second_id: &str, ) -> Result<WorkspaceMetadata, StorageError>
Group two unassigned threads in one catalog write.
pub fn list_unassigned_threads( &self, ) -> Result<Vec<ThreadMetadata>, StorageError>
Source§impl ThreadStorage
impl ThreadStorage
pub fn attachment_manifest_entry( &self, attachment_hash: &str, display_name: &str, last_mention_at: DateTime<Utc>, ) -> Result<AttachmentManifestEntry, StorageError>
pub fn save_thread(&self, thread: &ThreadData) -> Result<(), StorageError>
pub fn save_thread_in_workspace( &self, thread: &ThreadData, workspace_id: &str, ) -> Result<(), StorageError>
pub fn save_sidechat(&self, sidechat: &SideChatData) -> Result<(), StorageError>
pub fn load_sidechat( &self, sidechat_id: &str, ) -> Result<SideChatData, StorageError>
pub fn update_sidechat_metadata( &self, metadata: &SideChatMetadata, ) -> Result<(), StorageError>
pub fn delete_sidechat(&self, sidechat_id: &str) -> Result<(), StorageError>
pub fn fork_sidechat_latest( &self, sidechat_id: &str, ) -> Result<SideChatMetadata, StorageError>
pub fn set_thread_workspace( &self, thread_id: &str, workspace_id: Option<&str>, ) -> Result<(), StorageError>
pub fn load_thread(&self, thread_id: &str) -> Result<ThreadData, StorageError>
pub fn load_messages( &self, thread_id: &str, ) -> Result<Vec<ThreadMessage>, StorageError>
pub fn list_threads(&self) -> Result<Vec<ThreadMetadata>, StorageError>
pub fn list_workspaces(&self) -> Result<Vec<WorkspaceMetadata>, StorageError>
pub fn delete_thread(&self, thread_id: &str) -> Result<(), StorageError>
pub fn delete_threads(&self, thread_ids: &[String]) -> Result<(), StorageError>
pub fn fork_thread_latest( &self, thread_id: &str, ) -> Result<ThreadMetadata, StorageError>
pub fn update_thread_metadata( &self, metadata: &ThreadMetadata, ) -> Result<(), StorageError>
Source§impl ThreadStorage
impl ThreadStorage
Sourcepub fn save_ocr_data(
&self,
thread_id: &str,
model_id: &str,
ocr_data: &[OcrRegion],
) -> Result<(), StorageError>
pub fn save_ocr_data( &self, thread_id: &str, model_id: &str, ocr_data: &[OcrRegion], ) -> Result<(), StorageError>
Save OCR data for a specific model into the thread’s OCR annotations.
Sourcepub fn get_ocr_annotations(
&self,
thread_id: &str,
) -> Result<HashMap<String, OcrAnnotationEntry>, StorageError>
pub fn get_ocr_annotations( &self, thread_id: &str, ) -> Result<HashMap<String, OcrAnnotationEntry>, StorageError>
Get the entire OCR annotations for a thread.
Source§impl ThreadStorage
impl ThreadStorage
pub fn with_config_root( config_root: PathBuf, ) -> Result<ThreadStorage, StorageError>
Sourcepub fn new() -> Result<ThreadStorage, StorageError>
pub fn new() -> Result<ThreadStorage, StorageError>
Create a new storage manager using the default global thread location.
Sourcepub fn objects_dir(&self) -> &PathBuf
pub fn objects_dir(&self) -> &PathBuf
Get the objects directory path.
Auto Trait Implementations§
impl Freeze for ThreadStorage
impl RefUnwindSafe for ThreadStorage
impl Send for ThreadStorage
impl Sync for ThreadStorage
impl Unpin for ThreadStorage
impl UnsafeUnpin for ThreadStorage
impl UnwindSafe for ThreadStorage
Blanket Implementations§
Source§impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for Swhere
T: Real + Zero + Arithmetics + Clone,
Swp: WhitePoint<T>,
Dwp: WhitePoint<T>,
D: AdaptFrom<S, Swp, Dwp, T>,
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for Swhere
T: Real + Zero + Arithmetics + Clone,
Swp: WhitePoint<T>,
Dwp: WhitePoint<T>,
D: AdaptFrom<S, Swp, Dwp, T>,
Source§fn adapt_into_using<M>(self, method: M) -> Dwhere
M: TransformMatrix<T>,
fn adapt_into_using<M>(self, method: M) -> Dwhere
M: TransformMatrix<T>,
replaced by palette::chromatic_adaptation::AdaptIntoUnclamped
Source§fn adapt_into(self) -> D
fn adapt_into(self) -> D
replaced by palette::chromatic_adaptation::AdaptIntoUnclamped
Source§impl<T, C> AdaptIntoUnclamped<T> for Cwhere
T: AdaptFromUnclamped<C>,
impl<T, C> AdaptIntoUnclamped<T> for Cwhere
T: AdaptFromUnclamped<C>,
Source§type Scalar = <T as AdaptFromUnclamped<C>>::Scalar
type Scalar = <T as AdaptFromUnclamped<C>>::Scalar
Source§fn adapt_into_unclamped_with<M>(self) -> Twhere
M: LmsToXyz<<C as AdaptIntoUnclamped<T>>::Scalar> + XyzToLms<<C as AdaptIntoUnclamped<T>>::Scalar>,
fn adapt_into_unclamped_with<M>(self) -> Twhere
M: LmsToXyz<<C as AdaptIntoUnclamped<T>>::Scalar> + XyzToLms<<C as AdaptIntoUnclamped<T>>::Scalar>,
Source§impl<T, C> ArraysFrom<C> for Twhere
C: IntoArrays<T>,
impl<T, C> ArraysFrom<C> for Twhere
C: IntoArrays<T>,
Source§fn arrays_from(colors: C) -> T
fn arrays_from(colors: C) -> T
Source§impl<T, C> ArraysInto<C> for Twhere
C: FromArrays<T>,
impl<T, C> ArraysInto<C> for Twhere
C: FromArrays<T>,
Source§fn arrays_into(self) -> C
fn arrays_into(self) -> C
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<WpParam, T, U> Cam16IntoUnclamped<WpParam, T> for Uwhere
T: FromCam16Unclamped<WpParam, U>,
impl<WpParam, T, U> Cam16IntoUnclamped<WpParam, T> for Uwhere
T: FromCam16Unclamped<WpParam, U>,
Source§type Scalar = <T as FromCam16Unclamped<WpParam, U>>::Scalar
type Scalar = <T as FromCam16Unclamped<WpParam, U>>::Scalar
parameters when converting.Source§fn cam16_into_unclamped(
self,
parameters: BakedParameters<WpParam, <U as Cam16IntoUnclamped<WpParam, T>>::Scalar>,
) -> T
fn cam16_into_unclamped( self, parameters: BakedParameters<WpParam, <U as Cam16IntoUnclamped<WpParam, T>>::Scalar>, ) -> T
self into C, using the provided parameters.impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CheckedAs for T
impl<T> CheckedAs for T
Source§fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
Source§impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
Source§fn checked_cast_from(src: Src) -> Option<Dst>
fn checked_cast_from(src: Src) -> Option<Dst>
Source§impl<T, C> ComponentsFrom<C> for Twhere
C: IntoComponents<T>,
impl<T, C> ComponentsFrom<C> for Twhere
C: IntoComponents<T>,
Source§fn components_from(colors: C) -> T
fn components_from(colors: C) -> T
Source§impl<T, C> ComponentsInto<C> for T
impl<T, C> ComponentsInto<C> for T
Source§fn components_into(self) -> C
fn components_into(self) -> C
impl<T> ErasedDestructor for Twhere
T: 'static,
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Filterable for T
impl<T> Filterable for T
Source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(DataRequest<'_>) -> bool>
Source§impl<T> FromAngle<T> for T
impl<T> FromAngle<T> for T
Source§fn from_angle(angle: T) -> T
fn from_angle(angle: T) -> T
angle.Source§impl<T, U> FromStimulus<U> for Twhere
U: IntoStimulus<T>,
impl<T, U> FromStimulus<U> for Twhere
U: IntoStimulus<T>,
Source§fn from_stimulus(other: U) -> T
fn from_stimulus(other: U) -> T
other into Self, while performing the appropriate scaling,
rounding and clamping.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T, U> IntoAngle<U> for Twhere
U: FromAngle<T>,
impl<T, U> IntoAngle<U> for Twhere
U: FromAngle<T>,
Source§fn into_angle(self) -> U
fn into_angle(self) -> U
T.Source§impl<WpParam, T, U> IntoCam16Unclamped<WpParam, T> for Uwhere
T: Cam16FromUnclamped<WpParam, U>,
impl<WpParam, T, U> IntoCam16Unclamped<WpParam, T> for Uwhere
T: Cam16FromUnclamped<WpParam, U>,
Source§type Scalar = <T as Cam16FromUnclamped<WpParam, U>>::Scalar
type Scalar = <T as Cam16FromUnclamped<WpParam, U>>::Scalar
parameters when converting.Source§fn into_cam16_unclamped(
self,
parameters: BakedParameters<WpParam, <U as IntoCam16Unclamped<WpParam, T>>::Scalar>,
) -> T
fn into_cam16_unclamped( self, parameters: BakedParameters<WpParam, <U as IntoCam16Unclamped<WpParam, T>>::Scalar>, ) -> T
self into C, using the provided parameters.Source§impl<T, U> IntoColor<U> for Twhere
U: FromColor<T>,
impl<T, U> IntoColor<U> for Twhere
U: FromColor<T>,
Source§fn into_color(self) -> U
fn into_color(self) -> U
Source§impl<T, U> IntoColorUnclamped<U> for Twhere
U: FromColorUnclamped<T>,
impl<T, U> IntoColorUnclamped<U> for Twhere
U: FromColorUnclamped<T>,
Source§fn into_color_unclamped(self) -> U
fn into_color_unclamped(self) -> U
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoStimulus<T> for T
impl<T> IntoStimulus<T> for T
Source§fn into_stimulus(self) -> T
fn into_stimulus(self) -> T
self into T, while performing the appropriate scaling,
rounding and clamping.impl<T> MaybeSendSync for T
Source§impl<T> OverflowingAs for T
impl<T> OverflowingAs for T
Source§fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
Source§impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
Source§fn overflowing_cast_from(src: Src) -> (Dst, bool)
fn overflowing_cast_from(src: Src) -> (Dst, bool)
Source§impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§impl<T> SaturatingAs for T
impl<T> SaturatingAs for T
Source§fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
Source§impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
Source§fn saturating_cast_from(src: Src) -> Dst
fn saturating_cast_from(src: Src) -> Dst
Source§impl<T> StrictAs for T
impl<T> StrictAs for T
Source§fn strict_as<Dst>(self) -> Dstwhere
T: StrictCast<Dst>,
fn strict_as<Dst>(self) -> Dstwhere
T: StrictCast<Dst>,
Source§impl<Src, Dst> StrictCastFrom<Src> for Dstwhere
Src: StrictCast<Dst>,
impl<Src, Dst> StrictCastFrom<Src> for Dstwhere
Src: StrictCast<Dst>,
Source§fn strict_cast_from(src: Src) -> Dst
fn strict_cast_from(src: Src) -> Dst
Source§impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
Source§fn to_owned_obj(&self, data: FontData<'_>) -> U
fn to_owned_obj(&self, data: FontData<'_>) -> U
T, using the provided data to resolve any offsets.Source§impl<U, T> ToOwnedTable<U> for Twhere
U: FromTableRef<T>,
impl<U, T> ToOwnedTable<U> for Twhere
U: FromTableRef<T>,
fn to_owned_table(&self) -> U
Source§impl<T, C> TryComponentsInto<C> for Twhere
C: TryFromComponents<T>,
impl<T, C> TryComponentsInto<C> for Twhere
C: TryFromComponents<T>,
Source§type Error = <C as TryFromComponents<T>>::Error
type Error = <C as TryFromComponents<T>>::Error
try_into_colors fails to cast.Source§fn try_components_into(self) -> Result<C, <T as TryComponentsInto<C>>::Error>
fn try_components_into(self) -> Result<C, <T as TryComponentsInto<C>>::Error>
Source§impl<T, U> TryIntoColor<U> for Twhere
U: TryFromColor<T>,
impl<T, U> TryIntoColor<U> for Twhere
U: TryFromColor<T>,
Source§fn try_into_color(self) -> Result<U, OutOfBounds<U>>
fn try_into_color(self) -> Result<U, OutOfBounds<U>>
OutOfBounds error is returned which contains
the unclamped color. Read more