Search in sources :

Example 1 with CelerraSystem

use of com.emc.nas.vnxfile.xmlapi.CelerraSystem in project coprhd-controller by CoprHD.

the class VNXControlStationProcessor method processResult.

@Override
public void processResult(Operation operation, Object resultObj, Map<String, Object> keyMap) throws BaseCollectionException {
    final PostMethod result = (PostMethod) resultObj;
    _logger.info("processing vnx info response" + resultObj);
    try {
        ResponsePacket responsePacket = (ResponsePacket) _unmarshaller.unmarshal(result.getResponseBodyAsStream());
        if (null != responsePacket.getPacketFault()) {
            Status status = responsePacket.getPacketFault();
            processErrorStatus(status, keyMap);
        } else {
            List<Object> queryResponse = getQueryResponse(responsePacket);
            Iterator<Object> queryRespItr = queryResponse.iterator();
            while (queryRespItr.hasNext()) {
                Object responseObj = queryRespItr.next();
                if (responseObj instanceof CelerraSystem) {
                    CelerraSystem system = (CelerraSystem) responseObj;
                    VNXControlStation cs = new VNXControlStation(system.getSerial(), system.getVersion());
                    keyMap.put(VNXFileConstants.CONTROL_STATION_INFO, cs);
                    break;
                }
            }
            // 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("Recieved celerra session information from the Server.");
            }
        }
    } catch (final Exception ex) {
        _logger.error("Exception occurred while processing the vnx info response due to ", ex);
    } finally {
        result.releaseConnection();
    }
}
Also used : Status(com.emc.nas.vnxfile.xmlapi.Status) VNXControlStation(com.emc.storageos.vnx.xmlapi.VNXControlStation) ResponsePacket(com.emc.nas.vnxfile.xmlapi.ResponsePacket) Header(org.apache.commons.httpclient.Header) PostMethod(org.apache.commons.httpclient.methods.PostMethod) CelerraSystem(com.emc.nas.vnxfile.xmlapi.CelerraSystem) BaseCollectionException(com.emc.storageos.plugins.BaseCollectionException)

Aggregations

CelerraSystem (com.emc.nas.vnxfile.xmlapi.CelerraSystem)1 ResponsePacket (com.emc.nas.vnxfile.xmlapi.ResponsePacket)1 Status (com.emc.nas.vnxfile.xmlapi.Status)1 BaseCollectionException (com.emc.storageos.plugins.BaseCollectionException)1 VNXControlStation (com.emc.storageos.vnx.xmlapi.VNXControlStation)1 Header (org.apache.commons.httpclient.Header)1 PostMethod (org.apache.commons.httpclient.methods.PostMethod)1