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

网格计算

开发平台:

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 "byte" type.
  21.  */
  22. public class JByte extends JType {
  23.   
  24.   class JavaByte extends JavaType {
  25.     
  26.     JavaByte() {
  27.       super("byte", "Byte", "Byte", "TypeID.RIOType.BYTE");
  28.     }
  29.     
  30.     String getTypeIDObjectString() {
  31.       return "org.apache.hadoop.record.meta.TypeID.ByteTypeID";
  32.     }
  33.     void genSlurpBytes(CodeBuffer cb, String b, String s, String l) {
  34.       cb.append("{n");
  35.       cb.append("if ("+l+"<1) {n");
  36.       cb.append("throw new java.io.IOException("Byte is exactly 1 byte."+
  37.                 " Provided buffer is smaller.");n");
  38.       cb.append("}n");
  39.       cb.append(s+"++; "+l+"--;n");
  40.       cb.append("}n");
  41.     }
  42.     
  43.     void genCompareBytes(CodeBuffer cb) {
  44.       cb.append("{n");
  45.       cb.append("if (l1<1 || l2<1) {n");
  46.       cb.append("throw new java.io.IOException("Byte is exactly 1 byte."+
  47.                 " Provided buffer is smaller.");n");
  48.       cb.append("}n");
  49.       cb.append("if (b1[s1] != b2[s2]) {n");
  50.       cb.append("return (b1[s1]<b2[s2])?-1:0;n");
  51.       cb.append("}n");
  52.       cb.append("s1++; s2++; l1--; l2--;n");
  53.       cb.append("}n");
  54.     }
  55.   }
  56.   
  57.   class CppByte extends CppType {
  58.     
  59.     CppByte() {
  60.       super("int8_t");
  61.     }
  62.     
  63.     String getTypeIDObjectString() {
  64.       return "new ::hadoop::TypeID(::hadoop::RIOTYPE_BYTE)";
  65.     }
  66.   }
  67.   public JByte() {
  68.     setJavaType(new JavaByte());
  69.     setCppType(new CppByte());
  70.     setCType(new CType());
  71.   }
  72.   
  73.   String getSignature() {
  74.     return "b";
  75.   }
  76. }