1/*
2 * Copyright (c) 2008-2009, Motorola, Inc.
3 *
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
8 *
9 * - Redistributions of source code must retain the above copyright notice,
10 * this list of conditions and the following disclaimer.
11 *
12 * - Redistributions in binary form must reproduce the above copyright notice,
13 * this list of conditions and the following disclaimer in the documentation
14 * and/or other materials provided with the distribution.
15 *
16 * - Neither the name of the Motorola, Inc. nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
24 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
31 */
32
33package com.android.bluetooth.opp;
34
35import android.provider.BaseColumns;
36import android.net.Uri;
37
38/**
39 * Exposes constants used to interact with the Bluetooth Share manager's content
40 * provider.
41 * @hide
42 */
43
44public final class BluetoothShare implements BaseColumns {
45    private BluetoothShare() {
46    }
47
48    /**
49     * The permission to access the Bluetooth Share Manager
50     */
51    public static final String PERMISSION_ACCESS = "android.permission.ACCESS_BLUETOOTH_SHARE";
52
53    /**
54     * The content:// URI for the data table in the provider
55     */
56    public static final Uri CONTENT_URI = Uri.parse("content://com.android.bluetooth.opp/btopp");
57
58    /**
59     * Broadcast Action: this is sent by the Bluetooth Share component to
60     * transfer complete. The request detail could be retrieved by app * as _ID
61     * is specified in the intent's data.
62     */
63    public static final String TRANSFER_COMPLETED_ACTION = "android.btopp.intent.action.TRANSFER_COMPLETE";
64
65    /**
66     * This is sent by the Bluetooth Share component to indicate there is an
67     * incoming file request timeout and need update UI.
68     */
69    public static final String USER_CONFIRMATION_TIMEOUT_ACTION = "android.btopp.intent.action.USER_CONFIRMATION_TIMEOUT";
70
71    /**
72     * The name of the column containing the URI of the file being
73     * sent/received.
74     * <P>
75     * Type: TEXT
76     * </P>
77     * <P>
78     * Owner can Init/Read
79     * </P>
80     */
81    public static final String URI = "uri";
82
83    /**
84     * The name of the column containing the filename that the incoming file
85     * request recommends. When possible, the Bluetooth Share manager will
86     * attempt to use this filename, or a variation, as the actual name for the
87     * file.
88     * <P>
89     * Type: TEXT
90     * </P>
91     * <P>
92     * Owner can Init/Read
93     * </P>
94     */
95    public static final String FILENAME_HINT = "hint";
96
97    /**
98     * The name of the column containing the filename where the shared file was
99     * actually stored.
100     * <P>
101     * Type: TEXT
102     * </P>
103     * <P>
104     * Owner can Read
105     * </P>
106     */
107    public static final String _DATA = "_data";
108
109    /**
110     * The name of the column containing the MIME type of the shared file.
111     * <P>
112     * Type: TEXT
113     * </P>
114     * <P>
115     * Owner can Init/Read
116     * </P>
117     */
118    public static final String MIMETYPE = "mimetype";
119
120    /**
121     * The name of the column containing the direction (Inbound/Outbound) of the
122     * transfer. See the DIRECTION_* constants for a list of legal values.
123     * <P>
124     * Type: INTEGER
125     * </P>
126     * <P>
127     * Owner can Init/Read
128     * </P>
129     */
130    public static final String DIRECTION = "direction";
131
132    /**
133     * The name of the column containing Bluetooth Device Address that the
134     * transfer is associated with.
135     * <P>
136     * Type: TEXT
137     * </P>
138     * <P>
139     * Owner can Init/Read
140     * </P>
141     */
142    public static final String DESTINATION = "destination";
143
144    /**
145     * The name of the column containing the flags that controls whether the
146     * transfer is displayed by the UI. See the VISIBILITY_* constants for a
147     * list of legal values.
148     * <P>
149     * Type: INTEGER
150     * </P>
151     * <P>
152     * Owner can Init/Read/Write
153     * </P>
154     */
155    public static final String VISIBILITY = "visibility";
156
157    /**
158     * The name of the column containing the current user confirmation state of
159     * the transfer. Applications can write to this to confirm the transfer. the
160     * USER_CONFIRMATION_* constants for a list of legal values.
161     * <P>
162     * Type: INTEGER
163     * </P>
164     * <P>
165     * Owner can Init/Read/Write
166     * </P>
167     */
168    public static final String USER_CONFIRMATION = "confirm";
169
170    /**
171     * The name of the column containing the current status of the transfer.
172     * Applications can read this to follow the progress of each download. See
173     * the STATUS_* constants for a list of legal values.
174     * <P>
175     * Type: INTEGER
176     * </P>
177     * <P>
178     * Owner can Read
179     * </P>
180     */
181    public static final String STATUS = "status";
182
183    /**
184     * The name of the column containing the total size of the file being
185     * transferred.
186     * <P>
187     * Type: INTEGER
188     * </P>
189     * <P>
190     * Owner can Read
191     * </P>
192     */
193    public static final String TOTAL_BYTES = "total_bytes";
194
195    /**
196     * The name of the column containing the size of the part of the file that
197     * has been transferred so far.
198     * <P>
199     * Type: INTEGER
200     * </P>
201     * <P>
202     * Owner can Read
203     * </P>
204     */
205    public static final String CURRENT_BYTES = "current_bytes";
206
207    /**
208     * The name of the column containing the timestamp when the transfer is
209     * initialized.
210     * <P>
211     * Type: INTEGER
212     * </P>
213     * <P>
214     * Owner can Read
215     * </P>
216     */
217    public static final String TIMESTAMP = "timestamp";
218
219    /**
220     * This transfer is outbound, e.g. share file to other device.
221     */
222    public static final int DIRECTION_OUTBOUND = 0;
223
224    /**
225     * This transfer is inbound, e.g. receive file from other device.
226     */
227    public static final int DIRECTION_INBOUND = 1;
228
229    /**
230     * This transfer is waiting for user confirmation.
231     */
232    public static final int USER_CONFIRMATION_PENDING = 0;
233
234    /**
235     * This transfer is confirmed by user.
236     */
237    public static final int USER_CONFIRMATION_CONFIRMED = 1;
238
239    /**
240     * This transfer is auto-confirmed per previous user confirmation.
241     */
242    public static final int USER_CONFIRMATION_AUTO_CONFIRMED = 2;
243
244    /**
245     * This transfer is denied by user.
246     */
247    public static final int USER_CONFIRMATION_DENIED = 3;
248
249    /**
250     * This transfer is timeout before user action.
251     */
252    public static final int USER_CONFIRMATION_TIMEOUT = 4;
253
254    /**
255     * This transfer was initiated by a connection handover
256     * (for example WIFI, NFC) and has been auto-confirmed.
257     */
258    public static final int USER_CONFIRMATION_HANDOVER_CONFIRMED = 5;
259
260    /**
261     * This transfer is visible and shows in the notifications while in progress
262     * and after completion.
263     */
264    public static final int VISIBILITY_VISIBLE = 0;
265
266    /**
267     * This transfer doesn't show in the notifications.
268     */
269    public static final int VISIBILITY_HIDDEN = 1;
270
271    /**
272     * Returns whether the status is informational (i.e. 1xx).
273     */
274    public static boolean isStatusInformational(int status) {
275        return (status >= 100 && status < 200);
276    }
277
278    /**
279     * Returns whether the transfer is suspended. (i.e. whether the transfer
280     * won't complete without some action from outside the transfer manager).
281     */
282    public static boolean isStatusSuspended(int status) {
283        return (status == STATUS_PENDING);
284    }
285
286    /**
287     * Returns whether the status is a success (i.e. 2xx).
288     */
289    public static boolean isStatusSuccess(int status) {
290        return (status >= 200 && status < 300);
291    }
292
293    /**
294     * Returns whether the status is an error (i.e. 4xx or 5xx).
295     */
296    public static boolean isStatusError(int status) {
297        return (status >= 400 && status < 600);
298    }
299
300    /**
301     * Returns whether the status is a client error (i.e. 4xx).
302     */
303    public static boolean isStatusClientError(int status) {
304        return (status >= 400 && status < 500);
305    }
306
307    /**
308     * Returns whether the status is a server error (i.e. 5xx).
309     */
310    public static boolean isStatusServerError(int status) {
311        return (status >= 500 && status < 600);
312    }
313
314    /**
315     * Returns whether the transfer has completed (either with success or
316     * error).
317     */
318    public static boolean isStatusCompleted(int status) {
319        return (status >= 200 && status < 300) || (status >= 400 && status < 600);
320    }
321
322    /**
323     * This transfer hasn't stated yet
324     */
325    public static final int STATUS_PENDING = 190;
326
327    /**
328     * This transfer has started
329     */
330    public static final int STATUS_RUNNING = 192;
331
332    /**
333     * This transfer has successfully completed. Warning: there might be other
334     * status values that indicate success in the future. Use isSucccess() to
335     * capture the entire category.
336     */
337    public static final int STATUS_SUCCESS = 200;
338
339    /**
340     * This request couldn't be parsed. This is also used when processing
341     * requests with unknown/unsupported URI schemes.
342     */
343    public static final int STATUS_BAD_REQUEST = 400;
344
345    /**
346     * This transfer is forbidden by target device.
347     */
348    public static final int STATUS_FORBIDDEN = 403;
349
350    /**
351     * This transfer can't be performed because the content cannot be handled.
352     */
353    public static final int STATUS_NOT_ACCEPTABLE = 406;
354
355    /**
356     * This transfer cannot be performed because the length cannot be determined
357     * accurately. This is the code for the HTTP error "Length Required", which
358     * is typically used when making requests that require a content length but
359     * don't have one, and it is also used in the client when a response is
360     * received whose length cannot be determined accurately (therefore making
361     * it impossible to know when a transfer completes).
362     */
363    public static final int STATUS_LENGTH_REQUIRED = 411;
364
365    /**
366     * This transfer was interrupted and cannot be resumed. This is the code for
367     * the OBEX error "Precondition Failed", and it is also used in situations
368     * where the client doesn't have an ETag at all.
369     */
370    public static final int STATUS_PRECONDITION_FAILED = 412;
371
372    /**
373     * This transfer was canceled
374     */
375    public static final int STATUS_CANCELED = 490;
376
377    /**
378     * This transfer has completed with an error. Warning: there will be other
379     * status values that indicate errors in the future. Use isStatusError() to
380     * capture the entire category.
381     */
382    public static final int STATUS_UNKNOWN_ERROR = 491;
383
384    /**
385     * This transfer couldn't be completed because of a storage issue.
386     * Typically, that's because the file system is missing or full.
387     */
388    public static final int STATUS_FILE_ERROR = 492;
389
390    /**
391     * This transfer couldn't be completed because of no sdcard.
392     */
393    public static final int STATUS_ERROR_NO_SDCARD = 493;
394
395    /**
396     * This transfer couldn't be completed because of sdcard full.
397     */
398    public static final int STATUS_ERROR_SDCARD_FULL = 494;
399
400    /**
401     * This transfer couldn't be completed because of an unspecified un-handled
402     * OBEX code.
403     */
404    public static final int STATUS_UNHANDLED_OBEX_CODE = 495;
405
406    /**
407     * This transfer couldn't be completed because of an error receiving or
408     * processing data at the OBEX level.
409     */
410    public static final int STATUS_OBEX_DATA_ERROR = 496;
411
412    /**
413     * This transfer couldn't be completed because of an error when establishing
414     * connection.
415     */
416    public static final int STATUS_CONNECTION_ERROR = 497;
417
418}
419