Saturday 29 November 2014

Process Scheduling Simulator - SJF | FCFS | RoundRobin

Process Scheduling Simulator - SJF | FCFS | RoundRobin








// APP CLASS

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;
import java.awt.image.BufferedImage;
import java.io.File;
import java.sql.Time;
import java.util.LinkedList;
import java.util.Queue;

import javax.imageio.ImageIO;
import javax.swing.*;


public class App extends JFrame {

JFrame f1,f2,finput,f3;
ButtonGroup group;
JRadioButton r1,r2,r3;
Font font1;
JButton jb1,add,delete,start,back,insert,done,colorc,start2;
JLabel avgTime;
JTable table;
JScrollPane scrollPane,scrollPane2;
String dataValues[][];
String readyData[][];
JTextField txt1,txt2,txt3;//
int c,readyc;//counter
float AvgWaitTime=0;
float displayResult=0;
int totalTime=0;
String columnNames[] = { "S.No", "JOB_ID", "CPU BURST","ARRIVAL TIME" };
Color color;
JobPool jobpool; // object of JobPool Class  to store all process
Animation animation;
PaintReadyQueue prqObj;
GanttChart gcObj;
ProgessBar pbObj;
//
public Queue<Process> JobQueue,ReadyQueue;
//
public App(){
c=0;// counter
color=Color.WHITE; // Color variable for process by default white
jobpool=new JobPool();
animation=new Animation();
f1=new JFrame();
f1.setSize(600, 420);
f1.setVisible(true);
f1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f1.setResizable(false);
f1.setLocationRelativeTo(null);
f1.setLayout(null);
f1.setTitle("PROCESS SCHEDULING | DEVELOPED BY SHAHARYAR SHAUKAT");
//
f2=new JFrame();
f2.setSize(800, 600);
f2.setVisible(false);
f2.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f2.setResizable(false);
f2.setLocationRelativeTo(null);
f2.setLayout(null);
f2.setTitle("PROCESS SCHEDULING | DEVELOPED BY SHAHARYAR SHAUKAT");
//
f3=new JFrame();
f3.setSize(1000, 670);
f3.setVisible(false);
f3.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f3.setResizable(false);
f3.setLocationRelativeTo(null);
f3.setLayout(null);
f3.setTitle("PROCESS SCHEDULING | DEVELOPED BY SHAHARYAR SHAUKAT");
//
finput=new JFrame();
finput.setSize(400, 250);
finput.setVisible(false);
finput.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
finput.setResizable(false);
finput.setLocationRelativeTo(null);
finput.setLayout(null);
finput.setTitle("ENTER JOB");
load1();
load2();
txt1=new JTextField();
txt2=new JTextField();
txt3=new JTextField();
txt1.setBounds(10, 70, 50, 30);
finput.add(txt1);
txt1.setEditable(false);
txt2.setBounds(130, 70, 80, 30);
// Formatting TextField to invalid
txt2.addKeyListener(new KeyAdapter() {
   public void keyTyped(KeyEvent e) {
     char c = e.getKeyChar();
     if (!((c >= '0') && (c <= '9') ||
        (c == KeyEvent.VK_BACK_SPACE) ||
        (c == KeyEvent.VK_DELETE))) {
       getToolkit().beep();
       JOptionPane.showMessageDialog(null,
           "Character Not Allowed",
           "Invalid Input",
           JOptionPane.ERROR_MESSAGE);
       e.consume();
     }
   }
 });
txt3.addKeyListener(new KeyAdapter() {
   public void keyTyped(KeyEvent e) {
     char c = e.getKeyChar();
     if (!((c >= '0') && (c <= '9') ||
        (c == KeyEvent.VK_BACK_SPACE) ||
        (c == KeyEvent.VK_DELETE))) {
       getToolkit().beep();
       JOptionPane.showMessageDialog(null,
           "Character Not Allowed",
           "Invalid Input",
           JOptionPane.ERROR_MESSAGE);
       e.consume();
     }
   }
 });
finput.add(txt2);
txt3.setBounds(280, 70, 80, 30);
finput.add(txt3);
insert=new JButton("INSERT");
insert.setBackground(new Color(241, 196, 15));
insert.setForeground(Color.WHITE);
insert.setFont(new Font("Garamond",  Font.BOLD , 15));
insert.setBounds(10, 150, 100, 30);
insert.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
   loadData();
//table = new JTable( dataValues, columnNames );
f2.add(scrollPane);
txt1.setText(Integer.toString(c+1));
txt2.setText("");
txt3.setText("");

}
});
done=new JButton("DONE");
done.setBackground(new Color(241, 196, 15));//rgb(243, 156, 18)
done.setForeground(Color.WHITE);
done.setFont(new Font("Garamond",  Font.BOLD , 15));
done.setBounds(280, 150, 100, 30);
done.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
finput.setVisible(false);
}
});
colorc=new JButton("CHOOSE COLOR");
colorc.setBackground(new Color(243, 156, 18));
colorc.setForeground(Color.BLACK);
colorc.setFont(new Font("Garamond",  Font.BOLD , 12));
colorc.setBounds(120, 150, 150, 30);
colorc.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
color=JColorChooser.showDialog(null, "Assign Color to job", color);
}
});
finput.add(done);
finput.add(insert);
finput.add(colorc);
f1.validate();
}
public void load1(){
try{
BufferedImage bf = ImageIO.read(new File("icon//bg1.jpg"));
f1.setContentPane(new Bg(bf));

}catch(Exception e){

}
group = new ButtonGroup();
r1= new JRadioButton("FCFS",true);
r2= new JRadioButton("SJF");
r3= new JRadioButton("ROUND ROBIN");
group.add(r1);
group.add(r2);
group.add(r3);
r1.setBounds(20, 200, 60, 30);
r1.setBackground(Color.WHITE);
r2.setBounds(100, 200, 60, 30);
r2.setBackground(Color.WHITE);
r3.setBounds(170, 200, 100, 30);
r3.setBackground(Color.WHITE);
jb1=new JButton("NEXT");
jb1.setBackground(new Color(44, 62, 80));
jb1.setBounds(70, 250, 150, 50);
jb1.setForeground(Color.WHITE);
jb1.setFont(new Font("Garamond",  Font.BOLD , 30));
jb1.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
f1.dispose();
f2.setVisible(true);
}
});
f1.add(r1);
f1.add(r2);
f1.add(r3);
f1.add(jb1);
f1.validate();



}
public void load2(){
JobQueue=new LinkedList<Process>();
ReadyQueue=new LinkedList<Process>();
try{
BufferedImage bf = ImageIO.read(new File("icon//bg2.jpg"));
f2.setContentPane(new Bg(bf));

}catch(Exception e){

}
try{
BufferedImage bf = ImageIO.read(new File("icon//inputbg1.jpg"));
finput.setContentPane(new Bg(bf));

}catch(Exception e){

}
dataValues=new String[25][4];
inData();// initialize  dataValues to =""
table = new JTable( dataValues, columnNames );
table.setFont(new Font("Garamond",  Font.BOLD , 20));
table.setEnabled(false);
table.setRowHeight(30);
scrollPane = new JScrollPane( table );
scrollPane.setBounds(20, 150, 550, 400);
add=new JButton("ADD");
add.setBackground(new Color(231, 76, 60));
add.setForeground(Color.WHITE);
add.setFont(new Font("Garamond",  Font.BOLD , 25));
add.setBounds(600, 150, 150, 50);
add.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
txt1.setText(Integer.toString(c+1));
txt2.setText("");
txt3.setText("");
finput.setVisible(true);
}
});

