Package com.orientechnologies.orient.core.dictionary

Source Code of com.orientechnologies.orient.core.dictionary.ODictionary

/*
* Copyright 1999-2010 Luca Garulli (l.garulli--at--orientechnologies.com)
*
* Licensed 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 com.orientechnologies.orient.core.dictionary;

import java.util.Collection;

import com.orientechnologies.orient.core.db.ODatabaseRecordThreadLocal;
import com.orientechnologies.orient.core.db.record.OIdentifiable;
import com.orientechnologies.orient.core.id.ORID;
import com.orientechnologies.orient.core.index.OIndex;
import com.orientechnologies.orient.core.record.impl.ODocument;

@SuppressWarnings("unchecked")
public class ODictionary<T extends Object> {
  private OIndex  index;

  public ODictionary(final OIndex iIndex) {
    index = iIndex;
  }

  public <RET extends T> RET get(final String iKey) {
    final Collection<OIdentifiable> values = index.get(iKey);
    if (values.isEmpty())
      return null;

    final OIdentifiable id = values.iterator().next();

    return (RET) id.getRecord();
  }

  public <RET extends T> RET get(final String iKey, final String iFetchPlan) {
    final Collection<OIdentifiable> values = index.get(iKey);
    if (values.isEmpty())
      return null;

    final OIdentifiable id = values.iterator().next();

    if (id instanceof ORID)
      return (RET) ODatabaseRecordThreadLocal.INSTANCE.get().load(((ORID) values.iterator().next()), iFetchPlan);

    return (RET) ((ODocument) values.iterator().next()).load(iFetchPlan);
  }

  public void put(final String iKey, final Object iValue) {
    index.put(iKey, (OIdentifiable) iValue);
  }

  public boolean containsKey(final String iKey) {
    return index.contains(iKey);
  }

  public boolean remove(final String iKey) {
    return index.remove(iKey);
  }

  public long size() {
    return index.getSize();
  }

  public Iterable<Object> keys() {
    return index.keys();
  }

  public OIndex getIndex() {
    return index;
  }
}
TOP

Related Classes of com.orientechnologies.orient.core.dictionary.ODictionary

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.