Struct MetadataObjectWriter

Source
struct MetadataObjectWriter {
    file_encryptor: Option<Arc<FileEncryptor>>,
}

Fields§

§file_encryptor: Option<Arc<FileEncryptor>>

Implementations§

Source§

impl MetadataObjectWriter

Source

fn write_object(object: &impl TSerializable, sink: impl Write) -> Result<()>

Source§

impl MetadataObjectWriter

Implementations of MetadataObjectWriter methods that rely on encryption being enabled

Source

fn with_file_encryptor(self, encryptor: Option<Arc<FileEncryptor>>) -> Self

Set the file encryptor to use

Source

fn write_file_metadata( &self, file_metadata: &FileMetaData, sink: impl Write, ) -> Result<()>

Write FileMetaData in Thrift format, possibly encrypting it if required

Source

fn write_offset_index( &self, offset_index: &OffsetIndex, column_chunk: &ColumnChunk, row_group_idx: usize, column_idx: usize, sink: impl Write, ) -> Result<()>

Write a column OffsetIndex in Thrift format, possibly encrypting it if required

Source

fn write_column_index( &self, column_index: &ColumnIndex, column_chunk: &ColumnChunk, row_group_idx: usize, column_idx: usize, sink: impl Write, ) -> Result<()>

Write a column ColumnIndex in Thrift format, possibly encrypting it if required

Source

fn apply_row_group_encryption( &self, row_groups: Vec<RowGroup>, ) -> Result<(Vec<RowGroup>, Option<Vec<RowGroup>>)>

If encryption is enabled and configured, encrypt row group metadata. Returns a tuple of the row group metadata to write, and possibly unencrypted metadata to be returned to clients if data was encrypted.

Source

fn get_file_magic(&self) -> &[u8; 4]

Get the “magic” bytes identifying the file type

Source

fn write_object_with_encryption( object: &impl TSerializable, sink: impl Write, file_encryptor: &FileEncryptor, column_metadata: &ColumnChunk, module_type: ModuleType, row_group_index: usize, column_index: usize, ) -> Result<()>

Source

fn file_crypto_metadata( file_encryptor: &FileEncryptor, ) -> Result<FileCryptoMetaData>

Source

fn encrypt_row_groups( row_groups: Vec<RowGroup>, file_encryptor: &Arc<FileEncryptor>, ) -> Result<Vec<RowGroup>>

Source

fn encrypt_column_chunk( column_chunk: ColumnChunk, file_encryptor: &Arc<FileEncryptor>, row_group_index: usize, column_index: usize, ) -> Result<ColumnChunk>

Apply column encryption to column chunk metadata

Trait Implementations§

Source§

impl Debug for MetadataObjectWriter

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for MetadataObjectWriter

Source§

fn default() -> MetadataObjectWriter

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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 more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,

§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T