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
|
#include <iostream>
#include <string>
#include <vector>
#include <fstream>
#include <sstream>
#include <ostream>
#include <set>
#include "Point2D.h"
#include "Point3D.h"
#include "Line2D.h"
#include "Line3D.h"
#include "MyTemplates.h"
using namespace std;
Point2D point2d;
Point3D point3d;
Line2D line2d;
Line3D line3d;
string no_of_lines, filename, infile, outfile;
ifstream myfile;
ofstream myyfile;
int lines;
void intro_menu();
void read_in_data();
void filtering_criteria();
void sorting_criteria();
void sorting_order();
void view_data();
void store_data();
set<Point2D> pointtwod;
set<Point3D> pointthreed;
set<Line2D> linetwod;
set<Line3D> linethreed;
enum FilteringCriteria
{
POINT2D, POINT3D, LINE2D, LINE3D,
};
FilteringCriteria fc = POINT2D;
ostream& operator << (ostream& os, FilteringCriteria fc)
{
switch (fc)
{
case POINT2D:
return os << "Point2D";
case POINT3D:
return os << "Point3D";
case LINE2D:
return os << "Line2D";
case LINE3D:
return os << "Line3D";
}
}
enum SortingCriteria
{
pt1, pt2, pt3, length,
};
SortingCriteria sc = pt1;
ostream& operator << (ostream& os, SortingCriteria sc)
{
switch (sc)
{
case pt1:
return os << "Pt. 1's (x, y) values";
case pt2:
return os << "Pt. 2's (x, y) values";
case pt3:
return os << "Pt.3 's (x, y, z) values";
case length:
return os << "Length";
}
}
enum SortingOrder
{
ASC, DESC,
};
SortingOrder so = ASC;
ostream& operator << (ostream& os, SortingOrder so)
{
switch (so)
{
case pt1:
return os << "Ascending Order";
case pt2:
return os << "Descending Order";
}
}
int main() {
int choice;
string no_of_lines;
intro_menu();
cin >> choice;
switch (choice)
{
case 1:
{
read_in_data();
main();
}
case 2:
{
filtering_criteria();
main();
}
case 3:
{
sorting_criteria();
main();
}
case 4:
{
sorting_order();
main();
}
case 5:
{
main();
}
case 6:
{
cout << "Store Data" << "\n";
main();
}
}
}
void read_in_data()
{
string name, test_string;
int count = 0;
cout << "Please Enter Filename : ";
cin >> filename;
myfile.open(filename.c_str(),std::ios::in);
if (myfile.is_open())
{
while (getline(myfile, no_of_lines))
++lines;
cout << lines << " records read in successfully" << "\n";
}
while (myfile.good())
{
getline(myfile, name, ',');
getline(myfile, test_string, '\n');
if (name == "Point2D")
{
stringstream coordinates(test_string);
Point2D *p2d = new Point2D();
string s;
while (coordinates.good())
{
getline(coordinates, s, ']');
if (s.size() > 0)
{
s = s.substr(1);
stringstream h(s);
h >> p2d;
pointtwod.insert(*p2d);
count++;
}
}
}
else if (name == "Point3D")
{
stringstream coordinates(test_string);
Point3D *p3d = new Point3D();
string s;
while (coordinates.good())
{
getline(coordinates, s, ']');
if (s.size() > 0)
{
s = s.substr(1);
stringstream c(s);
//c >> *p3d;
pointthreed.insert(*p3d);
count++;
}
}
}
else if (name == "Line2D")
{
stringstream coordinates(test_string);
Line2D *l2d = new Line2D();
//c >> *l2d;
linetwod.insert(*l2d);
count++;
}
else if (name == "Line3D")
{
stringstream coordinates(test_string);
Line3D *l3d = new Line3D();
//c >> *l3d;
linethreed.insert(*l3d);
count++;
}
}
cout << count << " records read in successfully." << "\n";
myfile.close();
}
|