view src/main/java/alice/test/topology/aquarium/fx/CheckMyName.java @ 381:6adfb60766f7 multicast

add window close event
author sugi
date Tue, 10 Jun 2014 13:41:11 +0900
parents ac3cf96f4426
children 878d397904da
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|local)([0-9]+)$");
	
	public CheckMyName(){
		host.setKey("host");
	}

	@Override
	public void run() {
		String name = host.asString();
		Matcher matcher = pattern.matcher(name);
		matcher.find();
		
		// use view scope
		//String type = matcher.group(1);
		//int num = new Integer(matcher.group(2));
		
		FishInfo fishInfo = new FishInfo(0,0,0);
		fishInfo.setName(name);
		
		ods.put("fishData", fishInfo);
		
		new CreateObject();
		new AddObject();
		String[] args = {name};
		Aquarium.main(args);
	}
}