delete=new JButton("DELETE");
delete.setBackground(new Color(231, 76, 60));
delete.setForeground(Color.WHITE);
delete.setFont(new Font("Garamond",  Font.BOLD , 25));
delete.setBounds(600, 250, 150, 50);
delete.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
deleteData();
//table = new JTable( dataValues, columnNames );
f2.add(scrollPane);
}
});

start=new JButton("START");
start.setBackground(new Color(231, 76, 60));
start.setForeground(Color.WHITE);
start.setFont(new Font("Garamond",  Font.BOLD , 25));
start.setBounds(600, 350, 150, 50);
start.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
prqObj=new PaintReadyQueue(totalTime);
// prqObj.temp=jobpool.JobQueue;
gcObj=new GanttChart(totalTime);
pbObj=new  ProgessBar(c,JobQueue);
load3();
f3.setVisible(true);
f2.setVisible(false);
if(r1.isSelected()){
FCFS();
}else if(r2.isSelected()){
SJF();
}else{
RR();
}
}
});

back=new JButton("BACK");
back.setBackground(new Color(231, 76, 60));
back.setForeground(Color.WHITE);
back.setFont(new Font("Garamond",  Font.BOLD , 25));
back.setBounds(600, 450, 150, 50);

f2.add(scrollPane);
f2.add(add);
f2.add(delete);
f2.add(start);
f2.add(back);
f2.validate();
}
public void load3(){
try{
BufferedImage bf = ImageIO.read(new File("icon//bgmain.jpg"));
f3.setContentPane(new Bg(bf));

}catch(Exception e){

}
avgTime=new JLabel();
avgTime.setBounds(425, 380, 200, 100);
avgTime.setFont(new Font("SansSerif", Font.BOLD, 50));
start2=new JButton("BEGIN");
start2.setBounds(10, 10, 150, 50);
scrollPane2 = new JScrollPane( table );
scrollPane2.setBounds(20, 90, 335, 380);
animation.setBounds(455, 188, 120, 110);
prqObj.setBounds(373, 87, 300, 80);
gcObj.setBounds(20, 510, 955, 110);
pbObj.setBounds(700, 120, 165, 350);
start2.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
FCFS();
}
});

