mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-29 21:00:54 +00:00
feat(postgres): add geometry polygon (#3769)
* feat: add polygon * test: paths for pgpoints in polygon test * fix: import typo * chore(Sqlite): remove ci.db from repo (#3768) * fix: CI * Fix breakage from Rustup 1.28 <https://blog.rust-lang.org/2025/03/02/Rustup-1.28.0.html> * Let `Swatinem/rust-cache` generate cache keys * fix(ci): upgrade Ubuntu image to 24.04 For some reason the `cargo +beta clippy` step is failing because `libsqlite3-sys` starts requiring Glibc >= 2.39 but I don't have time to figure out why and I can't reproduce it in a clean environment. --------- Co-authored-by: joeydewaal <99046430+joeydewaal@users.noreply.github.com> Co-authored-by: Austin Bonander <austin.bonander@gmail.com>
This commit is contained in:
parent
a92626d6cc
commit
ca3a509036
@ -42,6 +42,8 @@ impl_type_checking!(
|
||||
|
||||
sqlx::postgres::types::PgPath,
|
||||
|
||||
sqlx::postgres::types::PgPolygon,
|
||||
|
||||
#[cfg(feature = "uuid")]
|
||||
sqlx::types::Uuid,
|
||||
|
||||
|
||||
@ -3,3 +3,4 @@ pub mod line;
|
||||
pub mod line_segment;
|
||||
pub mod path;
|
||||
pub mod point;
|
||||
pub mod polygon;
|
||||
|
||||
363
sqlx-postgres/src/types/geometry/polygon.rs
Normal file
363
sqlx-postgres/src/types/geometry/polygon.rs
Normal file
@ -0,0 +1,363 @@
|
||||
use crate::decode::Decode;
|
||||
use crate::encode::{Encode, IsNull};
|
||||
use crate::error::BoxDynError;
|
||||
use crate::types::{PgPoint, Type};
|
||||
use crate::{PgArgumentBuffer, PgHasArrayType, PgTypeInfo, PgValueFormat, PgValueRef, Postgres};
|
||||
use sqlx_core::bytes::Buf;
|
||||
use sqlx_core::Error;
|
||||
use std::mem;
|
||||
use std::str::FromStr;
|
||||
|
||||
const BYTE_WIDTH: usize = mem::size_of::<f64>();
|
||||
|
||||
/// ## Postgres Geometric Polygon type
|
||||
///
|
||||
/// Description: Polygon (similar to closed polygon)
|
||||
/// Representation: `((x1,y1),...)`
|
||||
///
|
||||
/// Polygons are represented by lists of points (the vertexes of the polygon). Polygons are very similar to closed paths; the essential semantic difference is that a polygon is considered to include the area within it, while a path is not.
|
||||
/// An important implementation difference between polygons and paths is that the stored representation of a polygon includes its smallest bounding box. This speeds up certain search operations, although computing the bounding box adds overhead while constructing new polygons.
|
||||
/// Values of type polygon are specified using any of the following syntaxes:
|
||||
///
|
||||
/// ```text
|
||||
/// ( ( x1 , y1 ) , ... , ( xn , yn ) )
|
||||
/// ( x1 , y1 ) , ... , ( xn , yn )
|
||||
/// ( x1 , y1 , ... , xn , yn )
|
||||
/// x1 , y1 , ... , xn , yn
|
||||
/// ```
|
||||
///
|
||||
/// where the points are the end points of the line segments comprising the boundary of the polygon.
|
||||
///
|
||||
/// Seeh ttps://www.postgresql.org/docs/16/datatype-geometric.html#DATATYPE-POLYGON
|
||||
#[derive(Debug, Clone, PartialEq)]
|
||||
pub struct PgPolygon {
|
||||
pub points: Vec<PgPoint>,
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
|
||||
struct Header {
|
||||
length: usize,
|
||||
}
|
||||
|
||||
impl Type<Postgres> for PgPolygon {
|
||||
fn type_info() -> PgTypeInfo {
|
||||
PgTypeInfo::with_name("polygon")
|
||||
}
|
||||
}
|
||||
|
||||
impl PgHasArrayType for PgPolygon {
|
||||
fn array_type_info() -> PgTypeInfo {
|
||||
PgTypeInfo::with_name("_polygon")
|
||||
}
|
||||
}
|
||||
|
||||
impl<'r> Decode<'r, Postgres> for PgPolygon {
|
||||
fn decode(value: PgValueRef<'r>) -> Result<Self, Box<dyn std::error::Error + Send + Sync>> {
|
||||
match value.format() {
|
||||
PgValueFormat::Text => Ok(PgPolygon::from_str(value.as_str()?)?),
|
||||
PgValueFormat::Binary => Ok(PgPolygon::from_bytes(value.as_bytes()?)?),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl<'q> Encode<'q, Postgres> for PgPolygon {
|
||||
fn produces(&self) -> Option<PgTypeInfo> {
|
||||
Some(PgTypeInfo::with_name("polygon"))
|
||||
}
|
||||
|
||||
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> Result<IsNull, BoxDynError> {
|
||||
self.serialize(buf)?;
|
||||
Ok(IsNull::No)
|
||||
}
|
||||
}
|
||||
|
||||
impl FromStr for PgPolygon {
|
||||
type Err = Error;
|
||||
|
||||
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
||||
let sanitised = s.replace(['(', ')', '[', ']', ' '], "");
|
||||
let parts = sanitised.split(',').collect::<Vec<_>>();
|
||||
|
||||
let mut points = vec![];
|
||||
|
||||
if parts.len() % 2 != 0 {
|
||||
return Err(Error::Decode(
|
||||
format!("Unmatched pair in POLYGON: {}", s).into(),
|
||||
));
|
||||
}
|
||||
|
||||
for chunk in parts.chunks_exact(2) {
|
||||
if let [x_str, y_str] = chunk {
|
||||
let x = parse_float_from_str(x_str, "could not get x")?;
|
||||
let y = parse_float_from_str(y_str, "could not get y")?;
|
||||
|
||||
let point = PgPoint { x, y };
|
||||
points.push(point);
|
||||
}
|
||||
}
|
||||
|
||||
if !points.is_empty() {
|
||||
return Ok(PgPolygon { points });
|
||||
}
|
||||
|
||||
Err(Error::Decode(
|
||||
format!("could not get polygon from {}", s).into(),
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
impl PgPolygon {
|
||||
fn header(&self) -> Header {
|
||||
Header {
|
||||
length: self.points.len(),
|
||||
}
|
||||
}
|
||||
|
||||
fn from_bytes(mut bytes: &[u8]) -> Result<Self, BoxDynError> {
|
||||
let header = Header::try_read(&mut bytes)?;
|
||||
|
||||
if bytes.len() != header.data_size() {
|
||||
return Err(format!(
|
||||
"expected {} bytes after header, got {}",
|
||||
header.data_size(),
|
||||
bytes.len()
|
||||
)
|
||||
.into());
|
||||
}
|
||||
|
||||
if bytes.len() % BYTE_WIDTH * 2 != 0 {
|
||||
return Err(format!(
|
||||
"data length not divisible by pairs of {BYTE_WIDTH}: {}",
|
||||
bytes.len()
|
||||
)
|
||||
.into());
|
||||
}
|
||||
|
||||
let mut out_points = Vec::with_capacity(bytes.len() / (BYTE_WIDTH * 2));
|
||||
while bytes.has_remaining() {
|
||||
let point = PgPoint {
|
||||
x: bytes.get_f64(),
|
||||
y: bytes.get_f64(),
|
||||
};
|
||||
out_points.push(point)
|
||||
}
|
||||
Ok(PgPolygon { points: out_points })
|
||||
}
|
||||
|
||||
fn serialize(&self, buff: &mut PgArgumentBuffer) -> Result<(), BoxDynError> {
|
||||
let header = self.header();
|
||||
buff.reserve(header.data_size());
|
||||
header.try_write(buff)?;
|
||||
|
||||
for point in &self.points {
|
||||
buff.extend_from_slice(&point.x.to_be_bytes());
|
||||
buff.extend_from_slice(&point.y.to_be_bytes());
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
fn serialize_to_vec(&self) -> Vec<u8> {
|
||||
let mut buff = PgArgumentBuffer::default();
|
||||
self.serialize(&mut buff).unwrap();
|
||||
buff.to_vec()
|
||||
}
|
||||
}
|
||||
|
||||
impl Header {
|
||||
const HEADER_WIDTH: usize = mem::size_of::<i8>() + mem::size_of::<i32>();
|
||||
|
||||
fn data_size(&self) -> usize {
|
||||
self.length * BYTE_WIDTH * 2
|
||||
}
|
||||
|
||||
fn try_read(buf: &mut &[u8]) -> Result<Self, String> {
|
||||
if buf.len() < Self::HEADER_WIDTH {
|
||||
return Err(format!(
|
||||
"expected polygon data to contain at least {} bytes, got {}",
|
||||
Self::HEADER_WIDTH,
|
||||
buf.len()
|
||||
));
|
||||
}
|
||||
|
||||
let length = buf.get_i32();
|
||||
|
||||
let length = usize::try_from(length).ok().ok_or_else(|| {
|
||||
format!(
|
||||
"received polygon with length: {length}. Expected length between 0 and {}",
|
||||
usize::MAX
|
||||
)
|
||||
})?;
|
||||
|
||||
Ok(Self { length })
|
||||
}
|
||||
|
||||
fn try_write(&self, buff: &mut PgArgumentBuffer) -> Result<(), String> {
|
||||
let length = i32::try_from(self.length).map_err(|_| {
|
||||
format!(
|
||||
"polygon length exceeds allowed maximum ({} > {})",
|
||||
self.length,
|
||||
i32::MAX
|
||||
)
|
||||
})?;
|
||||
|
||||
buff.extend(length.to_be_bytes());
|
||||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
fn parse_float_from_str(s: &str, error_msg: &str) -> Result<f64, Error> {
|
||||
s.parse().map_err(|_| Error::Decode(error_msg.into()))
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod polygon_tests {
|
||||
|
||||
use std::str::FromStr;
|
||||
|
||||
use crate::types::PgPoint;
|
||||
|
||||
use super::PgPolygon;
|
||||
|
||||
const POLYGON_BYTES: &[u8] = &[
|
||||
0, 0, 0, 12, 192, 0, 0, 0, 0, 0, 0, 0, 192, 8, 0, 0, 0, 0, 0, 0, 191, 240, 0, 0, 0, 0, 0,
|
||||
0, 192, 8, 0, 0, 0, 0, 0, 0, 191, 240, 0, 0, 0, 0, 0, 0, 191, 240, 0, 0, 0, 0, 0, 0, 63,
|
||||
240, 0, 0, 0, 0, 0, 0, 63, 240, 0, 0, 0, 0, 0, 0, 63, 240, 0, 0, 0, 0, 0, 0, 64, 8, 0, 0,
|
||||
0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 64, 8, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 192,
|
||||
8, 0, 0, 0, 0, 0, 0, 63, 240, 0, 0, 0, 0, 0, 0, 192, 8, 0, 0, 0, 0, 0, 0, 63, 240, 0, 0, 0,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 191, 240, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 191,
|
||||
240, 0, 0, 0, 0, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 192, 0, 0, 0, 0,
|
||||
0, 0, 0,
|
||||
];
|
||||
|
||||
#[test]
|
||||
fn can_deserialise_polygon_type_bytes() {
|
||||
let polygon = PgPolygon::from_bytes(POLYGON_BYTES).unwrap();
|
||||
assert_eq!(
|
||||
polygon,
|
||||
PgPolygon {
|
||||
points: vec![
|
||||
PgPoint { x: -2., y: -3. },
|
||||
PgPoint { x: -1., y: -3. },
|
||||
PgPoint { x: -1., y: -1. },
|
||||
PgPoint { x: 1., y: 1. },
|
||||
PgPoint { x: 1., y: 3. },
|
||||
PgPoint { x: 2., y: 3. },
|
||||
PgPoint { x: 2., y: -3. },
|
||||
PgPoint { x: 1., y: -3. },
|
||||
PgPoint { x: 1., y: 0. },
|
||||
PgPoint { x: -1., y: 0. },
|
||||
PgPoint { x: -1., y: -2. },
|
||||
PgPoint { x: -2., y: -2. }
|
||||
]
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn can_deserialise_polygon_type_str_first_syntax() {
|
||||
let polygon = PgPolygon::from_str("[( 1, 2), (3, 4 )]").unwrap();
|
||||
assert_eq!(
|
||||
polygon,
|
||||
PgPolygon {
|
||||
points: vec![PgPoint { x: 1., y: 2. }, PgPoint { x: 3., y: 4. }]
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn can_deserialise_polygon_type_str_second_syntax() {
|
||||
let polygon = PgPolygon::from_str("(( 1, 2), (3, 4 ))").unwrap();
|
||||
assert_eq!(
|
||||
polygon,
|
||||
PgPolygon {
|
||||
points: vec![PgPoint { x: 1., y: 2. }, PgPoint { x: 3., y: 4. }]
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn cannot_deserialise_polygon_type_str_uneven_points_first_syntax() {
|
||||
let input_str = "[( 1, 2), (3)]";
|
||||
let polygon = PgPolygon::from_str(input_str);
|
||||
|
||||
assert!(polygon.is_err());
|
||||
|
||||
if let Err(err) = polygon {
|
||||
assert_eq!(
|
||||
err.to_string(),
|
||||
format!("error occurred while decoding: Unmatched pair in POLYGON: {input_str}")
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn cannot_deserialise_polygon_type_str_invalid_numbers() {
|
||||
let input_str = "[( 1, 2), (2, three)]";
|
||||
let polygon = PgPolygon::from_str(input_str);
|
||||
|
||||
assert!(polygon.is_err());
|
||||
|
||||
if let Err(err) = polygon {
|
||||
assert_eq!(
|
||||
err.to_string(),
|
||||
format!("error occurred while decoding: could not get y")
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn can_deserialise_polygon_type_str_third_syntax() {
|
||||
let polygon = PgPolygon::from_str("(1, 2), (3, 4 )").unwrap();
|
||||
assert_eq!(
|
||||
polygon,
|
||||
PgPolygon {
|
||||
points: vec![PgPoint { x: 1., y: 2. }, PgPoint { x: 3., y: 4. }]
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn can_deserialise_polygon_type_str_fourth_syntax() {
|
||||
let polygon = PgPolygon::from_str("1, 2, 3, 4").unwrap();
|
||||
assert_eq!(
|
||||
polygon,
|
||||
PgPolygon {
|
||||
points: vec![PgPoint { x: 1., y: 2. }, PgPoint { x: 3., y: 4. }]
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn can_deserialise_polygon_type_str_float() {
|
||||
let polygon = PgPolygon::from_str("(1.1, 2.2), (3.3, 4.4)").unwrap();
|
||||
assert_eq!(
|
||||
polygon,
|
||||
PgPolygon {
|
||||
points: vec![PgPoint { x: 1.1, y: 2.2 }, PgPoint { x: 3.3, y: 4.4 }]
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn can_serialise_polygon_type() {
|
||||
let polygon = PgPolygon {
|
||||
points: vec![
|
||||
PgPoint { x: -2., y: -3. },
|
||||
PgPoint { x: -1., y: -3. },
|
||||
PgPoint { x: -1., y: -1. },
|
||||
PgPoint { x: 1., y: 1. },
|
||||
PgPoint { x: 1., y: 3. },
|
||||
PgPoint { x: 2., y: 3. },
|
||||
PgPoint { x: 2., y: -3. },
|
||||
PgPoint { x: 1., y: -3. },
|
||||
PgPoint { x: 1., y: 0. },
|
||||
PgPoint { x: -1., y: 0. },
|
||||
PgPoint { x: -1., y: -2. },
|
||||
PgPoint { x: -2., y: -2. },
|
||||
],
|
||||
};
|
||||
assert_eq!(polygon.serialize_to_vec(), POLYGON_BYTES,)
|
||||
}
|
||||
}
|
||||
@ -26,6 +26,7 @@
|
||||
//! | [`PgLSeg`] | LSEG |
|
||||
//! | [`PgBox`] | BOX |
|
||||
//! | [`PgPath`] | PATH |
|
||||
//! | [`PgPolygon`] | POLYGON |
|
||||
//! | [`PgHstore`] | HSTORE |
|
||||
//!
|
||||
//! <sup>1</sup> SQLx generally considers `CITEXT` to be compatible with `String`, `&str`, etc.,
|
||||
@ -265,6 +266,7 @@ pub use geometry::line::PgLine;
|
||||
pub use geometry::line_segment::PgLSeg;
|
||||
pub use geometry::path::PgPath;
|
||||
pub use geometry::point::PgPoint;
|
||||
pub use geometry::polygon::PgPolygon;
|
||||
pub use geometry::r#box::PgBox;
|
||||
pub use hstore::PgHstore;
|
||||
pub use interval::PgInterval;
|
||||
|
||||
@ -530,6 +530,15 @@ test_type!(path<sqlx::postgres::types::PgPath>(Postgres,
|
||||
"path('[(1.0, 2.0), (3.0,4.0)]')" == sqlx::postgres::types::PgPath { closed: false, points: vec![ sqlx::postgres::types::PgPoint { x: 1., y: 2. }, sqlx::postgres::types::PgPoint { x: 3. , y: 4. } ]},
|
||||
));
|
||||
|
||||
#[cfg(any(postgres_12, postgres_13, postgres_14, postgres_15))]
|
||||
test_type!(polygon<sqlx::postgres::types::PgPolygon>(Postgres,
|
||||
"polygon('((-2,-3),(-1,-3),(-1,-1),(1,1),(1,3),(2,3),(2,-3),(1,-3),(1,0),(-1,0),(-1,-2),(-2,-2))')" ~= sqlx::postgres::types::PgPolygon { points: vec![
|
||||
sqlx::postgres::types::PgPoint { x: -2., y: -3. }, sqlx::postgres::types::PgPoint { x: -1., y: -3. }, sqlx::postgres::types::PgPoint { x: -1., y: -1. }, sqlx::postgres::types::PgPoint { x: 1., y: 1. },
|
||||
sqlx::postgres::types::PgPoint { x: 1., y: 3. }, sqlx::postgres::types::PgPoint { x: 2., y: 3. }, sqlx::postgres::types::PgPoint { x: 2., y: -3. }, sqlx::postgres::types::PgPoint { x: 1., y: -3. },
|
||||
sqlx::postgres::types::PgPoint { x: 1., y: 0. }, sqlx::postgres::types::PgPoint { x: -1., y: 0. }, sqlx::postgres::types::PgPoint { x: -1., y: -2. }, sqlx::postgres::types::PgPoint { x: -2., y: -2. },
|
||||
]},
|
||||
));
|
||||
|
||||
#[cfg(feature = "rust_decimal")]
|
||||
test_type!(decimal<sqlx::types::Decimal>(Postgres,
|
||||
"0::numeric" == sqlx::types::Decimal::from_str("0").unwrap(),
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user