/* This file is part of VoltDB. * Copyright (C) 2008-2017 VoltDB Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with VoltDB. If not, see <http://www.gnu.org/licenses/>. */ package org.voltdb; import org.voltdb.AuthSystem.AuthUser; import org.voltdb.catalog.Procedure; import org.voltdb.utils.Encoder; /** * Check update catalog parameters. */ public class UpdateCatalogAcceptancePolicy extends InvocationValidationPolicy { public UpdateCatalogAcceptancePolicy(boolean isOn) { super(isOn); } @Override public ClientResponseImpl shouldAccept(AuthUser user, StoredProcedureInvocation invocation, Procedure sysProc) { if (!invocation.getProcName().equals("@UpdateApplicationCatalog")) { return null; } ParameterSet params = invocation.getParams(); // Either the catalog bytes or the deployment string can be null, indicating // that the user doesn't want to change that component. Null values will // be populated correctly by the AsyncCompilerAgentHelper downstream. final Object [] paramsArray = params.toArray(); if (paramsArray.length != 2) { return new ClientResponseImpl(ClientResponseImpl.UNEXPECTED_FAILURE, new VoltTable[0], "UpdateApplicationCatalog system procedure requires exactly " + "two parameters, the catalog bytes and the deployment file " + "string (either of which may be null).", invocation.clientHandle); } if (paramsArray[0] != null) { boolean isHex = false; if (paramsArray[0] instanceof String) { isHex = Encoder.isHexEncodedString((String) paramsArray[0]); } if (!isHex && !(paramsArray[0] instanceof byte[])) { return new ClientResponseImpl(ClientResponseImpl.UNEXPECTED_FAILURE, new VoltTable[0], "UpdateApplicationCatalog system procedure takes the " + "catalog bytes as a byte array. The received parameter " + "is of type " + paramsArray[0].getClass() + ".", invocation.clientHandle); } } return null; } }