d9b25266328300c2a82590a65300cf5d4180d38e
[platform/core/ml/nnfw.git] / tests / nnfw_api / src / NNPackages.cc
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 #include "NNPackages.h"
18
19 #include <unistd.h>
20 #include <libgen.h>
21 #include <string.h>
22 #include <dirent.h>
23 #include <assert.h>
24 #include <stdexcept>
25
26 // NOTE Must match `enum TestPackages`
27 const char *TEST_PACKAGE_NAMES[] = {
28     // for validation test
29     "add", "add_no_manifest", "add_invalid_manifest",
30
31     // for dynamic tensor test
32     "while_dynamic", "if_dynamic",
33 };
34
35 NNPackages &NNPackages::get()
36 {
37   static NNPackages instance;
38   return instance;
39 }
40
41 void NNPackages::init(const char *argv0)
42 {
43   char raw_dir[1024];
44   char cwd[1024];
45   strncpy(raw_dir, argv0, sizeof(raw_dir) - 1);
46   dirname(raw_dir);
47   if (raw_dir[0] == '/')
48   {
49     // If it is an absolute path, just use it
50     _base_path = raw_dir;
51   }
52   else
53   {
54     // If it is a relative path, prepend CWD
55     getcwd(cwd, sizeof(cwd));
56     _base_path = cwd;
57     _base_path += "/";
58     _base_path += raw_dir;
59   }
60 }
61
62 void NNPackages::checkAll()
63 {
64   assert(!_base_path.empty());
65
66   for (int i = 0; i < NNPackages::COUNT; i++)
67   {
68     std::string package_name = TEST_PACKAGE_NAMES[i];
69     std::string path = getModelAbsolutePath(i);
70
71     DIR *dir = opendir(path.c_str());
72     if (!dir)
73     {
74       std::string msg = "missing nnpackage: " + package_name + ", path: " + path +
75                         "\nPlease run \'[install_dir]/test/onert-test prepare-model\' to "
76                         "download nnpackage";
77       throw std::runtime_error{msg};
78     }
79     closedir(dir);
80   }
81 }
82
83 std::string NNPackages::getModelAbsolutePath(int package_no)
84 {
85   if (package_no < 0 || package_no >= NNPackages::COUNT)
86   {
87     throw std::runtime_error{"Invalid package_no: " + std::to_string(package_no)};
88   }
89
90   const char *package_dir = TEST_PACKAGE_NAMES[package_no];
91   return getModelAbsolutePath(package_dir);
92 }
93
94 std::string NNPackages::getModelAbsolutePath(const char *package_name)
95 {
96   return _base_path + "/nnfw_api_gtest_models/" + package_name + "/" + package_name;
97 }