Skip to content

Commit

Permalink
add post
Browse files Browse the repository at this point in the history
  • Loading branch information
llohellohe committed Jan 2, 2014
1 parent 86f6fc3 commit 0dcba61
Show file tree
Hide file tree
Showing 2 changed files with 259 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
/*
* Copyright 1999-2010 Alibaba.com All right reserved. This software is the
* confidential and proprietary information of Alibaba.com ("Confidential
* Information"). You shall not disclose such Confidential Information and shall
* use it only in accordance with the terms of the license agreement you entered
* into with Alibaba.com.
*/
package yangqi.zookeeper.example.masterworker;

import java.io.IOException;

import org.apache.zookeeper.AsyncCallback.DataCallback;
import org.apache.zookeeper.AsyncCallback.StringCallback;
import org.apache.zookeeper.CreateMode;
import org.apache.zookeeper.KeeperException.Code;
import org.apache.zookeeper.ZooDefs;
import org.apache.zookeeper.ZooKeeper;
import org.apache.zookeeper.data.Stat;

/**
* 类AsynCreate.java的实现描述:TODO 类实现描述
* @author yangqi Jan 2, 2014 9:39:02 PM
*/
public class AsynCreate {

/**
* @param args
* @throws IOException
* @throws InterruptedException
*/
public static void main(String[] args) throws IOException, InterruptedException {
ZooKeeper zookeeper = new ZooKeeper("localhost:2181", 200000, null);

zookeeper.create("/mas", "sid-o2".getBytes(), ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.EPHEMERAL,
new StringCallback() {

@Override
public void processResult(int rc, String path, Object ctx, String name) {
Code code = Code.get(rc);
switch (code) {
case OK:
System.out.println(code);
break;
case NODEEXISTS:
System.out.println(code);
break;
case SESSIONEXPIRED:
System.out.println(code);
break;
default:
System.out.println("unknow " + code);
}

}
}, null);

DataCallback callback = new DataCallback() {

@Override
public void processResult(int rc, String path, Object ctx, byte[] data, Stat stat) {
Code code = Code.get(rc);
System.out.println("code for check " + code);
switch (code) {
case OK:
break;
case NONODE:
break;
case NODEEXISTS:
break;
case SESSIONEXPIRED:
break;
default:
}

}

};

zookeeper.getData("/mas", true, callback, null);

Thread.sleep(200000);

}

}
174 changes: 174 additions & 0 deletions src/main/java/yangqi/zookeeper/example/masterworker/AsynMaster.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,174 @@
/*
* Copyright 1999-2010 Alibaba.com All right reserved. This software is the
* confidential and proprietary information of Alibaba.com ("Confidential
* Information"). You shall not disclose such Confidential Information and shall
* use it only in accordance with the terms of the license agreement you entered
* into with Alibaba.com.
*/
package yangqi.zookeeper.example.masterworker;

import java.io.IOException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

import org.apache.zookeeper.AsyncCallback.DataCallback;
import org.apache.zookeeper.AsyncCallback.StringCallback;
import org.apache.zookeeper.CreateMode;
import org.apache.zookeeper.KeeperException.Code;
import org.apache.zookeeper.WatchedEvent;
import org.apache.zookeeper.Watcher;
import org.apache.zookeeper.ZooDefs;
import org.apache.zookeeper.ZooKeeper;
import org.apache.zookeeper.data.Stat;

/**
* 类Master.java的实现描述:TODO 类实现描述
* @author yangqi Jan 1, 2014 1:37:01 PM
*/
public class AsynMaster implements Watcher, Runnable {

private ZooKeeper zk;

private String connectString;

private String serverId;

private static final String MASTER_PATH = "/master";

public AsynMaster(String connectString,String serverId) {
this.connectString = connectString;
this.serverId = serverId;
}

@Override
public void process(WatchedEvent event) {
System.out.println(event);
}

public void startZK() {
try {
zk = new ZooKeeper(connectString, 2000, this);
} catch (IOException e) {
e.printStackTrace();
}
}

public void stopZK() {
try {
zk.close();
} catch (InterruptedException e) {
e.printStackTrace();
}
}

public void createMaterNode(){
String ctx = "ctx for " + serverId;
zk.create(MASTER_PATH, serverId.getBytes(), ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.EPHEMERAL,
new StringCallback() {
@Override
public void processResult(int rc, String path, Object ctx, String name) {
Code code = Code.get(rc);
switch (code) {
case OK:
log("create master ok");
sleep(10);
stopZK();
break;
case NODEEXISTS:
log("node exists");
checkForMaster();
break;
case SESSIONEXPIRED:
log("session expired in create");
sleep(10);
break;
default:
checkForMaster();
log("code is " + code);
}

}
}, ctx);
}

public void checkForMaster() {
DataCallback callback = new DataCallback() {

@Override
public void processResult(int rc, String path, Object ctx, byte[] data, Stat stat) {
Code code = Code.get(rc);
switch (code) {
case OK:
if (new String(data).equals(serverId)) {
System.out.println("stop now");
stopZK();
} else {
checkForMaster();
}
break;
case NONODE:
log("node not exists");
createMaterNode();
break;
case NODEEXISTS:
log("node exists");
createMaterNode();
break;
case SESSIONEXPIRED:
log("session expired in check");
sleep(10);
break;
default:
log("code is " + code);
checkForMaster();
}

}

};

zk.getData(MASTER_PATH, true, callback, null);

}

public void registerForMaster() {
checkForMaster();
}


@Override
public void run() {

startZK();

registerForMaster();


}

private static void sleep(int seconds) {
try {
Thread.sleep(1000 * seconds);
} catch (InterruptedException e) {
e.printStackTrace();
}
}


private void log(String msg) {
System.out.println(String.format("serverId %s %s", serverId, msg));
}

public static void main(String[] args) throws InterruptedException {

int masterCount = 3;
ExecutorService service = Executors.newFixedThreadPool(masterCount);
for (int i = 0; i < masterCount; i++) {
AsynMaster master = new AsynMaster("localhost:2181", "o2-" + i);
service.submit(master);
}

sleep(1000);

}
}

0 comments on commit 0dcba61

Please sign in to comment.