Mercurial > hg > Members > sugi > javafx
view src/alice/test/topology/aquarium/fx/CheckMyName.java @ 26:650c0f1270a3
add package alice.topology.manager.keeparive
author | sugi |
---|---|
date | Tue, 05 Nov 2013 03:57:09 +0900 |
parents | b77c2c6db854 |
children |
line wrap: on
line source
package alice.test.topology.aquarium.fx; import java.util.regex.Matcher; import java.util.regex.Pattern; import alice.codesegment.CodeSegment; import alice.datasegment.CommandType; import alice.datasegment.Receiver; public class CheckMyName extends CodeSegment{ private Receiver host = ids.create(CommandType.PEEK); private Pattern pattern = Pattern.compile("^(node|cli)([0-9]+)$"); public CheckMyName(){ host.setKey("local","host"); } @Override public void run() { String name = host.asString(); Matcher matcher = pattern.matcher(name); matcher.find(); System.out.println(name); new Share("MAXSIZE"); int num = new Integer(matcher.group(2)); ods.put("local", "mynum", num); ods.put("local", "width", 800); ods.put("local", "objCnt", 12); if (num==0) { new TopNode(); } else { new OtherNode(); } } }