JFile.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. import java.io.IOException;
  20. import java.util.ArrayList;
  21. /**
  22.  * Container for the Hadoop Record DDL.
  23.  * The main components of the file are filename, list of included files,
  24.  * and records defined in that file.
  25.  */
  26. public class JFile {
  27.   /** Possibly full name of the file */
  28.   private String mName;
  29.   /** Ordered list of included files */
  30.   private ArrayList<JFile> mInclFiles;
  31.   /** Ordered list of records declared in this file */
  32.   private ArrayList<JRecord> mRecords;
  33.     
  34.   /** Creates a new instance of JFile
  35.    *
  36.    * @param name possibly full pathname to the file
  37.    * @param inclFiles included files (as JFile)
  38.    * @param recList List of records defined within this file
  39.    */
  40.   public JFile(String name, ArrayList<JFile> inclFiles,
  41.                ArrayList<JRecord> recList) {
  42.     mName = name;
  43.     mInclFiles = inclFiles;
  44.     mRecords = recList;
  45.   }
  46.     
  47.   /** Strip the other pathname components and return the basename */
  48.   String getName() {
  49.     int idx = mName.lastIndexOf('/');
  50.     return (idx > 0) ? mName.substring(idx) : mName; 
  51.   }
  52.     
  53.   /** Generate record code in given language. Language should be all
  54.    *  lowercase.
  55.    */
  56.   public int genCode(String language, String destDir, ArrayList<String> options)
  57.     throws IOException {
  58.     CodeGenerator gen = CodeGenerator.get(language);
  59.     if (gen != null) {
  60.       gen.genCode(mName, mInclFiles, mRecords, destDir, options);
  61.     } else {
  62.       System.err.println("Cannnot recognize language:"+language);
  63.       return 1;
  64.     }
  65.     return 0;
  66.   }
  67. }