8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-27 18:03:04 +01:00
firebird-mirror/src/jrd/Routine.h

184 lines
6.0 KiB
C++

/*
* The contents of this file are subject to the Interbase Public
* License Version 1.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.Inprise.com/IPL.html
*
* Software distributed under the License is distributed on an
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
* or implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code was created by Inprise Corporation
* and its predecessors. Portions created by Inprise Corporation are
* Copyright (C) Inprise Corporation.
*
* All Rights Reserved.
* Contributor(s): ______________________________________.
* Adriano dos Santos Fernandes
*/
#ifndef JRD_ROUTINE_H
#define JRD_ROUTINE_H
#include "../common/classes/array.h"
#include "../common/classes/alloc.h"
#include "../common/classes/BlrReader.h"
#include "../common/classes/MetaName.h"
#include "../common/classes/QualifiedName.h"
#include "../common/classes/NestConst.h"
#include "../common/MsgMetadata.h"
namespace Jrd
{
class thread_db;
class CompilerScratch;
class JrdStatement;
class Lock;
class Format;
class Parameter;
class Routine : public Firebird::PermanentStorage
{
protected:
explicit Routine(MemoryPool& p)
: PermanentStorage(p),
id(0),
name(p),
securityName(p),
statement(NULL),
subRoutine(false),
implemented(true),
defined(true),
defaultCount(0),
inputFormat(NULL),
outputFormat(NULL),
inputFields(p),
outputFields(p),
flags(0),
useCount(0),
intUseCount(0),
alterCount(0),
existenceLock(NULL)
{
}
public:
virtual ~Routine()
{
}
public:
static const USHORT FLAG_SCANNED = 1; // Field expressions scanned
static const USHORT FLAG_OBSOLETE = 2; // Procedure known gonzo
static const USHORT FLAG_BEING_SCANNED = 4; // New procedure needs dependencies during scan
static const USHORT FLAG_BEING_ALTERED = 8; // Procedure is getting altered
// This flag is used to make sure that MET_remove_routine
// does not delete and remove procedure block from cache
// so dfw.epp:modify_procedure() can flip procedure body without
// invalidating procedure pointers from other parts of metadata cache
static const USHORT FLAG_CHECK_EXISTENCE = 16; // Existence lock released
static const USHORT MAX_ALTER_COUNT = 64; // Number of times an in-cache routine can be altered
static Firebird::MsgMetadata* createMetadata(
const Firebird::Array<NestConst<Parameter> >& parameters);
static Format* createFormat(MemoryPool& pool, Firebird::IMessageMetadata* params, bool addEof);
public:
USHORT getId() const
{
fb_assert(!subRoutine);
return id;
}
void setId(USHORT value) { id = value; }
const Firebird::QualifiedName& getName() const { return name; }
void setName(const Firebird::QualifiedName& value) { name = value; }
const Firebird::MetaName& getSecurityName() const { return securityName; }
void setSecurityName(const Firebird::MetaName& value) { securityName = value; }
/*const*/ JrdStatement* getStatement() const { return statement; }
void setStatement(JrdStatement* value) { statement = value; }
bool isSubRoutine() const { return subRoutine; }
void setSubRoutine(bool value) { subRoutine = value; }
bool isImplemented() const { return implemented; }
void setImplemented(bool value) { implemented = value; }
bool isDefined() const { return defined; }
void setDefined(bool value) { defined = value; }
USHORT getDefaultCount() const { return defaultCount; }
void setDefaultCount(USHORT value) { defaultCount = value; }
const Format* getInputFormat() const { return inputFormat; }
void setInputFormat(const Format* value) { inputFormat = value; }
const Format* getOutputFormat() const { return outputFormat; }
void setOutputFormat(const Format* value) { outputFormat = value; }
const Firebird::Array<NestConst<Parameter> >& getInputFields() const { return inputFields; }
Firebird::Array<NestConst<Parameter> >& getInputFields() { return inputFields; }
const Firebird::Array<NestConst<Parameter> >& getOutputFields() const { return outputFields; }
Firebird::Array<NestConst<Parameter> >& getOutputFields() { return outputFields; }
void parseBlr(thread_db* tdbb, CompilerScratch* csb, bid* blob_id);
void parseMessages(thread_db* tdbb, CompilerScratch* csb, Firebird::BlrReader blrReader);
bool isUsed() const
{
return useCount != 0;
}
void addRef()
{
++useCount;
}
virtual void releaseFormat()
{
}
void release(thread_db* tdbb);
void releaseStatement(thread_db* tdbb);
void remove(thread_db* tdbb);
public:
virtual int getObjectType() const = 0;
virtual SLONG getSclType() const = 0;
virtual bool checkCache(thread_db* tdbb) const = 0;
virtual void clearCache(thread_db* tdbb) = 0;
private:
USHORT id; // routine ID
Firebird::QualifiedName name; // routine name
Firebird::MetaName securityName; // security class name
JrdStatement* statement; // compiled routine statement
bool subRoutine; // Is this a subroutine?
bool implemented; // Is the packaged routine missing the body/entrypoint?
bool defined; // UDF has its implementation module available
USHORT defaultCount; // default input arguments
const Format* inputFormat; // input format
const Format* outputFormat; // output format
Firebird::Array<NestConst<Parameter> > inputFields; // array of field blocks
Firebird::Array<NestConst<Parameter> > outputFields; // array of field blocks
public:
USHORT flags;
USHORT useCount; // requests compiled with routine
SSHORT intUseCount; // number of routines compiled with routine, set and
// used internally in the MET_clear_cache routine
// no code should rely on value of this field
// (it will usually be 0)
USHORT alterCount; // No. of times the routine was altered
Lock* existenceLock; // existence lock, if any
};
}
#endif // JRD_ROUTINE_H