mv_machine_learning: use carnel notation
[platform/core/api/mediavision.git] / mv_machine_learning / training / src / file_util.cpp
1 /**
2  * Copyright (c) 2022 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 #include <file_util.h>
18
19 namespace FaceRecogUtil
20 {
21 bool isFileExist(const std::string file_path)
22 {
23         struct stat fileStat;
24
25         if (stat(file_path.c_str(), &fileStat))
26                 return false;
27
28         if (!S_ISREG(fileStat.st_mode))
29                 return false;
30
31         return true;
32 }
33
34 bool isImageFile(const std::string image_file)
35 {
36         size_t size = image_file.size();
37
38         // At least, the length of a image file name should be more then 5. i.e., a.bmp, a.jpg, a.png, ...
39         if (size < 5)
40                 return false;
41
42         std::string ext = image_file.substr(size - 3);
43         if (ext.compare("bmp") != 0 && ext.compare("jpg") != 0 && ext.compare("png") != 0)
44                 return false;
45
46         return true;
47 }
48 }