Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
00ee67de
Commit
00ee67de
authored
Mar 28, 2013
by
Georgi Kodinov
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
62db3380
e927bda6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
55 additions
and
23 deletions
+55
-23
sql/spatial.cc
sql/spatial.cc
+48
-19
sql/spatial.h
sql/spatial.h
+7
-4
No files found.
sql/spatial.cc
View file @
00ee67de
...
...
@@ -377,19 +377,13 @@ const char *Geometry::get_mbr_for_points(MBR *mbr, const char *data,
uint
offset
)
const
{
uint32
points
;
size_t
points_available
;
/* read number of points */
if
(
no_data
(
data
,
4
))
return
0
;
points
=
uint4korr
(
data
);
data
+=
4
;
/* can't use any of the helper functions due to the offset */
points_available
=
data
<=
m_data_end
?
(
m_data_end
-
data
)
/
(
POINT_DATA_SIZE
+
offset
)
:
0
;
if
(
points_available
<
points
)
if
(
not_enough_points
(
data
,
points
,
offset
))
return
0
;
/* Calculate MBR for points */
...
...
@@ -472,9 +466,16 @@ const Geometry::Class_info *Gis_point::get_class_info() const
uint32
Gis_line_string
::
get_data_size
()
const
{
size_t
n_points
;
if
(
no_data
(
m_data
,
4
))
return
GET_SIZE_ERROR
;
return
4
+
uint4korr
(
m_data
)
*
POINT_DATA_SIZE
;
n_points
=
uint4korr
(
m_data
);
if
(
not_enough_points
(
m_data
+
4
,
n_points
))
return
GET_SIZE_ERROR
;
return
4
+
n_points
*
POINT_DATA_SIZE
;
}
...
...
@@ -687,10 +688,18 @@ uint32 Gis_polygon::get_data_size() const
while
(
n_linear_rings
--
)
{
size_t
n_points
;
if
(
no_data
(
data
,
4
))
return
GET_SIZE_ERROR
;
data
+=
4
+
uint4korr
(
data
)
*
POINT_DATA_SIZE
;
n_points
=
uint4korr
(
data
);
data
+=
4
;
if
(
not_enough_points
(
data
,
n_points
))
return
GET_SIZE_ERROR
;
data
+=
n_points
*
POINT_DATA_SIZE
;
}
return
(
uint32
)
(
data
-
m_data
);
}
...
...
@@ -1020,9 +1029,17 @@ const Geometry::Class_info *Gis_polygon::get_class_info() const
uint32
Gis_multi_point
::
get_data_size
()
const
{
size_t
n_points
;
if
(
no_data
(
m_data
,
4
))
return
GET_SIZE_ERROR
;
return
4
+
uint4korr
(
m_data
)
*
(
POINT_DATA_SIZE
+
WKB_HEADER_SIZE
);
n_points
=
uint4korr
(
m_data
);
if
(
not_enough_points
(
m_data
+
4
,
n_points
,
WKB_HEADER_SIZE
))
return
GET_SIZE_ERROR
;
return
4
+
n_points
*
(
POINT_DATA_SIZE
+
WKB_HEADER_SIZE
);
}
...
...
@@ -1086,7 +1103,6 @@ uint Gis_multi_point::init_from_wkb(const char *wkb, uint len, wkbByteOrder bo,
bool
Gis_multi_point
::
get_data_as_wkt
(
String
*
txt
,
const
char
**
end
)
const
{
uint32
n_points
;
size_t
points_available
;
const
char
*
data
=
m_data
;
if
(
no_data
(
data
,
4
))
...
...
@@ -1094,13 +1110,11 @@ bool Gis_multi_point::get_data_as_wkt(String *txt, const char **end) const
n_points
=
uint4korr
(
data
);
data
+=
4
;
points_available
=
data
<=
m_data_end
?
(
m_data_end
-
data
)
/
(
POINT_DATA_SIZE
+
WKB_HEADER_SIZE
)
:
0
;
/* can't use any of the helper functions due to WKB_HEADER_SIZE */
if
(
n_points
>
points_available
||
if
(
not_enough_points
(
data
,
n_points
,
WKB_HEADER_SIZE
)
||
txt
->
reserve
(((
MAX_DIGITS_IN_DOUBLE
+
1
)
*
2
+
1
)
*
n_points
))
return
1
;
*
end
=
append_points
(
txt
,
n_points
,
data
,
WKB_HEADER_SIZE
);
txt
->
length
(
txt
->
length
()
-
1
);
// Remove end ','
return
0
;
...
...
@@ -1159,10 +1173,18 @@ uint32 Gis_multi_line_string::get_data_size() const
while
(
n_line_strings
--
)
{
size_t
n_points
;
if
(
no_data
(
data
,
WKB_HEADER_SIZE
+
4
))
return
GET_SIZE_ERROR
;
data
+=
(
WKB_HEADER_SIZE
+
4
+
uint4korr
(
data
+
WKB_HEADER_SIZE
)
*
POINT_DATA_SIZE
);
n_points
=
uint4korr
(
data
+
WKB_HEADER_SIZE
);
data
+=
WKB_HEADER_SIZE
+
4
;
if
(
not_enough_points
(
data
,
n_points
))
return
GET_SIZE_ERROR
;
data
+=
n_points
*
POINT_DATA_SIZE
;
}
return
(
uint32
)
(
data
-
m_data
);
}
...
...
@@ -1414,9 +1436,16 @@ uint32 Gis_multi_polygon::get_data_size() const
while
(
n_linear_rings
--
)
{
size_t
n_points
;
if
(
no_data
(
data
,
4
))
return
GET_SIZE_ERROR
;
data
+=
4
+
uint4korr
(
data
)
*
POINT_DATA_SIZE
;
return
GET_SIZE_ERROR
;
n_points
=
uint4korr
(
data
);
data
+=
4
;
if
(
not_enough_points
(
data
,
n_points
))
return
GET_SIZE_ERROR
;
data
+=
n_points
*
POINT_DATA_SIZE
;
}
}
return
(
uint32
)
(
data
-
m_data
);
...
...
sql/spatial.h
View file @
00ee67de
...
...
@@ -339,14 +339,17 @@ protected:
Need to perform the calculation in logical units, since multiplication
can overflow the size data type.
@arg data pointer to the begining of the points array
@arg expected_points number of points expected
@arg data pointer to the begining of the points array
@arg expected_points number of points expected
@arg extra_point_space extra space for each point element in the array
@return true if there are not enough points
*/
inline
bool
not_enough_points
(
const
char
*
data
,
uint32
expected_points
)
const
inline
bool
not_enough_points
(
const
char
*
data
,
uint32
expected_points
,
uint32
extra_point_space
=
0
)
const
{
return
(
m_data_end
<
data
||
(
expected_points
>
((
m_data_end
-
data
)
/
POINT_DATA_SIZE
)));
(
expected_points
>
((
m_data_end
-
data
)
/
(
POINT_DATA_SIZE
+
extra_point_space
))));
}
const
char
*
m_data
;
const
char
*
m_data_end
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment