2009-10-11 02:22:08 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 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.
|
|
|
|
*/
|
|
|
|
|
2009-12-13 19:40:18 +01:00
|
|
|
#ifndef _RESPONSECODE_H
|
|
|
|
#define _RESPONSECODE_H
|
2009-10-11 02:22:08 +02:00
|
|
|
|
2009-12-13 19:40:18 +01:00
|
|
|
class ResponseCode {
|
2009-10-11 02:22:08 +02:00
|
|
|
public:
|
|
|
|
// 100 series - Requestion action was initiated; expect another reply
|
|
|
|
// before proceeding with a new command.
|
2010-01-06 19:33:53 +01:00
|
|
|
static const int ActionInitiated = 100;
|
2009-10-11 02:22:08 +02:00
|
|
|
|
2010-02-17 02:12:00 +01:00
|
|
|
static const int VolumeListResult = 110;
|
|
|
|
static const int AsecListResult = 111;
|
|
|
|
static const int StorageUsersListResult = 112;
|
2013-04-22 21:15:39 +02:00
|
|
|
static const int CryptfsGetfieldResult = 113;
|
2009-10-11 02:22:08 +02:00
|
|
|
|
|
|
|
// 200 series - Requested action has been successfully completed
|
2010-01-06 19:33:53 +01:00
|
|
|
static const int CommandOkay = 200;
|
2010-01-29 14:15:16 +01:00
|
|
|
static const int ShareStatusResult = 210;
|
2010-01-06 19:33:53 +01:00
|
|
|
static const int AsecPathResult = 211;
|
2010-01-29 14:15:16 +01:00
|
|
|
static const int ShareEnabledResult = 212;
|
2014-01-29 22:31:03 +01:00
|
|
|
static const int PasswordTypeResult = 213;
|
2009-10-11 02:22:08 +02:00
|
|
|
|
|
|
|
// 400 series - The command was accepted but the requested action
|
|
|
|
// did not take place.
|
2010-01-29 14:15:16 +01:00
|
|
|
static const int OperationFailed = 400;
|
|
|
|
static const int OpFailedNoMedia = 401;
|
|
|
|
static const int OpFailedMediaBlank = 402;
|
|
|
|
static const int OpFailedMediaCorrupt = 403;
|
|
|
|
static const int OpFailedVolNotMounted = 404;
|
2010-02-18 20:40:49 +01:00
|
|
|
static const int OpFailedStorageBusy = 405;
|
2010-03-23 19:15:58 +01:00
|
|
|
static const int OpFailedStorageNotFound = 406;
|
2009-10-11 02:22:08 +02:00
|
|
|
|
|
|
|
// 500 series - The command was not accepted and the requested
|
|
|
|
// action did not take place.
|
|
|
|
static const int CommandSyntaxError = 500;
|
|
|
|
static const int CommandParameterError = 501;
|
2011-10-05 05:38:29 +02:00
|
|
|
static const int CommandNoPermission = 502;
|
2009-10-11 02:22:08 +02:00
|
|
|
|
|
|
|
// 600 series - Unsolicited broadcasts
|
2009-12-13 19:40:18 +01:00
|
|
|
static const int UnsolicitedInformational = 600;
|
|
|
|
static const int VolumeStateChange = 605;
|
|
|
|
static const int VolumeMountFailedBlank = 610;
|
|
|
|
static const int VolumeMountFailedDamaged = 611;
|
|
|
|
static const int VolumeMountFailedNoMedia = 612;
|
2013-10-17 01:24:19 +02:00
|
|
|
static const int VolumeUuidChange = 613;
|
|
|
|
static const int VolumeUserLabelChange = 614;
|
2009-12-13 19:40:18 +01:00
|
|
|
|
|
|
|
static const int ShareAvailabilityChange = 620;
|
|
|
|
|
|
|
|
static const int VolumeDiskInserted = 630;
|
|
|
|
static const int VolumeDiskRemoved = 631;
|
|
|
|
static const int VolumeBadRemoval = 632;
|
2010-02-18 20:40:49 +01:00
|
|
|
|
|
|
|
static int convertFromErrno();
|
2009-10-11 02:22:08 +02:00
|
|
|
};
|
|
|
|
#endif
|