blob: 32910ce679183c61954ead095678172ab4cfd598 [file] [log] [blame]
Steve McKayf68210e2015-11-03 15:23:16 -08001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.documentsui;
18
Steve McKayf68210e2015-11-03 15:23:16 -080019import android.content.ContentProviderClient;
20import android.database.Cursor;
21
Steve McKayd0805062016-09-15 14:30:38 -070022import com.android.documentsui.base.DocumentInfo;
Garfield, Tan11d23482016-08-05 09:33:29 -070023import com.android.documentsui.sorting.SortModel;
Tomasz Mikolajewskie29e3412016-02-24 12:53:44 +090024
Steve McKayf68210e2015-11-03 15:23:16 -080025import libcore.io.IoUtils;
26
27public class DirectoryResult implements AutoCloseable {
28 ContentProviderClient client;
29 public Cursor cursor;
30 public Exception exception;
Tomasz Mikolajewskie29e3412016-02-24 12:53:44 +090031 public DocumentInfo doc;
Garfield, Tan11d23482016-08-05 09:33:29 -070032 public SortModel sortModel;
Steve McKayf68210e2015-11-03 15:23:16 -080033
34 @Override
35 public void close() {
36 IoUtils.closeQuietly(cursor);
37 ContentProviderClient.releaseQuietly(client);
38 cursor = null;
39 client = null;
Garfield, Tan11d23482016-08-05 09:33:29 -070040 sortModel = null;
Steve McKayf68210e2015-11-03 15:23:16 -080041 }
42}