summaryrefslogtreecommitdiff
path: root/compiler/nnc/support/CLOptionChecker.cpp
blob: 1ec1e876ae20a972a5ad94bd0b083e38bf227734 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
 * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "support/CommandLine.h"

#include <dirent.h>
#include <cstring>

namespace nnc
{
namespace cli
{

void checkInFile(const Option<std::string> &in_file)
{
  if (in_file.empty())
    throw BadOption("Input file name should not be empty");

  auto f = fopen(in_file.c_str(), "rb");
  if (!f)
    throw BadOption("Cannot open file <" + in_file + ">");
  fclose(f);
} // checkInFile

void checkOutFile(const Option<std::string> &out_file)
{
  if (out_file.empty())
    throw BadOption("Output file name should not be empty");

  /// @todo: if file already exists need to check accessibility

} // checkOutFile

void checkInDir(const Option<std::string> &dir)
{
  auto stream = opendir(dir.c_str());

  if (stream == nullptr)
    throw BadOption(std::string("Could not open directory: ") + std::strerror(errno) + ".");

  closedir(stream);
} // checkInDir

void checkOutDir(const Option<std::string> &dir)
{
  auto stream = opendir(dir.c_str());

  if (stream == nullptr)
  {
    // Do not consider the missing directory an error.
    if (errno == ENOENT)
      return;

    throw BadOption(std::string("Could not open directory: ") + std::strerror(errno) + ".");
  }

  closedir(stream);
} // checkOutDir

} // namespace cli
} // namespace nnc