blob: c032bb1cc92b84bc38a32e969c9109ba0a21dc1f [file] [log] [blame]
/**
* 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.ambari.view.hive.resources.savedQueries;
import org.apache.ambari.view.ViewContext;
import org.apache.ambari.view.hive.persistence.IStorageFactory;
import org.apache.ambari.view.hive.persistence.utils.FilteringStrategy;
import org.apache.ambari.view.hive.persistence.utils.ItemNotFound;
import org.apache.ambari.view.hive.resources.PersonalCRUDResourceManager;
import org.apache.ambari.view.hive.utils.*;
import org.apache.ambari.view.hive.utils.HdfsUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* Object that provides CRUD operations for query objects
*/
public class SavedQueryResourceManager extends PersonalCRUDResourceManager<SavedQuery> {
private final static Logger LOG =
LoggerFactory.getLogger(SavedQueryResourceManager.class);
private SharedObjectsFactory sharedObjectsFactory;
/**
* Constructor
* @param context View Context instance
*/
public SavedQueryResourceManager(ViewContext context, SharedObjectsFactory sharedObjectsFactory) {
super(SavedQuery.class, sharedObjectsFactory, context);
this.sharedObjectsFactory = sharedObjectsFactory;
}
@Override
public SavedQuery create(SavedQuery object) {
object = super.create(object);
try {
if (object.getQueryFile() == null || object.getQueryFile().isEmpty()) {
createDefaultQueryFile(object);
}
} catch (ServiceFormattedException e) {
cleanupAfterErrorAndThrowAgain(object, e);
}
return object;
}
private void createDefaultQueryFile(SavedQuery object) {
String userScriptsPath = context.getProperties().get("scripts.dir");
if (userScriptsPath == null) {
String msg = "scripts.dir is not configured!";
LOG.error(msg);
throw new MisconfigurationFormattedException("scripts.dir");
}
String normalizedName = String.format("hive-query-%s", object.getId());
String timestamp = new SimpleDateFormat("yyyy-MM-dd_hh-mm").format(new Date());
String baseFileName = String.format(userScriptsPath +
"/%s-%s", normalizedName, timestamp);
String newFilePath = HdfsUtil.findUnallocatedFileName(sharedObjectsFactory.getHdfsApi(), baseFileName, ".hql");
HdfsUtil.putStringToFile(sharedObjectsFactory.getHdfsApi(), newFilePath, "");
object.setQueryFile(newFilePath);
storageFabric.getStorage().store(SavedQuery.class, object);
}
@Override
public SavedQuery read(Object id) throws ItemNotFound {
SavedQuery savedQuery = super.read(id);
fillShortQueryField(savedQuery);
return savedQuery;
}
private void fillShortQueryField(SavedQuery savedQuery) {
if (savedQuery.getQueryFile() != null) {
FilePaginator paginator = new FilePaginator(savedQuery.getQueryFile(), sharedObjectsFactory.getHdfsApi());
String query = null;
try {
query = paginator.readPage(0);
} catch (IOException e) {
LOG.error("Can't read query file " + savedQuery.getQueryFile());
return;
} catch (InterruptedException e) {
LOG.error("Can't read query file " + savedQuery.getQueryFile());
return;
}
savedQuery.setShortQuery(query.substring(0, (query.length() > 42)?42:query.length()));
}
storageFabric.getStorage().store(SavedQuery.class, savedQuery);
}
@Override
public SavedQuery update(SavedQuery newObject, String id) throws ItemNotFound {
SavedQuery savedQuery = super.update(newObject, id);
fillShortQueryField(savedQuery);
return savedQuery;
}
@Override
public List<SavedQuery> readAll(FilteringStrategy filteringStrategy) {
return super.readAll(filteringStrategy);
}
@Override
public void delete(Object resourceId) throws ItemNotFound {
super.delete(resourceId);
}
}