Changes between Version 2 and Version 3 of PRO_LIB_REMOTE_OBJECTS_R0
- Timestamp:
- 03/07/09 00:37:59 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PRO_LIB_REMOTE_OBJECTS_R0
v2 v3 4 4 5 5 = Analysis = 6 ^(Give as much as possible of the needed information for designing and implementing the task in the following sections.)^7 6 8 7 == Overview == 9 ^(Provide a brief overview of the whole task in its first revision. Stick to the current revision of the task, but keep an eye to the whole task progress, and stay alert for possible smells.)^ 8 9 Remote objects are those that are stored on a server. A book is a remote object, as is an image. Sophie needs to be able to handle local and remote objects equally. 10 11 Load times are important. For example, if a timeline is told to play, it needs to know that all objects are usable in some state before the timeline can be started. Along these lines, if the timeline changes a page and the page is not loaded, the timeline needs to pause until the page is load, or continue in a non-blocked manner. 12 13 This is one example of how remote objects need to either report their loading status, or block a semaphore so that other objects can block until the loading is done, OR remote objects need to degrade gracefully if not fully loaded (although I don't see how this can happen) 10 14 11 15 == Task requirements == 12 ^(List the necessary requirements that the task must fulfill.)^ 16 17 * Define how remote objects will work in Sophie 18 * Define how different types of remote objects might be loaded (a movie on a website not connected with Sophie) 19 * Define how the loading protocol will work, such that other systems can block until loading is complete 13 20 14 21 == Task result == 15 ^(List the end product of the task (for example "Source code", "Wiki page", etc.))^ 22 23 The result of this task is code 16 24 17 25 == Implementation idea == 18 ^(Provide some rough implementation idea(s).)^ 26 27 * There may be many different ways to load remote objects, but PRO_LIB cannot use it's own extensions system, so there might need to be a new registration API 28 * Remote objects may go through the change server to load, which would also allow for caching 19 29 20 30 == Related == 21 31 22 [wiki:PRO_LIB_CORE_COMMONS] 23 24 [wiki:PRO_LIB_MODEL_COMMONS] 25 26 [wiki:PRO_LIB_MODEL_PRO_OBJECTS] 32 * [wiki:PRO_LIB_CORE_COMMONS_R0] 33 * [wiki:PRO_LIB_MODEL_COMMONS_R0] 34 * [wiki:PRO_LIB_MODEL_PRO_OBJECTS_R0] 27 35 28 36 == How to demo == 29 ^(Provide instructions for demonstration of the task.)^ 37 38 Show how to store and retrieve an object from the server. 30 39 31 40 = Design =