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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
|
#include <stdio.h>
#include <dirent.h>
#include <iostream>
#include <string>
#include <fstream>
#include <sstream>
using namespace std;
int main(void)
{
// Pointer for directory entry
struct dirent *de;
// opendir() returns a pointer of DIR type.
DIR *dr = opendir(".");
// opendir returns NULL if couldn't open directory
if (dr == NULL)
{
cout << "Could not open current directory" << endl;
cin.get();
return 0;
}
while ((de = readdir(dr)) != NULL)
{
string name(de->d_name);
// Search directory for all files ending in .csv
if (name.size() > 4 && name.substr(name.size() - 4) == ".csv")
{
/**
Open the output CSV file (open once with a tabular CSV)
Open the input CSV file (config file with paramaters)
Parse this current file for all parameters(1 paramater per line)
Apply the algorithm using given bend table
Flag errors (add pathenthisis around the error values, one column is error,far left side)
Output one line to output CSV
**/
cout << name << ":\n";
ifstream fin(name); //bring in file
string line;
// while not end of file
while (getline(fin, line))
{
// find "Greenlee" and store that entire line
if (!strncmp(line.c_str(), "GREENLEE", 8))
{
char name[12];
int type;
cout << " [ " << line << " ] " << endl;
sscanf_s(line.c_str(), "%s %d", name, &type); //sscanf_s not working
cout << type << endl;
cout << name << endl;
continue;
}
// find "vers" and store that line
if (!strncmp(line.c_str(), "vers", 4))
{
cout << " [ " << line << " ] " << endl;
continue;
}
if (!strncmp(line.c_str(), "units", 5))
{
cout << " [ " << line << " ] " << endl;
continue;
}
if (!strncmp(line.c_str(), "bendtype", 8))
{
cout << " [ " << line << " ] " << endl;
continue;
}
if (!strncmp(line.c_str(), "pipetype", 8))
{
cout << " [ " << line << " ] " << endl;
continue;
}
if (!strncmp(line.c_str(), "pipesize", 8))
{
cout << " [ " << line << " ] " << endl;
continue;
}
if (!strncmp(line.c_str(), "height", 6))
{
cout << " [ " << line << " ] " << endl;
continue;
}
if (!strncmp(line.c_str(), "angle", 5))
{
cout << " [ " << line << " ] " << endl;
continue;
}
if (!strncmp(line.c_str(), "length", 6))
{
cout << " [ " << line << " ] " << endl;
continue;
}
if (!strncmp(line.c_str(), "straight ", 8))
{
cout << " [ " << line << " ] " << endl;
continue;
}
if (!strncmp(line.c_str(), "h1", 2))
{
cout << " [ " << line << " ] " << endl;
continue;
}
if (!strncmp(line.c_str(), "h2", 2))
{
cout << " [ " << line << " ] " << endl;
continue;
}
if (!strncmp(line.c_str(), "vangle", 6))
{
cout << " [ " << line << " ] " << endl;
continue;
}
if (!strncmp(line.c_str(), "pipe_num", 8))
{
cout << " [ " << line << " ] " << endl;
continue;
}
if (!strncmp(line.c_str(), "seq_bends", 9))
{
cout << " [ " << line << " ] " << endl;
continue;
}
if (!strncmp(line.c_str(), "l1_a1_r1", 8))
{
cout << " [ " << line << " ] " << endl;
continue;
}
if (!strncmp(line.c_str(), "l2_a2_r2", 8))
{
cout << " [ " << line << " ] " << endl;
continue;
}
if (!strncmp(line.c_str(), "l3_a3_r3", 8))
{
cout << " [ " << line << " ] " << endl;
continue;
}
if (!strncmp(line.c_str(), "l4_a4_r4", 8))
{
cout << " [ " << line << " ] " << endl;
continue;
}
if (!strncmp(line.c_str(), "l5_a5_r5", 8))
{
cout << " [ " << line << " ] " << endl;
continue;
}
if (!strncmp(line.c_str(), "conc_bends", 10))
{
cout << " [ " << line << " ] " << endl;
continue;
}
if (!strncmp(line.c_str(), "conc_angle", 10))
{
cout << " [ " << line << " ] " << endl;
continue;
}
if (!strncmp(line.c_str(), "conc_start", 10))
{
cout << " [ " << line << " ] " << endl;
continue;
}
if (!strncmp(line.c_str(), "conc_radi", 9))
{
cout << " [ " << line << " ] " << endl;
continue;
}
if (!strncmp(line.c_str(), "PL_batch", 8))
{
cout << " [ " << line << " ] " << endl;
}
}
// APPLY Algorithm/ flag errors etc
// and then start outputting a line to files
}
}
cin.get();
closedir(dr);
return 0;
}
|