update the latest source
[platform/core/connectivity/smartcard-service.git] / common / include / SimpleTLV.h
1 /*
2 * Copyright (c) 2012 Samsung Electronics Co., Ltd All Rights Reserved
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17
18 #ifndef SIMPLETLV_H_
19 #define SIMPLETLV_H_
20
21 /* standard library header */
22
23 /* SLP library header */
24
25 /* local header */
26 #include "ByteArray.h"
27 #include "TLVHelper.h"
28
29 namespace smartcard_service_api
30 {
31         class SimpleTLV : public TLVHelper
32         {
33         private:
34                 SimpleTLV(TLVHelper *parent);
35                 SimpleTLV(const ByteArray &array, TLVHelper *parent);
36
37                 int decodeTag(unsigned char *buffer);
38                 int decodeLength(unsigned char *buffer);
39                 int decodeValue(unsigned char *buffer);
40
41                 TLVHelper *getChildTLV(ByteArray data);
42
43         public:
44                 SimpleTLV();
45                 SimpleTLV(const ByteArray &array);
46                 ~SimpleTLV();
47
48                 static ByteArray getOctetString(const ByteArray &array);
49                 static bool getBoolean(const ByteArray &array);
50                 static int getInteger(const ByteArray &array);
51
52                 static ByteArray getOctetString(SimpleTLV &tlv);
53                 static bool getBoolean(SimpleTLV &tlv);
54                 static int getInteger(SimpleTLV &tlv);
55
56                 static ByteArray encode(unsigned int tag, ByteArray buffer);
57                 static ByteArray encode(unsigned int tag, unsigned char *buffer, unsigned int length);
58         };
59
60 } /* namespace smartcard_service_api */
61 #endif /* SIMPLETLV_H_ */