ABC Company deals with import and export textiles. The company has few department and about 50 employees. The company has...

profileqnmal.1410f8

ABC Company deals with import and export textiles. The company has few department and about 50 employees. The company has requested you to write a C++ program for file based database for employee in code blocks.

 

The system must also be able to add employee when new employee joined the company. The system must also be able to edit the record, search for employee record. When Employee leaves the company it must allow them 

to delete the record.

 

You must use C++ program to create file based system to add, view, search, edit, delete the records and we should be able to exit the program

 

Your program must include necessary validation to accept the correct input for adding and editing record.

 

Sample screen design of each function is shown below:

 

You will need to create functions for each of the 5 menu options. Entering the number will call the correct function.

I have done the add, view, delete and exit the program. I just need program for search and edit and validation of the full program. 

 

 

 My program:

#include<iostream>

#include<string>

#include<iomanip>

#include<fstream>

#include<stdlib.h>

#include<string.h>

using namespace std;

void add_rec();//function declaration

void view_rec();

void edit_rec();

void search_rec();

void delete_rec();

void quit();

 

struct info

{

    char ID[4];

    char name[21];

    char address[36];

    int age;

    double salary;

};

 

void add_rec()

{

 system("CLS");

 cout<<"add function.\n"<<endl;

 info emp;//to hold info about stock

 char answer;//to hold Y or N

 //open a file for binary output.

 fstream info("employee.dat", ios::app | ios::out | ios::binary);

 do

 {

     //get data about a person.

     cout<<"Enter the following employee data :\n";

     cin.ignore();

     cout<<"Employee ID: ";

     cin.getline(emp.ID,4);

     cout<<"Employee name: ";

     cin.getline(emp.name,21);

     cout<<"Address : ";

     cin.getline(emp.address,31);

     cout<<" Age : ";

     cin>>emp.age;

     cout<<"salary: ";

     cin>>emp.salary;

     cin.ignore();//skip over the remaining newline.

     //write the content of the info structure to the file.

     info.write(reinterpret_cast<char *>(&emp), sizeof(emp));

     //determine whether the user wants to write another record.

 

     cout<<"Do you want to enter another stock record? [Y/N] : ";

     cin>>answer;

     cin.ignore();//skip over the remaining newline.

 

 }while (answer == 'Y' || answer == 'y');

 

}

int main()

{

    int choice;

    cout<<"Welcome to the employee administration"<<endl;

    cout<<"=========================================="<<endl;

    cout<<"1. Add employee record."<<endl;

    cout<<"2. view employee record"<<endl;

    cout<<"3. search employee record"<<endl;

    cout<<"4. edit employee record"<<endl;

    cout<<"5. Delete employee record"<<endl;

    cout<<"6. exit application."<<endl;

    cout<<"==========================================\n"<<endl;

    cout<<"enter your choice : ";

    cin>>choice;

    while(choice != 6)

    {

        switch(choice)

        {

        case 1:

            add_rec();

            break;

        case 2:

            view_rec();

            break;

        case 3:

            search_rec();

            break;

        case 4:

            edit_rec();

            break;

        case 5:

            delete_rec();

            break;

        default:

 

            cout<<"\n Invalid Choice"<<endl;

            cout<<" you can choose between 1 to 6 numbers only."<<endl;

            break;

        }

        cout<<"==================================="<<endl;

        cout<<"1. Add employee record."<<endl;

        cout<<"2. view employee record"<<endl;

        cout<<"3. search employee record"<<endl;

        cout<<"4. edit employee record"<<endl;

        cout<<"5. Delete employee record"<<endl;

        cout<<"6. exit application."<<endl;

        cout<<"==================================="<<endl;

        cout<<" Enter Your Choice : ";

        cin>>choice;

    }

    quit();

    return 0;

}

 

void quit()

{

    cout<<"--------------------------------------"<<endl;

    cout<<" Quiting The Application "<<endl;

     cout<<"Thank You For Using The System."<<endl;

      cout<<"Bye!!Bye!!"<<endl;

      //exit(0);

}

void view_rec()

{

    system("CLS");

    cout<<"View function.\n"<<endl;

    info emp;

    char again;

    fstream info;

    info.open("employee.dat",ios::in | ios::binary);

    //test for error.

    if(!info)

    {

        cout<<"Error opening file. program aborting.\n";

    }

    cout<<"Here are the records in the file.\n";

    //read the first record from the file.

    info.read(reinterpret_cast<char *>(&emp),sizeof(emp));

    //while not at the end of the file, display the record.

    while(!info.eof())

    {

        //display

        cout<<" ID: ";

        cout<<emp.ID<<endl;

 

        cout<<"Name: ";

        cout<<emp.name<<endl;

 

        cout<<"Address: ";

        cout<<emp.address<<endl;

 

        cout<<"age: ";

        cout<<emp.age<<endl;

        cout<<"salary: ";

        cout<<emp.salary<<endl;

        //wait for the user to press the enter key.

        cout<<"\npress the enter key to see the next record.\n";

        cin.get(again);

        //read the nest record from the file.

        info.read(reinterpret_cast<char*>(&emp), sizeof(emp));

 

    }

 

}

 

void search_rec()

{

   

 

 

 

 

 

   cout<<" search function under construction."<<endl;

}

void edit_rec()

{

cout<<“under construction”<<endl;

 

}

 

void delete_rec()

{

    system("CLS");

    info emp;

    ifstream info;

    char ID[4];

    cout<<"\n\n Delete function";

    cin.ignore();

    cout<<" enter employee ID to be deleted:";

    cin.getline(ID, 4);

    info.open("employee.dat",ios::binary);

    if(!info)

    {

        cout<<"File could not be open !! press any key...";

        cin.ignore();

        cin.get();

        return;

 

    }

    ofstream outfile;

    outfile.open("temp.dat",ios::out | ios::binary);

    info.seekg(0,ios::beg);

    while(info.read(reinterpret_cast<char*>(&emp),sizeof(emp)))

    {

        if(strcmp(emp.ID,ID)!=0)

        {

            outfile.write(reinterpret_cast<char*>(&emp), sizeof(emp));

 

        }

    }

    outfile.close();

    info.close();

    remove("employee.dat");

    rename("temp.dat","employee.dat");

    cout<<"\n\n\trecord Deleted..";

    cin.ignore();

    cin.get();

 

}

    • 7 years ago
    • 999999.99
    Answer(0)
    Bids(0)