Changes between Version 4 and Version 5 of refactoring_harvesters


Ignore:
Timestamp:
Jun 23, 2011, 2:50:28 AM (13 years ago)
Author:
mcoudert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • refactoring_harvesters

    v4 v5  
    22
    33|| '''Date''' || 2011/03/21 ||
    4 || '''Contact(s)''' || Mathieu, Julien ||
     4|| '''Contact(s)''' || Mathieu ||
    55|| '''Last edited''' || ||
    66|| '''Status''' || draft ||
     
    136136}}}
    137137
     138=== Design Overview ===
     139
     140A quick overview of the design :
     141 * an !AbstractHarvester class. Each harvester will extend this abstract class. No needs to have multiple classes for specific harvesters, only one is needed (ie. !CSWHarvester extends !AbstractHarvester).
     142 * an !HarvestingTaskManager responsible of the harvesting tasks management.
     143 * runnable tasks, executor services and thread pooling mecanisms are based on native/generic Java concepts : Runnable (java.lang.Runnable); Executors, !ScheduledExecutorService and !ThreadPoolExecutor (java.util.concurrent).
     144 * an object model (~Java bean) with the following entities : !HarvestingTask, !HarvestingTaskConfiguration, !HarvestingTaskRunMode, !HarvestingTaskStatus, AbstractMetadata(->Metadata, Template, !SubTemplate), !MetadataAlignerError, !MetadataAlignerResult ...
     145 * a !MetadataAligner responsible of all import, update, delete of any !AbstractMetadata (ie. metadata, template)
     146
     147
    138148=== Backwards Compatibility Issues ===
    139149
     
    144154== Risks ==
    145155
     156 * At the time being, only those harvesters are fully implemented (both client and server side) CSW, File system, Geonetwork, OAIPMH and Webdav.
     157 * What about new feature compliance : ie. harvesting history, schema management
     158 * Non conventionnal harvesters are not yet implemented and might be out of the scope of the generic model... (ie. threeds, WFS fragments)
     159 * the java object model implies lots of modifications in the sources. For instance, we do not have anymore multiple methods in the !DataManager to handle metadata insert or import... the same for update and delete. We also need to introduce object such as Group, Category and dedicated managers...
     160
     161
    146162== Participants ==
    147  * Mathieu, Julien
    148  * OpenWIS project.
     163 * Mathieu Coudert
     164 * Julien Baillagou