Package com.founder.fix.fixflow.core.impl.flowgraphics.svg.component

Source Code of com.founder.fix.fixflow.core.impl.flowgraphics.svg.component.SvgAssocationComponent

/**
* Copyright 1996-2013 Founder International Co.,Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* @author kenshin
*/
package com.founder.fix.fixflow.core.impl.flowgraphics.svg.component;

import java.io.InputStream;
import java.util.List;

import org.dom4j.Document;
import org.dom4j.DocumentException;

import com.founder.fix.fixflow.core.impl.flowgraphics.svg.FlowSvgUtil;
import com.founder.fix.fixflow.core.impl.flowgraphics.svg.SvgBench;
import com.founder.fix.fixflow.core.impl.flowgraphics.svg.to.SvgAssocationTo;
import com.founder.fix.fixflow.core.impl.flowgraphics.svg.to.SvgBaseTo;
import com.founder.fix.fixflow.core.impl.flowgraphics.svg.to.SvgLineBaseTo.SvgPoint;
import com.founder.fix.fixflow.core.exception.FixFlowException;
import com.founder.fix.fixflow.core.impl.util.XmlUtil;

public class SvgAssocationComponent implements ISvgComponent {

  private static String comPath = "/svgcomponent/assocation.xml";
 
  private static String path= "{path}";
 
  private static String text_x="{text_x}";
 
  private static String text_y="{text_y}";
 
  public String createComponent(SvgBaseTo svgTo) {
    String result = null;
    try {
      SvgAssocationTo assoTo = (SvgAssocationTo)svgTo;
      InputStream in = SvgBench.class.getResourceAsStream(comPath);
      Document doc = XmlUtil.read(in);
      String str = doc.getRootElement().asXML();
      str = FlowSvgUtil.replaceAll(str, id, assoTo.getId());
      str = FlowSvgUtil.replaceAll(str, text, assoTo.getLabel());
      List<SvgPoint> pointList = assoTo.getSvgPointList();
      StringBuffer pointPath = new StringBuffer();
      String textx = null;
      String texty = null;
     
      int size = pointList.size();
      for(int i=0;i<size;i++){
        if(i==0){
          pointPath.append("M");
        }else{
          pointPath.append("L");
        }
        SvgPoint point = pointList.get(i);
        pointPath.append(point.getX());
        pointPath.append(" ");
        pointPath.append(point.getY());
      }
     
      if(size!=0 && size%2==0){
        SvgPoint leftPoint = pointList.get(size/2-1);
        SvgPoint rightPoint = pointList.get(size/2);
        textx = String.valueOf((leftPoint.getX()+rightPoint.getX())/2);
        texty = String.valueOf((leftPoint.getY()+rightPoint.getY())/2);
      }else{
        int position = size/2;
        SvgPoint middlePoint = pointList.get(position);
        textx = String.valueOf(middlePoint.getX());
        texty = String.valueOf(middlePoint.getY());
      }
     
      str = FlowSvgUtil.replaceAll(str, path, pointPath.toString());
      str = FlowSvgUtil.replaceAll(str, text_x, textx);
      str = FlowSvgUtil.replaceAll(str, text_y, texty);
     
      result = str;
    } catch (DocumentException e) {
      throw new FixFlowException("",e);
    }
   
    return result;
  }

}
TOP

Related Classes of com.founder.fix.fixflow.core.impl.flowgraphics.svg.component.SvgAssocationComponent

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.