blob: 7c833b80bd36cdb74668deaae7faca5c4d1e30a6 [file] [log] [blame]
/**
* @@@ START COPYRIGHT @@@
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
* @@@ END COPYRIGHT @@@
**/
package org.apache.hadoop.hbase.coprocessor.transactional;
import java.io.IOException;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
public class SsccTableClient10 {
// ------ for concurrent ------
private static CountDownLatch cdl = new CountDownLatch(2);
private static Lock lock = new ReentrantLock();
private static Condition t1Condition = lock.newCondition();
private static Condition t2Condition = lock.newCondition();
protected final Log log = LogFactory.getLog(getClass());
private boolean first = false;
private boolean second = false;
private static int successNum = 0;
/**
* concurrency writes
*
* @param args
* @throws Exception
*/
static public void main(String[] args) throws Exception {
SsccTableClient10 cilent = new SsccTableClient10();
cilent.concurrencyWrites1();
System.out.println("=========================================");
System.out.println(" ");
System.out.println("TOTAL : 1 . SUCCESS : " + successNum + " FAILURE : " + (1 - successNum));
System.out.println(" ");
System.out.println("=========================================");
}
/**
* main--put[v1]<br/>
* t1-----------begin---get[v1]--------------------------------------------
* -------------------------------------------------------------get[v1]<br/>
* t2------------------------------begin---put[v2]-commit---begin---put[v3]
* ---commit---begin---put[v4]---commit--get[v4]<br/>
* main---get[v4]
*/
private void concurrencyWrites1() {
try {
System.out.println("Starting SsccTableClient10: concurrencyWrites1");
System.out.println("main--put[v1]");
System.out
.println("t1-----------begin---get[v1]---------------------------------------------------------------------------------------------------------get[v1]");
System.out
.println("t2------------------------------begin---put[v2]-commit---begin---put[v3]---commit---begin---put[v4]---commit��get[v4]");
System.out.println("main--get[v4]");
SsccTableClientUtils.initialize();
putValue();
final P2Sscc01 t1 = new P2Sscc01();
final P2Sscc02 t2 = new P2Sscc02();
new Thread(new Runnable() {
@Override
public void run() {
first = t1.doWork();
System.out.println("Sscc1 finished");
cdl.countDown();
}
}, "Sscc1").start();
// to make sure t2 is later than t1
try {
Thread.sleep(1000);
} catch (InterruptedException e1) {
e1.printStackTrace();
}
new Thread(new Runnable() {
@Override
public void run() {
second = t2.doWork();
System.out.println("Sscc2 finished");
cdl.countDown();
}
}, "Sscc2").start();
cdl.await();
SsccTableClientUtils.testSsccBeginTransaction();
Integer[] result = SsccTableClientUtils.testSsccGet();
SsccTableClientUtils.testSsccCommitIfPossible();
System.out.println("Finish SsccTableClient10: concurrencyWrites1");
if (result.length == 1 && result[0] == 4 && first == true && second == true) {
successNum++;
System.out.println("=========================================");
System.out.println(" ");
System.out.println("SUCCESS");
System.out.println(" ");
System.out.println("=========================================");
} else {
System.out.println("=========================================");
System.out.println(" ");
System.out.println("FAILURE");
System.out.println(" ");
System.out.println("=========================================");
}
} catch (Exception e) {
e.printStackTrace();
}
}
private void putValue() throws IOException {
SsccTableClientUtils.testSsccBeginTransaction();
SsccTableClientUtils.testSsccPut(SsccTableClientUtils.VALUE1);
SsccTableClientUtils.testSsccCommitIfPossible();
}
static class P2Sscc01 {
protected final Log log = LogFactory.getLog(getClass());
public boolean doWork() {
boolean first = false;
try {
lock.lock();
// start transaction
SsccTableClientUtils.testSsccBeginTransaction();
Integer[] r1 = SsccTableClientUtils.testSsccGet();
if (r1.length == 1 && r1[0] == 1) {
first = true;
}
System.out.println("Sscc1 had begun transaction & read v1 and waits for Sscc2 to do multiple write.");
t2Condition.signal();
t1Condition.await();
// System.out.println("================");Thread.sleep(5000);
Integer[] r2 = SsccTableClientUtils.testSsccGet();
if (r2.length != 1 || r2[0] != 1 || first != true) {
first = false;
}
// commit
SsccTableClientUtils.testSsccCommitIfPossible();
} catch (Exception e) {
System.out.println("Error in Sscc1: ");
e.printStackTrace();
} finally {
lock.unlock();
}
return first;
}
}
static class P2Sscc02 {
protected final Log log = LogFactory.getLog(getClass());
public boolean doWork() {
boolean second = false;
try {
lock.lock();
// put v2
SsccTableClientUtils.testSsccBeginTransaction();
SsccTableClientUtils.testSsccPut(SsccTableClientUtils.VALUE2);
SsccTableClientUtils.testSsccCommitIfPossible();
// put v3
SsccTableClientUtils.testSsccBeginTransaction();
SsccTableClientUtils.testSsccPut(SsccTableClientUtils.VALUE3);
SsccTableClientUtils.testSsccCommitIfPossible();
// put v4
SsccTableClientUtils.testSsccBeginTransaction();
SsccTableClientUtils.testSsccPut(SsccTableClientUtils.VALUE4);
SsccTableClientUtils.testSsccCommitIfPossible();
// get v4
SsccTableClientUtils.testSsccBeginTransaction();
Integer[] r1 = SsccTableClientUtils.testSsccGet();
if (r1.length == 1 && r1[0] == 4) {
second = true;
}
SsccTableClientUtils.testSsccCommitIfPossible();
System.out.println("Sscc2 had put multiple value & commited and waits for Sscc1 to commit");
} catch (Exception e) {
System.out.println("Error in Sscc2: ");
e.printStackTrace();
} finally {
t1Condition.signal();
lock.unlock();
}
return second;
}
}
}