/* Copyright (C) SYSTAP, LLC DBA Blazegraph 2006-2016. All rights reserved. Contact: SYSTAP, LLC DBA Blazegraph 2501 Calvert ST NW #106 Washington, DC 20008 licenses@blazegraph.com This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* * Created on Jun 23, 2008 */ package com.bigdata.rdf.spo; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; import com.bigdata.btree.DefaultTupleSerializer; import com.bigdata.btree.ITuple; import com.bigdata.btree.keys.ASCIIKeyBuilderFactory; import com.bigdata.btree.keys.IKeyBuilder; import com.bigdata.btree.keys.KeyBuilder; import com.bigdata.btree.raba.codec.EmptyRabaValueCoder; import com.bigdata.io.ByteArrayBuffer; import com.bigdata.rdf.inf.Justification; import com.bigdata.rdf.internal.IV; import com.bigdata.rdf.internal.IVUtility; import com.bigdata.rdf.internal.impl.BlobIV; import com.bigdata.util.Bytes; /** * (De-)serializes {@link Justification}s. * <p> * Note: the encoded key for a {@link Justification} is formed from the 64-bit * <code>long</code> term identifier for the head of the rule (the entailment) * followed by the term identifier bindings for the tail(s) of the rule. The * bindings are represented as a long[] and indexing into the bindings is by * position. Bindings in the tail of a rule MAY be ZERO (0L) in which case they * are interpreted as wildcards. * <p> * Note: No values are stored for this index - all the information is in the * keys. * <p> * Note: While the static methods used to decode an existing key are safe for * concurrent readers, concurrent readers also form keys using * {@link Justification#getKey(IKeyBuilder, Justification)} and therefore * require a thread-local {@link IKeyBuilder}. * * @author <a href="mailto:thompsonbry@users.sourceforge.net">Bryan Thompson</a> * @version $Id$ */ public class JustificationTupleSerializer extends DefaultTupleSerializer<Justification, Justification> { /** * */ private static final long serialVersionUID = -3930463865005938874L; private int N; // private transient IKeyBuilderFactory keyBuilderFactory; // // public IKeyBuilder getKeyBuilder() { // // return keyBuilderFactory.getKeyBuilder(); // // }; /** * De-serialization constructor. */ public JustificationTupleSerializer() { } /** * * @param N The #of slots in a statement (3 or 4). */ public JustificationTupleSerializer(int N) { super(new ASCIIKeyBuilderFactory(), getDefaultLeafKeysCoder(), // EmptyRabaValueCoder.INSTANCE // no values ); if (N != 3 && N != 4) throw new IllegalArgumentException(); this.N = N; // this.keyBuilderFactory = new ThreadLocalKeyBuilderFactory( // new ASCIIKeyBuilderFactory(N * Bytes.SIZEOF_LONG)); } public Justification deserialize(final ITuple tuple) { if (tuple == null) throw new IllegalArgumentException(); final IV[] ivs = IVUtility.decodeAll(tuple.getKey()); return new Justification(N,ivs); } public Justification deserializeKey(final ITuple tuple) { // just de-serialize the whole tuple. return deserialize(tuple); } public byte[] serializeKey(final Object obj) { if (obj == null) throw new IllegalArgumentException(); if (obj instanceof Justification) return Justification.getKey(getKeyBuilder(), (Justification) obj); throw new UnsupportedOperationException(); } /** * There is no value for the justifications index. All data is in the key. * * @throws UnsupportedOperationException * always */ @Override public byte[] serializeVal(Justification jst) { throw new UnsupportedOperationException(); } /** * The initial version. */ private final static transient byte VERSION0 = 0; /** * The current version. */ private final static transient byte VERSION = VERSION0; public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { super.readExternal(in); final byte version = in.readByte(); switch (version) { case VERSION0: break; default: throw new UnsupportedOperationException("Unknown version: " + version); } N = in.readByte(); } public void writeExternal(ObjectOutput out) throws IOException { super.writeExternal(out); out.writeByte(VERSION); out.writeByte(N); } }