mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-31 00:43:02 +01:00
81 lines
1.8 KiB
C++
81 lines
1.8 KiB
C++
/*
|
|
* MODULE: TraceSession.h
|
|
* DESCRIPTION:
|
|
*
|
|
* The contents of this file are subject to the Initial
|
|
* Developer's 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.ibphoenix.com/main.nfs?a=ibphoenix&page=ibp_idpl.
|
|
*
|
|
* Software distributed under the License is distributed AS IS,
|
|
* 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 Khorsun Vladyslav
|
|
* for the Firebird Open Source RDBMS project.
|
|
*
|
|
* Copyright (c) 2008 Khorsun Vladyslav <hvlad@users.sourceforge.net>
|
|
* and all contributors signed below.
|
|
*
|
|
* All Rights Reserved.
|
|
* Contributor(s): ______________________________________.
|
|
*
|
|
*/
|
|
|
|
#ifndef JRD_TRACESESSION_H
|
|
#define JRD_TRACESESSION_H
|
|
|
|
#include <time.h>
|
|
|
|
#include "firebird.h"
|
|
#include "../../common/classes/fb_string.h"
|
|
|
|
|
|
namespace Firebird {
|
|
|
|
const int trs_admin = 0x0001; // session created by server administrator
|
|
const int trs_active = 0x0002; // session is active
|
|
const int trs_system = 0x0004; // session created by engine itself
|
|
const int trs_log_full = 0x0008; // session trace log is full
|
|
|
|
class TraceSession
|
|
{
|
|
public:
|
|
explicit TraceSession(MemoryPool& pool) :
|
|
ses_id(0),
|
|
ses_name(pool),
|
|
ses_user(pool),
|
|
ses_config(pool),
|
|
ses_start(0),
|
|
ses_flags(0),
|
|
ses_logfile(pool)
|
|
{}
|
|
|
|
~TraceSession() {}
|
|
|
|
void clear()
|
|
{
|
|
ses_id = 0;
|
|
ses_name = "";
|
|
ses_user = "";
|
|
ses_config = "";
|
|
ses_start = 0;
|
|
ses_flags = 0;
|
|
ses_logfile = "";
|
|
}
|
|
|
|
ULONG ses_id;
|
|
string ses_name;
|
|
string ses_user;
|
|
string ses_config;
|
|
time_t ses_start;
|
|
int ses_flags;
|
|
PathName ses_logfile;
|
|
};
|
|
|
|
} // namespace Firebird
|
|
|
|
#endif // JRD_TRACESESSION_H
|