Merge "Add support for new accessibility actions" into devel/master
[platform/core/uifw/dali-adaptor.git] / adaptors / common / shared-file.cpp
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
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 // CLASS HEADER
19 #include "shared-file.h"
20
21 // EXTERNAL INCLUDES
22 #include <sys/types.h>
23 #include <unistd.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <sys/stat.h>
27 #include <fcntl.h>
28 #include <sys/file.h>
29 #include <sys/mman.h>
30
31 #include <cstring>
32
33 #include <Ecore.h>
34
35 namespace Dali
36 {
37 namespace Internal
38 {
39 namespace Adaptor
40 {
41
42 SharedFile* SharedFile::New(const char* filename, int size, bool isSystem)
43 {
44   SharedFile *sf = NULL;
45
46   sf = new SharedFile;
47
48   bool opened = sf->OpenFile( filename, size, isSystem );
49   if( !opened )
50   {
51     delete sf;
52     sf = NULL;
53   }
54   return sf;
55 }
56
57 SharedFile::SharedFile()
58 : mFileDescriptor(-1),
59   mSize(0),
60   mAddress(NULL),
61   mFilename()
62 {
63 }
64
65 SharedFile::~SharedFile()
66 {
67   Close();
68 }
69
70 void SharedFile::Close()
71 {
72   if( mAddress != NULL )
73   {
74     munmap( mAddress, mSize );
75     mAddress = NULL;
76   }
77
78   if( mFileDescriptor >= 0 )
79   {
80     close( mFileDescriptor );
81     mFileDescriptor = -1;
82   }
83 }
84
85 unsigned char* SharedFile::GetAddress()
86 {
87   return static_cast<unsigned char *>( mAddress );
88 }
89
90 bool SharedFile::OpenFile(const char* filename, int size, bool isSystem)
91 {
92   bool opened = false;
93   mode_t mode;
94
95   mode = S_IRUSR | S_IWUSR;
96   if( isSystem )
97   {
98     mode |= S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH;
99   }
100
101   mFileDescriptor = shm_open( filename, O_RDWR, mode );
102
103   if( mFileDescriptor >= 0 )
104   {
105     mFilename = filename;
106
107     mSize = size;
108     mAddress = mmap( NULL, mSize, PROT_READ | PROT_WRITE, MAP_SHARED, mFileDescriptor, 0 );
109
110     if( mAddress != MAP_FAILED )
111     {
112       opened = true;
113     }
114   }
115   return opened;
116 }
117
118 } // Adaptor
119 } // Internal
120 } // Dali