Package org.jboss.test.cmp2.perf.ejb

Source Code of org.jboss.test.cmp2.perf.ejb.CheckBookMgrBean

/*
* JBoss, Home of Professional Open Source.
* Copyright 2008, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.test.cmp2.perf.ejb;

import java.util.Iterator;
import java.util.Calendar;
import java.util.Collection;
import javax.ejb.CreateException;
import javax.ejb.EJBException;
import javax.ejb.FinderException;
import javax.ejb.SessionBean;
import javax.ejb.SessionContext;
import javax.naming.InitialContext;
import javax.naming.Context;

import org.jboss.test.cmp2.perf.interfaces.LocalCheckBook;
import org.jboss.test.cmp2.perf.interfaces.LocalCheckBookEntry;
import org.jboss.test.cmp2.perf.interfaces.LocalCheckBookHome;
import org.jboss.test.cmp2.perf.interfaces.LocalCheckBookEntryHome;
import org.jboss.logging.Logger;

/**
* @author Scott.Stark@jboss.org
* @version $Revision: 81036 $
*/
public class CheckBookMgrBean implements SessionBean
{
   private static Logger log = Logger.getLogger(CheckBookMgrBean.class);
   private LocalCheckBook checkBook;

   public CheckBookMgrBean()
   {
   }

   public void ejbCreate(String account, double balance) throws CreateException
   {
      try
      {
         InitialContext ctx = new InitialContext();
         Context enc = (Context) ctx.lookup("java:comp/env");
         LocalCheckBookHome home = (LocalCheckBookHome) enc.lookup("ejb/LocalCheckBookHome");
         try
         {
            checkBook = home.findByPrimaryKey(account);
         }
         catch(FinderException e)
         {
            log.info("Failed to find CheckBook for: "+account);
            checkBook = home.create(account, balance);
            // Populate the check book
            LocalCheckBookEntryHome home2 = (LocalCheckBookEntryHome) enc.lookup("ejb/LocalCheckBookEntryHome");
            populateCheckBook(home2);
         }
      }
      catch(Exception e)
      {
         log.error("Failed to setup CheckBookMgrBean", e);
         throw new CreateException("Failed to setup CheckBookMgrBean: "+e.getMessage());
      }
   }

   public void ejbActivate() throws EJBException
   {
   }

   public void ejbPassivate() throws EJBException
   {
   }

   public void ejbRemove() throws EJBException
   {
   }

   public void setSessionContext(SessionContext ctx) throws EJBException
   {
   }

   public int getEntryCount()
   {
      log.info("Begin getEntryCount");
      Collection entries = checkBook.getCheckBookEntries();
      int size = entries.size();
      log.info("End getEntryCount");
      return size;
   }
   public double getBalance()
   {
      log.info("Begin getBalance");
      double total = checkBook.getBalance();

      Iterator entries = checkBook.getCheckBookEntries().iterator();
      while (entries.hasNext())
      {
          LocalCheckBookEntry entry = (LocalCheckBookEntry) entries.next();
          total -= entry.getAmount();
      }
      log.info("End getBalance");

      return total;
   }
   public double entryTotalByLogger(String category)
   {
      double total = 0;
      return total;
   }
   public double[] entryTotalByMonth(int year)
   {
      double[] months = new double[12];
      return months;
   }

   public StringBuffer createAnnualReport(int year)
   {
      StringBuffer report = new StringBuffer();
      return report;
   }

   private void populateCheckBook(LocalCheckBookEntryHome home)
      throws CreateException
   {
      Calendar cal = Calendar.getInstance();
      Collection entries = checkBook.getCheckBookEntries();
      String[] categories = {"Business", "Personal", "Travel", "Expenses", "Misc"};
      int entryNo = 0;
      for(int month = Calendar.JANUARY; month <= Calendar.DECEMBER; month ++)
      {
         cal.set(2003, month, 1);
         int lastDay = cal.getActualMaximum(Calendar.DAY_OF_MONTH);
         for(int day = 2; day < lastDay; day ++)
         {
            long timestamp = cal.getTime().getTime();
            for(int n = 0; n < categories.length; n ++)
            {
               LocalCheckBookEntry entry = home.create(new Integer(entryNo));
               entryNo ++;
               entry.setAmount(1);
               entry.setTimestamp(timestamp);
               entry.setLogger(categories[n]);
               entries.add(entry);
               timestamp += 3600 * 1000;
            }
            cal.set(2003, month, day);
         }
      }
   }
}
TOP

Related Classes of org.jboss.test.cmp2.perf.ejb.CheckBookMgrBean

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.