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
| public class Zkock implements Lock { private String path; private String name; private String lockPath ; private ZooKeeper zk; private int state ; public ZkLock(String path, String name, ZooKeeper zk) {} public boolean lock() { boolean flag= lockInternal(); if(flag) state++; return flag; } private boolean lockInternal(){ try { String result = zk.create(getPath(), "".getBytes(), ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.EPHEMERAL_SEQUENTIAL); this.lockPath = result; List<String> waits = zk.getChildren(path, false); Collections.sort(waits); String[] paths=result.split("/"); String curNodeName = paths[paths.length-1]; if (waits.get(0).equalsIgnoreCase(curNodeName)) return true; CountDownLatch latch = new CountDownLatch(1); for (int i = 0; i < waits.size(); i++) { String cur = waits.get(i); if (!cur.equalsIgnoreCase(curNodeName)) continue; String prePath = path+"/"+waits.get(i - 1); zk.exists(prePath, new Watcher() { public void process(WatchedEvent event) { latch.countDown(); } }); break; } latch.await(); return true; } catch (Exception e) { System.out.println(e.getMessage()); } return false; } private String getPath() { return path+"/"+name; } public boolean unlock() { if(state>1){ state--; return true; } try { Stat stat=zk.exists(lockPath,false); int version= stat.getVersion(); zk.delete(lockPath,version); state--; return true; } catch (Exception e) { System.out.println("unlock:"+lockPath+" ,exception,"); } return false; } }
|