X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Ftxn.c;h=2c934266dc96807fbe887ec4b07738c743949945;hb=82de650b19210e8a9760c7157d7d952e40d2ad3b;hp=f8fb65785d1f1017e594d0ca947de46177cf59a2;hpb=247536744e2a2c8589eb73292ff7e1317ac05c0e;p=openldap diff --git a/servers/slapd/txn.c b/servers/slapd/txn.c index f8fb65785d..2c934266dc 100644 --- a/servers/slapd/txn.c +++ b/servers/slapd/txn.c @@ -2,7 +2,7 @@ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software . * - * Copyright 1998-2006 The OpenLDAP Foundation. + * Copyright 1998-2007 The OpenLDAP Foundation. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -56,14 +56,14 @@ int txn_start_extop( /* acquire connection lock */ ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex ); - if( op->o_conn->c_txn ) { + if( op->o_conn->c_txn != CONN_TXN_INACTIVE ) { rs->sr_text = "Too many transactions"; rc = LDAP_BUSY; goto done; } assert( op->o_conn->c_txn_backend == NULL ); - ++op->o_conn->c_txn; + op->o_conn->c_txn = CONN_TXN_SPECIFY; bv = (struct berval *) ch_malloc( sizeof (struct berval) ); bv->bv_len = 0; @@ -99,6 +99,15 @@ int txn_spec_ctrl( return LDAP_X_TXN_ID_INVALID; } + if ( op->o_preread ) { /* temporary limitation */ + rs->sr_text = "cannot perform pre-read in transaction"; + return LDAP_UNWILLING_TO_PERFORM; + } + if ( op->o_postread ) { /* temporary limitation */ + rs->sr_text = "cannot perform post-read in transaction"; + return LDAP_UNWILLING_TO_PERFORM; + } + op->o_txnSpec = SLAP_CONTROL_CRITICAL; return LDAP_SUCCESS; } @@ -142,7 +151,6 @@ int txn_end_extop( } tag = ber_peek_tag( ber, &len ); - assert( tag == LBER_BOOLEAN ); if( tag == LBER_BOOLEAN ) { tag = ber_scanf( ber, "b", &commit ); if( tag == LBER_ERROR ) { @@ -165,13 +173,24 @@ int txn_end_extop( /* acquire connection lock */ ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex ); - if( op->o_conn->c_txn == 0 ) { + if( op->o_conn->c_txn != CONN_TXN_SPECIFY ) { rs->sr_text = "invalid transaction identifier"; rc = LDAP_X_TXN_ID_INVALID; goto done; } + op->o_conn->c_txn = CONN_TXN_SETTLE; if( commit ) { + if ( op->o_abandon ) { + } + + if( LDAP_STAILQ_EMPTY(&op->o_conn->c_txn_ops) ) { + /* no updates to commit */ + rs->sr_text = "no updates to commit"; + rc = LDAP_OPERATIONS_ERROR; + goto settled; + } + rs->sr_text = "not yet implemented"; rc = LDAP_UNWILLING_TO_PERFORM; @@ -180,7 +199,13 @@ int txn_end_extop( rc = LDAP_SUCCESS;; } - op->o_conn->c_txn = 0; +drain: + /* drain txn ops list */ + +settled: + assert( LDAP_STAILQ_EMPTY(&op->o_conn->c_txn_ops) ); + assert( op->o_conn->c_txn == CONN_TXN_SETTLE ); + op->o_conn->c_txn = CONN_TXN_INACTIVE; op->o_conn->c_txn_backend = NULL; done: