219c34e07037c296713f82906ada3b7ba45e5327
[platform/core/uifw/libscl-ui-nui.git] / scl / metadata_bin_parser.h
1 /*
2  * Copyright (c) 2012 - 2014 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 __METADATA_BIN_PARSER_H__
19 #define __METADATA_BIN_PARSER_H__
20 #include "metadata.h"
21 #include "file_storage_impl.h"
22 #include "string_collector.h"
23 class Metadata_Bin_Parser{
24     public:
25         static const int FIELD_NUM_WIDTH = 2;
26         Metadata_Bin_Parser(const FileStorage& storage, int, int);
27         ~Metadata_Bin_Parser();
28         const MetaData* get_metadata()const {
29             return &metadata;
30         }
31     private:
32         void parse();
33         void decode_record(MetaData_Record& metadata_record);
34         MetaData metadata;
35         FileStorage m_storage;
36 };
37 #endif