Class: LogStruct::Log::ActiveStorage::Upload
- Inherits:
-
T::Struct
- Object
- T::Struct
- LogStruct::Log::ActiveStorage::Upload
- Extended by:
- T::Sig
- Includes:
- Interfaces::CommonFields, Shared::SerializeCommon
- Defined in:
- lib/log_struct/log/active_storage/upload.rb
Instance Attribute Summary collapse
-
#checksum ⇒ String?
readonly
Returns the value of prop
checksum. -
#duration_ms ⇒ Float?
readonly
Returns the value of prop
duration_ms. -
#event ⇒ Event
readonly
Returns the value of prop
event. -
#file_id ⇒ String
readonly
Returns the value of prop
file_id. -
#filename ⇒ String?
readonly
Event-specific fields.
-
#level ⇒ Level
readonly
Returns the value of prop
level. -
#metadata ⇒ Hash{String => T.untyped}?
readonly
Returns the value of prop
metadata. -
#mime_type ⇒ String?
readonly
Returns the value of prop
mime_type. -
#size ⇒ Integer?
readonly
Returns the value of prop
size. -
#source ⇒ Source::Storage
readonly
Shared/common fields.
-
#storage ⇒ Symbol
readonly
Returns the value of prop
storage. -
#timestamp ⇒ Time
readonly
Returns the value of prop
timestamp.
Instance Method Summary collapse
- #initialize(source: Source::Storage, event: Event::Upload, timestamp:, level: Level::Info, storage:, file_id:, filename: nil, mime_type: nil, size: nil, metadata: nil, duration_ms: nil, checksum: nil) ⇒ void constructor
- #to_h ⇒ Hash{LogStruct::LogField => T.untyped}
Methods included from Shared::SerializeCommon
#as_json, #serialize, #serialize_common
Methods included from Interfaces::CommonFields
Constructor Details
#initialize(source: Source::Storage, event: Event::Upload, timestamp:, level: Level::Info, storage:, file_id:, filename: nil, mime_type: nil, size: nil, metadata: nil, duration_ms: nil, checksum: nil) ⇒ void
|
|
# File '' const :source, Source::Storage, default: Source::Storage const :event, Event, default: Event::Upload const :timestamp, Time, factory: -> { Time.now } const :level, Level, default: Level::Info const :storage, Symbol const :file_id, String const :filename, T.nilable(String), default: nil const :mime_type, T.nilable(String), default: nil const :size, T.nilable(Integer), default: nil const :metadata, T.nilable(T::Hash[String, T.untyped]), default: nil const :duration_ms, T.nilable(Float), default: nil const :checksum, T.nilable(String), default: nil |
Instance Attribute Details
#checksum ⇒ String? (readonly)
Returns the value of prop checksum.
|
|
# File '' const :checksum, T.nilable(String), default: nil |
#duration_ms ⇒ Float? (readonly)
Returns the value of prop duration_ms.
|
|
# File '' const :duration_ms, T.nilable(Float), default: nil |
#event ⇒ Event (readonly)
Returns the value of prop event.
|
|
# File '' const :event, Event, default: Event::Upload |
#file_id ⇒ String (readonly)
Returns the value of prop file_id.
|
|
# File '' const :file_id, String |
#filename ⇒ String? (readonly)
Event-specific fields
|
|
# File '' const :filename, T.nilable(String), default: nil |
#level ⇒ Level (readonly)
Returns the value of prop level.
|
|
# File '' const :level, Level, default: Level::Info |
#metadata ⇒ Hash{String => T.untyped}? (readonly)
Returns the value of prop metadata.
|
|
# File '' const :metadata, T.nilable(T::Hash[String, T.untyped]), default: nil |
#mime_type ⇒ String? (readonly)
Returns the value of prop mime_type.
|
|
# File '' const :mime_type, T.nilable(String), default: nil |
#size ⇒ Integer? (readonly)
Returns the value of prop size.
|
|
# File '' const :size, T.nilable(Integer), default: nil |
#source ⇒ Source::Storage (readonly)
Shared/common fields
|
|
# File '' const :source, Source::Storage, default: Source::Storage |
#storage ⇒ Symbol (readonly)
Returns the value of prop storage.
|
|
# File '' const :storage, Symbol |
#timestamp ⇒ Time (readonly)
Returns the value of prop timestamp.
|
|
# File '' const :timestamp, Time, factory: -> { Time.now } |
Instance Method Details
#to_h ⇒ Hash{LogStruct::LogField => T.untyped}
48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'lib/log_struct/log/active_storage/upload.rb', line 48 def to_h h = T.let({}, T::Hash[LogStruct::LogField, T.untyped]) h[LogField::Storage] = storage h[LogField::FileId] = file_id h[LogField::Filename] = filename unless filename.nil? h[LogField::MimeType] = mime_type unless mime_type.nil? h[LogField::Size] = size unless size.nil? h[LogField::Metadata] = unless .nil? h[LogField::DurationMs] = duration_ms unless duration_ms.nil? h[LogField::Checksum] = checksum unless checksum.nil? h end |