1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
|
/*
* mts_com.cpp
*
* $Id$
*
* MS DTC support
*
* This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
* project.
*
* Copyright (C) 1998-2012 OpenLink Software
*
* This project is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; only version 2 of the License, dated June 1991.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*
*/
#define _MTX_
extern "C"
{
#include "Wi.h"
#include "thread\dkthread.h"
#include "sqlnode.h"
#include "2pc.h"
}
#include <txdtc.h>
#include <xolehlp.h>
#include <transact.h>
#include "mts_com.h"
extern "C"
{
#include "import_gate_virtuoso.h"
}
void *mts_create_message (int type, ITransactionEnlistmentAsync * enlistment,
void *client_connection);
CResMgrSink::CResMgrSink ():ref_count (0)
{
};
ULONG CResMgrSink::AddRef ()
{
InterlockedIncrement ((long *) &ref_count);
MTS_TRACE (("IResourceManagerSink::AddRef\n"));
return ref_count;
};
ULONG CResMgrSink::Release ()
{
InterlockedDecrement ((long *) &ref_count);
MTS_TRACE (("IResourceManagerSink::ReleaseRef\n"));
/* subject of change */
if (!ref_count)
delete this;
return ref_count;
};
HRESULT CResMgrSink::QueryInterface (const struct _GUID & guid, void **iFace)
{
MTS_TRACE (("IResourceManagerSink::QueryInterface\n"));
if (guid == IID_IResourceManagerSink)
{
*iFace = this;
return S_OK;
};
if (guid == IID_IUnknown)
{
*iFace = static_cast < IUnknown * >(this);
return S_OK;
};
*iFace = 0;
return E_NOINTERFACE;
};
HRESULT CResMgrSink::TMDown ()
{
MTS_TRACE (("IResourceManagerSink::shut down!\n"));
return S_OK;
};
CTransactResourceAsync::CTransactResourceAsync ():ref_count (0)
{
};
void
CTransactResourceAsync::SetEnlistment (ITransactionEnlistmentAsync * trxea)
{
trx_enlistment_ = trxea;
}
void
CTransactResourceAsync::SetConnection (void *client_connection)
{
client_connection_ = client_connection;
}
ULONG CTransactResourceAsync::AddRef ()
{
InterlockedIncrement ((long *) &ref_count);
MTS_TRACE (("TRA::AddRef\n"));
return ref_count;
};
ULONG CTransactResourceAsync::Release ()
{
InterlockedDecrement ((long *) &ref_count);
MTS_TRACE (("TRA::ReleaseRef\n"));
/* subject of change */
if (!ref_count)
delete this;
return ref_count;
};
HRESULT
CTransactResourceAsync::QueryInterface (const struct _GUID & guid,
void **iFace)
{
MTS_TRACE (("TRA::QueryInterface\n"));
if (guid == IID_ITransactionResourceAsync)
{
*iFace = this;
return S_OK;
};
if (guid == IID_IUnknown)
{
*iFace = static_cast < IUnknown * >(this);
return S_OK;
};
*iFace = 0;
return E_NOINTERFACE;
};
int
log_debug (char *format, ...)
{
va_list ap;
int rc;
va_start (ap, format);
rc = server_logmsg_ap (LOG_DEBUG, NULL, 0, 1, format, ap);
va_end (ap);
return rc;
}
HRESULT CTransactResourceAsync::PrepareRequest (
/* [in] */ BOOL fRetaining,
/* [in] */ DWORD grfRM,
/* [in] */ BOOL fWantMoniker,
/* [in] */ BOOL fSinglePhase)
{
MTS_TRACE (("TRA::prepare...\n"));
mts_log_debug (("PrepareRequest res=%p cli=%p", trx_enlistment_,
client_connection_));
void *
mts_message =
mts_create_message (TP_PREPARE, trx_enlistment_, client_connection_);
mq_add_message (tp_get_main_queue (), mts_message);
return S_OK;
};
HRESULT CTransactResourceAsync::CommitRequest (
/* [in] */ DWORD grfRM,
/* [in] */ XACTUOW __RPC_FAR * pNewUOW)
{
MTS_TRACE (("TRA::commit...\n"));
mts_log_debug (("CommitRequest res=%p cli=%p", trx_enlistment_,
client_connection_));
void *
mts_message =
mts_create_message (TP_COMMIT, trx_enlistment_, client_connection_);
mq_add_message (tp_get_main_queue (), mts_message);
return S_OK;
};
HRESULT CTransactResourceAsync::AbortRequest (
/* [in] */ BOID __RPC_FAR * pboidReason,
/* [in] */ BOOL fRetaining,
/* [in] */ XACTUOW __RPC_FAR * pNewUOW)
{
MTS_TRACE (("TRA::abort...\n"));
mts_log_debug (("AbortRequest res=%p cli=%p", trx_enlistment_,
client_connection_));
void *
mts_message =
mts_create_message (TP_ABORT, trx_enlistment_, client_connection_);
mq_add_message (tp_get_main_queue (), mts_message);
return S_OK;
};
HRESULT CTransactResourceAsync::TMDown (void)
{
MTS_TRACE (("TRA::down...\n"));
return S_OK;
};
void *
CTransactResourceAsync::operator
new (size_t sz)
{
MTS_TRACE (("TRA::operator new...\n"));
return dk_alloc (sz);
};
void
CTransactResourceAsync::operator
delete (void *p)
{
MTS_TRACE (("TRA::operator delete\n"));
dk_free (p, -1);
}
void *
mts_create_message (int type, ITransactionEnlistmentAsync * enlistment,
void *client_connection)
{
static queue_vtbl_t mts_vtbl = {
mts_prepare_done,
mts_commit_done,
mts_abort_done,
mts_prepare_set_log
};
tp_message_t *mts_message =
mq_create_message (type, enlistment, client_connection);
mts_message->vtbl = &mts_vtbl;
return mts_message;
}
|