Merge branch devel/master (1.0.49) into tizen
[platform/core/uifw/dali-adaptor.git] / adaptors / base / environment-options.cpp
1 /*
2  * Copyright (c) 2015 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 "environment-options.h"
20
21 // EXTERNAL INCLUDES
22 #include <cstdlib>
23 #include <dali/integration-api/render-controller.h>
24 #include <dali/public-api/math/math-utils.h>
25
26 // INTERNAL INCLUDES
27 #include <base/environment-variables.h>
28
29 namespace Dali
30 {
31
32 namespace Internal
33 {
34
35 namespace Adaptor
36 {
37
38 namespace
39 {
40 const unsigned int DEFAULT_STATISTICS_LOG_FREQUENCY = 2;
41
42 unsigned int GetIntegerEnvironmentVariable( const char* variable, unsigned int defaultValue )
43 {
44   const char* variableParameter = std::getenv(variable);
45
46   // if the parameter exists convert it to an integer, else return the default value
47   unsigned int intValue = variableParameter ? std::atoi(variableParameter) : defaultValue;
48   return intValue;
49 }
50
51 bool GetIntegerEnvironmentVariable( const char* variable, int& intValue )
52 {
53   const char* variableParameter = std::getenv(variable);
54
55   if( !variableParameter )
56   {
57     return false;
58   }
59   // if the parameter exists convert it to an integer, else return the default value
60   intValue = std::atoi(variableParameter);
61   return true;
62 }
63
64 bool GetFloatEnvironmentVariable( const char* variable, float& floatValue )
65 {
66   const char* variableParameter = std::getenv(variable);
67
68   if( !variableParameter )
69   {
70     return false;
71   }
72   // if the parameter exists convert it to an integer, else return the default value
73   floatValue = std::atof(variableParameter);
74   return true;
75 }
76
77 const char * GetCharEnvironmentVariable( const char * variable )
78 {
79   return std::getenv( variable );
80 }
81
82 } // unnamed namespace
83
84 EnvironmentOptions::EnvironmentOptions()
85 : mWindowName(),
86   mWindowClassName(),
87   mNetworkControl(0),
88   mFpsFrequency(0),
89   mUpdateStatusFrequency(0),
90   mObjectProfilerInterval( 0 ),
91   mPerformanceStatsLevel(0),
92   mPerformanceStatsFrequency( DEFAULT_STATISTICS_LOG_FREQUENCY ),
93   mPerformanceTimeStampOutput(0),
94   mPanGestureLoggingLevel(0),
95   mPanGesturePredictionMode(-1),
96   mPanGesturePredictionAmount(-1), ///< only sets value in pan gesture if greater than 0
97   mPanGestureMaxPredictionAmount(-1),
98   mPanGestureMinPredictionAmount(-1),
99   mPanGesturePredictionAmountAdjustment(-1),
100   mPanGestureSmoothingMode(-1),
101   mPanGestureSmoothingAmount(-1.0f),
102   mPanMinimumDistance(-1),
103   mPanMinimumEvents(-1),
104   mGlesCallTime(0),
105   mWindowWidth( 0 ),
106   mWindowHeight( 0 )
107 {
108   ParseEnvironmentOptions();
109 }
110
111 EnvironmentOptions::~EnvironmentOptions()
112 {
113 }
114
115 void EnvironmentOptions::SetLogFunction( const Dali::Integration::Log::LogFunction& logFunction )
116 {
117   mLogFunction = logFunction;
118 }
119
120 void EnvironmentOptions::InstallLogFunction() const
121 {
122   Dali::Integration::Log::InstallLogFunction( mLogFunction );
123 }
124
125 void EnvironmentOptions::UnInstallLogFunction() const
126 {
127   Dali::Integration::Log::UninstallLogFunction();
128 }
129
130 unsigned int EnvironmentOptions::GetNetworkControlMode() const
131 {
132   return mNetworkControl;
133 }
134 unsigned int EnvironmentOptions::GetFrameRateLoggingFrequency() const
135 {
136   return mFpsFrequency;
137 }
138
139 unsigned int EnvironmentOptions::GetUpdateStatusLoggingFrequency() const
140 {
141   return mUpdateStatusFrequency;
142 }
143
144 unsigned int EnvironmentOptions::GetObjectProfilerInterval() const
145 {
146   return mObjectProfilerInterval;
147 }
148
149 unsigned int EnvironmentOptions::GetPerformanceStatsLoggingOptions() const
150 {
151   return mPerformanceStatsLevel;
152 }
153 unsigned int EnvironmentOptions::GetPerformanceStatsLoggingFrequency() const
154 {
155   return mPerformanceStatsFrequency;
156 }
157 unsigned int EnvironmentOptions::GetPerformanceTimeStampOutput() const
158 {
159   return mPerformanceTimeStampOutput;
160 }
161
162 unsigned int EnvironmentOptions::GetPanGestureLoggingLevel() const
163 {
164   return mPanGestureLoggingLevel;
165 }
166
167 int EnvironmentOptions::GetPanGesturePredictionMode() const
168 {
169   return mPanGesturePredictionMode;
170 }
171
172 int EnvironmentOptions::GetPanGesturePredictionAmount() const
173 {
174   return mPanGesturePredictionAmount;
175 }
176
177 int EnvironmentOptions::GetPanGestureMaximumPredictionAmount() const
178 {
179   return mPanGestureMaxPredictionAmount;
180 }
181
182 int EnvironmentOptions::GetPanGestureMinimumPredictionAmount() const
183 {
184   return mPanGestureMinPredictionAmount;
185 }
186
187 int EnvironmentOptions::GetPanGesturePredictionAmountAdjustment() const
188 {
189   return mPanGesturePredictionAmountAdjustment;
190 }
191
192 int EnvironmentOptions::GetPanGestureSmoothingMode() const
193 {
194   return mPanGestureSmoothingMode;
195 }
196
197 float EnvironmentOptions::GetPanGestureSmoothingAmount() const
198 {
199   return mPanGestureSmoothingAmount;
200 }
201
202 int EnvironmentOptions::GetMinimumPanDistance() const
203 {
204   return mPanMinimumDistance;
205 }
206
207 int EnvironmentOptions::GetMinimumPanEvents() const
208 {
209   return mPanMinimumEvents;
210 }
211
212 unsigned int EnvironmentOptions::GetWindowWidth() const
213 {
214   return mWindowWidth;
215 }
216
217 unsigned int EnvironmentOptions::GetWindowHeight() const
218 {
219   return mWindowHeight;
220 }
221
222 int EnvironmentOptions::GetGlesCallTime() const
223 {
224   return mGlesCallTime;
225 }
226
227 const std::string& EnvironmentOptions::GetWindowName() const
228 {
229   return mWindowName;
230 }
231
232 const std::string& EnvironmentOptions::GetWindowClassName() const
233 {
234   return mWindowClassName;
235 }
236
237 bool EnvironmentOptions::PerformanceServerRequired() const
238 {
239   return ( ( GetPerformanceStatsLoggingOptions() > 0) ||
240            ( GetPerformanceTimeStampOutput() > 0 ) ||
241            ( GetNetworkControlMode() > 0) );
242 }
243
244 void EnvironmentOptions::ParseEnvironmentOptions()
245 {
246   // get logging options
247   mFpsFrequency = GetIntegerEnvironmentVariable( DALI_ENV_FPS_TRACKING, 0 );
248   mUpdateStatusFrequency = GetIntegerEnvironmentVariable( DALI_ENV_UPDATE_STATUS_INTERVAL, 0 );
249   mObjectProfilerInterval = GetIntegerEnvironmentVariable( DALI_ENV_OBJECT_PROFILER_INTERVAL, 0 );
250   mPerformanceStatsLevel = GetIntegerEnvironmentVariable( DALI_ENV_LOG_PERFORMANCE_STATS, 0 );
251   mPerformanceStatsFrequency = GetIntegerEnvironmentVariable( DALI_ENV_LOG_PERFORMANCE_STATS_FREQUENCY, 0 );
252   mPerformanceTimeStampOutput = GetIntegerEnvironmentVariable( DALI_ENV_PERFORMANCE_TIMESTAMP_OUTPUT, 0 );
253   mNetworkControl = GetIntegerEnvironmentVariable( DALI_ENV_NETWORK_CONTROL, 0 );
254   mPanGestureLoggingLevel = GetIntegerEnvironmentVariable( DALI_ENV_LOG_PAN_GESTURE, 0 );
255
256   int predictionMode;
257   if( GetIntegerEnvironmentVariable(DALI_ENV_PAN_PREDICTION_MODE, predictionMode) )
258   {
259     mPanGesturePredictionMode = predictionMode;
260   }
261   int predictionAmount(-1);
262   if( GetIntegerEnvironmentVariable(DALI_ENV_PAN_PREDICTION_AMOUNT, predictionAmount) )
263   {
264     if( predictionAmount < 0 )
265     {
266       // do not support times in the past
267       predictionAmount = 0;
268     }
269     mPanGesturePredictionAmount = predictionAmount;
270   }
271   int minPredictionAmount(-1);
272   if( GetIntegerEnvironmentVariable(DALI_ENV_PAN_MIN_PREDICTION_AMOUNT, minPredictionAmount) )
273   {
274     if( minPredictionAmount < 0 )
275     {
276       // do not support times in the past
277       minPredictionAmount = 0;
278     }
279     mPanGestureMinPredictionAmount = minPredictionAmount;
280   }
281   int maxPredictionAmount(-1);
282   if( GetIntegerEnvironmentVariable(DALI_ENV_PAN_MAX_PREDICTION_AMOUNT, maxPredictionAmount) )
283   {
284     if( minPredictionAmount > -1 && maxPredictionAmount < minPredictionAmount )
285     {
286       // maximum amount should not be smaller than minimum amount
287       maxPredictionAmount = minPredictionAmount;
288     }
289     mPanGestureMaxPredictionAmount = maxPredictionAmount;
290   }
291   int predictionAmountAdjustment(-1);
292   if( GetIntegerEnvironmentVariable(DALI_ENV_PAN_PREDICTION_AMOUNT_ADJUSTMENT, predictionAmountAdjustment) )
293   {
294     if( predictionAmountAdjustment < 0 )
295     {
296       // negative amount doesn't make sense
297       predictionAmountAdjustment = 0;
298     }
299     mPanGesturePredictionAmountAdjustment = predictionAmountAdjustment;
300   }
301   int smoothingMode;
302   if( GetIntegerEnvironmentVariable(DALI_ENV_PAN_SMOOTHING_MODE, smoothingMode) )
303   {
304     mPanGestureSmoothingMode = smoothingMode;
305   }
306   float smoothingAmount = 1.0f;
307   if( GetFloatEnvironmentVariable(DALI_ENV_PAN_SMOOTHING_AMOUNT, smoothingAmount) )
308   {
309     smoothingAmount = Clamp(smoothingAmount, 0.0f, 1.0f);
310     mPanGestureSmoothingAmount = smoothingAmount;
311   }
312
313   int minimumDistance(-1);
314   if ( GetIntegerEnvironmentVariable(DALI_ENV_PAN_MINIMUM_DISTANCE, minimumDistance ))
315   {
316     mPanMinimumDistance = minimumDistance;
317   }
318
319   int minimumEvents(-1);
320   if ( GetIntegerEnvironmentVariable(DALI_ENV_PAN_MINIMUM_EVENTS, minimumEvents ))
321   {
322     mPanMinimumEvents = minimumEvents;
323   }
324
325   int glesCallTime(0);
326   if ( GetIntegerEnvironmentVariable(DALI_GLES_CALL_TIME, glesCallTime ))
327   {
328     mGlesCallTime = glesCallTime;
329   }
330
331   int windowWidth(0), windowHeight(0);
332   if ( GetIntegerEnvironmentVariable( DALI_WINDOW_WIDTH, windowWidth ) && GetIntegerEnvironmentVariable( DALI_WINDOW_HEIGHT, windowHeight ) )
333   {
334     mWindowWidth = windowWidth;
335     mWindowHeight = windowHeight;
336   }
337
338   const char * windowName = GetCharEnvironmentVariable( DALI_WINDOW_NAME );
339   if ( windowName )
340   {
341     mWindowName = windowName;
342   }
343
344   const char * windowClassName = GetCharEnvironmentVariable( DALI_WINDOW_CLASS_NAME );
345   if ( windowClassName )
346   {
347     mWindowClassName = windowClassName;
348   }
349 }
350
351 } // Adaptor
352
353 } // Internal
354
355 } // Dali