All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cristalise.kernel.lifecycle.instance.predefined.AddNewSlot Maven / Gradle / Ivy

/**
 * This file is part of the CRISTAL-iSE kernel.
 * Copyright (c) 2001-2015 The CRISTAL Consortium. All rights reserved.
 *
 * This library 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 3 of the License, or (at
 * your option) any later version.
 *
 * This library is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; with out 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 library; if not, write to the Free Software Foundation,
 * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
 *
 * http://www.fsf.org/licensing/licenses/lgpl.html
 */
package org.cristalise.kernel.lifecycle.instance.predefined;

import java.util.Arrays;

import org.cristalise.kernel.collection.Aggregation;
import org.cristalise.kernel.common.InvalidDataException;
import org.cristalise.kernel.common.ObjectNotFoundException;
import org.cristalise.kernel.common.PersistencyException;
import org.cristalise.kernel.entity.C2KLocalObject;
import org.cristalise.kernel.lookup.AgentPath;
import org.cristalise.kernel.lookup.DomainPath;
import org.cristalise.kernel.lookup.InvalidItemPathException;
import org.cristalise.kernel.lookup.ItemPath;
import org.cristalise.kernel.persistency.ClusterType;
import org.cristalise.kernel.persistency.TransactionKey;
import org.cristalise.kernel.process.Gateway;
import org.cristalise.kernel.property.PropertyDescription;
import org.cristalise.kernel.property.PropertyDescriptionList;
import org.cristalise.kernel.property.PropertyUtility;
import org.cristalise.kernel.utils.CastorHashMap;

import lombok.extern.slf4j.Slf4j;

@Slf4j
public class AddNewSlot extends PredefinedStep {
    public AddNewSlot() {
        super("Creates a new slot in the given aggregation, that holds instances of the item description of the given key");
    }

    /**
     * Creates a new slot in the given aggregation, that holds instances of the given item description
     * 
     * Params:
     * 
    *
  1. Collection name
  2. *
  3. Item Description key (optional)
  4. *
  5. Item Description version (optional)
  6. *
* * @throws InvalidDataException * Then the parameters were incorrect * @throws PersistencyException * There was a problem loading or saving the collection from persistency * @throws ObjectNotFoundException * A required object, such as the collection or a PropertyDescription outcome, wasn't found */ @Override protected String runActivityLogic(AgentPath agent, ItemPath item, int transitionID, String requestData, TransactionKey transactionKey) throws InvalidDataException, PersistencyException, ObjectNotFoundException { String collName; ItemPath descKey = null; String descVer = "last"; // extract parameters String[] params = getDataList(requestData); log.debug("Called by {} on {} with parameters {}", agent.getAgentName(transactionKey), item, (Object)params); // resolve desc item path and version try { collName = params[0]; if (params.length > 1 && params[1].length() > 0) { try { descKey = new ItemPath(params[1]); } catch (InvalidItemPathException e) { descKey = new DomainPath(params[1]).getItemPath(transactionKey); } } if (params.length > 2 && params[2].length() > 0) descVer = params[2]; } catch (Exception e) { throw new InvalidDataException("AddNewSlot: Invalid parameters " + Arrays.toString(params)); } // load collection C2KLocalObject collObj = Gateway.getStorage().get(item, ClusterType.COLLECTION + "/" + collName + "/last", transactionKey); if (!(collObj instanceof Aggregation)) throw new InvalidDataException("AddNewSlot operates on Aggregation only."); Aggregation agg = (Aggregation) collObj; // get props CastorHashMap props = new CastorHashMap(); StringBuffer classProps = new StringBuffer(); if (descKey != null) { PropertyDescriptionList propList; propList = PropertyUtility.getPropertyDescriptionOutcome(descKey, descVer, transactionKey); for (PropertyDescription pd : propList.list) { props.put(pd.getName(), pd.getDefaultValue()); if (pd.getIsClassIdentifier()) classProps.append((classProps.length() > 0 ? "," : "")).append(pd.getName()); } } agg.addSlot(props, classProps.toString()); Gateway.getStorage().put(item, agg, transactionKey); return requestData; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy