JString.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 JString extends JCompType {
  22.     
  23.   class JavaString extends JavaCompType {
  24.     
  25.     JavaString() {
  26.       super("String", "String", "String", "TypeID.RIOType.STRING");
  27.     }
  28.     
  29.     String getTypeIDObjectString() {
  30.       return "org.apache.hadoop.record.meta.TypeID.StringTypeID";
  31.     }
  32.     void genSlurpBytes(CodeBuffer cb, String b, String s, String l) {
  33.       cb.append("{n");
  34.       cb.append("int i = org.apache.hadoop.record.Utils.readVInt("+b+", "+s+");n");
  35.       cb.append("int z = org.apache.hadoop.record.Utils.getVIntSize(i);n");
  36.       cb.append(s+"+=(z+i); "+l+"-= (z+i);n");
  37.       cb.append("}n");
  38.     }
  39.     
  40.     void genCompareBytes(CodeBuffer cb) {
  41.       cb.append("{n");
  42.       cb.append("int i1 = org.apache.hadoop.record.Utils.readVInt(b1, s1);n");
  43.       cb.append("int i2 = org.apache.hadoop.record.Utils.readVInt(b2, s2);n");
  44.       cb.append("int z1 = org.apache.hadoop.record.Utils.getVIntSize(i1);n");
  45.       cb.append("int z2 = org.apache.hadoop.record.Utils.getVIntSize(i2);n");
  46.       cb.append("s1+=z1; s2+=z2; l1-=z1; l2-=z2;n");
  47.       cb.append("int r1 = org.apache.hadoop.record.Utils.compareBytes(b1,s1,i1,b2,s2,i2);n");
  48.       cb.append("if (r1 != 0) { return (r1<0)?-1:0; }n");
  49.       cb.append("s1+=i1; s2+=i2; l1-=i1; l1-=i2;n");
  50.       cb.append("}n");
  51.     }
  52.     
  53.     void genClone(CodeBuffer cb, String fname) {
  54.       cb.append(Consts.RIO_PREFIX + "other."+fname+" = this."+fname+";n");
  55.     }
  56.   }
  57.   class CppString extends CppCompType {
  58.     
  59.     CppString() {
  60.       super("::std::string");
  61.     }
  62.     
  63.     String getTypeIDObjectString() {
  64.       return "new ::hadoop::TypeID(::hadoop::RIOTYPE_STRING)";
  65.     }
  66.   }
  67.   
  68.   /** Creates a new instance of JString */
  69.   public JString() {
  70.     setJavaType(new JavaString());
  71.     setCppType(new CppString());
  72.     setCType(new CCompType());
  73.   }
  74.     
  75.   String getSignature() {
  76.     return "s";
  77.   }
  78. }