Cosmetic fixes in dali-scene-loader.
[platform/core/uifw/dali-toolkit.git] / dali-scene-loader / public-api / utils.h
1 #ifndef DALI_SCENE_LOADER_UTILS_H_
2 #define DALI_SCENE_LOADER_UTILS_H_
3 /*
4  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19
20 // INTERNAL INCLUDES
21 #include "dali-scene-loader/public-api/api.h"
22
23 // EXTERNAL INCLUDES
24 #include "dali/public-api/actors/actor.h"
25 #include "dali/public-api/rendering/renderer.h"
26 #include "dali/public-api/common/dali-common.h"
27 #include <sstream>
28 #include <cctype>
29
30 namespace Dali
31 {
32 namespace SceneLoader
33 {
34
35 /*
36  * @brief Fixed size backing buffer to use with std::ostreams where control over
37  *  allocations (which this does not make), is required.
38  * @note All stream insertions that would overflow the buffer that StreamBuffer
39  *  was created with, will fail.
40  */
41 class DALI_SCENE_LOADER_API StreamBuffer : public std::basic_streambuf<char>
42 {
43 public:
44   StreamBuffer(char* buffer, size_t size) noexcept(true);
45 };
46
47 /*
48  * @brief Wraps an ostream with a pre-allocated, fixed size backing buffer
49  *  which a message can be formatted into. Upon destruction, it throws a
50  *  DaliException with the message.
51  */
52 class DALI_SCENE_LOADER_API ExceptionFlinger
53 {
54 public:
55   enum { MESSAGE_BUFFER_SIZE = 512 };
56
57   ExceptionFlinger(const char* location) noexcept(true);
58
59   [[noreturn]]
60   ~ExceptionFlinger() noexcept(false);
61
62   template <typename T>
63   ExceptionFlinger& operator<<(const T& rhs) noexcept(true)
64   {
65     mStream << rhs;
66     return *this;
67   }
68
69 private:
70   static char* GetMessageBuffer() noexcept(true);
71
72   const char* mLocation;
73   StreamBuffer mStreamBuffer;
74   std::ostream mStream;
75 };
76
77 /*
78  * @brief Formats the given printf-style varargs into a std::string.
79  */
80 DALI_SCENE_LOADER_API std::string FormatString(const char* format, ...);
81
82 /*
83  * @return The @n th bit in a bitmask.
84  */
85 DALI_SCENE_LOADER_API constexpr size_t NthBit(size_t n) { return 1 << n; }
86
87 /*
88  * @return Whether all of @a mask 's bits are set on @a value.
89  */
90 inline
91 DALI_SCENE_LOADER_API bool MaskMatch(uint32_t value, uint32_t mask)
92 {
93   return (value & mask) == mask;
94 }
95
96 /*
97  * @brief Convert a four-letter(, null-terminated) string literal into a uint32_t.
98  */
99 inline
100 DALI_SCENE_LOADER_API constexpr uint32_t FourCC(const char(&fourCC)[5])
101 {
102   return (fourCC[3] << 24) | (fourCC[2] << 16) | (fourCC[1] << 8) | fourCC[0];
103 }
104
105 /*
106  * @brief Insensitive case compare function.
107  * @param[in] a, compare string
108  * @param[in] b, compare string
109  * @return true if strings are equal
110  */
111 inline
112 DALI_SCENE_LOADER_API bool CaseInsensitiveCharacterCompare( unsigned char a, unsigned char b )
113 {
114   // Converts to lower case in the current locale.
115   return std::tolower( a ) == std::tolower( b );
116 }
117
118 /*
119  * @return true if the lower cased ASCII strings are equal.
120  * @param[in] a, compare string
121  * @param[in] b, compare string
122  */
123 inline
124 DALI_SCENE_LOADER_API bool CaseInsensitiveStringCompare( const std::string& a, const std::string& b )
125 {
126   bool result = false;
127   if( a.length() == b.length() )
128   {
129     result = std::equal( a.begin(), a.end(), b.begin(), &CaseInsensitiveCharacterCompare );
130   }
131   return result;
132 }
133
134 /*
135  * @brief Attempts to load the contents of a text file; returns empty string on
136  *  failure. A pointer to a boolean may be passed in @a fail; this will be set
137  *  to true in case of failure (should only be checked if the returned string
138  *  was empty()).
139  */
140 DALI_SCENE_LOADER_API std::string LoadTextFile(const char* path, bool* fail = nullptr);
141
142 /*
143  * @brief Makes a number of calls to @a fn, passing to each one the given
144  *  @a actor then each of its children, in depth-first traversal.
145  * @note @a fn must not change the actor hierarchy during traversal.
146  * @note Use of a @a fn that is itself recursing in @a is also discouraged
147  *  for performance and stability reasons.
148  */
149 template <typename Func>
150 inline
151 DALI_SCENE_LOADER_API void VisitActor(Actor a, Func fn)
152 {
153   fn(a);
154
155   unsigned int numChildren = a.GetChildCount();
156   for(unsigned int i = 0; i < numChildren; ++i)
157   {
158     VisitActor(a.GetChildAt(i), fn);
159   }
160 }
161
162 /*
163  * @brief Convenience function to set the given actor @a 's anchor point
164  *  and parent origin to center.
165  */
166 inline
167 DALI_SCENE_LOADER_API void SetActorCentered(Actor a)
168 {
169   a.SetProperty(Actor::Property::ANCHOR_POINT, AnchorPoint::CENTER);
170   a.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::CENTER);
171 }
172
173 namespace TexturedQuadOptions
174 {
175 using Type = uint32_t;
176
177 enum DALI_SCENE_LOADER_API Values : Type
178 {
179   NONE = 0x00,
180   FLIP_VERTICAL = 0x01,
181 };
182 }
183
184 /*
185  * @brief Makes... geometry for a textured quad.
186  */
187 DALI_SCENE_LOADER_API Geometry MakeTexturedQuadGeometry(TexturedQuadOptions::Type options = TexturedQuadOptions::NONE);
188
189 /*
190  * @brief Fixes the path of a file. Replaces the '\\' separator by the '/' one.
191  * @param[in,out] path The path to be fixed.
192  */
193 DALI_SCENE_LOADER_API void ToUnixFileSeparators( std::string& path );
194
195 }
196 }
197
198 #endif /* DALI_SCENE_LOADER_UTILS_H_ */