forked from getsentry/sentry-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAttachment.java
More file actions
188 lines (172 loc) · 6.59 KB
/
Attachment.java
File metadata and controls
188 lines (172 loc) · 6.59 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
package io.sentry;
import java.io.File;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/** You can use an attachment to store additional files alongside an event or transaction. */
public final class Attachment {
private @Nullable byte[] bytes;
private @Nullable String pathname;
private final @NotNull String filename;
private final @NotNull String contentType;
private final boolean addToTransactions;
/**
* We could use Files.probeContentType(path) to determine the content type of the filename. This
* needs a path, but file.toPath or Paths.get only work on above Android API level 26, see
* https://developer.android.com/reference/java/nio/file/Paths. There are also ways via
* URLConnection, but we don't want to use this in constructors. Therefore we use the default
* content type of Sentry.
*/
private static final String DEFAULT_CONTENT_TYPE = "application/octet-stream";
/**
* Initializes an Attachment with bytes and a filename. Sets addToTransaction to <code>false
* </code>.
*
* @param bytes The bytes of file.
* @param filename The name of the attachment to display in Sentry.
*/
public Attachment(final @NotNull byte[] bytes, final @NotNull String filename) {
this(bytes, filename, DEFAULT_CONTENT_TYPE);
}
/**
* Initializes an Attachment with bytes, a filename, and a content type. Sets addToTransaction to
* <code>false</code>.
*
* @param bytes The bytes of file.
* @param filename The name of the attachment to display in Sentry.
* @param contentType The content type of the attachment.
*/
public Attachment(
final @NotNull byte[] bytes,
final @NotNull String filename,
final @NotNull String contentType) {
this(bytes, filename, contentType, false);
}
/**
* Initializes an Attachment with bytes, a filename, a content type, and addToTransactions.
*
* @param bytes The bytes of file.
* @param filename The name of the attachment to display in Sentry.
* @param contentType The content type of the attachment.
* @param addToTransactions <code>true</code> if the SDK should add this attachment to every
* {@link ITransaction} or set to <code>false</code> if it shouldn't.
*/
public Attachment(
final @NotNull byte[] bytes,
final @NotNull String filename,
final @NotNull String contentType,
final boolean addToTransactions) {
this.bytes = bytes;
this.filename = filename;
this.contentType = contentType;
this.addToTransactions = addToTransactions;
}
/**
* Initializes an Attachment with a path. The filename of the file located at the path is used.
* Sets addToTransaction to <code>false</code>.
*
* <p>The file located at the pathname is read lazily when the SDK captures an event or
* transaction not when the attachment is initialized. The pathname string is converted into an
* abstract pathname before reading the file.
*
* @param pathname The pathname string of the file to upload as an attachment.
*/
public Attachment(final @NotNull String pathname) {
this(pathname, new File(pathname).getName());
}
/**
* Initializes an Attachment with a path and a filename. Sets addToTransaction to <code>false
* </code>.
*
* <p>The file located at the pathname is read lazily when the SDK captures an event or
* transaction not when the attachment is initialized. The pathname string is converted into an
* abstract pathname before reading the file.
*
* @param pathname The pathname string of the file to upload as an attachment.
* @param filename The name of the attachment to display in Sentry.
*/
public Attachment(final @NotNull String pathname, final @NotNull String filename) {
this(pathname, filename, DEFAULT_CONTENT_TYPE);
}
/**
* Initializes an Attachment with a path, a filename, and a content type. Sets addToTransaction to
* <code>false</code>.
*
* <p>The file located at the pathname is read lazily when the SDK captures an event or
* transaction not when the attachment is initialized. The pathname string is converted into an
* abstract pathname before reading the file.
*
* @param pathname The pathname string of the file to upload as an attachment.
* @param filename The name of the attachment to display in Sentry.
* @param contentType The content type of the attachment.
*/
public Attachment(
final @NotNull String pathname,
final @NotNull String filename,
final @NotNull String contentType) {
this(pathname, filename, contentType, false);
}
/**
* Initializes an Attachment with a path, a filename, a content type, and addToTransactions.
*
* <p>The file located at the pathname is read lazily when the SDK captures an event or
* transaction not when the attachment is initialized. The pathname string is converted into an
* abstract pathname before reading the file.
*
* @param pathname The pathname string of the file to upload as an attachment.
* @param filename The name of the attachment to display in Sentry.
* @param contentType The content type of the attachment.
* @param addToTransactions <code>true</code> if the SDK should add this attachment to every
* {@link ITransaction} or set to <code>false</code> if it shouldn't.
*/
public Attachment(
final @NotNull String pathname,
final @NotNull String filename,
final @NotNull String contentType,
final boolean addToTransactions) {
this.pathname = pathname;
this.filename = filename;
this.contentType = contentType;
this.addToTransactions = addToTransactions;
}
/**
* Gets the bytes of the attachment.
*
* @return the bytes.
*/
public @Nullable byte[] getBytes() {
return bytes;
}
/**
* Gets the pathname string of the attachment.
*
* @return the pathname string.
*/
public @Nullable String getPathname() {
return pathname;
}
/**
* Gets the name of the attachment to display in Sentry.
*
* @return the filename.
*/
public @NotNull String getFilename() {
return filename;
}
/**
* Gets the content type of the attachment. Default is "application/octet-stream".
*
* @return the content type.
*/
public @NotNull String getContentType() {
return contentType;
}
/**
* Returns <code>true</code> if the SDK should add this attachment to every {@link ITransaction}
* and <code>false</code> if it shouldn't. Default is <code>false</code>.
*
* @return <code>true</code> if attachment should be added to every {@link ITransaction}.
*/
boolean isAddToTransactions() {
return addToTransactions;
}
}