mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
80 lines
2.9 KiB
Kotlin
80 lines
2.9 KiB
Kotlin
/*
|
|
* Copyright 2019 Jeremy Jamet / Kunzisoft.
|
|
*
|
|
* This file is part of KeePassDX.
|
|
*
|
|
* KeePassDX is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* KeePassDX is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with KeePassDX. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
package com.kunzisoft.keepass.model
|
|
|
|
import android.os.Parcel
|
|
import android.os.Parcelable
|
|
import com.kunzisoft.keepass.database.element.Attachment
|
|
import com.kunzisoft.keepass.database.element.database.BinaryAttachment
|
|
import com.kunzisoft.keepass.utils.readEnum
|
|
import com.kunzisoft.keepass.utils.writeEnum
|
|
|
|
data class EntryAttachmentState(var attachment: Attachment,
|
|
var streamDirection: StreamDirection,
|
|
var downloadState: AttachmentState = AttachmentState.NULL,
|
|
var downloadProgression: Int = 0,
|
|
var previewState: AttachmentState = AttachmentState.NULL) : Parcelable {
|
|
|
|
constructor(parcel: Parcel) : this(
|
|
parcel.readParcelable(Attachment::class.java.classLoader) ?: Attachment("", BinaryAttachment()),
|
|
parcel.readEnum<StreamDirection>() ?: StreamDirection.DOWNLOAD,
|
|
parcel.readEnum<AttachmentState>() ?: AttachmentState.NULL,
|
|
parcel.readInt(),
|
|
parcel.readEnum<AttachmentState>() ?: AttachmentState.NULL)
|
|
|
|
override fun writeToParcel(parcel: Parcel, flags: Int) {
|
|
parcel.writeParcelable(attachment, flags)
|
|
parcel.writeEnum(streamDirection)
|
|
parcel.writeEnum(downloadState)
|
|
parcel.writeInt(downloadProgression)
|
|
parcel.writeEnum(previewState)
|
|
}
|
|
|
|
override fun describeContents(): Int {
|
|
return 0
|
|
}
|
|
|
|
override fun equals(other: Any?): Boolean {
|
|
if (this === other) return true
|
|
if (other !is EntryAttachmentState) return false
|
|
|
|
if (attachment != other.attachment) return false
|
|
|
|
return true
|
|
}
|
|
|
|
override fun hashCode(): Int {
|
|
return attachment.hashCode()
|
|
}
|
|
|
|
companion object CREATOR : Parcelable.Creator<EntryAttachmentState> {
|
|
override fun createFromParcel(parcel: Parcel): EntryAttachmentState {
|
|
return EntryAttachmentState(parcel)
|
|
}
|
|
|
|
override fun newArray(size: Int): Array<EntryAttachmentState?> {
|
|
return arrayOfNulls(size)
|
|
}
|
|
}
|
|
}
|
|
|
|
enum class AttachmentState {
|
|
NULL, START, IN_PROGRESS, COMPLETE, ERROR
|
|
} |