com.clustercontrol.performance.factory.OperateCollectCategoryCollectMaster.java Source code

Java tutorial

Introduction

Here is the source code for com.clustercontrol.performance.factory.OperateCollectCategoryCollectMaster.java

Source

/*
    
Copyright (C) since 2009 NTT DATA Corporation
    
This program is free software; you can redistribute it and/or
Modify it under the terms of the GNU General Public License
as published by the Free Software Foundation, version 2.
    
This program 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 General Public License for more details.
    
 */

package com.clustercontrol.performance.factory;

import java.util.ArrayList;
import java.util.List;

import javax.persistence.EntityExistsException;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import com.clustercontrol.commons.util.HinemosEntityManager;
import com.clustercontrol.commons.util.JpaTransactionManager;
import com.clustercontrol.fault.CollectorNotFound;
import com.clustercontrol.fault.FacilityNotFound;
import com.clustercontrol.performance.monitor.entity.CollectorCategoryCollectMstData;
import com.clustercontrol.performance.monitor.entity.CollectorCategoryCollectMstPK;
import com.clustercontrol.performance.monitor.model.CollectorCategoryCollectMstEntity;
import com.clustercontrol.performance.monitor.model.CollectorCategoryMstEntity;
import com.clustercontrol.performance.monitor.util.QueryUtil;
import com.clustercontrol.repository.model.CollectorPlatformMstEntity;

/**
 * ?
 * 
 * @version 1.2.0
 * @since 1.2.0
 *
 */
public class OperateCollectCategoryCollectMaster {

    private static Log m_log = LogFactory.getLog(OperateCollectCategoryCollectMaster.class);

    /**
     * ????
     * 
     * @param data ?
     * @return ?????true
     * @throws EntityExistsException
     * @throws CollectorNotFound
     * @throws FacilityNotFound
     * 
     */
    public boolean add(CollectorCategoryCollectMstData data)
            throws EntityExistsException, CollectorNotFound, FacilityNotFound {

        JpaTransactionManager jtm = new JpaTransactionManager();

        // ??
        try {
            CollectorCategoryMstEntity collectorCategoryMstEntity = QueryUtil
                    .getCollectorCategoryMstPK(data.getCategoryCode());
            CollectorPlatformMstEntity collectorPlatformMstEntity = com.clustercontrol.repository.util.QueryUtil
                    .getCollectorPlatformMstPK(data.getPlatformId());

            // ?
            CollectorCategoryCollectMstEntity entity = new CollectorCategoryCollectMstEntity(
                    collectorPlatformMstEntity, collectorCategoryMstEntity, data.getSubPlatformId());
            // ??
            jtm.checkEntityExists(CollectorCategoryCollectMstEntity.class, entity.getId());
            entity.setCollectMethod(data.getCollectMethod());
        } catch (EntityExistsException e) {
            m_log.info("add() : " + e.getClass().getSimpleName() + ", " + e.getMessage());
            throw e;
        } catch (CollectorNotFound e) {
            m_log.info("add() : " + e.getClass().getSimpleName() + ", " + e.getMessage());
            throw e;
        } catch (FacilityNotFound e) {
            m_log.info("add() : " + e.getClass().getSimpleName() + ", " + e.getMessage());
            throw e;
        }

        return true;
    }

    /**
     * ????
     * @throws CollectorNotFound
     */
    public boolean delete(CollectorCategoryCollectMstPK pk) throws CollectorNotFound {

        HinemosEntityManager em = new JpaTransactionManager().getEntityManager();

        CollectorCategoryCollectMstEntity entity = QueryUtil.getCollectorCategoryCollectMstPK(pk.getPlatformId(),
                pk.getSubPlatformId(), pk.getCategoryCode());
        // pk???????????
        entity.unchain(); // ??
        em.remove(entity);

        return true;
    }

    /**
     * ?????
     */
    public boolean deleteAll() {

        HinemosEntityManager em = new JpaTransactionManager().getEntityManager();

        List<CollectorCategoryCollectMstEntity> col = QueryUtil.getAllCollectorCategoryCollectMst();
        for (CollectorCategoryCollectMstEntity entity : col) {
            // ?
            entity.unchain(); // ??
            em.remove(entity);
        }

        return true;
    }

    /**
     * ?????
     * @return ArrayList<CollectorCategoryCollectMstData>
     */
    public ArrayList<CollectorCategoryCollectMstData> findAll() {

        List<CollectorCategoryCollectMstEntity> col = QueryUtil.getAllCollectorCategoryCollectMst();
        ArrayList<CollectorCategoryCollectMstData> list = new ArrayList<CollectorCategoryCollectMstData>();
        for (CollectorCategoryCollectMstEntity entity : col) {
            CollectorCategoryCollectMstData data = new CollectorCategoryCollectMstData(
                    entity.getId().getPlatformId(), entity.getId().getSubPlatformId(),
                    entity.getId().getCategoryCode(), entity.getCollectMethod());
            list.add(data);
        }
        return list;
    }

}