8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-26 06:43:04 +01:00
firebird-mirror/src/common/utils_proto.h

174 lines
5.1 KiB
C
Raw Normal View History

/*
* 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 Claudio Valderrama on 25-Dec-2003
* for the Firebird Open Source RDBMS project.
*
* Copyright (c) 2003 Claudio Valderrama
* and all contributors signed below.
*
* All Rights Reserved.
* Contributor(s): ______________________________________.
*
2009-02-01 23:10:12 +01:00
* Nickolay Samofatov <nickolay@broadviewsoftware.com>
*/
// =====================================
// Utility functions
#ifndef INCLUDE_UTILS_PROTO_H
#define INCLUDE_UTILS_PROTO_H
#include <string.h>
#include "../common/classes/fb_string.h"
#include "../common/classes/array.h"
#include "gen/iberror.h"
#include "firebird/Provider.h"
2008-12-30 18:58:30 +01:00
#ifdef SFIO
#include <stdio.h>
#endif
2004-03-31 20:10:22 +02:00
namespace fb_utils
{
char* copy_terminate(char* dest, const char* src, size_t bufsize);
char* exact_name(char* const str);
inline void exact_name(Firebird::string& str)
2004-03-31 20:10:22 +02:00
{
str.rtrim();
}
char* exact_name_limit(char* const str, size_t bufsize);
bool implicit_domain(const char* domain_name);
2007-09-16 11:02:53 +02:00
bool implicit_integrity(const char* integ_name);
bool implicit_pk(const char* pk_name);
int name_length(const TEXT* const name);
bool readenv(const char* env_name, Firebird::string& env_value);
bool readenv(const char* env_name, Firebird::PathName& env_value);
int snprintf(char* buffer, size_t count, const char* format...);
char* cleanup_passwd(char* arg);
inline char* get_passwd(char* arg)
{
return cleanup_passwd(arg);
}
typedef char* arg_string;
2008-01-16 07:11:50 +01:00
// Warning: Only wrappers:
// ********************
// s t r i c m p
// ********************
// Abstraction of incompatible routine names
// for case insensitive comparison.
inline int stricmp(const char* a, const char* b)
{
#if defined(HAVE_STRCASECMP)
return ::strcasecmp(a, b);
#elif defined(HAVE_STRICMP)
return ::stricmp(a, b);
#else
#error dont know how to compare strings case insensitive on this system
#endif
}
// ********************
// s t r n i c m p
// ********************
// Abstraction of incompatible routine names
// for counted length and case insensitive comparison.
inline int strnicmp(const char* a, const char* b, size_t count)
{
#if defined(HAVE_STRNCASECMP)
return ::strncasecmp(a, b, count);
#elif defined(HAVE_STRNICMP)
return ::strnicmp(a, b, count);
#else
#error dont know how to compare counted length strings case insensitive on this system
#endif
}
#ifdef WIN_NT
bool prefix_kernel_object_name(char* name, size_t bufsize);
bool isGlobalKernelPrefix();
#endif
Firebird::PathName get_process_name();
SLONG genUniqueId();
void getCwd(Firebird::PathName& pn);
void inline init_status(ISC_STATUS* status)
{
status[0] = isc_arg_gds;
2009-01-20 15:58:45 +01:00
status[1] = FB_SUCCESS;
status[2] = isc_arg_end;
}
void inline init_status(Firebird::IStatus* status)
2010-10-12 10:02:57 +02:00
{
status->init();
}
unsigned int copyStatus(ISC_STATUS* const to, const unsigned int space,
const ISC_STATUS* const from, const unsigned int count) throw();
unsigned int statusLength(const ISC_STATUS* const status) throw();
enum FetchPassResult {
FETCH_PASS_OK,
2008-12-05 01:56:15 +01:00
FETCH_PASS_FILE_OPEN_ERROR,
FETCH_PASS_FILE_READ_ERROR,
FETCH_PASS_FILE_EMPTY
};
FetchPassResult fetchPassword(const Firebird::PathName& name, const char*& password);
2009-02-01 23:10:12 +01:00
// Returns current value of performance counter
SINT64 query_performance_counter();
// Returns frequency of performance counter in Hz
SINT64 query_performance_frequency();
void exactNumericToStr(SINT64 value, int scale, Firebird::string& target, bool append = false);
enum FB_DIR {
2009-09-12 03:34:26 +02:00
FB_DIR_BIN = 0, FB_DIR_SBIN, FB_DIR_CONF, FB_DIR_LIB, FB_DIR_INC, FB_DIR_DOC, FB_DIR_UDF,
FB_DIR_SAMPLE, FB_DIR_SAMPLEDB, FB_DIR_HELP, FB_DIR_INTL, FB_DIR_MISC, FB_DIR_SECDB,
FB_DIR_MSG, FB_DIR_LOG, FB_DIR_GUARD, FB_DIR_PLUGINS,
FB_DIR_LAST};
// Returns true if called from firebird build process (appr. environment is set)
bool bootBuild();
// Add appropriate file prefix.
Firebird::PathName getPrefix(FB_DIR prefType, const char* name);
// moves DB path information (from limbo transaction) to another buffer
2011-05-21 21:11:03 +02:00
void getDbPathInfo(unsigned int& itemsLength, const unsigned char*& items,
unsigned int& bufferLength, unsigned char*& buffer,
Firebird::Array<unsigned char>& newItemsBuffer, const Firebird::PathName& dbpath);
// returns true if passed info items work with running svc thread
bool isRunningCheck(const UCHAR* items, unsigned int length);
// converts bytes to BASE64 representation
void base64(Firebird::string& b64, const Firebird::UCharBuffer& bin);
// generate random string in BASE64 representation
void random64(Firebird::string& randomValue, size_t length);
void logAndDie(const char* text);
} // namespace fb_utils
#endif // INCLUDE_UTILS_PROTO_H