blob: 0ae33860ca6aefe98fbd1c82197e86e6ee7132b7 [file] [log] [blame]
/**
* Copyright 2011-2015 Quickstep Technologies LLC.
* Copyright 2015-2016 Pivotal Software, Inc.
*
* 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.
**/
#ifndef QUICKSTEP_QUERY_OPTIMIZER_OPTIMIZER_CONTEXT_HPP_
#define QUICKSTEP_QUERY_OPTIMIZER_OPTIMIZER_CONTEXT_HPP_
#include <cstddef>
#include <cstdlib>
#include <string>
#include "catalog/CatalogTypedefs.hpp"
#include "query_optimizer/expressions/ExprId.hpp"
#include "utility/Macros.hpp"
namespace quickstep {
class CatalogDatabase;
class CatalogRelation;
class StorageManager;
namespace optimizer {
/** \addtogroup QueryOptimizer
* @{
*/
/**
* @brief Stores stateful or common info used throughout the optimization of a
* query.
*/
class OptimizerContext {
public:
static const char *kInternalTemporaryRelationNamePrefix;
/**
* @brief Constructor.
*
* @param query_id The query ID.
* @param catalog_database The catalog database where this query is executed.
* @param storage_manager The storage manager to use for allocating storage
* blocks.
*/
OptimizerContext(const std::size_t query_id,
CatalogDatabase *catalog_database,
StorageManager *storage_manager)
: query_id_(query_id),
current_expr_id_(-1),
catalog_database_(catalog_database),
storage_manager_(storage_manager),
is_catalog_changed_(false) {}
/**
* @brief Destructor.
*/
~OptimizerContext() {}
/**
* @return Const pointer to the catalog database
* where the query is executed.
*/
const CatalogDatabase* catalog_database() const { return catalog_database_; }
/**
* @return Mutable pointer to the catalog database
* where this query is executed.
*/
CatalogDatabase* catalog_database() { return catalog_database_; }
/**
* @return Const pointer to the storage manager to use for
* allocating storage blocks.
*/
const StorageManager* storage_manager() const { return storage_manager_; }
/**
* @return Mutable pointer to the storage manager to use for
* allocating storage blocks.
*/
StorageManager* storage_manager() { return storage_manager_; }
/**
* @return Query ID.
*/
std::size_t query_id() const { return query_id_; }
/**
* @brief Gets the next ExprId.
*
* @return A new ExprId.
*/
expressions::ExprId nextExprId() {
return ++current_expr_id_;
}
/**
* @brief Sets <is_catalog_changed_> to be true to indicate the query will
* modify the catalog permanently.
*/
void set_is_catalog_changed() { is_catalog_changed_ = true; }
/**
* @return True if the catalog will be permanently changed after the query.
*/
bool is_catalog_changed() const { return is_catalog_changed_; }
private:
const std::size_t query_id_;
expressions::ExprId current_expr_id_;
CatalogDatabase *catalog_database_;
StorageManager *storage_manager_;
bool is_catalog_changed_;
DISALLOW_COPY_AND_ASSIGN(OptimizerContext);
};
/** @} */
} // namespace optimizer
} // namespace quickstep
#endif /* QUICKSTEP_QUERY_OPTIMIZER_OPTIMIZER_CONTEXT_HPP_ */