PGline.java
上传用户:psq1974
上传日期:2007-01-06
资源大小:1195k
文件大小:2k
源码类别:

mpeg/mp3

开发平台:

C/C++

  1. package postgresql.geometric;
  2. import java.io.*;
  3. import java.sql.*;
  4. import postgresql.util.*;
  5. /**
  6.  * This implements a line consisting of two points.
  7.  *
  8.  * Currently line is not yet implemented in the backend, but this class
  9.  * ensures that when it's done were ready for it.
  10.  */
  11. public class PGline extends PGobject implements Serializable,Cloneable
  12. {
  13.   /**
  14.    * These are the two points.
  15.    */
  16.   public PGpoint point[] = new PGpoint[2];
  17.   
  18.   /**
  19.    * @param x1 coordinate for first point
  20.    * @param y1 coordinate for first point
  21.    * @param x2 coordinate for second point
  22.    * @param y2 coordinate for second point
  23.    */
  24.   public PGline(double x1,double y1,double x2,double y2)
  25.   {
  26.     this(new PGpoint(x1,y1),new PGpoint(x2,y2));
  27.   }
  28.   
  29.   /**
  30.    * @param p1 first point
  31.    * @param p2 second point
  32.    */
  33.   public PGline(PGpoint p1,PGpoint p2)
  34.   {
  35.     this();
  36.     this.point[0] = p1;
  37.     this.point[1] = p2;
  38.   }
  39.   
  40.   /**
  41.    * @param s definition of the circle in PostgreSQL's syntax.
  42.    * @exception SQLException on conversion failure
  43.    */
  44.   public PGline(String s) throws SQLException
  45.   {
  46.     this();
  47.     setValue(s);
  48.   }
  49.   
  50.   /**
  51.    * reuired by the driver
  52.    */
  53.   public PGline()
  54.   {
  55.     setType("line");
  56.   }
  57.   
  58.   /**
  59.    * @param s Definition of the line segment in PostgreSQL's syntax
  60.    * @exception SQLException on conversion failure
  61.    */
  62.   public void setValue(String s) throws SQLException
  63.   {
  64.     PGtokenizer t = new PGtokenizer(PGtokenizer.removeBox(s),',');
  65.     if(t.getSize() != 2)
  66.       throw new SQLException("conversion of line failed - "+s);
  67.     
  68.     point[0] = new PGpoint(t.getToken(0));
  69.     point[1] = new PGpoint(t.getToken(1));
  70.   }
  71.   
  72.   /**
  73.    * @param obj Object to compare with
  74.    * @return true if the two boxes are identical
  75.    */
  76.   public boolean equals(Object obj)
  77.   {
  78.     if(obj instanceof PGline) {
  79.       PGline p = (PGline)obj;
  80.       return (p.point[0].equals(point[0]) && p.point[1].equals(point[1])) ||
  81. (p.point[0].equals(point[1]) && p.point[1].equals(point[0]));
  82.     }
  83.     return false;
  84.   }
  85.   
  86.   /**
  87.    * This must be overidden to allow the object to be cloned
  88.    */
  89.   public Object clone()
  90.   {
  91.     return new PGline((PGpoint)point[0].clone(),(PGpoint)point[1].clone());
  92.   }
  93.   
  94.   /**
  95.    * @return the PGline in the syntax expected by postgresql
  96.    */
  97.   public String getValue()
  98.   {
  99.     return "["+point[0]+","+point[1]+"]";
  100.   }
  101. }