[Tizen] Implement partial update
[platform/core/uifw/dali-core.git] / dali / internal / event / common / property-helper.cpp
1 /*
2  * Copyright (c) 2018 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 // HEADER
19 #include <dali/internal/event/common/property-helper.h>
20
21 namespace Dali
22 {
23
24 namespace Internal
25 {
26
27 bool CompareTokens( const char * first, const char * second, uint32_t& size )
28 {
29   size = 0;
30   while( ( *first != '\0' ) && ( *second != '\0' ) && ( *first != ',') && ( *second != ',') )
31   {
32     ++size;
33     char ca = *first;
34     char cb = *second;
35
36     if( ( ( ca == '-' ) || ( ca == '_') ) &&
37         ( ( cb == '-' ) || ( cb == '_') ) )
38     {
39       ++first;
40       ++second;
41       continue;
42     }
43
44     if( ( 'A' <= ca ) && ( ca <= 'Z') )
45     {
46       ca = static_cast<char>( ca + ( 'a' - 'A' ) ); // don't expect overflow
47     }
48
49     if( ( 'A' <= cb ) && ( cb <= 'Z') )
50     {
51       cb = static_cast<char>( cb + ( 'a' - 'A' ) ); // don't expect overflow
52     }
53
54     if( ca != cb )
55     {
56       return false;
57     }
58
59     ++first;
60     ++second;
61   }
62
63   // enums can be comma separated so check ends and comma
64   if( ( ( *first == '\0' ) && ( *second == '\0' ) ) ||
65       ( ( *first == '\0' ) && ( *second == ','  ) ) ||
66       ( ( *first == ','  ) && ( *second == '\0' ) ) )
67   {
68     return true;
69   }
70
71   return false;
72 }
73
74 } // namespace Internal
75
76 } // namespace Dali