// File generated by hadoop record compiler. Do not edit. package org.wikipedia.miner.db.struct; public class DbPage extends org.apache.hadoop.record.Record { private static final org.apache.hadoop.record.meta.RecordTypeInfo _rio_recTypeInfo; private static org.apache.hadoop.record.meta.RecordTypeInfo _rio_rtiFilter; private static int[] _rio_rtiFilterFields; static { _rio_recTypeInfo = new org.apache.hadoop.record.meta.RecordTypeInfo("DbPage"); _rio_recTypeInfo.addField("Title", org.apache.hadoop.record.meta.TypeID.StringTypeID); _rio_recTypeInfo.addField("Type", org.apache.hadoop.record.meta.TypeID.IntTypeID); _rio_recTypeInfo.addField("depth", org.apache.hadoop.record.meta.TypeID.IntTypeID); } private String Title; private int Type; private int depth; public DbPage() { } public DbPage( final String Title, final int Type, final int depth) { this.Title = Title; this.Type = Type; this.depth = depth; } public static org.apache.hadoop.record.meta.RecordTypeInfo getTypeInfo() { return _rio_recTypeInfo; } public static void setTypeFilter(org.apache.hadoop.record.meta.RecordTypeInfo rti) { if (null == rti) return; _rio_rtiFilter = rti; _rio_rtiFilterFields = null; } private static void setupRtiFields() { if (null == _rio_rtiFilter) return; // we may already have done this if (null != _rio_rtiFilterFields) return; int _rio_i, _rio_j; _rio_rtiFilterFields = new int [_rio_rtiFilter.getFieldTypeInfos().size()]; for (_rio_i=0; _rio_i<_rio_rtiFilterFields.length; _rio_i++) { _rio_rtiFilterFields[_rio_i] = 0; } java.util.Iterator<org.apache.hadoop.record.meta.FieldTypeInfo> _rio_itFilter = _rio_rtiFilter.getFieldTypeInfos().iterator(); _rio_i=0; while (_rio_itFilter.hasNext()) { org.apache.hadoop.record.meta.FieldTypeInfo _rio_tInfoFilter = _rio_itFilter.next(); java.util.Iterator<org.apache.hadoop.record.meta.FieldTypeInfo> _rio_it = _rio_recTypeInfo.getFieldTypeInfos().iterator(); _rio_j=1; while (_rio_it.hasNext()) { org.apache.hadoop.record.meta.FieldTypeInfo _rio_tInfo = _rio_it.next(); if (_rio_tInfo.equals(_rio_tInfoFilter)) { _rio_rtiFilterFields[_rio_i] = _rio_j; break; } _rio_j++; } _rio_i++; } } public String getTitle() { return Title; } public void setTitle(final String Title) { this.Title=Title; } public int getType() { return Type; } public void setType(final int Type) { this.Type=Type; } public int getDepth() { return depth; } public void setDepth(final int depth) { this.depth=depth; } public void serialize(final org.apache.hadoop.record.RecordOutput _rio_a, final String _rio_tag) throws java.io.IOException { _rio_a.startRecord(this,_rio_tag); _rio_a.writeString(Title,"Title"); _rio_a.writeInt(Type,"Type"); _rio_a.writeInt(depth,"depth"); _rio_a.endRecord(this,_rio_tag); } private void deserializeWithoutFilter(final org.apache.hadoop.record.RecordInput _rio_a, final String _rio_tag) throws java.io.IOException { _rio_a.startRecord(_rio_tag); Title=_rio_a.readString("Title"); Type=_rio_a.readInt("Type"); depth=_rio_a.readInt("depth"); _rio_a.endRecord(_rio_tag); } public void deserialize(final org.apache.hadoop.record.RecordInput _rio_a, final String _rio_tag) throws java.io.IOException { if (null == _rio_rtiFilter) { deserializeWithoutFilter(_rio_a, _rio_tag); return; } // if we're here, we need to read based on version info _rio_a.startRecord(_rio_tag); setupRtiFields(); for (int _rio_i=0; _rio_i<_rio_rtiFilter.getFieldTypeInfos().size(); _rio_i++) { if (1 == _rio_rtiFilterFields[_rio_i]) { Title=_rio_a.readString("Title"); } else if (2 == _rio_rtiFilterFields[_rio_i]) { Type=_rio_a.readInt("Type"); } else if (3 == _rio_rtiFilterFields[_rio_i]) { depth=_rio_a.readInt("depth"); } else { java.util.ArrayList<org.apache.hadoop.record.meta.FieldTypeInfo> typeInfos = (java.util.ArrayList<org.apache.hadoop.record.meta.FieldTypeInfo>)(_rio_rtiFilter.getFieldTypeInfos()); org.apache.hadoop.record.meta.Utils.skip(_rio_a, typeInfos.get(_rio_i).getFieldID(), typeInfos.get(_rio_i).getTypeID()); } } _rio_a.endRecord(_rio_tag); } public int compareTo (final Object _rio_peer_) throws ClassCastException { if (!(_rio_peer_ instanceof DbPage)) { throw new ClassCastException("Comparing different types of records."); } DbPage _rio_peer = (DbPage) _rio_peer_; int _rio_ret = 0; _rio_ret = Title.compareTo(_rio_peer.Title); if (_rio_ret != 0) return _rio_ret; _rio_ret = (Type == _rio_peer.Type)? 0 :((Type<_rio_peer.Type)?-1:1); if (_rio_ret != 0) return _rio_ret; _rio_ret = (depth == _rio_peer.depth)? 0 :((depth<_rio_peer.depth)?-1:1); if (_rio_ret != 0) return _rio_ret; return _rio_ret; } public boolean equals(final Object _rio_peer_) { if (!(_rio_peer_ instanceof DbPage)) { return false; } if (_rio_peer_ == this) { return true; } DbPage _rio_peer = (DbPage) _rio_peer_; boolean _rio_ret = false; _rio_ret = Title.equals(_rio_peer.Title); if (!_rio_ret) return _rio_ret; _rio_ret = (Type==_rio_peer.Type); if (!_rio_ret) return _rio_ret; _rio_ret = (depth==_rio_peer.depth); if (!_rio_ret) return _rio_ret; return _rio_ret; } public Object clone() throws CloneNotSupportedException { DbPage _rio_other = new DbPage(); _rio_other.Title = this.Title; _rio_other.Type = this.Type; _rio_other.depth = this.depth; return _rio_other; } public int hashCode() { int _rio_result = 17; int _rio_ret; _rio_ret = Title.hashCode(); _rio_result = 37*_rio_result + _rio_ret; _rio_ret = (int)Type; _rio_result = 37*_rio_result + _rio_ret; _rio_ret = (int)depth; _rio_result = 37*_rio_result + _rio_ret; return _rio_result; } public static String signature() { return "LDbPage(sii)"; } public static class Comparator extends org.apache.hadoop.record.RecordComparator { public Comparator() { super(DbPage.class); } static public int slurpRaw(byte[] b, int s, int l) { try { int os = s; { int i = org.apache.hadoop.record.Utils.readVInt(b, s); int z = org.apache.hadoop.record.Utils.getVIntSize(i); s+=(z+i); l-= (z+i); } { int i = org.apache.hadoop.record.Utils.readVInt(b, s); int z = org.apache.hadoop.record.Utils.getVIntSize(i); s+=z; l-=z; } { int i = org.apache.hadoop.record.Utils.readVInt(b, s); int z = org.apache.hadoop.record.Utils.getVIntSize(i); s+=z; l-=z; } return (os - s); } catch(java.io.IOException e) { throw new RuntimeException(e); } } static public int compareRaw(byte[] b1, int s1, int l1, byte[] b2, int s2, int l2) { try { int os1 = s1; { int i1 = org.apache.hadoop.record.Utils.readVInt(b1, s1); int i2 = org.apache.hadoop.record.Utils.readVInt(b2, s2); int z1 = org.apache.hadoop.record.Utils.getVIntSize(i1); int z2 = org.apache.hadoop.record.Utils.getVIntSize(i2); s1+=z1; s2+=z2; l1-=z1; l2-=z2; int r1 = org.apache.hadoop.record.Utils.compareBytes(b1,s1,i1,b2,s2,i2); if (r1 != 0) { return (r1<0)?-1:0; } s1+=i1; s2+=i2; l1-=i1; l1-=i2; } { int i1 = org.apache.hadoop.record.Utils.readVInt(b1, s1); int i2 = org.apache.hadoop.record.Utils.readVInt(b2, s2); if (i1 != i2) { return ((i1-i2) < 0) ? -1 : 0; } int z1 = org.apache.hadoop.record.Utils.getVIntSize(i1); int z2 = org.apache.hadoop.record.Utils.getVIntSize(i2); s1+=z1; s2+=z2; l1-=z1; l2-=z2; } { int i1 = org.apache.hadoop.record.Utils.readVInt(b1, s1); int i2 = org.apache.hadoop.record.Utils.readVInt(b2, s2); if (i1 != i2) { return ((i1-i2) < 0) ? -1 : 0; } int z1 = org.apache.hadoop.record.Utils.getVIntSize(i1); int z2 = org.apache.hadoop.record.Utils.getVIntSize(i2); s1+=z1; s2+=z2; l1-=z1; l2-=z2; } return (os1 - s1); } catch(java.io.IOException e) { throw new RuntimeException(e); } } public int compare(byte[] b1, int s1, int l1, byte[] b2, int s2, int l2) { int ret = compareRaw(b1,s1,l1,b2,s2,l2); return (ret == -1)? -1 : ((ret==0)? 1 : 0);} } static { org.apache.hadoop.record.RecordComparator.define(DbPage.class, new Comparator()); } }