Messed Up Program (File handling)




Okay, So it was not my intention to paste the whole program and offend you guys.
But I am helpless.
Basically, I am trying to make a personal diary in which there are three profiles:

1.Admin
2.User
3.New User

The program is not completed yet(obviously :p). The problem is , whenever a user
saved his details and tries to login. It is unable to search the id and password from the file.

I know, the program is little long, so I have highlighted the following parts.
-> the NewUser class
-> the password checking functions.
-> the main() function
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
#include<iostream>
#include<fstream>
#include<stdio.h>
#include<conio.h>
#include<string>
using namespace std;

class Admin{

public:
Admin(){




}

void Read(){

}

void Write(){


}

};

class NewUser{

public:
    string password,id;
void menu(){
cout<<"Please give an id\n";

cin>>id;

cout<<"Please give your password\n"<<id<<endl;
password="";
char c = ' ';

while(c != 13) //Loop until 'Enter' is pressed
   {
   c = getch();
   if(c!=13){
   password += c;
   cout << "*";}
   }

cout<<password<<endl;
}


};

class User{

public:

char id[10], password[20];
void Read(){

}

void Write(){


}

void menu(){

cout<<"Please select your menu\n";
int m;
cin>>m;

switch(m){
case 1:

    Read();

    break;

case 2:

    Write();

    break;

default:

    cout<<"wrong option\n";
}
}
};

void CheckingPrimaryFiles(){

ifstream ifs("user.txt",ios::app|ios::binary);

if(!ifs)
{

    ofstream of("user.txt",ios::binary|ios::app);
    of.close();
}

ifs.close();

ifstream a("Admin.txt");
if(!a){
    ofstream asd("Admin.txt");
    cout<<"FIRST TIME EXECUTION:\nPlease set a password\n";
    //char password[20],test[20];
    string password = "";
char c = ' ';

while(c != 13) 
   {
   c = getch();
   if(c!=13){
   password += c;
   cout << "*";}
   }
   asd<<password;

    asd.close();
}
a.close();
}


int PasswordChecker(int a,string password="",string id=""){
//char p[20],test[20];
ifstream ifs("Admin.txt");
ifstream obj("user.txt",ios::binary|ios::app);
NewUser us;
if(a==0){
    int i=0;
    string check;
    ifs>>check;
    if(check==password)
    return 1;
else
    return 0;

}

else
{
    while(obj.read((char*)&us, sizeof(NewUser))){
                cout<<"\nrunning\n";
        if(id==us.id){

            cout<<"Please give your password\n";

            string pass = "";
            char c = ' ';

            while(c != 13) 
        {
        c = getch();
        if(c!=13){
            pass += c;
            cout << "*";}
            }
                 if(pass==us.password)
                 {
                     return 1;

                 }else
                 return 0;

        }else
        continue;

    }
    return 0;
}

return 0;
}

int getPassword(int a,string id=""){
    if(a==0){
     //char password[20],test[20];
    string password = "";
char c = ' ';

while(c != 13) 
   {
   c = getch();
   if(c!=13){
   password += c;
   cout << "*";}
   }

    }
      if(PasswordChecker(a,id))
           return 1;
      else
      return 0;
}

int main(){

    CheckingPrimaryFiles();
    string id;
    cout<<"Please choose profile\n";
   /*CASE 1 IS FOR THE ADMIN, CASE 2 IS FOR THE USER, CASE 3 IS FOR THE NEW_USER*/

    int profile;
    cin>>profile;
    switch(profile){
    //admin
case 1:

    cout<<"Please give the password\n";
    if(getPassword(0)){
            cout<<"Welcome Tanmay\n";
        Admin admin;

    }
    else
        cout<<"wrong password\n";
        break;
    //User
case 2:

    cout<<"Please provide id\n";


   cin>>id;
    if(getPassword(profile,id)){
        User user;
        user.menu();

    }else
    cout<<"wrong id and password\n";
    break;
    //New user
case 3:
//cout<<"Please give your id \n";
ofstream n;
n.open("user.txt",ios::app|ios::binary);

NewUser newuser;
newuser.menu();

n.write((char*)&newuser,sizeof(newuser));[/u]



    }

return 0;
}
Last edited on
n.write((char*)&newuser,sizeof(newuser));

Don't do this. newuser is not a primitive type. This is not safe.

I would strongly suggest that you quit trying to treat your text files as binary files. ios::app which means "write to the end of the file" makes no sense to supply to an ifstream which is a file opened only for input.
Thanks I found my mistake, I actually placed newuser (the instance ) instead of the class name.
Last edited on
That may be another mistake. But the one pointed out by cire is the main problem.
I have removed them, but now I have faced another problem.


http://www.cplusplus.com/forum/general/134108/

Please help me out.

Thanks in advance
Last edited on
You have the same problems already enumerated here. One wonders why you bothered starting a new thread.
Oh sorry. I was a little ignorant.
But as you said, i removed all the ios::app from the input streams.
But I am still stuck. (its able to read the id though.)
But as you said, i removed all the ios::app from the input streams.


That was the least of your problems.

cire wrote:
n.write((char*)&newuser,sizeof(newuser));

Don't do this. newuser is not a primitive type. This is not safe.


For the same reason, don't to this: while(obj.read((char*)&us, sizeof(NewUser))){
what alternative do I have instead of them?
I am sorry, I am an amateur as far as file handling is concerned.
Last edited on
Store data in the file that the program can use to effectively reconstruct the object without using instance local data such as pointers.
Topic archived. No new replies allowed.