f3.add(avgTime);
f3.add(gcObj);
f3.add(animation);
f3.add(scrollPane2);
f3.add(prqObj);
f3.add(pbObj);
f3.validate();
f3.revalidate();
}//--------------------------------------------------------------------------
public void loadData(){

String str1=txt1.getText();
String str2=txt2.getText();
String str3=txt3.getText();
if(str2.isEmpty()||str3.isEmpty()||color==Color.WHITE){
getToolkit().beep();
if(color==Color.WHITE){
JOptionPane.showMessageDialog(null,"** Choose Color Apart From White","ERROR",JOptionPane.ERROR_MESSAGE);
}else{
JOptionPane.showMessageDialog(null,"** ALL Fields Are Required","ERROR",JOptionPane.ERROR_MESSAGE);
}
}else{
// load the the process in JobPool
dataValues[c][0]=Integer.toString(c+1);
dataValues[c][1]="JOB_"+str1;
dataValues[c][2]=str2;
dataValues[c][3]=str3;
totalTime=totalTime+ Integer.parseInt(str2);
//jobpool.InsertJob(c, Integer.parseInt(str3), Integer.parseInt(str2), color);
InsertJob(c, Integer.parseInt(str3), Integer.parseInt(str2), color);
c++;
color=Color.WHITE;
}
}
public void deleteData(){
//
if(c==0){
JOptionPane.showMessageDialog(null, "Job Pool is Empty, No Item For Deletion ");
}
else
{
c--;
dataValues[c][0]="";
dataValues[c][1]="";
dataValues[c][2]="";
dataValues[c][3]="";
}
}
//-----------------------------------------------
public void inData(){
for(int i=0;i<25;i++){
dataValues[i][0]="";
dataValues[i][1]="";
dataValues[i][2]="";
dataValues[i][3]="";

}
}
//----------------INSERT JOB TO JOBPOOL------------------
public void InsertJob(int id,int atime,int cputime,Color c){
JobQueue.add(new Process(id,atime,cputime,c));
}
//--------------------------UPDATE READY QUEUE--------------------------
public void updateReadyQueue(int t){
Process temp;
for(int i=0;i<JobQueue.size();i++){
temp=JobQueue.remove();
if(temp.getArrivalTime()==t){
insertProcess(temp);// Insert The Process To Ready Queue
JobQueue.add(temp);
}else{
JobQueue.add(temp);
}

}
}
//--------------------------INSERT PROCESS TO READY QUEUE-------------------
public void insertProcess(Process p){
ReadyQueue.add(p);


}
//--------------------------FCFS------------------------------
public void FCFS(){
int n=JobQueue.size();
Process CpuProcess;
CpuProcess=null;// Intilize null process
for(int i=0;i<totalTime;i++){
updateReadyQueue(i);
allQueue(i);
if(CpuProcess==null){
if(!ReadyQueue.isEmpty()){
CpuProcess=ReadyQueue.remove();
CpuProcess.setIstResponseTime(i);
CpuProcess.setLastResponseTime(i);
}
}
if(CpuProcess!=null){
CpuProcess.Decrement();
gcObj.temp.add(CpuProcess);
pbObj.JobQ.add(CpuProcess);
if(CpuProcess.getRemainingTime()==0){
CpuProcess.setWaitTime(i);
AvgWaitTime=AvgWaitTime+CpuProcess.getwaitingTime();
CpuProcess=null;
}

}

}
gcObj.JobQ.addAll(gcObj.temp);//  Gantt Chart Class
if(n>0){
//AvgWaitTime=AvgWaitTime/n;
displayResult=AvgWaitTime/n;
}
//avgTime.setText(Integer.toString(AvgWaitTime));
avgTime.setText(Float.toString(displayResult));
f3.add(avgTime);
f3.revalidate();
}
//------------------SJF----------------------------------------------
public void SJF(){
int n=JobQueue.size();
Process CpuProcess=null;
int state=0;
for(int i=0;i<totalTime;i++){
updateReadyQueue(i);
allQueue(i);
if(CpuProcess==null){
// means CPU is empty
if(!ReadyQueue.isEmpty()){
CpuProcess=loadminCpuBust();
}
}else{
if(!ReadyQueue.isEmpty()){
CpuProcess=checkPreemtion(CpuProcess);
}
}
if(CpuProcess!=null){
gcObj.temp.add(CpuProcess);
pbObj.JobQ.add(CpuProcess);
CpuProcess.Decrement();
if(CpuProcess.getRemainingTime()==0){
CpuProcess.setWaitTime(i);
AvgWaitTime=AvgWaitTime+CpuProcess.getwaitingTime();
CpuProcess=null;
}
}

}
gcObj.JobQ.addAll(gcObj.temp);
if(n>0){
//AvgWaitTime=AvgWaitTime/n;
displayResult=AvgWaitTime/n;
}
//avgTime.setText(Integer.toString(AvgWaitTime));
avgTime.setText(Float.toString(displayResult));
f3.add(avgTime);
f3.revalidate();
}
//------------------- LOAD MIN CPU BOUND PROCESS TO CPU-----------------------------------
public Process loadminCpuBust(){
int min,pos=0;
Process p,returnprocess;
Queue<Process> temp=new LinkedList<Process>();
temp.addAll(ReadyQueue);
returnprocess=temp.peek();
        min=temp.peek().getRemainingTime();
for(int i=0;i<temp.size();i++){
p=temp.poll();
if(p.getRemainingTime()<min){
min=p.getRemainingTime();
pos=i;
}
temp.add(p);
}
for(int i=0;i<temp.size();i++){
p=ReadyQueue.poll();
if(i==pos){
returnprocess=p;
}else{
ReadyQueue.add(p);
}

}
return returnprocess;

}
//---------------------------LOAD AND CHECK FOR PREEMPTION-----------------------
public Process checkPreemtion(Process p){
int min,pos=-1;
Queue<Process> temp=new LinkedList<Process>();
temp.addAll(ReadyQueue);
Process currentprocess=p,returnprocess=p,tp;
min=currentprocess.getRemainingTime();
for(int i=0;i<temp.size();i++){
tp=temp.poll();
if(tp.getRemainingTime()<min){
min=tp.getRemainingTime();
pos=i;
}
temp.add(tp);
}
if(pos>=0){
for(int i=0;i<temp.size();i++){
tp=ReadyQueue.poll();
if(i==pos){
returnprocess=tp;
ReadyQueue.add(currentprocess);
}else{
ReadyQueue.add(tp);
}

}
}

return returnprocess;
}
//--------------------------------------SJF ENDS -------------------------------------

