Tizen 2.1 base
[platform/framework/native/app-service.git] / plugins / accessory-condition-handler / AccessoryConditionHandler.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://floralicense.org/license/
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file        AccessoryConditionHandler.h
20  * @brief       This is the declaration file of the AccessoryConditionHandler class.
21  */
22
23 #ifndef _ACCESSORY_CONDITION_HANDLER_H_
24 #define _ACCESSORY_CONDITION_HANDLER_H_
25
26 #include <FApp_AppLaunchConditionHandlerBase.h>
27 #include <FBase.h>
28
29
30 class AccessoryMonitor;
31
32 class AccessoryConditionHandler
33         :public Tizen::App::_AppLaunchConditionHandlerBase
34 {
35 public:
36         AccessoryConditionHandler();
37         ~AccessoryConditionHandler();
38         bool ProcessPrimitiveCommand(const char* command, int length);
39
40         virtual result Register(Tizen::App::_AppLaunchCondition& operation);
41         virtual result Unregister(Tizen::App::_AppLaunchCondition& operation);
42 private:
43         char* GetValueFromCommandN(const char* command, int length);
44         bool MessageCommandHandle(const char* command, int length);
45         bool RequestCommandHandle(const char* command, int length);
46         bool TizenRequestCommand(const char* command, int length);
47         AccessoryMonitor* __pAccessoryMonitor;
48         Tizen::Base::Collection::ArrayList __appConditionList;
49 };
50
51 #endif //_ACCESSORY_CONDITION_HANDLER_H_