blob: 727c09442dcaf3161fcf7d325b3531624db51d87 [file] [log] [blame]
Suchi Amalapurapuc028be42010-01-25 12:19:12 -08001/*
2 * Copyright (C) 2008 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.internal.app;
18
19import android.net.Uri;
20import android.os.ParcelFileDescriptor;
Suchi Amalapurapua2b6c372010-03-05 17:40:11 -080021import android.content.pm.PackageInfoLite;
Kenny Roota02b8b02010-08-05 16:14:17 -070022import android.content.res.ObbInfo;
Suchi Amalapurapuc028be42010-01-25 12:19:12 -080023
24interface IMediaContainerService {
Kenny Root6dceb882012-04-12 14:23:49 -070025 String copyResourceToContainer(in Uri packageURI, String containerId, String key,
26 String resFileName, String publicResFileName, boolean isExternal,
27 boolean isForwardLocked);
Kenny Rootf5121a92011-08-10 16:23:32 -070028 int copyResource(in Uri packageURI,
Suchi Amalapurapuc028be42010-01-25 12:19:12 -080029 in ParcelFileDescriptor outStream);
Kenny Root62e1b4e2011-03-14 17:13:39 -070030 PackageInfoLite getMinimalPackageInfo(in Uri fileUri, in int flags, in long threshold);
Kenny Root6dceb882012-04-12 14:23:49 -070031 boolean checkInternalFreeStorage(in Uri fileUri, boolean isForwardLocked, in long threshold);
32 boolean checkExternalFreeStorage(in Uri fileUri, boolean isForwardLocked);
Kenny Rootaa183e22010-12-02 18:00:38 -080033 ObbInfo getObbInfo(in String filename);
34 long calculateDirectorySize(in String directory);
Jeff Sharkey9cbe986a2012-04-22 18:56:43 -070035 /** Return file system stats: [0] is total bytes, [1] is available bytes */
36 long[] getFileSystemStats(in String path);
Kenny Root02c87302010-07-01 08:10:18 -070037}