2010-05-11 17:16:59 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _MTP_DATABASE_H
|
|
|
|
#define _MTP_DATABASE_H
|
|
|
|
|
2010-05-19 10:33:39 -04:00
|
|
|
#include "MtpTypes.h"
|
2010-05-11 17:16:59 -04:00
|
|
|
|
2010-05-14 10:10:36 -04:00
|
|
|
namespace android {
|
|
|
|
|
2010-05-11 17:16:59 -04:00
|
|
|
class MtpDataPacket;
|
|
|
|
|
2010-07-02 14:03:31 -04:00
|
|
|
class MtpDatabase {
|
2010-05-11 17:16:59 -04:00
|
|
|
public:
|
2010-07-03 14:40:05 -04:00
|
|
|
virtual ~MtpDatabase() {}
|
2010-07-02 14:03:31 -04:00
|
|
|
|
2010-07-12 08:49:01 -04:00
|
|
|
// called from SendObjectInfo to reserve a database entry for the incoming file
|
|
|
|
virtual MtpObjectHandle beginSendObject(const char* path,
|
2010-07-02 14:03:31 -04:00
|
|
|
MtpObjectFormat format,
|
|
|
|
MtpObjectHandle parent,
|
|
|
|
MtpStorageID storage,
|
|
|
|
uint64_t size,
|
|
|
|
time_t modified) = 0;
|
|
|
|
|
2010-07-12 08:49:01 -04:00
|
|
|
// called to report success or failure of the SendObject file transfer
|
|
|
|
// success should signal a notification of the new object's creation,
|
|
|
|
// failure should remove the database entry created in beginSendObject
|
|
|
|
virtual void endSendObject(const char* path,
|
|
|
|
MtpObjectHandle handle,
|
|
|
|
MtpObjectFormat format,
|
|
|
|
bool succeeded) = 0;
|
|
|
|
|
2010-07-02 14:03:31 -04:00
|
|
|
virtual MtpObjectHandleList* getObjectList(MtpStorageID storageID,
|
2010-07-12 08:49:01 -04:00
|
|
|
MtpObjectFormat format,
|
|
|
|
MtpObjectHandle parent) = 0;
|
2010-05-11 17:16:59 -04:00
|
|
|
|
2010-08-02 10:52:20 -04:00
|
|
|
virtual int getNumObjects(MtpStorageID storageID,
|
|
|
|
MtpObjectFormat format,
|
|
|
|
MtpObjectHandle parent) = 0;
|
|
|
|
|
2010-07-02 14:03:31 -04:00
|
|
|
virtual MtpResponseCode getObjectProperty(MtpObjectHandle handle,
|
|
|
|
MtpObjectProperty property,
|
|
|
|
MtpDataPacket& packet) = 0;
|
2010-05-11 17:16:59 -04:00
|
|
|
|
2010-07-02 14:03:31 -04:00
|
|
|
virtual MtpResponseCode getObjectInfo(MtpObjectHandle handle,
|
|
|
|
MtpDataPacket& packet) = 0;
|
2010-05-11 17:16:59 -04:00
|
|
|
|
2010-08-02 10:37:41 -04:00
|
|
|
virtual MtpResponseCode getObjectFilePath(MtpObjectHandle handle,
|
2010-07-02 14:03:31 -04:00
|
|
|
MtpString& filePath,
|
|
|
|
int64_t& fileLength) = 0;
|
2010-08-02 10:37:41 -04:00
|
|
|
virtual MtpResponseCode deleteFile(MtpObjectHandle handle) = 0;
|
2010-05-11 17:16:59 -04:00
|
|
|
};
|
|
|
|
|
2010-05-14 10:10:36 -04:00
|
|
|
}; // namespace android
|
|
|
|
|
2010-05-11 17:16:59 -04:00
|
|
|
#endif // _MTP_DATABASE_H
|