example: just renamed the svg file.
[platform/core/graphics/tizenvg.git] / src / lib / tvgAccessor.cpp
1 /*
2  * Copyright (c) 2021 - 2022 Samsung Electronics Co., Ltd. All rights reserved.
3  * Permission is hereby granted, free of charge, to any person obtaining a copy
4  * of this software and associated documentation files (the "Software"), to deal
5  * in the Software without restriction, including without limitation the rights
6  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7  * copies of the Software, and to permit persons to whom the Software is
8  * furnished to do so, subject to the following conditions:
9  * The above copyright notice and this permission notice shall be included in all
10  * copies or substantial portions of the Software.
11  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
12  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
14  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
15  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
16  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
17  * SOFTWARE.
18  */
19
20 #include "tvgIteratorAccessor.h"
21
22 /************************************************************************/
23 /* Internal Class Implementation                                        */
24 /************************************************************************/
25
26 static bool accessChildren(Iterator* it, bool(*func)(const Paint* paint), IteratorAccessor& itrAccessor)
27 {
28     while (auto child = it->next()) {
29         //Access the child
30         if (!func(child)) return false;
31
32         //Access the children of the child
33         if (auto it2 = itrAccessor.iterator(child)) {
34             if (!accessChildren(it2, func, itrAccessor)) {
35                 delete(it2);
36                 return false;
37             }
38             delete(it2);
39         }
40     }
41     return true;
42 }
43
44
45 /************************************************************************/
46 /* External Class Implementation                                        */
47 /************************************************************************/
48
49 unique_ptr<Picture> Accessor::access(unique_ptr<Picture> picture, bool(*func)(const Paint* paint)) noexcept
50 {
51     auto p = picture.get();
52     if (!p || !func) return picture;
53
54     //Use the Preorder Tree-Search
55
56     //Root
57     if (!func(p)) return picture;
58
59     //Children
60     IteratorAccessor itrAccessor;
61     if (auto it = itrAccessor.iterator(p)) {
62         accessChildren(it, func, itrAccessor);
63         delete(it);
64     }
65     return picture;
66 }
67
68
69 Accessor::~Accessor()
70 {
71
72 }
73
74
75 Accessor::Accessor()
76 {
77
78 }
79
80
81 unique_ptr<Accessor> Accessor::gen() noexcept
82 {
83     return unique_ptr<Accessor>(new Accessor);
84 }