OpenASIP  2.0
IDFValidator.hh
Go to the documentation of this file.
1 /*
2  Copyright (c) 2002-2009 Tampere University.
3 
4  This file is part of TTA-Based Codesign Environment (TCE).
5 
6  Permission is hereby granted, free of charge, to any person obtaining a
7  copy of this software and associated documentation files (the "Software"),
8  to deal in the Software without restriction, including without limitation
9  the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  and/or sell copies of the Software, and to permit persons to whom the
11  Software is furnished to do so, subject to the following conditions:
12 
13  The above copyright notice and this permission notice shall be included in
14  all copies or substantial portions of the Software.
15 
16  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19  THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  DEALINGS IN THE SOFTWARE.
23  */
24 /**
25  * @file IDFValidator.hh
26  *
27  * Declaration of IDFValidator class.
28  *
29  * @author Lasse Laasonen 2006 (lasse.laasonen-no.spam-tut.fi)
30  * @note rating: red
31  */
32 
33 #ifndef TTA_IDF_VALIDATOR_HH
34 #define TTA_IDF_VALIDATOR_HH
35 
36 #include <string>
37 #include <vector>
38 
39 #include "Exception.hh"
40 
41 namespace IDF {
42  class MachineImplementation;
43 }
44 
45 namespace TTAMachine {
46  class Machine;
47 }
48 
49 /**
50  * Validates IDF files.
51  */
52 class IDFValidator {
53 public:
55  const IDF::MachineImplementation& idf,
57  virtual ~IDFValidator();
58 
59  bool validate();
60  int errorCount() const;
61  std::string errorMessage(int index) const;
62 
63  static void removeUnknownImplementations(
66 
67 private:
68  /// Vector type for string.
69  typedef std::vector<std::string> StringVector;
70 
74 
75  /// The machine.
77  /// The implementation definition,
79  /// Vector of error messages.
81 };
82 
83 #endif
IDFValidator::idf_
const IDF::MachineImplementation & idf_
The implementation definition,.
Definition: IDFValidator.hh:78
IDFValidator::errorCount
int errorCount() const
Definition: IDFValidator.cc:81
IDFValidator::~IDFValidator
virtual ~IDFValidator()
Definition: IDFValidator.cc:55
machine
TTAMachine::Machine * machine
the architecture definition of the estimated processor
Definition: EstimatorCmdLineUI.cc:59
Exception.hh
IDFValidator::checkRFImplementations
void checkRFImplementations()
Definition: IDFValidator.cc:148
IDFValidator::IDFValidator
IDFValidator(const IDF::MachineImplementation &idf, const TTAMachine::Machine &machine)
Definition: IDFValidator.cc:45
IDFValidator::errorMessage
std::string errorMessage(int index) const
Definition: IDFValidator.cc:94
IDFValidator::machine_
const TTAMachine::Machine & machine_
The machine.
Definition: IDFValidator.hh:76
IDFValidator
Definition: IDFValidator.hh:52
IDFValidator::errorMessages_
StringVector errorMessages_
Vector of error messages.
Definition: IDFValidator.hh:80
IDFValidator::checkIUImplementations
void checkIUImplementations()
Definition: IDFValidator.cc:185
IDFValidator::validate
bool validate()
Definition: IDFValidator.cc:66
IDFValidator::removeUnknownImplementations
static void removeUnknownImplementations(IDF::MachineImplementation &idf, const TTAMachine::Machine &machine)
Definition: IDFValidator.cc:223
IDFValidator::checkFUImplementations
void checkFUImplementations()
Definition: IDFValidator.cc:109
TTAMachine
Definition: Assembler.hh:48
IDFValidator::StringVector
std::vector< std::string > StringVector
Vector type for string.
Definition: IDFValidator.hh:69
IDF::MachineImplementation
Definition: MachineImplementation.hh:54
IDF
Definition: DSDBManager.hh:54
TTAMachine::Machine
Definition: Machine.hh:73