monasca-thresh/src/main/java/com/hpcloud/mon/infrastructure/thresholding/deserializer/EventDeserializer.java

64 lines
1.9 KiB
Java

/*
* Copyright (c) 2014 Hewlett-Packard Development Company, L.P.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
* implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.hpcloud.mon.infrastructure.thresholding.deserializer;
import java.io.Serializable;
import java.util.Collections;
import java.util.List;
import backtype.storm.tuple.Fields;
import com.hpcloud.mon.common.event.AlarmCreatedEvent;
import com.hpcloud.mon.common.event.AlarmDeletedEvent;
import com.hpcloud.mon.common.event.AlarmUpdatedEvent;
import com.hpcloud.streaming.storm.TupleDeserializer;
import com.hpcloud.util.Serialization;
/**
* Deserializes MaaS events using registered serialization types.
*
* <ul>
* <li>Output: Object event
* </ul>
*/
public class EventDeserializer implements TupleDeserializer, Serializable {
private static final long serialVersionUID = -1306620481933667305L;
private static final Fields FIELDS = new Fields("event");
static {
// Register event types
Serialization.registerTarget(AlarmCreatedEvent.class);
Serialization.registerTarget(AlarmUpdatedEvent.class);
Serialization.registerTarget(AlarmDeletedEvent.class);
}
@Override
public List<List<?>> deserialize(byte[] tuple) {
try {
return Collections.<List<?>>singletonList(Collections.singletonList(Serialization.fromJson(tuple)));
} catch (Exception ignore) {
return null;
}
}
@Override
public Fields getOutputFields() {
return FIELDS;
}
}