Fix builder animation
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / builder / builder-filesystem.h
1 #ifndef __DALI_TOOLKIT_INTERNAL_BUILDER_FILESYSTEM_H__
2 #define __DALI_TOOLKIT_INTERNAL_BUILDER_FILESYSTEM_H__
3
4 //
5 // Copyright (c) 2014 Samsung Electronics Co., Ltd.
6 //
7 // Licensed under the Flora License, Version 1.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://floralicense.org/license/
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 // EXTERNAL INCLUDES
21 #include <wordexp.h>
22 #include <stdio.h>
23 #include <unistd.h>
24
25 inline std::string ExpandPath(const std::string &name)
26 {
27   wordexp_t p;
28   char** w;
29   wordexp( name.c_str(), &p, 0 );
30   w = p.we_wordv;
31   std::stringstream s;
32   for (size_t i=0; i<p.we_wordc;i++ )
33   {
34     s << w[i];
35   }
36   wordfree( &p );
37   return s.str();
38 }
39
40
41 inline std::string ExePath(void)
42 {
43   char buf[256];
44   readlink("/proc/self/exe", buf, sizeof(buf));
45   return std::string(buf);
46 }
47
48 #endif // __DALI_TOOLKIT_INTERNAL_BUILDER_FILESYSTEM_H__