fd2d20654bc7a0ad43c66aeff55ca98696f36cd0
[framework/web/wrt-commons.git] / modules / core / include / dpl / file_input_mapping.h
1 /*
2  * Copyright (c) 2011 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  * @file        file_input_mapping.h
18  * @author      Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version     1.0
20  * @brief       This file is the header file of file input mapping
21  */
22 #ifndef DPL_FILE_INPUT_MAPPING_H
23 #define DPL_FILE_INPUT_MAPPING_H
24
25 #include <dpl/exception.h>
26 #include <dpl/noncopyable.h>
27
28 namespace DPL
29 {
30 class FileInputMapping
31     : private Noncopyable
32 {
33 public:
34     class Exception
35     {
36     public:
37         DECLARE_EXCEPTION_TYPE(DPL::Exception, Base)
38         DECLARE_EXCEPTION_TYPE(Base, OpenFailed)
39     };
40
41 private:
42     int m_handle;
43     off64_t m_size;
44     unsigned char *m_address;
45
46 public:
47     /**
48      * Constructor
49      */
50     explicit FileInputMapping(const std::string &fileName);
51
52     /**
53      * Destructor
54      */
55     ~FileInputMapping();
56
57     /**
58      * Get file mapping total size
59      *
60      * @return 64-bit size
61      */
62     off64_t GetSize() const;
63
64     /**
65      * Get file mapping base address
66      *
67      * @return Base address of file mapping
68      */
69     const unsigned char *GetAddress() const;
70 };
71 } // namespace DPL
72
73 #endif // DPL_FILE_INPUT_MAPPING_H