//---------------------------------ROUND ROBIN--------------------------------------
public void RR(){
int n=JobQueue.size();
Process CpuProcess=null;
int quatum=0;
for(int i=0;i<totalTime;i++){
updateReadyQueue(i);
allQueue(i);
if(quatum==2||CpuProcess==null){
if(!ReadyQueue.isEmpty()){
CpuProcess=loadJob(CpuProcess,quatum);
CpuProcess.setLastResponseTime(i);
}
quatum=0;
}
if(CpuProcess!=null){
gcObj.temp.add(CpuProcess);
pbObj.JobQ.add(CpuProcess);
CpuProcess.Decrement();
quatum++;
if(CpuProcess.getRemainingTime()==0){
if(CpuProcess.getLastCpuBurst()!=0){
CpuProcess.setLastCpuBurst(quatum);
}
CpuProcess.setWaitTime(i);
AvgWaitTime=AvgWaitTime+CpuProcess.getwaitingTime();
CpuProcess=null;
}
}

}
gcObj.JobQ.addAll(gcObj.temp);
if(n>0){
displayResult=AvgWaitTime/n;
}
avgTime.setText(Float.toString(displayResult));
f3.add(avgTime);
f3.revalidate();
}

public Process loadJob(Process p ,int t){
if(p==null){
return ReadyQueue.remove();
}else{
ReadyQueue.add(p);
p.setLastCpuBurst(t);
return ReadyQueue.poll();
}
}

