8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-31 06:43:02 +01:00
firebird-mirror/src/common/Auth.h
asfernandes 2a857cb415 Misc.
2015-01-15 01:17:27 +00:00

69 lines
1.9 KiB
C++

/*
* PROGRAM: Firebird authentication
* MODULE: Auth.h
* DESCRIPTION: Implementation of interfaces, passed to plugins
* Plugins loader
*
* 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 Alex Peshkov
* for the Firebird Open Source RDBMS project.
*
* Copyright (c) 2010 Alex Peshkov <peshkoff at mail.ru>
* and all contributors signed below.
*
* All Rights Reserved.
* Contributor(s): ______________________________________.
*
*
*/
#ifndef FB_AUTH_H
#define FB_AUTH_H
#include "firebird/Interface.h"
#include "../common/classes/ClumpletWriter.h"
#include "../common/classes/init.h"
#include "../common/classes/array.h"
#include "../common/classes/fb_string.h"
#include "../common/classes/ImplementHelper.h"
namespace Auth {
class WriterImplementation :
public Firebird::AutoIface<Firebird::IWriterImpl<WriterImplementation, Firebird::CheckStatusWrapper> >
{
public:
WriterImplementation();
void store(Firebird::ClumpletWriter* to, unsigned char tag);
void setPlugin(const char* m);
// IWriter implementation
void reset();
void add(Firebird::CheckStatusWrapper* st, const char* name);
void setType(Firebird::CheckStatusWrapper* st, const char* value);
void setDb(Firebird::CheckStatusWrapper* st, const char* value);
private:
Firebird::ClumpletWriter current, result;
Firebird::string plugin, type;
unsigned int sequence;
void putLevel();
};
} // namespace Auth
#endif // FB_AUTH_H