2009-02-01 23:07:35 +01:00
|
|
|
/*
|
|
|
|
* MODULE: TraceService.h
|
2009-04-04 18:39:31 +02:00
|
|
|
* DESCRIPTION:
|
2009-02-01 23:07:35 +01:00
|
|
|
*
|
|
|
|
* 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_TRACESERVICE_H
|
|
|
|
#define JRD_TRACESERVICE_H
|
|
|
|
|
|
|
|
#include "firebird.h"
|
|
|
|
#include "consts_pub.h"
|
|
|
|
#include "fb_exception.h"
|
|
|
|
#include "iberror.h"
|
|
|
|
#include "../../common/classes/fb_string.h"
|
|
|
|
#include "../../common/StatusArg.h"
|
2009-02-02 13:05:09 +01:00
|
|
|
#include "../../common/UtilSvc.h"
|
2009-02-01 23:07:35 +01:00
|
|
|
#include "../../jrd/constants.h"
|
2010-10-12 10:02:57 +02:00
|
|
|
#include "../../common/ThreadData.h"
|
2009-02-01 23:07:35 +01:00
|
|
|
#include "../../jrd/trace/TraceSession.h"
|
|
|
|
|
|
|
|
|
|
|
|
THREAD_ENTRY_DECLARE TRACE_main(THREAD_ENTRY_PARAM);
|
|
|
|
|
|
|
|
|
|
|
|
namespace Firebird {
|
|
|
|
|
2009-04-04 18:39:31 +02:00
|
|
|
class TraceSvcIntf
|
2009-02-01 23:07:35 +01:00
|
|
|
{
|
|
|
|
public:
|
2009-04-04 18:39:31 +02:00
|
|
|
virtual void setAttachInfo(const string& service_name, const string& user,
|
2009-02-02 15:46:24 +01:00
|
|
|
const string& pwd, bool isAdmin) = 0;
|
2009-02-01 23:07:35 +01:00
|
|
|
|
2009-02-02 15:46:24 +01:00
|
|
|
virtual void startSession(TraceSession& session, bool interactive) = 0;
|
2009-02-01 23:07:35 +01:00
|
|
|
virtual void stopSession(ULONG id) = 0;
|
|
|
|
virtual void setActive(ULONG id, bool active) = 0;
|
|
|
|
virtual void listSessions() = 0;
|
2009-03-05 18:01:50 +01:00
|
|
|
|
|
|
|
virtual ~TraceSvcIntf() { }
|
2009-02-01 23:07:35 +01:00
|
|
|
};
|
|
|
|
|
2009-02-05 15:44:11 +01:00
|
|
|
void fbtrace(UtilSvc* uSvc, TraceSvcIntf* traceSvc);
|
2009-02-01 23:07:35 +01:00
|
|
|
|
|
|
|
} // namespace Firebird
|
|
|
|
|
|
|
|
|
|
|
|
#endif // JRD_TRACESERVICE_H
|