JBoolean.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.  */
  21. public class JBoolean extends JType {
  22.   
  23.   class JavaBoolean extends JType.JavaType {
  24.     
  25.     JavaBoolean() {
  26.       super("boolean", "Bool", "Boolean", "TypeID.RIOType.BOOL");
  27.     }
  28.     
  29.     void genCompareTo(CodeBuffer cb, String fname, String other) {
  30.       cb.append(Consts.RIO_PREFIX + "ret = ("+fname+" == "+other+")? 0 : ("+
  31.           fname+"?1:-1);n");
  32.     }
  33.     
  34.     String getTypeIDObjectString() {
  35.       return "org.apache.hadoop.record.meta.TypeID.BoolTypeID";
  36.     }
  37.     void genHashCode(CodeBuffer cb, String fname) {
  38.       cb.append(Consts.RIO_PREFIX + "ret = ("+fname+")?0:1;n");
  39.     }
  40.     
  41.     // In Binary format, boolean is written as byte. true = 1, false = 0
  42.     void genSlurpBytes(CodeBuffer cb, String b, String s, String l) {
  43.       cb.append("{n");
  44.       cb.append("if ("+l+"<1) {n");
  45.       cb.append("throw new java.io.IOException("Boolean is exactly 1 byte."+
  46.                 " Provided buffer is smaller.");n");
  47.       cb.append("}n");
  48.       cb.append(s+"++; "+l+"--;n");
  49.       cb.append("}n");
  50.     }
  51.     
  52.     // In Binary format, boolean is written as byte. true = 1, false = 0
  53.     void genCompareBytes(CodeBuffer cb) {
  54.       cb.append("{n");
  55.       cb.append("if (l1<1 || l2<1) {n");
  56.       cb.append("throw new java.io.IOException("Boolean is exactly 1 byte."+
  57.                 " Provided buffer is smaller.");n");
  58.       cb.append("}n");
  59.       cb.append("if (b1[s1] != b2[s2]) {n");
  60.       cb.append("return (b1[s1]<b2[s2])? -1 : 0;n");
  61.       cb.append("}n");
  62.       cb.append("s1++; s2++; l1--; l2--;n");
  63.       cb.append("}n");
  64.     }
  65.   }
  66.   
  67.   class CppBoolean extends CppType {
  68.     
  69.     CppBoolean() {
  70.       super("bool");
  71.     }
  72.     
  73.     String getTypeIDObjectString() {
  74.       return "new ::hadoop::TypeID(::hadoop::RIOTYPE_BOOL)";
  75.     }
  76.   }
  77.   /** Creates a new instance of JBoolean */
  78.   public JBoolean() {
  79.     setJavaType(new JavaBoolean());
  80.     setCppType(new CppBoolean());
  81.     setCType(new CType());
  82.   }
  83.   
  84.   String getSignature() {
  85.     return "z";
  86.   }
  87. }