testFromJava.cc
上传用户: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. #include "test.hh"
  19. int main()
  20. {
  21.   org::apache::hadoop::record::test::RecRecord1 r1;
  22.   org::apache::hadoop::record::test::RecRecord1 r2;
  23.   r1.setBoolVal(true);
  24.   r1.setByteVal((int8_t)0x66);
  25.   r1.setFloatVal(3.145);
  26.   r1.setDoubleVal(1.5234);
  27.   r1.setIntVal(4567);
  28.   r1.setLongVal(0x5a5a5a5a5a5aLL);
  29.   std::string& s = r1.getStringVal();
  30.   s = "random text";
  31.   {
  32.     hadoop::FileInStream istream;
  33.     istream.open("/tmp/hadooptemp.dat");
  34.     hadoop::RecordReader reader(istream, hadoop::kBinary);
  35.     reader.read(r2);
  36.     if (r1 == r2) {
  37.       printf("Binary archive test passed.n");
  38.     } else {
  39.       printf("Binary archive test failed.n");
  40.     }
  41.     istream.close();
  42.   }
  43.   {
  44.     hadoop::FileInStream istream;
  45.     istream.open("/tmp/hadooptemp.txt");
  46.     hadoop::RecordReader reader(istream, hadoop::kCSV);
  47.     reader.read(r2);
  48.     if (r1 == r2) {
  49.       printf("CSV archive test passed.n");
  50.     } else {
  51.       printf("CSV archive test failed.n");
  52.     }
  53.     istream.close();
  54.   }
  55.   {
  56.     hadoop::FileInStream istream;
  57.     istream.open("/tmp/hadooptemp.xml");
  58.     hadoop::RecordReader reader(istream, hadoop::kXML);
  59.     reader.read(r2);
  60.     if (r1 == r2) {
  61.       printf("XML archive test passed.n");
  62.     } else {
  63.       printf("XML archive test failed.n");
  64.     }
  65.     istream.close();
  66.   }
  67.   return 0;
  68. }