blob: fef80664bda3434a88cb113bbf306e5985309bf7 [file] [log] [blame]
Mike Lockwood56118b52010-05-11 17:16:59 -04001/*
2 * Copyright (C) 2010 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
Mike Lockwood3e6616d2010-06-29 18:11:52 -040017#define LOG_TAG "MtpStorage"
18
19#include "MtpDebug.h"
Mike Lockwood56118b52010-05-11 17:16:59 -040020#include "MtpDatabase.h"
21#include "MtpStorage.h"
22
23#include <sys/types.h>
24#include <sys/stat.h>
25#include <sys/statfs.h>
26#include <unistd.h>
27#include <dirent.h>
28#include <errno.h>
29#include <string.h>
30#include <stdio.h>
31#include <limits.h>
32
Mike Lockwood8d3257a2010-05-14 10:10:36 -040033namespace android {
Mike Lockwood56118b52010-05-11 17:16:59 -040034
Mike Lockwood7ae938be2011-04-05 10:21:27 -040035MtpStorage::MtpStorage(MtpStorageID id, const char* filePath,
Mike Lockwood51690542011-05-09 20:16:05 -070036 const char* description, uint64_t reserveSpace, bool removable)
Mike Lockwood56118b52010-05-11 17:16:59 -040037 : mStorageID(id),
38 mFilePath(filePath),
Mike Lockwood7ae938be2011-04-05 10:21:27 -040039 mDescription(description),
Mike Lockwood7f36b192010-12-12 12:17:43 -080040 mMaxCapacity(0),
Mike Lockwood51690542011-05-09 20:16:05 -070041 mReserveSpace(reserveSpace),
42 mRemovable(removable)
Mike Lockwood56118b52010-05-11 17:16:59 -040043{
Mike Lockwoodf26a5862011-01-21 21:00:54 -080044 LOGV("MtpStorage id: %d path: %s\n", id, filePath);
Mike Lockwood56118b52010-05-11 17:16:59 -040045}
46
47MtpStorage::~MtpStorage() {
48}
49
50int MtpStorage::getType() const {
Mike Lockwood51690542011-05-09 20:16:05 -070051 return (mRemovable ? MTP_STORAGE_REMOVABLE_RAM : MTP_STORAGE_FIXED_RAM);
Mike Lockwood56118b52010-05-11 17:16:59 -040052}
53
54int MtpStorage::getFileSystemType() const {
55 return MTP_STORAGE_FILESYSTEM_HIERARCHICAL;
56}
57
58int MtpStorage::getAccessCapability() const {
59 return MTP_STORAGE_READ_WRITE;
60}
61
62uint64_t MtpStorage::getMaxCapacity() {
63 if (mMaxCapacity == 0) {
64 struct statfs stat;
Mike Lockwood467ca0d2011-02-18 09:07:14 -050065 if (statfs(getPath(), &stat))
Mike Lockwood56118b52010-05-11 17:16:59 -040066 return -1;
67 mMaxCapacity = (uint64_t)stat.f_blocks * (uint64_t)stat.f_bsize;
68 }
69 return mMaxCapacity;
70}
71
72uint64_t MtpStorage::getFreeSpace() {
73 struct statfs stat;
Mike Lockwood467ca0d2011-02-18 09:07:14 -050074 if (statfs(getPath(), &stat))
Mike Lockwood56118b52010-05-11 17:16:59 -040075 return -1;
Mike Lockwood7f36b192010-12-12 12:17:43 -080076 uint64_t freeSpace = (uint64_t)stat.f_bavail * (uint64_t)stat.f_bsize;
77 return (freeSpace > mReserveSpace ? freeSpace - mReserveSpace : 0);
Mike Lockwood56118b52010-05-11 17:16:59 -040078}
79
80const char* MtpStorage::getDescription() const {
Mike Lockwood7ae938be2011-04-05 10:21:27 -040081 return (const char *)mDescription;
Mike Lockwood56118b52010-05-11 17:16:59 -040082}
83
Mike Lockwood8d3257a2010-05-14 10:10:36 -040084} // namespace android