//--------------All Queue For PAINTREADYQUEUE CLASS----------------------
public void allQueue(int  t){
if(!ReadyQueue.isEmpty()){
prqObj.all.addAll(ReadyQueue);
prqObj.array[t]=ReadyQueue.size();
}else{
prqObj.array[t]=0;
}


}
public static void main(String args[]){
new App();
}

}

// BACKGROUND IMAGE CLASS

import java.awt.Graphics;
import java.awt.Image;

import javax.swing.JComponent;


public class Bg extends JComponent {
Image i;
public Bg(Image i) {
this.i = i;
 
}
public void paintComponent(Graphics g) {
 
g.drawImage(i, 0, 0, null);  // Drawing image using drawImage method
 
}
}

// CPU PROCESS CLASS

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.*;

import java.awt.*;
import java.util.LinkedList;
import java.util.Queue;
public class CpuProcess extends JPanel implements ActionListener{
private Timer tm;
int time;
int n;
int x;
int c=0;
public Process p=null;
public Queue<Process> JobQ,temp;
public CpuProcess(int t){
JobQ=new LinkedList<Process>();
temp=new LinkedList<Process>();
tm=new Timer(1000,this);
n=0;
x=5;
time=t;
tm.start();
}
public void actionPerformed(ActionEvent e) {
p=JobQ.remove();
   repaint();
   n++;
   if(n>=time){
    tm.stop();
   }
}
public void paint(Graphics g){
if(p!=null){
g.setColor(p.getColor());
g.fillRect(10, 10, 100,70);
g.setColor(Color.WHITE);
g.drawString(Integer.toString(1+p.getId()), 30, 25);
}
}

}


// GANTT CHART CLASS

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.*;

import java.awt.*;
import java.util.LinkedList;
import java.util.Queue;

public class GanttChart extends JPanel implements ActionListener {
private Timer tm;
int time;
int n;
int x;
int c=0;
public Process p;
public Queue<Process> JobQ,temp;
public GanttChart(int t){
JobQ=new LinkedList<Process>();
temp=new LinkedList<Process>();
tm=new Timer(1000,this);
n=0;
x=5;
time=t;
tm.start();
}

public void actionPerformed(ActionEvent e) {
temp.clear();
temp.addAll(JobQ);
n++;
x=10;
   repaint();
}
public void paint(Graphics g){
super.paint(g);
this.setBackground(Color.WHITE);
if(n>=time){
tm.stop();
}
for(int i=0;i<n;i++){
if(temp.size()>0){
g.setColor(temp.peek().getColor());
g.fillRect(x, 10, 15,80);
g.setColor(Color.WHITE);
g.drawString(Integer.toString(1+temp.peek().getId()), x, 25);
g.drawString(Integer.toString(1+i), x, 25+60);
x+=20;
temp.poll();
}
}
//g.fillRect(20, 300, 20, 40);
}

}


