1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
use libc::c_int;
use utils::{_last_null_pointer_err, _string};
use vector::layer::Layer;
use spatial_ref::SpatialRef;
use gdal_sys::{self, OGRFeatureDefnH, OGRFieldDefnH, OGRFieldType, OGRwkbGeometryType, OGRGeomFieldDefnH};
use errors::*;
pub struct Defn {
c_defn: OGRFeatureDefnH,
}
impl Defn {
pub unsafe fn _with_c_defn(c_defn: OGRFeatureDefnH) -> Defn {
Defn { c_defn }
}
pub unsafe fn c_defn(&self) -> OGRFeatureDefnH { self.c_defn }
pub fn fields(&self) -> FieldIterator {
let total = unsafe { gdal_sys::OGR_FD_GetFieldCount(self.c_defn) } as isize;
FieldIterator{
defn: self,
c_feature_defn: self.c_defn,
next_id: 0,
total
}
}
pub fn geom_fields(&self) -> GeomFieldIterator {
let total = unsafe { gdal_sys::OGR_FD_GetGeomFieldCount(self.c_defn) } as isize;
GeomFieldIterator {
defn: self,
c_feature_defn: self.c_defn,
next_id: 0,
total
}
}
pub fn from_layer(lyr: &Layer) -> Defn {
let c_defn = unsafe { gdal_sys::OGR_L_GetLayerDefn(lyr.c_layer())};
Defn { c_defn }
}
}
pub struct FieldIterator<'a> {
defn: &'a Defn,
c_feature_defn: OGRFeatureDefnH,
next_id: isize,
total: isize,
}
impl<'a> Iterator for FieldIterator<'a> {
type Item = Field<'a>;
#[inline]
fn next(&mut self) -> Option<Field<'a>> {
if self.next_id == self.total {
return None;
}
let field = Field{
_defn: self.defn,
c_field_defn: unsafe { gdal_sys::OGR_FD_GetFieldDefn(
self.c_feature_defn,
self.next_id as c_int
) }
};
self.next_id += 1;
Some(field)
}
}
pub struct Field<'a> {
_defn: &'a Defn,
c_field_defn: OGRFieldDefnH,
}
impl<'a> Field<'a> {
pub fn name(&'a self) -> String {
let rv = unsafe { gdal_sys::OGR_Fld_GetNameRef(self.c_field_defn) };
_string(rv)
}
pub fn field_type(&'a self) -> OGRFieldType::Type {
unsafe { gdal_sys::OGR_Fld_GetType(self.c_field_defn) }
}
pub fn width(&'a self) -> i32 {
unsafe { gdal_sys::OGR_Fld_GetWidth(self.c_field_defn) }
}
pub fn precision(&'a self) -> i32 {
unsafe { gdal_sys::OGR_Fld_GetPrecision(self.c_field_defn) }
}
}
pub struct GeomFieldIterator<'a> {
defn: &'a Defn,
c_feature_defn: OGRFeatureDefnH,
next_id: isize,
total: isize,
}
impl<'a> Iterator for GeomFieldIterator<'a> {
type Item = GeomField<'a>;
#[inline]
fn next(&mut self) -> Option<GeomField<'a>> {
if self.next_id == self.total {
return None;
}
let field = GeomField{
_defn: self.defn,
c_field_defn: unsafe { gdal_sys::OGR_FD_GetGeomFieldDefn(
self.c_feature_defn,
self.next_id as c_int
) }
};
self.next_id += 1;
Some(field)
}
}
pub struct GeomField<'a> {
_defn: &'a Defn,
c_field_defn: OGRGeomFieldDefnH,
}
impl<'a> GeomField<'a> {
pub fn name(&'a self) -> String {
let rv = unsafe { gdal_sys::OGR_GFld_GetNameRef(self.c_field_defn) };
_string(rv)
}
pub fn field_type(&'a self) -> OGRwkbGeometryType::Type {
unsafe { gdal_sys::OGR_GFld_GetType(self.c_field_defn) }
}
pub fn spatial_ref(&'a self) -> Result<SpatialRef> {
let c_obj = unsafe { gdal_sys::OGR_GFld_GetSpatialRef(self.c_field_defn) };
if c_obj.is_null() {
Err(_last_null_pointer_err("OGR_GFld_GetSpatialRef"))?;
}
SpatialRef::from_c_obj(c_obj)
}
}