mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-18 21:44:02 +03:00
* Fix clang warnings * Remove vim tab guides * initialize variables * 'strncpy' output truncated before terminating nul copying as many bytes from a string as its length * Fix ISO C++17 does not allow 'register' storage class specifier for outdated bison * chars are unsigned on ARM, having if (ival < 0) always false * chars are unsigned by default on ARM and comparison with -1 if always true
114 lines
3.0 KiB
C++
114 lines
3.0 KiB
C++
/* Copyright (C) 2014 InfiniDB, Inc.
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; version 2 of
|
|
the License.
|
|
|
|
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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
MA 02110-1301, USA. */
|
|
|
|
// $Id: windowfunction.h 3932 2013-06-25 16:08:10Z xlou $
|
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
#include <utility>
|
|
#include <boost/shared_ptr.hpp>
|
|
#include <boost/thread.hpp>
|
|
|
|
#include "rowgroup.h"
|
|
#include "windowfunctionstep.h"
|
|
|
|
namespace ordering
|
|
{
|
|
// forward reference
|
|
class EqualCompData;
|
|
class OrderByData;
|
|
}; // namespace ordering
|
|
|
|
namespace windowfunction
|
|
{
|
|
// forward reference
|
|
class WindowFunctionType;
|
|
class WindowFrame;
|
|
|
|
/** @brief class WindowFunction
|
|
*
|
|
*/
|
|
class WindowFunction
|
|
{
|
|
public:
|
|
/** @brief WindowFunction constructor
|
|
* @param f: shared pointer to a WindowFuncitonType
|
|
* @param p: shared pointer to equal compare functor
|
|
* @param o: shared pointer to order by functor
|
|
* @param w: shared pointer to window specification
|
|
* @param r: row meta data
|
|
*/
|
|
WindowFunction(boost::shared_ptr<WindowFunctionType>& f, boost::shared_ptr<ordering::EqualCompData>& p,
|
|
boost::shared_ptr<ordering::OrderByData>& o, boost::shared_ptr<WindowFrame>& w,
|
|
const rowgroup::RowGroup& g, const rowgroup::Row& r);
|
|
|
|
/** @brief WindowFunction destructor
|
|
*/
|
|
virtual ~WindowFunction();
|
|
|
|
/** @brief virtual void Run method
|
|
*/
|
|
void operator()();
|
|
|
|
const std::string toString() const;
|
|
|
|
void setCallback(joblist::WindowFunctionStep*, int);
|
|
const rowgroup::Row& getRow() const;
|
|
|
|
protected:
|
|
// cancellable sort function
|
|
void sort(std::vector<joblist::RowPosition>::iterator, uint64_t);
|
|
|
|
// special window frames
|
|
void processUnboundedWindowFrame1();
|
|
void processUnboundedWindowFrame2();
|
|
void processUnboundedWindowFrame3();
|
|
void processExprWindowFrame();
|
|
|
|
// for string table
|
|
rowgroup::Row::Pointer getPointer(joblist::RowPosition& r)
|
|
{
|
|
return fStep->getPointer(r, fRowGroup, fRow);
|
|
}
|
|
|
|
// function type
|
|
boost::shared_ptr<WindowFunctionType> fFunctionType;
|
|
|
|
// window clause
|
|
boost::shared_ptr<ordering::EqualCompData> fPartitionBy;
|
|
boost::shared_ptr<ordering::OrderByData> fOrderBy;
|
|
boost::shared_ptr<WindowFrame> fFrame;
|
|
std::vector<std::pair<int64_t, int64_t> > fPartition;
|
|
|
|
// data
|
|
boost::shared_ptr<std::vector<joblist::RowPosition> > fRowData;
|
|
|
|
// row meta data
|
|
rowgroup::RowGroup fRowGroup;
|
|
rowgroup::Row fRow;
|
|
|
|
// pointer back to step
|
|
joblist::WindowFunctionStep* fStep;
|
|
int fId;
|
|
|
|
friend class joblist::WindowFunctionStep;
|
|
};
|
|
|
|
} // namespace windowfunction
|
|
|