FileDocCategorySizeDatePackage
ImplLauncher2.javaAPI DocExample2983Thu Nov 08 00:22:54 GMT 2001com.ora.rmibook.chapter15.bank.applications

ImplLauncher2

public class ImplLauncher2 extends Object

Fields Summary
private static Context
baseContext
Constructors Summary
Methods Summary
private static java.util.CollectiongetAccountDescriptions(NameRepository nameRepository)

        ArrayList returnValue = new ArrayList();
        Iterator i = nameRepository.getAllNames();
        boolean checking = false;

        while (i.hasNext()) {
            AccountDescription accountDescription = new AccountDescription();

            accountDescription.name = (String) i.next();
            int cents = (int) (Math.random() * 100000);

            accountDescription.balance = new Money(cents);
            accountDescription.attributeSet = new AttributeSet();;
            if (checking) {
                accountDescription.attributeSet.add("type", "checking");
            } else {
                accountDescription.attributeSet.add("type", "savings");
            }
            checking = !checking;
            returnValue.add(accountDescription);
        }
        return returnValue;
    
private static voidgetContext()

        try {
            baseContext = BaseContextImpl.getStubFromServer("127.0.0.1");
        } catch (Exception e) {
            System.out.println("Couldn't find base context");
            e.printStackTrace();
        }
    
private static voidlaunchServer(com.ora.rmibook.chapter15.bank.applications.ImplLauncher2$AccountDescription serverDescription)

        try {
            Account_Impl newAccount = new Account_Impl(serverDescription.balance);

            if (null == baseContext) {
                getContext();
            }
            baseContext.bind(null, serverDescription.name, serverDescription.attributeSet, newAccount);
            System.out.println("Account " + serverDescription.name + " successfully launched.");
        } catch (NamingException e) {
            System.out.println(e.getDescription());
            e.printStackTrace();
        } catch (Exception ee) {
            ee.printStackTrace();
        }
    
public static voidmain(java.lang.String[] args)

        int numberOfServers = (Integer.valueOf(args[0])).intValue();
        NameRepository nameRepository = new NameRepository(numberOfServers);
        Collection accountDescriptions = getAccountDescriptions(nameRepository);
        Iterator i = accountDescriptions.iterator();

        while (i.hasNext()) {
            AccountDescription nextAccountDescription = (AccountDescription) i.next();

            launchServer(nextAccountDescription);
        }