Make include paths explicit and update makefile accordingly.
[gem5.git] / test / initest.cc
1 /*
2 * Copyright (c) 2003 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29 #include <iostream.h>
30 #include <fstream.h>
31 #include <unistd.h>
32
33 #include <string>
34 #include <vector>
35
36 #include "base/inifile.hh"
37
38 char *progname;
39
40 void
41 usage()
42 {
43 cout << "Usage: " << progname << " <ini file>\n";
44 exit(1);
45 }
46
47 #if 0
48 char *defines = getenv("CONFIG_DEFINES");
49 if (defines) {
50 char *c = defines;
51 while ((c = strchr(c, ' ')) != NULL) {
52 *c++ = '\0';
53 count++;
54 }
55 count++;
56 }
57
58 #endif
59
60 int
61 main(int argc, char *argv[])
62 {
63 IniFile config;
64
65 progname = argv[0];
66
67 int cpp_options_count = 0;
68 char **cpp_options = new char*[argc * 2];
69 char **cur_opt = cpp_options;
70
71 int ch;
72 while ((ch = getopt(argc, argv, "D:")) != -1) {
73 switch (ch) {
74 case 'D':
75 *cur_opt++ = "-D";
76 *cur_opt++ = optarg;
77 cpp_options_count += 2;
78 break;
79
80 default:
81 usage();
82 }
83 }
84
85 argc -= optind;
86 argv += optind;
87
88 if (argc != 1)
89 usage();
90
91 string file = argv[0];
92
93 if (!config.loadCPP(file, cpp_options, cpp_options_count)) {
94 cout << "File not found!\n";
95 exit(1);
96 }
97
98 string value;
99 #define FIND(C, E) \
100 if (config.find(C, E, value)) \
101 cout << ">" << value << "<\n"; \
102 else \
103 cout << "Not Found!\n"
104
105 FIND("General", "Test2");
106 FIND("Junk", "Test3");
107 FIND("Junk", "Test4");
108 FIND("General", "Test1");
109 FIND("Junk2", "test3");
110 FIND("General", "Test3");
111
112 cout << "\n";
113
114 config.dump();
115
116 return 0;
117 }