// JOB POOL CLASS

import java.awt.Color;
import java.util.LinkedList;
import java.util.Queue;


public class JobPool {
public Queue<Process> JobQueue,T,ReadQUeue,tempReadQUeue; // Job Queue to hold all job
PaintReadyQueue object;
public JobPool(){
JobQueue=new LinkedList<Process>();
T=new LinkedList<Process>();
ReadQUeue=new LinkedList<Process>();
tempReadQUeue=new LinkedList<Process>();
}
public void InsertJob(int id,int atime,int cputime,Color c){
JobQueue.add(new Process(id,atime,cputime,c));
T.add(new Process(id,atime,cputime,c));
}
public void insertReady(Process p){
ReadQUeue.add(p);
tempReadQUeue.add(p);
}

}

Monday 24 November 2014

Page Replacement Algorithms Implementation in Java

Page Replacement Algorithms Implementation in Java



source code:-

FIFO CLASS

import java.util.LinkedList;
import java.util.Queue;

public class FIFO implements Runnable{
String refString="";
int noFrame;
Link objLink;
int I=0,C;
Queue<Integer> q=new LinkedList<Integer>();
public FIFO(String s,int n){
refString=s;
noFrame=n;
C=n;
objLink=new Link(refString.length(),noFrame);
}

public void run(){
Alogrithm();
}

public void Alogrithm(){

for( I=0;I<refString.length();I++){
char ch=refString.charAt(I);
int value=(int) ch-48;
if(search(value)==1){
//search true | page hit
objLink.setHitMiss(I);
objLink.setPageFault(0);
loadframe(I);
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

}
if(search(value)==0){
{

// search false | page Fault
objLink.setPageFault(1);
if(q.size()<noFrame){
q.add(value);
loadframe(I);
}else{
q.poll();
q.add(value);
if(C==0){
C=noFrame;
}
shiftframe(I);
}


try {
Thread.sleep(3050);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

// ends | page Fault

}
}

}
objLink.setPageFault(0);

}
//search
public int search(int n){
Queue<Integer> qtemp=new LinkedList<Integer>();
qtemp.addAll(q);
int result=0;
if(true){
for(int i=0;i<q.size();i++){
int temp=qtemp.poll();
if(temp==n){
result=1;
}
qtemp.add(temp);
}
}
return result;

}
// shift
public void shiftframe(int n){
Queue<Integer> qtemp=new LinkedList<Integer>();
qtemp.addAll(q);
for(int i=1;i<C;i++){
int temp=qtemp.poll();
qtemp.add(temp);
}
for(int i=0;i<qtemp.size();i++){
int temp=qtemp.poll();
objLink.setFrame(n, i, temp);
qtemp.add(temp);
}
C--;
objLink.setI(n);

}
//load to frame
public void loadframe(int n){

for(int i=0;i<q.size();i++){
int temp=q.poll();
objLink.setFrame(n, i, temp);
q.add(temp);
}
objLink.setI(n);
}


}

APP CLASS

import java.awt.Font;
import java.awt.Image;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.image.BufferedImage;
import java.io.File;
import java.util.Random;

import javax.imageio.ImageIO;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;


public class App {
JFrame f1,f2,f3;
String title="PAGE REPLACEMENT SIMULATION | DEVELOPED BY SHAHARYAR ";
JButton btnRandom,btnUser,btnNext;
JTextField txtRef,txtNoframe;
JComboBox <String>box;
String refString="";
int noFrame;
Display objDisplay;
FIFO objFIFO;
LRU objLRU;
public App(){
f1=new JFrame();
f2=new JFrame();
f1.setSize(800, 630);
f2.setSize(800, 630);
f1.setVisible(true);
f1.setResizable(false);
f2.setResizable(false);
f1.setLocationRelativeTo(null);
f2.setLocationRelativeTo(null);
f1.setTitle(title);
f1.setLayout(null);
f2.setTitle(title);
f2.setLayout(null);
try{
BufferedImage bf = ImageIO.read(new File("images//bg1.png"));  
f1.setContentPane(new Bg(bf));
}catch(Exception e){
}
load1();
f1.validate();
f1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public void load1(){
btnNext=new JButton("Next");
btnRandom=new JButton("Random Input");
btnUser=new JButton("User Input");
btnRandom.setBounds(50, 300, 200, 50);
btnUser.setBounds(300, 300, 200, 50);
btnRandom.setFont(new Font("Courier New", Font.BOLD, 20));
btnUser.setFont(new Font("Courier New", Font.BOLD, 20));
btnNext.setFont(new Font("Courier New", Font.BOLD, 20));
f1.add(btnRandom);
f1.add(btnUser);
box = new JComboBox<String>();
box.addItem("FIFO");
box.addItem("LRU");
box.addItem("MFU");
txtRef=new JTextField();
txtNoframe=new JTextField();
btnRandom.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
   
loadRandom();
}
});
btnUser.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
loadUser();
}
});
}
//------------------------------------Load Random----------------------------
public void loadRandom(){
try{
BufferedImage bf = ImageIO.read(new File("images//bg20.jpg"));  
f2.setContentPane(new Bg(bf));
}catch(Exception e){
}
txtRef.setBounds(300, 230, 80, 30);
txtNoframe.setBounds(300, 300, 80, 30);
btnNext.setBounds(200,450,150,50);
box.setBounds(300, 350, 80, 50);
f2.add(txtNoframe);
f2.add(txtRef);
f2.add(box);
f2.add(btnNext);
f2.setVisible(true);
f1.setVisible(false);
f2.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
btnNext.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
generateDataRandom();
loadMain();
}
});
}
//-------------------------------------Load UserInput-----------------------------------
public void loadUser(){
try{
BufferedImage bf = ImageIO.read(new File("images//bg21.jpg"));  
f2.setContentPane(new Bg(bf));
}catch(Exception e){
}
txtRef.setBounds(50, 260, 400, 30);
txtNoframe.setBounds(300, 310, 80, 30);
btnNext.setBounds(200,450,150,50);
box.setBounds(300, 360, 80, 50);
f2.add(txtRef);
f2.add(txtNoframe);
f2.add(box);
f2.add(btnNext);
f2.setVisible(true);
f1.setVisible(false);
f2.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
btnNext.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
generateDateUser();
loadMain();
}
});
}
//------------------------------------ Generate Random Reference String---------------------- 
public void generateDataRandom(){
noFrame=Integer.parseInt(txtNoframe.getText());
int noref=Integer.parseInt(txtRef.getText());
Random rand=new Random();
for(int i=0;i<noref;i++){
refString=refString+Integer.toString(rand.nextInt(10));
}
}
//-------------------------------------- Generate Reference String From User Input-------------------------
public void generateDateUser(){
noFrame=Integer.parseInt(txtNoframe.getText());
String temp=txtRef.getText();
for(int i=0;i<temp.length();i++){
char ch=temp.charAt(i);
if(ch!=','){
refString=refString+ch;
}
}
}
//-------------------------------------- Load MAIN Frame-----------------------------------
public void loadMain(){
f3=new JFrame();
f3.setSize(800, 630);
f3.setResizable(false);
f3.setLocationRelativeTo(null);
f3.setTitle(title);
f3.setLayout(null);
f3.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
String value=box.getSelectedItem().toString();
String Algo="";
objDisplay=new Display(refString,noFrame,Algo);
objDisplay.setBounds(0,0,800,600);
f3.add(objDisplay);
f3.setVisible(true);
f2.setVisible(false);
Thread threadDisplay=new Thread(objDisplay);
if(value.equals("FIFO")){
Algo="FIFO";
objFIFO=new FIFO(refString,noFrame);
Thread threadFIFO=new Thread(objFIFO);
threadDisplay.start();
threadFIFO.start();
}
if(value.equals("LRU")){
Algo="LRU";
objLRU=new LRU(refString,noFrame);
Thread threadLRU=new Thread(objLRU);
threadDisplay.start();
threadLRU.start();
}
if(value.equals("MFU")){
Algo="MRU";
}
}

