mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 16:23:11 +02:00
62 lines
1.4 KiB
Java
62 lines
1.4 KiB
Java
// The main MemoryManagement program, created by Alexander Reeder, 2000 Nov 19
|
|
|
|
import java.applet.*;
|
|
import java.awt.*;
|
|
import java.io.*;
|
|
import java.util.*;
|
|
|
|
public class MemoryManagement
|
|
{
|
|
public static void main(String[] args)
|
|
{
|
|
ControlPanel controlPanel;
|
|
Kernel kernel;
|
|
|
|
if ( args.length < 1 || args.length > 2 )
|
|
{
|
|
System.out.println( "Usage: 'java MemoryManagement <COMMAND FILE> <PROPERTIES FILE>'" );
|
|
System.exit( -1 );
|
|
}
|
|
|
|
File f = new File( args[0] );
|
|
|
|
if ( ! ( f.exists() ) )
|
|
{
|
|
System.out.println( "MemoryM: error, file '" + f.getName() + "' does not exist." );
|
|
System.exit( -1 );
|
|
}
|
|
if ( ! ( f.canRead() ) )
|
|
{
|
|
System.out.println( "MemoryM: error, read of " + f.getName() + " failed." );
|
|
System.exit( -1 );
|
|
}
|
|
|
|
if ( args.length == 2 )
|
|
{
|
|
f = new File( args[1] );
|
|
|
|
if ( ! ( f.exists() ) )
|
|
{
|
|
System.out.println( "MemoryM: error, file '" + f.getName() + "' does not exist." );
|
|
System.exit( -1 );
|
|
}
|
|
if ( ! ( f.canRead() ) )
|
|
{
|
|
System.out.println( "MemoryM: error, read of " + f.getName() + " failed." );
|
|
System.exit( -1 );
|
|
}
|
|
}
|
|
|
|
kernel = new Kernel();
|
|
controlPanel = new ControlPanel( "Memory Management" );
|
|
if ( args.length == 1 )
|
|
{
|
|
controlPanel.init( kernel , args[0] , null );
|
|
}
|
|
else
|
|
{
|
|
controlPanel.init( kernel , args[0] , args[1] );
|
|
}
|
|
}
|
|
}
|