blob: d88bcdbeb480b491938c5012c4e2b1888164cc2c [file] [log] [blame]
/**********************************************************************
// @@@ START COPYRIGHT @@@
//
// 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.
//
// @@@ END COPYRIGHT @@@
//
**********************************************************************/
#ifndef _RU_LOG_CLEANUP_SQL_COMPOSER_H_
#define _RU_LOG_CLEANUP_SQL_COMPOSER_H_
/* -*-C++-*-
******************************************************************************
*
* File: RuLogCleanupSQLComposer.h
* Description: Definition of class CRULogCleanupSQLComposer
*
*
* Created: 09/25/2000
* Language: C++
*
*
*
******************************************************************************
*/
#include "RuSQLComposer.h"
#include "RuLogCleanupTaskExecutor.h"
class CRULogCleanupTask;
class CRUTbl;
//--------------------------------------------------------------------------//
// CRULogCleanupSQLComposer
//
// This class composes the syntax of the DELETE statements
// for deletion from the IUD- and range-log in the log
// cleanup task.
//
//--------------------------------------------------------------------------//
class REFRESH_LIB_CLASS CRULogCleanupSQLComposer : public CRUSQLComposer {
private:
typedef CRUSQLComposer inherited;
public:
CRULogCleanupSQLComposer(CRULogCleanupTask *pTask);
virtual ~CRULogCleanupSQLComposer() {}
public:
enum {
// Epochs 0..+100 in the log are reserved for special purposes
MAX_SPECIAL_EPOCH = 100,
// To avoid lock escalation, delete 10000 rows in txn
MAX_ROW_TO_DELETE_IN_SINGLE_TXN = 10000
};
public:
void ComposeIUDLogCleanup(CRULogCleanupTaskExecutor::SQL_STATEMENT type);
void ComposeRangeLogCleanup();
void composeGetRowCount();
private:
void ComposeHeader(const CDSString &tableName, CRULogCleanupTaskExecutor::SQL_STATEMENT type);
private:
//-- Prevent copying
CRULogCleanupSQLComposer(const CRULogCleanupSQLComposer &other);
CRULogCleanupSQLComposer &operator = (const CRULogCleanupSQLComposer &other);
private:
CRUTbl &tbl_;
TInt32 maxInapplicableEpoch_;
};
#endif