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. |
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. |