package com.artfess.activiti.def.graph;

import java.io.InputStream;
import java.util.Map;

import org.activiti.engine.impl.interceptor.CommandExecutor;
import org.springframework.stereotype.Service;

import com.artfess.activiti.cmd.GenFlowColorImageCmd;
import com.artfess.activiti.cmd.GenFlowImageCmd;
import com.artfess.activiti.util.ActivitiUtil;
import com.artfess.bpm.natapi.graph.NatProcessImageService;

@Service
public class FlowImageService  implements NatProcessImageService{
	@Override
	public InputStream getProcessImageByBpmnXml(String bpmnXml) {
		CommandExecutor commandExecutor=ActivitiUtil.getCommandExecutor();
		InputStream inputStream= commandExecutor.execute(new GenFlowImageCmd(bpmnXml));
		return inputStream;
	}

	@Override
	public InputStream getProcessImageByBpmnXml(String bpmnXml, Map<String, String> colorMap) {
		CommandExecutor commandExecutor=ActivitiUtil.getCommandExecutor();
		InputStream inputStream= commandExecutor.execute(new GenFlowColorImageCmd(bpmnXml, colorMap));
		return inputStream;
	}
}
