@LcdService(service=ILcdModelEncoder.class, priority=20000) public class TLcdOracleSpatialModelEncoder extends Object implements ILcdModelEncoder
ILcdModelEncoder
encodes models into Oracle Spatial
databases.
A spatial database is accessed based on a set of properties. The properties
can be passed in a Properties
object, or using a properties file
with extension "ora
".
The common properties needed to establish a connection and to specify tables,
columns, rows, etc. are the same as those for the
TLcdOracleSpatialModelDecoder
. In addition, the following
properties are required:
SRID
the spatial reference ID for the spatial data.
featureDataTypes.0
, ...: the SQL data types of the feature
columns. Each featureNames.i
must have a corresponding
featureDataTypes.i
.
dimensions
: the number of dimensions of the geometries in
the model. Currently, 2 and 3 dimensional geometries are supported.
The default values is 2.
bounds
: the spatial bounds of the model, specified as a
comma-separated list of values: "min_x, min_y, width, height".
dropBeforeCreatingTable
(optional, default = * false
): if set to true
, the encoder will * attempt to drop the spatial table before re-creating it.
Example properties file:
# The basic database connection properties.
driver = oracle.jdbc.driver.OracleDriver
url = jdbc:oracle:thin:@myhost:1521:LUCIAD
user = scott
password = tiger
# The data of interest.
table = COUNTRIES
geoColumn = GEO
# The spatial reference ID and the bounds for creating the table.
SRID = 0
bounds = 0,10,60,60
# The feature columns to be decoded.
featureNames.0 = ID
# The SQL data types for writing to the table.
featureDataTypes.0 = INTEGER
# The index of the feature that can be used as primary key.
primaryFeatureIndex = 0
# Optionally close the database connection after each query.
# Only advisable when using a connection pooling database driver.
#alwaysCloseConnection = false
The encoder supports ILcdShape
objects. They are converted
to Oracle Spatial objects as follows:
FROMILcdShape | TOGeometry |
---|---|
ILcdPoint | Point |
ILcdPolypoint | GeometryCollection |
ILcdPolyline | LineString |
ILcdPolygon | Polygon |
ILcdComplexPolygon | Polygon |
ILcdBounds | Rectangle/Box |
ILcdCircle | CurvePolygon |
ILcdShapeList | GeometryCollection |
Features are retrieved by means of the ILcdFeatured
interface,
which the objects must implement.
Constructor and Description |
---|
TLcdOracleSpatialModelEncoder()
Creates a new Oracle Spatial model encoder.
|
Modifier and Type | Method and Description |
---|---|
boolean |
canExport(ILcdModel aModel,
String aDestinationName)
Returns whether the given model can be saved into the database described
by the given properties file.
|
boolean |
canSave(ILcdModel aModel)
Returns whether the given model can be saved back into the database.
|
void |
export(ILcdModel aModel,
Properties aProperties)
Exports the given model in a new table, based on the given properties.
|
void |
export(ILcdModel aModel,
String aDestinationName)
Exports the given model in a new table, based on the properties in the given
file.
|
int |
getAutoCommitCount()
Returns the number of inserted elements after which an export operation
is committed.
|
String |
getDisplayName()
Returns a short, displayable name for the format this
ILcdModelEncoder encodes to. |
void |
save(ILcdModel aModel)
Saves the given model in its original location, by committing all changes.
|
void |
setAutoCommitCount(int aAutoCommitCount)
Sets the number of inserted elements after which an export operation
should be committed, periodically.
|
public TLcdOracleSpatialModelEncoder()
public void setAutoCommitCount(int aAutoCommitCount)
public int getAutoCommitCount()
public String getDisplayName()
ILcdModelEncoder
ILcdModelEncoder
encodes to.getDisplayName
in interface ILcdModelEncoder
ILcdModelEncoder
.public boolean canExport(ILcdModel aModel, String aDestinationName)
canExport
in interface ILcdModelEncoder
aModel
- the model to be verified.aDestinationName
- the location where the model should be exported to.true
if this encoder can export the specified model to the
specified location, false
otherwise.ILcdModelEncoder.export(com.luciad.model.ILcdModel, java.lang.String)
public void export(ILcdModel aModel, String aDestinationName) throws IOException, IllegalArgumentException
export
in interface ILcdModelEncoder
aModel
- the model to be exported.aDestinationName
- the properties file describing the database table
to be created.IOException
- for any database access errors. This includes
the case where the table already exists.IllegalArgumentException
- if the model cannot be saved by this encoder (!canExport(aModel, aDestinationName)
).public void export(ILcdModel aModel, Properties aProperties) throws IOException, IllegalArgumentException
aModel
- the model to be exported.aProperties
- the properties describing the database table to be created.IOException
- for any database access errors. This includes
the case where the table already exists.IllegalArgumentException
public boolean canSave(ILcdModel aModel)
canSave
in interface ILcdModelEncoder
aModel
- the model to be verified.true
if this encoder can save the model in the location where it originally came from,
false
otherwise.ILcdModelEncoder.save(com.luciad.model.ILcdModel)
public void save(ILcdModel aModel) throws IOException, IllegalArgumentException
save
in interface ILcdModelEncoder
aModel
- the database model to be committed.IOException
- for any database access errors.IllegalArgumentException
- if the model cannot be saved by this encoder (!canSave(aModel)
).