public static void main(String args[]){
new App();
}

}

DISPLAY CLASS

import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.Toolkit;

import javax.swing.JPanel;


public class Display extends JPanel implements Runnable {
String refString="",Algo="";
Image bg,bgdrive,bgram,bgpage,loading[],bghit,bgmiss;
Toolkit t;
Font font;
int x=10,c=0;
int noFrame=0;
Link objLink;
public Display(){
}
public Display(String refString,int noFrame,String Algo){
objLink=new Link();
this.refString=refString;
this.Algo=Algo;
this.noFrame=noFrame;
t=Toolkit.getDefaultToolkit();
bg=t.getImage("images//bgmain.jpg");
bgdrive=t.getImage("images//harddisk.png");
bgram=t.getImage("images//ram.png");
font = new Font("Serif", Font.PLAIN, 25);
bgpage=t.getImage("images//page.png");
bghit=t.getImage("images//hit.png");
bgmiss=t.getImage("images//miss.png");
loading=new Image[12];
for(int i=0;i<12;i++){
loading[i]=t.getImage("images//loading//"+Integer.toString(i)+".png");
}
}
public void run(){
while(true){
repaint();
try {
Thread.sleep(5);
x=x+1;
if(x>600){
x=10;
}
c++;
if(c>11){
c=0;
}
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
public void paint(Graphics g){
super.paint(g);
g.drawImage(bg,0 , 0, 800, 600, null);
g.drawImage(bgdrive,650, 450, 120, 95, null);
g.drawImage(bgram,10 , 450, 120, 95, null);
drawAlways(g);
if(objLink.getPageFault()==1){
pageAnimation(g);
}
diplayFrame(g);
}
public void drawAlways(Graphics g){
g.setFont(new Font("Courier New", Font.BOLD, 20));
g.setColor(Color.BLACK);
g.drawString("REFERENCE STRING",200 , 180);
g.drawString(Algo, 620, 90);
g.drawString("PAGE REPLACEMENT", 550, 120);
g.setFont(font);
for(int i=0;i<refString.length();i++){
g.drawRect(50+i*25, 200, 25, 30);
char ch=refString.charAt(i);
String temp=ch+" ";
g.drawString(temp,50+i*25+5 , 225);
}
}
public void pageAnimation(Graphics g){
g.drawImage(bgpage,x ,400, 100, 100, null);
}
public void loadingGif(Graphics g){
g.drawImage(loading[c],300 ,300, 100, 100, null);
}
public void diplayFrame(Graphics g){
g.setColor(Color.BLACK);
for(int i=0;i<=objLink.getI();i++){
for(int j=0;j<noFrame;j++){
g.drawRect(50+i*25, 300+j*30, 25, 30);
g.setColor(Color.WHITE);
g.setFont(font);
g.drawString(Integer.toString(objLink.getFrame(i, j)),50+i*25+5 ,320+j*30);
}
if(objLink.getHitMiss(i)==1){
g.drawImage(bghit,50+i*25,275, 25, 25, null);
}else{
g.drawImage(bgmiss,50+i*25,275, 25, 25, null);
}
}
}

}
LINK CLASS


public class Link {
public static int frame[][];
public static int hitmiss[];
public static int pagefault=0,I=0;
public Link(){
}
public Link(int noFrame,int noRefString){
frame=new int[20][noFrame];
for(int i=0;i<noFrame;i++){
for(int j=0;j<noFrame;j++){
frame[i][j]=-1;
}
}
hitmiss=new int[20];
}
public int getFrame(int i,int j){
return frame[i][j];
}
public void setFrame(int i,int j,int data){
frame[i][j]=data;
}
public int getPageFault(){
return pagefault;
}
public void setPageFault(int n){
pagefault=n;
}
public void setI(int n){
I=n;
}
public int getI(){
return I;
}
public void setHitMiss(int n){
//for hit
hitmiss[n]=1;
}
public int getHitMiss(int n){
return hitmiss[n];
}

}
BG CLASS

import java.awt.Graphics;
import java.awt.Image;

import javax.swing.JComponent;


public class Bg extends JComponent {
Image i;
public Bg(Image i) {
this.i = i;
 
}
public void paintComponent(Graphics g) {
 
g.drawImage(i, 0, 0, null);  // Drawing image using drawImage method
 
}
}