Repo Merge: Moving resource API down a directory
[platform/upstream/iotivity.git] / resource / src / OCException.cpp
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 #include "OCException.h"
22 #include "StringConstants.h"
23
24 std::string OC::OCException::reason(const OCStackResult sr)
25 {
26     switch(sr)
27     {
28         case OC_STACK_OK:
29              return OC::Exception::NO_ERROR;
30         case OC_STACK_RESOURCE_CREATED:
31              return OC::Exception::RESOURCE_CREATED;
32         case OC_STACK_RESOURCE_DELETED:
33              return OC::Exception::RESOURCE_DELETED;
34         case OC_STACK_INVALID_URI:
35             return OC::Exception::INVALID_URI;
36         case OC_STACK_INVALID_IP:
37             return OC::Exception::INVALID_IP;
38         case OC_STACK_INVALID_PORT:
39             return OC::Exception::INVALID_PORT;
40         case OC_STACK_INVALID_CALLBACK:
41             return OC::Exception::INVALID_CB;
42         case OC_STACK_INVALID_METHOD:
43             return OC::Exception::INVALID_METHOD;
44         case OC_STACK_INVALID_QUERY:
45             return OC::Exception::INVALID_QUERY;
46         case OC_STACK_INVALID_PARAM:
47             return OC::Exception::INVALID_PARAM;
48         case OC_STACK_INVALID_OBSERVE_PARAM:
49             return OC::Exception::INVALID_OBESERVE;
50         case OC_STACK_NO_MEMORY:
51             return OC::Exception::NO_MEMORY;
52         case OC_STACK_COMM_ERROR:
53             return OC::Exception::COMM_ERROR;
54         case OC_STACK_NOTIMPL:
55             return OC::Exception::NOT_IMPL;
56         case OC_STACK_NO_RESOURCE:
57             return OC::Exception::NOT_FOUND;
58         case OC_STACK_RESOURCE_ERROR:
59             return OC::Exception::RESOURCE_ERROR;
60         case OC_STACK_SLOW_RESOURCE:
61             return OC::Exception::SLOW_RESOURCE;
62         case OC_STACK_NO_OBSERVERS:
63             return OC::Exception::NO_OBSERVERS;
64         case OC_STACK_OBSERVER_NOT_FOUND:
65             return OC::Exception::OBSV_NO_FOUND;
66         case OC_STACK_OBSERVER_NOT_ADDED:
67             return OC::Exception::OBSV_NOT_ADDED;
68         case OC_STACK_OBSERVER_NOT_REMOVED:
69             return OC::Exception::OBSV_NOT_REMOVED;
70 #ifdef WITH_PRESENCE
71         case OC_STACK_PRESENCE_STOPPED:
72             return OC::Exception::PRESENCE_STOPPED;
73         case OC_STACK_PRESENCE_DO_NOT_HANDLE:
74             return OC::Exception::PRESENCE_NOT_HANDLED;
75 #endif
76         case OC_STACK_INVALID_OPTION:
77             return OC::Exception::INVALID_OPTION;
78         case OC_STACK_MALFORMED_RESPONSE:
79             return OC::Exception::MALFORMED_STACK_RESPONSE;
80         case OC_STACK_ERROR:
81             return OC::Exception::GENERAL_FAULT;
82     }
83
84     return OC::Exception::UNKNOWN_ERROR;
85 }
86