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 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
|
#include <iostream>
#include <fstream>
#include <cctype>
#include <string>
#include <limits>
#include <chrono>
#include <thread>
//#include <cmath>
using namespace std;
/*struct UserData // <--- Wort keeping like this. May be usful in the future.
{
int userID;
string first_name;
string last_name;
string clearance;
string status;
string location;
};*/
char menu();
void adminControl();
void userAccess();
void useModify();
//void openInputFile(ifstream &, string);
//void print(UserData[]);
//void sort(UserData[]);
void displayData();
void updatePasscode();
void writeData();
//string * split(string, char); // <--- This on not needed. Nofunction definition.
const std::string PATH{ "C:\\Users\\xX - VENGEANCE - Xx\\Desktop\\Program variable files\\" };
const std::string FILENAME{ "User Info.txt" };
//const std::string fileName{ PATH + FILENAME }; // <--- Change comment for the version you need.
const std::string fileName{ FILENAME }; // <--- Changed "f" in first "fileName"from capital to lower case.
int main() //First Menu Options <--- Actually it is the start of the program.
{
ofstream out;
bool cont{ true }; // <--- Added.
char choice{};
out.open(fileName, std::ios::app); // <--- Changed to use the vriable from what you had. It makes it eaier.
do // <--- Added the whole do/while.
{
choice = menu();
switch (choice)
{
case 'A':
cout << "\nAdministrative Control" << endl;
adminControl();
break;
case 'U':
cout << "\nUser Access" << endl;
userAccess();
break;
case 'Q':
cout << "\nCase Q" << endl;
cont = false; // <--- Added.
break;
default:
break;
}
} while (cont); // <--- Added.
return 0;
}
char menu(void) // Select Admin or User
{
char choice = ' ';
do
{
cout << "Select Level of Authority: " << endl << endl;
cout << "(A)dmin, (U)ser, (Q)uit" << endl;
cin >> choice;
choice = toupper(choice);
if (choice != 'A' && choice != 'U' && choice != 'Q')
cout << "\n Invalid Entry! Please Try Again!\n";
} while (choice != 'A' && choice != 'U' && choice != 'Q');
return choice;
}
void adminControl(void) // Modify user access, Display Files, Update passcode
{
char choice = ' ';
bool cont{ true };
do // <--- Added the do and opening { along with the closing } before the while.
{
cout << "What would you like to do?" << endl;
cout << "(M)odify User, (D)isplay Files, (U)pdate Passcode, (Q)uit" << endl;
cin >> choice;
choice = toupper(choice);
switch (choice)
{
case 'M':
cout << "\nModify User" << endl;
useModify();
break;
case 'D':
cout << "\nDisplay File" << endl;
displayData();
break;
case 'U':
cout << "\nUpdate Passcode" << endl;
updatePasscode();
break; // <--- Added.
case 'Q':
cont = false;
break;
default:
cout << "\n Unknown Choice! Please Try Again!" << endl;
break;
}
} while (cont); // <--- Added the closing }
}
void useModify(void)
{
/*const int SIZE = 9;
const int INFO = 4;
//Variables
UserData arr[SIZE];
ifstream inFile;
string inFileName = "C:\\Users\\xX-VENGEANCE-Xx\\Desktop\\Program variable files\\User Info.txt";
// Call function to read file
openInputFile(inFile, inFileName);
//Read data into array
for (int count = 0; count < SIZE; count++);
{
/*inFile >> arr[count].userID >> arr[count].first_name >> arr[count].last_name >>
arr[count].clearance >> arr[count].status >> arr[count].location;
}
inFile.close();
//Print Unsorted Data
print(arr);
cout << "\n";
//Sort
sort(arr);
//Print Sorted
print(arr);*/
}
void displayData(void)
{
ifstream inMyStream(fileName);
string name;
string clearance;
string status;
string location;
if (!inMyStream)
{
cout << "File Did Not Open!!" << endl;
std::this_thread::sleep_for(std::chrono::seconds(2)); // Requires header files "chrono" and "thread"
exit(1);
}
while (getline(inMyStream, name, ',')) // <--- Removed semicolon.
{
getline(inMyStream, clearance, ',');
getline(inMyStream, status, ',');
getline(inMyStream, location); // <--- Removed third parameter or change it to'\n'.
cout << "Name........" << name << endl;
cout << "Clearance......" << clearance << endl;
cout << "Status........" << status << endl;
cout << "Location......." << location << endl << std::endl; // <--- Added second endl.
}
inMyStream.close();
// <--- This bit of code you do not really need to keep.
/*string line;
string lineBuffer;
//ifstream myfile("C:\\Users\\xX - VENGEANCE - Xx\\Desktop\\Program variable files\\User Info.txt");
ifstream myfile("C:\\Users\\xX - VENGEANCE - Xx\\source\\repos\\Passcode\\Passcode\\Debug\\User Info.txt");
if (myfile.is_open())
{
while (getline(myfile, line))
{
getline(myfile, lineBuffer);
cout << line << endl;
}
myfile.close();
}
else cout << "unable to Open File!";*/
}
void userAccess(void) //Read or Append files, update own password
{
char choice = ' ';
bool cont{ true };
do // <--- Added whole do/while
{
cout << "What would you like to do?" << endl;
cout << "(A)ppend, (D)isplay Files, (U)pdate Passcode, (Q)uit" << endl;
cin >> choice;
choice = std::toupper(choice);
switch (choice)
{
case 'A':
cout << "\nEdit File" << endl;
writeData();
break;
case 'D':
cout << "\nDisplay File" << endl;
displayData();
break;
case 'U':
cout << "\nUpdate Passcode" << endl;
updatePasscode();
break;
case 'Q':
cont = false;
break;
}
} while (cont);
}
void writeData(void)
{
char choice = ' ';
string name = "";
string clearance = "";
string status = "";
string location = "";
ofstream outMyStream(fileName, ios::app);
do
{
cin.ignore(numeric_limits<streamsize>::max(), '\n');
cout << "\nEnter their Name: ";
getline(cin, name);
cout << "\nEnter their Clearance: ";
getline(cin, clearance);
cout << "\nEnter their Status: ";
getline(cin, status);
cout << "\nEnter their Location: ";
getline(cin, location);
outMyStream << name << "," << clearance << "," << status << "," << location;
cout << "\nAdd Another Record?";
cin >> choice;
} while (choice == 'Y' || choice == 'y'); // <--- Changed right side of || to lower case.
outMyStream.close();
}
void updatePasscode() // <--- Added to eliminate compile error.
{
std::cout << "\n In Update Pass Code\n";
}
|