All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.hive.hplsql.objects.TableClass Maven / Gradle / Ivy

The newest version!
/*
 *  Licensed to the Apache Software Foundation (ASF) under one
 *  or more contributor license agreements.  See the NOTICE file
 *  distributed with this work for additional information
 *  regarding copyright ownership.  The ASF licenses this file
 *  to you under the Apache License, Version 2.0 (the
 *  "License"); you may not use this file except in compliance
 *  with the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

package org.apache.hive.hplsql.objects;

import static org.apache.hive.hplsql.objects.MethodDictionary.__GETITEM__;
import static org.apache.hive.hplsql.objects.MethodDictionary.__SETITEM__;
import static org.apache.hive.hplsql.objects.MethodParams.Arity.BINARY;
import static org.apache.hive.hplsql.objects.MethodParams.Arity.NULLARY;
import static org.apache.hive.hplsql.objects.MethodParams.Arity.UNARY;

import java.util.List;

import org.apache.hive.hplsql.ColumnDefinition;
import org.apache.hive.hplsql.Row;
import org.apache.hive.hplsql.Var;
import org.apache.hive.hplsql.objects.MethodParams.Arity;


public class TableClass implements HplClass {
  private static final MethodDictionary methodDictionary = new MethodDictionary<>();
  private final String typeName;
  private final List columns;
  private final boolean rowType;

  static {
    methodDictionary.put("first", (self, args) -> {
      NULLARY.check("first", args);
      return wrap(self.firstKey());
    });
    methodDictionary.put("last", (self, args) -> {
      NULLARY.check("last", args);
      return wrap(self.lastKey());
    });
    methodDictionary.put("next", (self, args) -> {
      Long key = new MethodParams("next", args, UNARY).longAt(0);
      return wrap(self.nextKey(key));
    });
    methodDictionary.put("prior", (self, args) -> {
      Long key = new MethodParams("prior", args, UNARY).longAt(0);
      return wrap(self.priorKey(key));
    });
    methodDictionary.put("count", (self, args) -> {
      NULLARY.check("count", args);
      return new Var(Long.valueOf(self.count()));
    });
    methodDictionary.put("exists", (self, args) -> {
      Long key = new MethodParams("exists", args, UNARY).longAt(0);
      return new Var(self.existsAt(key));
    });
    methodDictionary.put("delete", (self, args) -> {
      Arity.max(3).check("delete", args);
      if (args.isEmpty()) {
        self.removeAll();
      } else if (args.size() == 1) {
        self.removeAt(args.get(0).value);
      } else {
        self.removeFromTo(args.get(0).value, args.get(1).value);
      }
      return null;
    });
    methodDictionary.put(__GETITEM__, (self, args) -> {
      Long key = new MethodParams(__GETITEM__, args, UNARY).longAt(0);
      Row row = self.at(key);
      if (row == null) {
        return Var.Null;
      }
      if (self.hplClass().rowType()) {
        Var var = new Var();
        var.setType(Var.Type.ROW.name());
        var.setValue(row);
        return var;
      }
      return row.getValue(0);
    });
    methodDictionary.put(__SETITEM__, (self, args) -> {
      MethodParams params = new MethodParams(__SETITEM__, args, BINARY);
      long key = params.longAt(0);
      if (self.hplClass().rowType()) {
        self.put(key, params.rowAt(1));
      } else { // single column
        Row row = new Row();
        row.addColumn(
                self.hplClass().columns().get(0).columnName(),
                self.hplClass().columns.get(0).columnTypeString(),
                args.get(1));
        self.put(key, row);
      }
      return Var.Null;
    });
  }

  private static Var wrap(Object result) {
    return result != null ? new Var((Long) result) : Var.Null;
  }

  public TableClass(String typeName, List columns, boolean rowType) {
    this.typeName = typeName;
    this.columns = columns;
    this.rowType = rowType;
  }

  public String typeName() {
    return typeName;
  }

  public List columns() {
    return columns;
  }

  @Override
  public Table newInstance() {
    return new Table(this);
  }

  @Override
  public MethodDictionary methodDictionary() {
    return methodDictionary;
  }

  public boolean rowType() {
    return rowType;
  }
}