JLong.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:3k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.record.compiler;
  19. /**
  20.  * Code generator for "long" type
  21.  */
  22. public class JLong extends JType {
  23.   
  24.   class JavaLong extends JavaType {
  25.     
  26.     JavaLong() {
  27.       super("long", "Long", "Long", "TypeID.RIOType.LONG");
  28.     }
  29.     
  30.     String getTypeIDObjectString() {
  31.       return "org.apache.hadoop.record.meta.TypeID.LongTypeID";
  32.     }
  33.     void genHashCode(CodeBuffer cb, String fname) {
  34.       cb.append(Consts.RIO_PREFIX + "ret = (int) ("+fname+"^("+
  35.           fname+">>>32));n");
  36.     }
  37.     
  38.     void genSlurpBytes(CodeBuffer cb, String b, String s, String l) {
  39.       cb.append("{n");
  40.       cb.append("long i = org.apache.hadoop.record.Utils.readVLong("+b+", "+s+");n");
  41.       cb.append("int z = org.apache.hadoop.record.Utils.getVIntSize(i);n");
  42.       cb.append(s+"+=z; "+l+"-=z;n");
  43.       cb.append("}n");
  44.     }
  45.     
  46.     void genCompareBytes(CodeBuffer cb) {
  47.       cb.append("{n");
  48.       cb.append("long i1 = org.apache.hadoop.record.Utils.readVLong(b1, s1);n");
  49.       cb.append("long i2 = org.apache.hadoop.record.Utils.readVLong(b2, s2);n");
  50.       cb.append("if (i1 != i2) {n");
  51.       cb.append("return ((i1-i2) < 0) ? -1 : 0;n");
  52.       cb.append("}n");
  53.       cb.append("int z1 = org.apache.hadoop.record.Utils.getVIntSize(i1);n");
  54.       cb.append("int z2 = org.apache.hadoop.record.Utils.getVIntSize(i2);n");
  55.       cb.append("s1+=z1; s2+=z2; l1-=z1; l2-=z2;n");
  56.       cb.append("}n");
  57.     }
  58.   }
  59.   class CppLong extends CppType {
  60.     
  61.     CppLong() {
  62.       super("int64_t");
  63.     }
  64.     
  65.     String getTypeIDObjectString() {
  66.       return "new ::hadoop::TypeID(::hadoop::RIOTYPE_LONG)";
  67.     }
  68.   }
  69.   /** Creates a new instance of JLong */
  70.   public JLong() {
  71.     setJavaType(new JavaLong());
  72.     setCppType(new CppLong());
  73.     setCType(new CType());
  74.   }
  75.   
  76.   String getSignature() {
  77.     return "l";
  78.   }
  79. }