Changes between Version 2 and Version 3 of PRO_LIB_REMOTE_OBJECTS_R0


Ignore:
Timestamp:
03/07/09 00:37:59 (16 years ago)
Author:
sriggins
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PRO_LIB_REMOTE_OBJECTS_R0

    v2 v3  
    44 
    55= Analysis = 
    6 ^(Give as much as possible of the needed information for designing and implementing the task in the following sections.)^ 
    76 
    87== 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 
     9Remote 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 
     11Load 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 
     13This 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) 
    1014 
    1115== 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 
    1320 
    1421== Task result == 
    15 ^(List the end product of the task (for example "Source code", "Wiki page", etc.))^ 
     22 
     23The result of this task is code 
    1624 
    1725== 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 
    1929 
    2030== Related == 
    2131 
    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] 
    2735 
    2836== How to demo == 
    29 ^(Provide instructions for demonstration of the task.)^ 
     37 
     38Show how to store and retrieve an object from the server. 
    3039 
    3140= Design =