Java tutorial
/* Copyright 2012-2013 Claudio Tesoriero - c.tesoriero-at-baasbox.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.baasbox.service.storage; import java.util.List; import com.baasbox.dao.CollectionDao; import com.baasbox.dao.exception.InvalidCollectionException; import com.baasbox.dao.exception.InvalidModelException; import com.baasbox.dao.exception.SqlInjectionException; import com.baasbox.dao.exception.UserAlreadyExistsException; import com.baasbox.db.DbHelper; import com.baasbox.exception.InvalidJsonException; import com.baasbox.util.QueryParams; import com.orientechnologies.orient.core.exception.OSerializationException; import com.orientechnologies.orient.core.metadata.schema.OClass; import com.orientechnologies.orient.core.record.impl.ODocument; import org.apache.commons.lang3.exception.ExceptionUtils; public class CollectionService { public static void drop(String collectionName) throws InvalidCollectionException, SqlInjectionException, Exception { CollectionDao dao = CollectionDao.getInstance(); dao.delete(collectionName); } public static ODocument create(String collectionName) throws Throwable, InvalidCollectionException, InvalidModelException { try { CollectionDao dao = CollectionDao.getInstance(); ODocument doc = dao.create(collectionName); return doc; } catch (OSerializationException e) { DbHelper.rollbackTransaction(); throw new InvalidJsonException(e); } catch (InvalidJsonException e) { DbHelper.rollbackTransaction(); throw e; } catch (UserAlreadyExistsException e) { DbHelper.rollbackTransaction(); throw e; } catch (Exception e) { DbHelper.rollbackTransaction(); throw new RuntimeException(ExceptionUtils.getStackTrace(e)); } } public static boolean exists(String collectionName) throws InvalidCollectionException, SqlInjectionException { CollectionDao dao = CollectionDao.getInstance(); return dao.existsCollection(collectionName); } public static ODocument get(String collectionName) throws SqlInjectionException { CollectionDao dao = CollectionDao.getInstance(); return dao.getByName(collectionName); } public static List<ODocument> getCollections(QueryParams criteria) throws SqlInjectionException, InvalidCollectionException { CollectionDao dao = CollectionDao.getInstance(); return dao.get(criteria); } public static long getCollectionsCount(QueryParams criteria) throws SqlInjectionException, InvalidCollectionException { CollectionDao dao = CollectionDao.getInstance(); return dao.getCount(criteria); } }