Merge "SvgLoader: Support to linear, radial gradient" into tizen
[platform/core/graphics/tizenvg.git] / src / lib / tvgLoaderMgr.cpp
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd All Rights Reserved
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 #ifndef _TVG_LOADER_MGR_CPP_
18 #define _TVG_LOADER_MGR_CPP_
19
20 #include "tvgCommon.h"
21
22 #ifdef THORVG_SVG_LOADER_SUPPORT
23     #include "tvgSvgLoader.h"
24 #endif
25
26 static int initCnt = 0;
27
28 bool LoaderMgr::init()
29 {
30     if (initCnt > 0) return true;
31     ++initCnt;
32
33     //TODO:
34
35     return true;
36 }
37
38 bool LoaderMgr::term()
39 {
40     --initCnt;
41     if (initCnt > 0) return true;
42
43     //TODO:
44
45     return true;
46 }
47
48 unique_ptr<Loader> LoaderMgr::loader(const char* path)
49 {
50 #ifdef THORVG_SVG_LOADER_SUPPORT
51     return unique_ptr<SvgLoader>(new SvgLoader);
52 #endif
53     cout << "Non supported format: " << path << endl;
54     return unique_ptr<Loader>(nullptr);
55 }
56
57 #endif //_TVG_LOADER_MGR_CPP_