view src/main/java/alice/test/topology/aquarium/fx/CheckMyName.java @ 387:1cbac5818dca multicast

add scope dataSegment
author sugi
date Mon, 16 Jun 2014 16:59:39 +0900
parents 56d4f93a3921
children e29cf08ad1f3
line wrap: on
line source

package alice.test.topology.aquarium.fx;

import java.util.ArrayList;
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]+)$");
	private int INNER_WIDTH = 10;
	
	public CheckMyName(){
		host.setKey("host");
	}

	@Override
	public void run() {
		String name = host.asString();
		Matcher matcher = pattern.matcher(name);
		matcher.find();

		// use view scope
		int num = new Integer(matcher.group(2));
		// scope: A_n = 5 + 10(n - 1);
		int scope = 5 + INNER_WIDTH * (num - 1);
		ods.put("startX", scope);
		
		if (num == 0){ // root node
			new RegisterList();
			ods.put("registeredList", new ArrayList<FishInfo>());
		} else {
			new ReceiveRegisterList();
		}

		FishInfo fishInfo = new FishInfo(0,0,0);
		fishInfo.setName(name);

		ods.put("fishData", fishInfo);

		new CreateObject();
		new AddObject();

		String[] args = {name};
		Aquarium.main(args);
	}
}