mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-31 11:23:02 +01:00
87 lines
2.5 KiB
C
87 lines
2.5 KiB
C
|
/*
|
||
|
* 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 16-Mar-2007
|
||
|
* for the Firebird Open Source RDBMS project.
|
||
|
*
|
||
|
* Copyright (c) 2007 Claudio Valderrama
|
||
|
* and all contributors signed below.
|
||
|
*
|
||
|
* All Rights Reserved.
|
||
|
* Contributor(s): ______________________________________.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef FB_USER_BLOB_H
|
||
|
#define FB_USER_BLOB_H
|
||
|
|
||
|
#include "firebird.h"
|
||
|
#include <memory.h>
|
||
|
|
||
|
class UserBlob
|
||
|
{
|
||
|
public:
|
||
|
explicit UserBlob(ISC_STATUS* status);
|
||
|
~UserBlob();
|
||
|
bool open(FB_API_HANDLE& db, FB_API_HANDLE& trans, ISC_QUAD& blobid);
|
||
|
bool open(FB_API_HANDLE& db, FB_API_HANDLE& trans, ISC_QUAD& blobid,
|
||
|
USHORT bpb_len, const UCHAR* bpb);
|
||
|
bool create(FB_API_HANDLE& db, FB_API_HANDLE& trans, ISC_QUAD& blobid);
|
||
|
bool create(FB_API_HANDLE& db, FB_API_HANDLE& trans, ISC_QUAD& blobid,
|
||
|
USHORT bpb_len, const UCHAR* bpb);
|
||
|
bool close(bool force_internal_SV = false);
|
||
|
bool getSegment(size_t len, size_t& real_len, void* buffer);
|
||
|
bool getData(size_t len, size_t& real_len, void* buffer, bool use_sep, const UCHAR separator);
|
||
|
bool putSegment(size_t len, const void* buffer);
|
||
|
bool putSegment(size_t len, size_t& real_len, const void* buffer);
|
||
|
bool putData(size_t len, size_t& real_len, const void* buffer);
|
||
|
bool isOpen() const;
|
||
|
bool getInfo(size_t items_size, const UCHAR* blr_items, size_t info_size, UCHAR* blob_info) const;
|
||
|
static bool blobIsNull(const ISC_QUAD& blobid);
|
||
|
private:
|
||
|
enum b_direction
|
||
|
{
|
||
|
dir_none,
|
||
|
dir_read,
|
||
|
dir_write
|
||
|
};
|
||
|
ISC_STATUS* const m_status;
|
||
|
FB_API_HANDLE m_blob;
|
||
|
b_direction m_direction;
|
||
|
ISC_STATUS_ARRAY m_default_status;
|
||
|
};
|
||
|
|
||
|
|
||
|
inline UserBlob::UserBlob(ISC_STATUS* status)
|
||
|
: m_status(status ? status : m_default_status), m_blob(0), m_direction(dir_none)
|
||
|
{
|
||
|
memset(m_default_status, 0, sizeof(m_default_status));
|
||
|
}
|
||
|
|
||
|
inline UserBlob::~UserBlob()
|
||
|
{
|
||
|
close(true);
|
||
|
}
|
||
|
|
||
|
inline bool UserBlob::isOpen() const
|
||
|
{
|
||
|
return m_blob != 0 && m_direction != dir_none;
|
||
|
}
|
||
|
|
||
|
inline bool UserBlob::blobIsNull(const ISC_QUAD& blobid)
|
||
|
{
|
||
|
return blobid.gds_quad_high == 0 && blobid.gds_quad_low == 0;
|
||
|
}
|
||
|
|
||
|
#endif // FB_USER_BLOB_H
|
||
|
|