/* * DBeaver - Universal Database Manager * Copyright (C) 2016-2016 Karl Griesser (fullref@gmail.com) * Copyright (C) 2010-2017 Serge Rider (serge@jkiss.org) * * 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 org.jkiss.dbeaver.ext.exasol.manager; import java.util.List; import org.jkiss.dbeaver.DBException; import org.jkiss.dbeaver.ext.exasol.model.ExasolFunction; import org.jkiss.dbeaver.ext.exasol.model.ExasolSchema; import org.jkiss.dbeaver.model.DBPEvaluationContext; import org.jkiss.dbeaver.model.edit.DBECommandContext; import org.jkiss.dbeaver.model.edit.DBEPersistAction; import org.jkiss.dbeaver.model.impl.DBSObjectCache; import org.jkiss.dbeaver.model.impl.edit.SQLDatabasePersistAction; import org.jkiss.dbeaver.model.impl.sql.edit.SQLObjectEditor; import org.jkiss.dbeaver.model.runtime.DBRProgressMonitor; import org.jkiss.dbeaver.model.sql.SQLUtils; import org.jkiss.utils.CommonUtils; public class ExasolFunctionManager extends SQLObjectEditor<ExasolFunction, ExasolSchema> { @Override public DBSObjectCache<ExasolSchema, ExasolFunction> getObjectsCache(ExasolFunction object) { return object.getContainer().functionCache; } @Override public long getMakerOptions() { return FEATURE_EDITOR_ON_CREATE; } @Override protected void validateObjectProperties(ObjectChangeCommand command) throws DBException { if (CommonUtils.isEmpty(command.getObject().getName())) { throw new DBException("Function name cannot be empty"); } } @Override protected ExasolFunction createDatabaseObject(DBRProgressMonitor monitor, DBECommandContext context, ExasolSchema parent, Object copyFrom) throws DBException { ExasolFunction newScript = new ExasolFunction(parent); newScript.setName("new_script"); newScript.setObjectDefinitionText("FUNCTION new_script ()RETURNS INTEGER"); return newScript; } private void createOrReplaceScriptQuery(List<DBEPersistAction> actions, ExasolFunction script, Boolean replace) { actions.add( new SQLDatabasePersistAction("Create Script", "OPEN SCHEMA " + script.getSchema().getName())); if (replace) { actions.add( new SQLDatabasePersistAction("Create Script", "CREATE OR REPLACE " + script.getSql())); } else { actions.add( new SQLDatabasePersistAction("Create Script", "CREATE " + script.getSql())); } } @Override protected void addObjectCreateActions(List<DBEPersistAction> actions, SQLObjectEditor<ExasolFunction, ExasolSchema>.ObjectCreateCommand command) { createOrReplaceScriptQuery(actions, command.getObject(), false); } @Override protected void addObjectDeleteActions(List<DBEPersistAction> actions, SQLObjectEditor<ExasolFunction, ExasolSchema>.ObjectDeleteCommand command) { actions.add( new SQLDatabasePersistAction("Create Script", "DROP SCRIPT " + command.getObject().getFullyQualifiedName(DBPEvaluationContext.DDL))); } @Override protected void addObjectModifyActions(List<DBEPersistAction> actionList, SQLObjectEditor<ExasolFunction, ExasolSchema>.ObjectChangeCommand command) { if (command.getProperties().size() > 1 || command.getProperty("description") == null ) { createOrReplaceScriptQuery(actionList, command.getObject(),true); } } @Override protected void addObjectExtraActions(List<DBEPersistAction> actions, org.jkiss.dbeaver.model.impl.sql.edit.SQLObjectEditor.NestedObjectCommand<ExasolFunction, SQLObjectEditor<ExasolFunction, ExasolSchema>.PropertyHandler> command) { if (command.getProperty("description") != null) { actions.add(new SQLDatabasePersistAction("Comment on Script","COMMENT ON FUNCTION " + command.getObject().getFullyQualifiedName(DBPEvaluationContext.DDL) + " IS " + SQLUtils.quoteString(command.getObject().getDescription()))); } } }