Changes between Version 8 and Version 9 of PLUGIN_SUPPORT_LIB_BASE_R1


Ignore:
Timestamp:
03/18/09 16:24:43 (16 years ago)
Author:
pav
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PLUGIN_SUPPORT_LIB_BASE_R1

    v8 v9  
    4040[source:/trunk/sophie2-platform/dev-tools/eclipse_templates/module_templates/module_instance.xml]. It is stored in [wiki:PLATFORM_DEPLOYMENT_BUILD_ECLIPSE] for now. 
    4141 
    42  * Create distrib folders in src/main/resource folders where the modules should provide shared resources(for now may be book_templates and icons). After distribution they have to be separated in resources directory or just moved in the parent module folder. 
    43  
     42 * Create distrib folders in src/main/resource folders where the modules should provide shared resources(these are the application resources as icons and book_templates and will be called file entries not to be messed with other sophie resources). 
    4443 * For the resource API 
    4544  * Create class in core.modularity which will represent the resource API. 
     
    4746   * give resource for reading 
    4847   * give resource for modifying 
    49    * give resources by specific extensions(for example only the .sjrb resources). 
    50    * list the now available resources. 
     48   * list now available resources 
    5149  * The main implementation can be separated in two parts. The differences between them are: 
    52    1. Starting Sophie 2 using FakeAuthorMain launcher 
    53     * The resource manager look for the wanted resources in the module resource folders. 
    54     * The resource manager creates temp directory(can be default temp folder) in which it writes the given resources, if they are wanted for modifying. 
    55    2. Starting Sophie 2 using TrueAuthorMain launcher(optional for this revision) 
    56     * The resource manager reads the resources where they stored after assembling the project. 
    57     * The resource manager writes the resources in the same place. 
    58   * Note: To know weather the project is started under fake or true launchers use the !SophieModule bundleContext(it should be null when fake starting) variable or !FakeModuleRegistry instance. 
     50   1. Starting Sophie 2 through Eclipse 
     51    * The file entry manager looks for the wanted entries for reading in 
     52     * module_name/src/main/resources 
     53     * module_name/target/classes 
     54     * module_name/module_name-2.0-SNAPSHOT.jar 
     55    * The file entry manager creates temp directory(can be in sophie-platform/target/tmp-distrib) in which it writes the file entries, if they are wanted for modifying. 
     56   2. Starting Sophie 2 from the distribution 
     57    * The file entry manager reads the resources from the module jar files. 
     58    * The file entry manager writes the resources in sophie-edition/ folder(for example sophie2-author/). 
     59  * Note: To know weather the project is started under Eclipse or under distribution check if the current dir contains .jar file. 
    5960 
    6061  * More specific things for the implementation: 
    61    * In the resource loader class use Map structure which has to contain the started modules as keys and URLs to their resources(separated by comma for example) as values. To see which are the started modules use the !FakeModuleRegistry. 
    62    * The resource manager has to take the string variable with the wanted resource and return the whole URL to it. 
    63    * In the second part of the implementation, when the resource is wanted and is not already shared(for example when the new plugin with resources is provided), the resource manager has to search in the jars of already started modules and extract the resource from them. 
     62   * Create method which returns list of all read-only roots(all of the places to be searched, described in 1.) 
     63   * Create method which returns path to the writable root which is temp-distirb or current distributed edition folder. 
     64   * Create method which searches recursively for the /modules folder from which you should search the file entries. 
    6465 
    6566