/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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 hivemall.mix; import java.io.Externalizable; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; public final class MixMessage implements Externalizable { private MixEventName event; private Object feature; private float weight; private float covariance; private short clock; private int deltaUpdates; private boolean cancelRequest; private String groupID; public MixMessage() {} // for Externalizable public MixMessage(MixEventName event, Object feature, float weight, short clock, int deltaUpdates) { this(event, feature, weight, 0.f, clock, deltaUpdates, false); } public MixMessage(MixEventName event, Object feature, float weight, float covariance, short clock, int deltaUpdates) { this(event, feature, weight, covariance, clock, deltaUpdates, false); } public MixMessage(MixEventName event, Object feature, float weight, float covariance, int deltaUpdates, boolean cancelRequest) { this(event, feature, weight, covariance, (short) 0 /* dummy clock */, deltaUpdates, cancelRequest); } MixMessage(MixEventName event, Object feature, float weight, float covariance, short clock, int deltaUpdates, boolean cancelRequest) { if (feature == null) { throw new IllegalArgumentException("feature is null"); } if (deltaUpdates < 0 || deltaUpdates > Byte.MAX_VALUE) { throw new IllegalArgumentException("Illegal deletaUpdates: " + deltaUpdates); } this.event = event; this.feature = feature; this.weight = weight; this.covariance = covariance; this.clock = clock; this.deltaUpdates = deltaUpdates; this.cancelRequest = cancelRequest; } public enum MixEventName { average((byte) 1), argminKLD((byte) 2), closeGroup((byte) 3); private final byte id; MixEventName(byte id) { this.id = id; } public byte getID() { return id; } public static MixEventName resolve(int b) { switch (b) { case 1: return average; case 2: return argminKLD; default: throw new IllegalArgumentException("Illegal ID: " + b); } } } public MixEventName getEvent() { return event; } public Object getFeature() { return feature; } public float getWeight() { return weight; } public float getCovariance() { return covariance; } public short getClock() { return clock; } public int getDeltaUpdates() { return deltaUpdates; } public String getGroupID() { return groupID; } public void setGroupID(String groupID) { this.groupID = groupID; } public boolean isCancelRequest() { return cancelRequest; } @Override public void writeExternal(ObjectOutput out) throws IOException { out.writeByte(event.getID()); out.writeObject(feature); out.writeFloat(weight); out.writeFloat(covariance); out.writeShort(clock); out.writeInt(deltaUpdates); out.writeBoolean(cancelRequest); if (groupID == null) { out.writeBoolean(false); } else { out.writeBoolean(true); out.writeUTF(groupID); } } @Override public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { byte id = in.readByte(); this.event = MixEventName.resolve(id); this.feature = in.readObject(); this.weight = in.readFloat(); this.covariance = in.readFloat(); this.clock = in.readShort(); this.deltaUpdates = in.readInt(); this.cancelRequest = in.readBoolean(); boolean hasGroupID = in.readBoolean(); if (hasGroupID) { this.groupID = in.readUTF(); } } @Override public String toString() { return "MixMessage [event=" + event + ", feature=" + feature + ", weight=" + weight + ", covariance=" + covariance + ", clock=" + clock + ", deltaUpdates=" + deltaUpdates + ", cancel=" + cancelRequest + ", groupID=" + groupID + "]"; } }