| 5 |
* @author Andreas Motl <andreas.motl@ilo.de> |
* @author Andreas Motl <andreas.motl@ilo.de> |
| 6 |
* @package org.netfrag.glib |
* @package org.netfrag.glib |
| 7 |
* @name DesignPattern::RemoteProxy |
* @name DesignPattern::RemoteProxy |
| 8 |
|
* @filesource |
| 9 |
* |
* |
| 10 |
*/ |
* |
| 11 |
|
* <b>Cvs-Log:</b> |
| 12 |
/** |
* |
| 13 |
|
* <pre> |
| 14 |
* ------------------------------------------------------------------------- |
* ------------------------------------------------------------------------- |
| 15 |
* $Id$ |
* $Id$ |
| 16 |
* ------------------------------------------------------------------------- |
* ------------------------------------------------------------------------- |
| 17 |
* $Log$ |
* $Log$ |
| 18 |
|
* Revision 1.5 2003/03/05 17:02:22 joko |
| 19 |
|
* updated docu (phpDocumentor testing....) |
| 20 |
|
* |
| 21 |
|
* Revision 1.4 2003/03/05 16:32:19 joko |
| 22 |
|
* updated docu (phpDocumentor testing....) |
| 23 |
|
* |
| 24 |
* Revision 1.3 2003/03/05 16:10:17 joko |
* Revision 1.3 2003/03/05 16:10:17 joko |
| 25 |
* updated docu (phpDocumentor testing....) |
* updated docu (phpDocumentor testing....) |
| 26 |
* |
* |
| 115 |
* Revision 1.1 2002/10/09 00:51:39 cvsjoko |
* Revision 1.1 2002/10/09 00:51:39 cvsjoko |
| 116 |
* + new |
* + new |
| 117 |
* ------------------------------------------------------------------------- |
* ------------------------------------------------------------------------- |
| 118 |
|
* </pre> |
| 119 |
|
* |
| 120 |
*/ |
*/ |
| 121 |
|
|
| 122 |
|
|
| 123 |
|
|
| 124 |
|
|
| 125 |
|
/** |
| 126 |
|
* Load required modules: |
| 127 |
|
* |
| 128 |
|
*/ |
| 129 |
|
loadModule('DesignPattern::Proxy'); |
| 130 |
|
|
| 131 |
|
|
| 132 |
/** |
/** |
| 133 |
* Data::Driver::Proxy -- Multiple stage data fetching and caching |
* Data::Driver::Proxy -- Multiple stage data fetching and caching |
| 134 |
* |
* |
| 144 |
* |
* |
| 145 |
* Multiple stage data fetching and caching: |
* Multiple stage data fetching and caching: |
| 146 |
* |
* |
| 147 |
|
* <pre> |
| 148 |
|
* |
| 149 |
* DATA, ... |
* DATA, ... |
| 150 |
* ... also refered to as data, should be handled as |
* ... also refered to as data, should be handled as |
| 151 |
* something called data. |
* something called data. |
| 188 |
* o Data::Driver::PEAR::DB |
* o Data::Driver::PEAR::DB |
| 189 |
* x Data::Driver::PEAR::Tree (via Data::Lift) |
* x Data::Driver::PEAR::Tree (via Data::Lift) |
| 190 |
* |
* |
| 191 |
*/ |
* </pre> |
| 192 |
|
* |
| 193 |
/** |
* |
| 194 |
* An attempt to implement some software design patterns... |
* An attempt to implement some software design patterns |
| 195 |
* --- RemoteProxyPattern |
* --- RemoteProxyPattern |
| 196 |
* |
* |
| 197 |
* @link http://c2.com/cgi-bin/wiki?ProxyPattern |
* @link http://c2.com/cgi-bin/wiki?ProxyPattern |
| 206 |
* @package org.netfrag.glib |
* @package org.netfrag.glib |
| 207 |
* @name DesignPattern::RemoteProxy |
* @name DesignPattern::RemoteProxy |
| 208 |
* |
* |
| 209 |
*/ |
* |
|
|
|
|
/** |
|
| 210 |
* @todo |
* @todo |
| 211 |
* <pre> |
* <pre> |
| 212 |
* x extend options to en-/disable caching via a) session and/or b) database |
* x extend options to en-/disable caching via a) session and/or b) database |
| 213 |
* o make feature available via runtime setter-method to these options |
* o make feature available via runtime setter-method to these options |
| 214 |
* o use PEAR::Cache for caching purposes!!! |
* o use PEAR::Cache for caching purposes!!! |
| 215 |
* o refactor database access: use PEAR for this! no more 'connectdb' here!!! |
* o refactor database access: use PEAR for this! no more 'connectdb' here!!! |
| 216 |
* o make database connection more flexible to make possible |
* o make database connection more flexible to make possible |
| 217 |
* to have different (probably named) proxy databases (besides a "main database") |
* to have different (probably named) proxy databases (besides a "main database") |
| 218 |
* o rename this to Data::Proxy? or split into Data::Query, Data::Result and Data::Wrapper? |
* o rename this to Data::Proxy? or split into Data::Query, Data::Result and Data::Wrapper? |
| 219 |
* </pre> |
* </pre> |
| 220 |
* |
* |
| 221 |
*/ |
*/ |
|
|
|
|
/** |
|
|
* Load required modules: |
|
|
* |
|
|
*/ |
|
|
loadModule('DesignPattern::Proxy'); |
|
|
|
|
| 222 |
class DesignPattern_RemoteProxy extends DesignPattern_Proxy { |
class DesignPattern_RemoteProxy extends DesignPattern_Proxy { |
| 223 |
|
|
| 224 |
var $objectId; |
var $objectId; |