aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/keychain-api-library/src/main/java/org/openintents/openpgp/OpenPgpData.java
blob: 6615c2146f11a3d5e0334e19357d7abd2fdce3c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/*
 * Copyright (C) 2013 Dominik Schürmann <dominik@dominikschuermann.de>
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.openintents.openpgp;

import android.net.Uri;
import android.os.Parcel;
import android.os.ParcelFileDescriptor;
import android.os.Parcelable;

public class OpenPgpData implements Parcelable {
    public static final int TYPE_STRING = 0;
    public static final int TYPE_BYTE_ARRAY = 1;
    public static final int TYPE_FILE_DESCRIPTOR = 2;
    public static final int TYPE_URI = 3;

    int type;

    String string;
    byte[] bytes = new byte[0];
    ParcelFileDescriptor fileDescriptor;
    Uri uri;

    public int getType() {
        return type;
    }

    public String getString() {
        return string;
    }

    public byte[] getBytes() {
        return bytes;
    }

    public ParcelFileDescriptor getFileDescriptor() {
        return fileDescriptor;
    }

    public Uri getUri() {
        return uri;
    }

    public OpenPgpData() {

    }

    /**
     * Not a real constructor. This can be used to define requested output type.
     * 
     * @param type
     */
    public OpenPgpData(int type) {
        this.type = type;
    }

    public OpenPgpData(String string) {
        this.string = string;
        this.type = TYPE_STRING;
    }

    public OpenPgpData(byte[] bytes) {
        this.bytes = bytes;
        this.type = TYPE_BYTE_ARRAY;
    }

    public OpenPgpData(ParcelFileDescriptor fileDescriptor) {
        this.fileDescriptor = fileDescriptor;
        this.type = TYPE_FILE_DESCRIPTOR;
    }

    public OpenPgpData(Uri uri) {
        this.uri = uri;
        this.type = TYPE_URI;
    }

    public OpenPgpData(OpenPgpData b) {
        this.string = b.string;
        this.bytes = b.bytes;
        this.fileDescriptor = b.fileDescriptor;
        this.uri = b.uri;
    }

    public int describeContents() {
        return 0;
    }

    public void writeToParcel(Parcel dest, int flags) {
        dest.writeInt(type);
        dest.writeString(string);
        dest.writeInt(bytes.length);
        dest.writeByteArray(bytes);
        dest.writeParcelable(fileDescriptor, 0);
        dest.writeParcelable(uri, 0);
    }

    public static final Creator<OpenPgpData> CREATOR = new Creator<OpenPgpData>() {
        public OpenPgpData createFromParcel(final Parcel source) {
            OpenPgpData vr = new OpenPgpData();
            vr.type = source.readInt();
            vr.string = source.readString();
            vr.bytes = new byte[source.readInt()];
            source.readByteArray(vr.bytes);
            vr.fileDescriptor = source.readParcelable(ParcelFileDescriptor.class.getClassLoader());
            vr.fileDescriptor = source.readParcelable(Uri.class.getClassLoader());
            return vr;
        }

        public OpenPgpData[] newArray(final int size) {
            return new OpenPgpData[size];
        }
    };

}