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-08-10 15:20:35 -04:00
|
|
|
class MtpProperty;
|
2011-04-21 17:05:55 -07:00
|
|
|
class MtpObjectInfo;
|
2010-05-11 17:16:59 -04:00
|
|
|
|
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-08-10 07:37:50 -04:00
|
|
|
// callee should delete[] the results from these
|
|
|
|
// results can be NULL
|
|
|
|
virtual MtpObjectFormatList* getSupportedPlaybackFormats() = 0;
|
|
|
|
virtual MtpObjectFormatList* getSupportedCaptureFormats() = 0;
|
|
|
|
virtual MtpObjectPropertyList* getSupportedObjectProperties(MtpObjectFormat format) = 0;
|
|
|
|
virtual MtpDevicePropertyList* getSupportedDeviceProperties() = 0;
|
|
|
|
|
2010-08-10 15:20:35 -04:00
|
|
|
virtual MtpResponseCode getObjectPropertyValue(MtpObjectHandle handle,
|
2010-07-02 14:03:31 -04:00
|
|
|
MtpObjectProperty property,
|
|
|
|
MtpDataPacket& packet) = 0;
|
2010-05-11 17:16:59 -04:00
|
|
|
|
2010-08-10 15:20:35 -04:00
|
|
|
virtual MtpResponseCode setObjectPropertyValue(MtpObjectHandle handle,
|
|
|
|
MtpObjectProperty property,
|
|
|
|
MtpDataPacket& packet) = 0;
|
|
|
|
|
|
|
|
virtual MtpResponseCode getDevicePropertyValue(MtpDeviceProperty property,
|
|
|
|
MtpDataPacket& packet) = 0;
|
|
|
|
|
|
|
|
virtual MtpResponseCode setDevicePropertyValue(MtpDeviceProperty property,
|
|
|
|
MtpDataPacket& packet) = 0;
|
|
|
|
|
|
|
|
virtual MtpResponseCode resetDeviceProperty(MtpDeviceProperty property) = 0;
|
|
|
|
|
2010-10-14 18:03:25 -04:00
|
|
|
virtual MtpResponseCode getObjectPropertyList(MtpObjectHandle handle,
|
2010-12-01 18:46:23 -05:00
|
|
|
uint32_t format, uint32_t property,
|
2010-10-14 18:03:25 -04:00
|
|
|
int groupCode, int depth,
|
|
|
|
MtpDataPacket& packet) = 0;
|
|
|
|
|
2010-07-02 14:03:31 -04:00
|
|
|
virtual MtpResponseCode getObjectInfo(MtpObjectHandle handle,
|
2011-04-21 17:05:55 -07:00
|
|
|
MtpObjectInfo& info) = 0;
|
2010-05-11 17:16:59 -04:00
|
|
|
|
2011-04-24 18:40:17 -07:00
|
|
|
virtual void* getThumbnail(MtpObjectHandle handle, size_t& outThumbSize) = 0;
|
|
|
|
|
2010-08-02 10:37:41 -04:00
|
|
|
virtual MtpResponseCode getObjectFilePath(MtpObjectHandle handle,
|
2010-12-08 16:08:01 -08:00
|
|
|
MtpString& outFilePath,
|
|
|
|
int64_t& outFileLength,
|
|
|
|
MtpObjectFormat& outFormat) = 0;
|
2010-08-03 15:30:09 -04:00
|
|
|
|
2010-08-02 10:37:41 -04:00
|
|
|
virtual MtpResponseCode deleteFile(MtpObjectHandle handle) = 0;
|
2010-08-03 15:30:09 -04:00
|
|
|
|
|
|
|
virtual MtpObjectHandleList* getObjectReferences(MtpObjectHandle handle) = 0;
|
|
|
|
|
|
|
|
virtual MtpResponseCode setObjectReferences(MtpObjectHandle handle,
|
|
|
|
MtpObjectHandleList* references) = 0;
|
|
|
|
|
2010-08-10 15:20:35 -04:00
|
|
|
virtual MtpProperty* getObjectPropertyDesc(MtpObjectProperty property,
|
|
|
|
MtpObjectFormat format) = 0;
|
|
|
|
|
|
|
|
virtual MtpProperty* getDevicePropertyDesc(MtpDeviceProperty property) = 0;
|
2010-08-31 16:25:12 -04:00
|
|
|
|
|
|
|
virtual void sessionStarted() = 0;
|
|
|
|
|
|
|
|
virtual void sessionEnded() = 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
|