/* * Copyright (c) 2008-2013 EMC Corporation * All Rights Reserved */ package com.emc.storageos.volumecontroller.impl.plugins.metering.vnxfile.processor; import com.emc.nas.vnxfile.xmlapi.ResponsePacket; import com.emc.nas.vnxfile.xmlapi.Status; import com.emc.nas.vnxfile.xmlapi.UserAccount; import com.emc.nas.vnxfile.xmlapi.Severity; import com.emc.storageos.plugins.BaseCollectionException; import com.emc.storageos.plugins.common.domainmodel.Operation; import com.emc.storageos.plugins.metering.vnxfile.VNXFileConstants; import com.emc.storageos.plugins.metering.vnxfile.VNXFilePluginException; import com.emc.storageos.volumecontroller.impl.plugins.metering.vnxfile.VNXFileProcessor; import org.apache.commons.httpclient.Header; import org.apache.commons.httpclient.methods.PostMethod; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.List; import java.util.Iterator; import java.util.Map; import java.util.HashMap; /** * Returns the matching User Account UID. */ public class VNXUserAccountsProcessor extends VNXFileProcessor { private final Logger _logger = LoggerFactory.getLogger(VNXUserAccountsProcessor.class); @Override public void processResult(Operation operation, Object resultObj, Map<String, Object> keyMap) throws BaseCollectionException { final PostMethod result = (PostMethod) resultObj; try { ResponsePacket responsePacket = (ResponsePacket) _unmarshaller.unmarshal(result .getResponseBodyAsStream()); // Extract session information from the response header. Header[] headers = result .getResponseHeaders(VNXFileConstants.CELERRA_SESSION); if (null != headers && headers.length > 0) { keyMap.put(VNXFileConstants.CELERRA_SESSION, headers[0].getValue()); _logger.info("Received celerra session info from the Server."); } if (null != responsePacket.getPacketFault()) { Status status = responsePacket.getPacketFault(); processErrorStatus(status, keyMap); } else { List<Object> userAccountList = getQueryResponseEx(responsePacket); processUserAccountList(userAccountList, keyMap); keyMap.put(VNXFileConstants.CMD_RESULT, VNXFileConstants.CMD_SUCCESS); } } catch (final Exception ex) { _logger.error( "Exception occurred while processing the VNX User Account response due to {}", ex.getMessage()); keyMap.put(VNXFileConstants.FAULT_DESC, ex.getMessage()); keyMap.put(VNXFileConstants.CMD_RESULT, VNXFileConstants.CMD_FAILURE); } finally { result.releaseConnection(); } } private void processUserAccountList(List<Object> userList, Map<String, Object> keyMap) throws VNXFilePluginException { Iterator<Object> iterator = userList.iterator(); Map<String, String> userInfo = new HashMap<String, String>(); if (iterator.hasNext()) { Status status = (Status) iterator.next(); if (status.getMaxSeverity() == Severity.OK) { while (iterator.hasNext()) { UserAccount user = (UserAccount) iterator.next(); userInfo.put(user.getUser(), user.getUid()); _logger.debug("user name: {} ", user.getUser()); } keyMap.put(VNXFileConstants.USER_INFO, userInfo); } else { throw new VNXFilePluginException( "Fault response received from XMLAPI Server.", VNXFilePluginException.ERRORCODE_INVALID_RESPONSE); } } } @Override protected void setPrerequisiteObjects(List<Object> inputArgs) throws BaseCollectionException { } }