main.cpp
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 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 |
#include<my_global.h> #include<stdio.h> #include<stdlib.h> #include<ctype.h> #include<string.h> #include<mysql.h> #include<sys/types.h> static char *host = "localhost"; static char *user = "root"; static char *pass = ""; static char *dbname = "first_project"; unsigned int port = 3306; static char *unix_socket = NULL; unsigned int flag = 0; void finish_with_error(MYSQL *conn) { //The function is used for updating mysql fprintf(stderr, "%s\n", mysql_error(conn)); mysql_close(conn); } int main() { system("clear"); FILE *fp; int n,ch,b,det[10],dcost,bcost,tcost; double deta[10]; char temp[40],passwordd[40],l[2]; char details[10][40]; char query[1024]; MYSQL *conn; MYSQL_RES *result; MYSQL_ROW row; int i,num_fields; MYSQL_FIELD *field; int tries = 3, try_count; conn = mysql_init(NULL); if(!(mysql_real_connect(conn,host,user,pass,dbname,port,unix_socket,flag))) { fprintf(stderr,"\n error: %s\t [%d]",mysql_error(conn),mysql_errno(conn)); exit(1); } fp = fopen("goodpass","r"); fscanf(fp,"%s",temp); fclose(fp); printf("\t\t connected to database \n"); printf("\t\t type 1 for admin access any other key for guest access\n\n "); scanf("%d",&n); if(n==1) { // Adding 3 tries for wrong password try_count = 0; while(try_count < tries) { printf("enter the admin password \n"); scanf("%s",passwordd); if(strcmp(passwordd,temp)==0) { continue; } if(strcmp(passwordd,temp)!=0) { printf("Wrong password! Please try again"); try_count++; } } do{ printf("\n\t\t Hey! Admin what are you upto?\n\t\t enter your choice"); printf("\n\t\t 1. add a car\n\t\t 2. delete a car\n\t\t 3. delete a customer detail\n\t\t 4. delete a trip\n\t\t 5. show customer details\n\t\t 6. show trip details\n\t\t 7. show car details\n\t\t 8. to change password\n\t\t 999. to exit"); scanf("%d",&ch); int c; if(ch==1) { printf("\npress 999 to exit,any other key to continue"); scanf("%d",&bcost); if(bcost==999) { continue; } printf("\nmake an entry for car no"); scanf("%d",&det[0]); printf("\nmake an entry for car model"); scanf("%s",details[1]); printf("\nmake an entry for capacity of the car"); scanf("%d",&det[2]); printf("\nmake an entry for base cost"); scanf("%d",&det[3]); printf("\nmake an entry for car type"); scanf("%s",details[4]); printf("\nmake an entry for pickup point"); scanf("%s",details[5]); printf("\nEnter availability "); scanf("%s",details[6]); sprintf(query,"INSERT INTO car_details(car_no,car_model,limit_car,cost_base,car_type,pickup_point,availability) VALUES('%d','%s','%d','%d','%s','%s','%s')",det[0],details[1],det[2],det[3],details[4],details[5],details[6]); if(mysql_query(conn,query)) { finish_with_error(conn); } printf("the table after the new entry is:\n"); if(mysql_query(conn,"SELECT * FROM car_details")) { finish_with_error(conn); } result = mysql_store_result(conn); if (result == NULL) { printf("empty table"); } num_fields = mysql_num_fields(result); while ((row = mysql_fetch_row(result))) { for(i = 0; i < num_fields; i++) { if (i == 0) { while(field = mysql_fetch_field(result)) { printf("%s ", field->name); } printf("\n"); } printf("%s\t",row[i] ? row[i] : "NULL"); } printf("\n"); } mysql_free_result(result); } if(ch==2) { printf("\npress 999 to exit,any other key to continue"); scanf("%d",&bcost); if(bcost==999) { continue; } next2: printf("\nthe table already is:\n"); if(mysql_query(conn,"SELECT * FROM car_details")) { finish_with_error(conn); } result = mysql_store_result(conn); if (result == NULL) { printf("empty table"); } num_fields = mysql_num_fields(result); while ((row = mysql_fetch_row(result))) { for(i = 0; i < num_fields; i++) { if (i == 0) { while(field = mysql_fetch_field(result)) { printf("%s ", field->name); } printf("\n"); } printf("%s\t",row[i] ? row[i] : "NULL"); } printf("\n"); } mysql_free_result(result); printf("delete according to?\n\n 1. car_no\n\n2. car_model\n\n 3. car_type\n\n 4. pickup point\n\n"); scanf("%d",&c); switch(c) { case 1 : printf("enter the car no"); scanf("%d",&det[0]); sprintf(query,"DELETE FROM car_details WHERE car_no = '%d'",det[0]); break; case 2 : printf("enter the car model"); scanf("%s",details[0]); sprintf(query,"DELETE FROM car_details WHERE car_model = '%s'",details[0]); break; case 3 : printf("enter the car type"); scanf("%s",details[0]); sprintf(query,"DELETE FROM car_details WHERE car_type = '%s'",details[0]); break; case 4 : printf("enter the pickup point"); scanf("%s",details[0]); sprintf(query,"DELETE FROM car_details WHERE pickup_point = '%s'",details[0]); break; default : printf("wrong option"); goto next2; } if(mysql_query(conn,query)) { finish_with_error(conn); } } if(ch==3) { printf("\npress 999 to exit right now"); scanf("%d",&bcost); if(bcost==999) { continue; } printf("\nenter the customer no"); scanf("%d",&det[0]); sprintf(query,"DELETE FROM cust_det WHERE cno = '%d'",det[0]); } if(ch==4) { printf("\npress 999 to exit, any other key to continue"); scanf("%d",&bcost); if(bcost==999) { continue; } next1: printf("\nthe table already consists of:\n"); printf("\nthe table consists of:\n"); if(mysql_query(conn,"SELECT * FROM trip_details")) { finish_with_error(conn); } result = mysql_store_result(conn); if (result == NULL) { printf("empty table"); } num_fields = mysql_num_fields(result); while ((row = mysql_fetch_row(result))) { for(i = 0; i < num_fields; i++) { if (i == 0) { while(field = mysql_fetch_field(result)) { printf("%s ", field->name); } printf("\n"); } printf("%s\t",row[i] ? row[i] : "NULL"); } printf("\n"); } mysql_free_result(result); printf("delete according to?\n\n 1. customer's license_no\n\n2. car number\n\n "); scanf("%d",&c); printf("enter value : "); scanf("%s",details[0]); switch(c) { case 1 : sprintf(query,"DELETE FROM trip_details WHERE dlno = '%s'",details[0]); break; case 2 : sprintf(query,"DELETE FROM trip_details WHERE car_no = '%s'",details[0]); break; default : printf("wrong option"); goto next1; } if(mysql_query(conn,query)) { finish_with_error(conn); } } if(ch==5) { printf("\npress 999 to exit,any other key to continue"); scanf("%d",&bcost); if(bcost==999) { continue; } printf("\ncustomer details"); if(mysql_query(conn,"SELECT * FROM cust_det")) { finish_with_error(conn); } result = mysql_store_result(conn); if (result == NULL) { printf("empty table"); } num_fields = mysql_num_fields(result); while ((row = mysql_fetch_row(result))) { for(i = 0; i < num_fields; i++) { if (i == 0) { while(field = mysql_fetch_field(result)) { printf("%s ", field->name); } printf("\n"); } printf("%s\t",row[i] ? row[i] : "NULL"); } printf("\n"); } mysql_free_result(result); } if(ch==6) { printf("\ntrip details"); if(mysql_query(conn,"SELECT * FROM trip_details")) { finish_with_error(conn); } result = mysql_store_result(conn); if (result == NULL) { printf("empty table"); } num_fields = mysql_num_fields(result); while ((row = mysql_fetch_row(result))) { for(i = 0; i < num_fields; i++) { if (i == 0) { while(field = mysql_fetch_field(result)) { printf("%s ", field->name); } printf("\n"); } printf("%s\t",row[i] ? row[i] : "NULL"); } printf("\n"); } mysql_free_result(result); } if(ch==7) { printf("\ncar details"); if(mysql_query(conn,"SELECT * FROM car_details")) { finish_with_error(conn); } result = mysql_store_result(conn); if (result == NULL) { printf("empty table"); } num_fields = mysql_num_fields(result); while ((row = mysql_fetch_row(result))) { for(i = 0; i < num_fields; i++) { if (i == 0) { while(field = mysql_fetch_field(result)) { printf("%s ", field->name); } printf("\n"); } printf("%s\t",row[i] ? row[i] : "NULL"); } printf("\n"); } mysql_free_result(result); } if(ch==8) { char a[2]; printf("\nDo you really want to change the password? press y/n"); scanf("%s",a); if(strcmp(a,"y")==0) { fp = fopen("goodpass","w"); char temp1[40]; printf("\nenter your old password"); scanf("%s",temp1); if(strcmp(temp,temp1)==0) { printf("\nenter your new password"); scanf("%s",passwordd); printf("\nconfirm your password"); scanf("%s",temp1); if(strcmp(passwordd,temp1)==0) { fprintf(fp,"%s",temp1); printf("password has been changed!"); } else printf("\nunauthorized access terminated,bye!"); } fclose(fp); } } }while(ch!=999); } else { int pick; do{ printf("\n\t\t Welcome guest! How May I Help you?"); printf("\n\t\t 1.Search among all the cars\n\t\t 2.Bill generation\n\t\t 999.to exit"); scanf("%d",&pick); switch(pick) { case 1 :printf("\ncar details"); if(mysql_query(conn,"SELECT * FROM car_details")) { finish_with_error(conn); } result = mysql_store_result(conn); if (result == NULL) { printf("empty table"); } num_fields = mysql_num_fields(result); while ((row = mysql_fetch_row(result))) { for(i = 0; i < num_fields; i++) { if (i == 0) { while(field = mysql_fetch_field(result)) { printf("%s ", field->name); } printf("\n"); } printf("%s\t",row[i] ? row[i] : "NULL"); } printf("\n"); } mysql_free_result(result); printf("\n\t\t selecting a car?\n\t\t choose a suitable option,\n\t\t 1.car model\n\t\t 2. pickup point\n "); scanf("%d",&ch); if(ch==1) { printf("\nenter the car model"); scanf("%s",details[0]); sprintf(query,"SELECT * FROM car_details c WHERE c.car_model = '%s' AND c.availability = 'y'",details[0]); mysql_query(conn,query); result = mysql_store_result(conn); if(result == NULL) { printf("\nwe don't have the car right now"); } num_fields = mysql_num_fields(result); while(row = mysql_fetch_row(result)) { for(i = 0; i< num_fields; i++) { printf("%s\t", row[i] ? row[i] : "NULL"); } } printf("\nAre you sure you wanna take this car?(y/n)"); scanf("%s",l); if(strcmp(l,"y")==0) { printf("\nyour trip is being generated\n"); printf("\nenter your customer number"); scanf("%d",&det[0]); printf("\nenter your name"); scanf("%s",details[1]); printf("\nenter your destination "); scanf("%s",details[2]); printf("\nenter your email id"); scanf("%s",details[3]); printf("\nenter your contact no"); scanf("%d",&det[4]); printf("\nenter your dlno"); scanf("%s",details[5]); sprintf(query,"SELECT * FROM car_details c WHERE c.car_model = '%s' AND c.availability = 'y'",details[0]); mysql_query(conn,query); result = mysql_store_result(conn); row = mysql_fetch_row(result); sprintf(query,"INSERT INTO cust_det(cno,name,destination,email_id,contact_no,dlno,car_no) VALUES('%d','%s','%s','%s','%d','%s','%s')",det[0],details[1],details[2],details[3],det[4],details[5],row[0]); mysql_query(conn,query); sprintf(query,"UPDATE car_details SET availability = 'n' WHERE car_model = '%s' ",row[1]); mysql_query(conn,query); printf("\nenter the date of the start of your trip"); scanf("%s",details[0]); printf("\nenter the date of the end of your trip"); scanf("%s",details[1]); printf("\nenter the distance"); scanf("%lf",&deta[2]); sprintf(query,"INSERT INTO trip_details(start_t,end_t,car_no,distance,dlno) VALUES('%s','%s','%s','%lf','%s')",details[0],details[1],row[0],deta[2],details[5]); mysql_query(conn,query); mysql_free_result(result); break; } } if(ch==2) { printf("\nenter the pickup point "); scanf("%s",details[0]); sprintf(query,"SELECT * FROM car_details WHERE pickup_point = '%s' AND availability = 'y'",details[0]); mysql_query(conn,query); result = mysql_store_result(conn); if(result == NULL) { printf("we don't have the car right now"); } num_fields = mysql_num_fields(result); while(row = mysql_fetch_row(result)) { for(i = 0; i< num_fields; i++) { printf("%s\t", row[i] ? row[i] : "NULL"); } } printf("\n are you sure you wanna take this car?(y/n)"); scanf("%s",l); if(strcmp(l,"y")==0) { printf("\nyour trip is being generated\n"); printf("\nenter your customer number"); scanf("%d",&det[0]); printf("\nenter your name"); scanf("%s",details[1]); printf("\nenter your destination "); scanf("%s",details[2]); printf("\nenter your email id"); scanf("%s",details[3]); printf("\nenter your contact no"); scanf("%d",&det[4]); printf("\nenter your dlno"); scanf("%s",details[5]); sprintf(query,"SELECT * FROM car_details WHERE pickup_point = '%s' AND availability = 'y'",details[0]); mysql_query(conn,query); result = mysql_store_result(conn); row = mysql_fetch_row(result); sprintf(query,"INSERT INTO cust_det() VALUES('%d','%s','%s','%s','%d','%s','%s')",det[0],details[1],details[2],details[3],det[4],details[5],row[0]); mysql_query(conn,query); sprintf(query,"UPDATE car_details SET availability = 'n' WHERE car_model = '%s'", row[1]); mysql_query(conn,query); printf("\nenter the date of the start of your trip"); scanf("%s",details[0]); printf("\nenter the date of the end of your trip"); scanf("%s",details[1]); printf("\nenter the distance"); scanf("%lf",&deta[2]); sprintf(query,"INSERT INTO trip_details(start_t,end_t,car_no,distance,dlno) VALUES('%s','%s','%s','%lf','%s')",details[0],details[1],row[0],deta[2],details[5]); mysql_query(conn,query); } } mysql_free_result(result); break; case 2: printf("\n\t\t The Bill is being generated"); printf("\n\t\t enter your dlno"); scanf("%s",details[0]); sprintf(query,"SELECT * FROM trip_details WHERE dlno = '%s'",details[0]); mysql_query(conn,query); result = mysql_store_result(conn); row = mysql_fetch_row(result); int j=0; int temp=0; while(row[3][i] != '\0') { //this function is to calculate actual numeral value of bill temp=temp*10; temp=temp+((int)row[3][i]-48); i++; } dcost = temp*10; printf("\n\t\tcost as per the distance travelled(rs.10 per km)rs.%d",dcost); strcpy(details[0],row[2]); mysql_free_result(result); sprintf(query,"SELECT * FROM car_details WHERE car_no = '%s'",details[0]); mysql_query(conn,query); result = mysql_store_result(conn); row = mysql_fetch_row(result); j=0;temp=0; while(row[3][i] != '\0') { printf("\n%d",temp); temp=temp*10; temp=temp+((int)row[3][i]-48); i++; } printf("\ntemp%d",temp); bcost = temp; tcost = bcost + dcost; printf("\nthe base cost is:rs.%d\n the total cost is: rs.%d ",bcost,tcost); mysql_free_result(result); } }while(pick!=999); } mysql_close(conn); return 0; } |