PHP Classes

LOCO: Queue actions on objects to be performed later

Recommend this page to a friend!
  Info   View files View files (11)   DownloadInstall with Composer Download .zip   Reputation   Support forum (1)   Blog    
Last Updated Ratings Unique User Downloads Download Rankings
2024-01-09 (2 months ago) RSS 2.0 feedStarStarStarStar 66%Total: 525 This week: 1All time: 5,680 This week: 560Up
Version License PHP version Categories
loco 1.0.9GNU Lesser Genera...5.0PHP 5, Language, Code Generation
Description 

Author

This class can be used to queue actions on objects to be performed later.

It can act as a proxy to objects of other classes and records actions that access those objects like setting variables, calling functions and include scripts.

The recorded object actions can be saved as scripts to be executed on the real class objects later.

Innovation Award
PHP Programming Innovation award nominee
December 2010
Number 2


Prize: One license of ScriptCase Enterprise edition
Sometimes it is not possible or it is not convenient to execute a certain task in a given moment, eventually because it takes too long to execute.

This class provides a solution to record in a file calls and variable accesses to given proxy objects, so you can play back the recorded accesses later on real class objects.

Manuel Lemos
Picture of Thomas Björk
  Performance   Level  
Name: Thomas Björk <contact>
Classes: 11 packages by
Country: Sweden Sweden
Age: 55
All time rank: 1581 in Sweden Sweden
Week rank: 106 Up2 in Sweden Sweden Down
Innovation award
Innovation award
Nominee: 3x

Details

LOCO

Base class for LOCO functionality. The class LOCO has not much separate logic and is just a collector for all calls and variable set calls.

__constructor

The first argument in the constructor is the class that should be used when executing the actions.

__lococall

The first argument in this call is the function that should return a value when executing the actions later. The __lococall returns an array containing all actions stored in LOCO.

__locoinclude

Tells LOCO to include a specific file at runtime.

xLOCO

Extends the basic LOCO class by adding two static functions.

Execute

Executes an array of actions (that you get from __lococall)

ExecuteFile

Loads the specified file and then calls Execute

GoLOCO

A more stand-alone extension of the LOCO class adding the special functions __locogo, __locoobject, __locoget, __locoset, __locosave and __locoload.

__locogo

Executes the stored actions. The return value of the last call is used as a return value for this function.

__locoobject

Returns the object used by LOCO internally.

__locoget

Get the list of actions.

__locoset

Set a new list of actions.

__locosave

Save the list of actions to a file.

__locoload

Load a new list of actions from a file.

When to use LOCO?

LOCO can be used to decrease the execution time for a request by extracting tasks that are heavy time consumers to an external task, for instance a cronjob, without the need for the new context to know any context specific information about the old context. An example is to send mail from the web server to the webmaster without putting any delay to the request.

In file where you wish to send a mail but doesn't bother if it filed or not. (Note that you does not have to include PHPMailer in this file. This is because it is never actually called.)

include_once(INCLUDE_PATH_TO_LOCO.'/loco.php');
$mail = new GoLOCO('PHPMailer');
$mail->__locoinclude(INCLUDE_PATH_TO_PHPMAILER.'/class.phpmailer.php');
$mail->IsHTML();
$mail->AddAddress('tb@bytecode.se', 'Thomas');
$mail->Subject = 'GoLOCO test';
$mail->Body = 'This mail is sent by using <strong>GoLOCO</strong>';
$mail->__locosave(SAVEPATH.'/filename.loco');

Then there might be a cronjob running in the background calling another file containing this code:

include_once(INCLUDE_PATH_TO_LOCO.'/loco.php');
$send = new GoLOCO();
$send->__locoload(SAVEPATH.'/filename.loco');
$send->__locogo('Send');

Examples

Demo 1

A rather complicated way to create an object from the class Test, setting the $value to a value and then print the $value.

<?php
// demo1.php
include_once('../loco.php');
class Test {
  var $value;
}

$gl = new GoLOCO('Test');
$gl->value = 42;
$actions = $gl->__locoget();

$gl2 = new GoLOCO();
$gl2->__locoset($actions);
$gl2->__locogo();
$test = $gl2->__locoobject();

echo $test->value;
echo "\n";
?>

Should print out 42

Demo 2

Simple way to include at time of execution. The basic function is Demo 1 but split into three files

<?php
// demo2a.php
class Test {
  var $value;
}
?>

<?php
// demo2b.php
include_once('../loco.php');
$gl = new GoLOCO('Test');
$gl->__locoinclude('./demo2a.php');
$gl->value = 42;
$gl->__locosave('./demo2.loco');
?>

<?php
// demo2c.php
include_once('../loco.php');
$gl = new GoLOCO();
$gl->__locoload('./demo2.loco');
$gl->__locogo();
$test = $gl->__locoobject();
echo $test->value;
?>

Running demo2b.php followed by demo2c.php should print out 42

The script demo2b.php generates a file called demo2.loco that contains the actions performed in demo2c.php.

Demo 3

<?php
// demo3.php
include_once('../loco.php');
class Test {
  var $value;
  
  public function ShowValue() {
    echo $this->value;
  }
  
}

$gl = new xLOCO('Test');
$gl->value = 42;
$actions = $gl->__lococall('ShowValue');
xLOCO::Execute($actions);
?>

  Files folder image Files  
File Role Description
Files folder imageExamples (5 files)
Plain text file loco.php Class LOCO, xLOCO and GoLOCO classes
Accessible without login Plain text file LICENSE Data License file
Accessible without login HTML file loco.html Doc. Readme in html format
Accessible without login Plain text file loco.txt Doc. Readme in text format
Accessible without login Plain text file locodemo.php Example A quick demo with some comments
Accessible without login Plain text file README.md Data New readme in markdown

  Files folder image Files  /  Examples  
File Role Description
  Accessible without login Plain text file demo1.php Example Example 1
  Accessible without login Plain text file demo2a.php Example Example 2 - Part 1
  Accessible without login Plain text file demo2b.php Example Example 2 - Part 2
  Accessible without login Plain text file demo2c.php Example Example 2 - Part 3
  Accessible without login Plain text file demo3c.php Example Example 3

 Version Control Unique User Downloads Download Rankings  
 100%
Total:525
This week:1
All time:5,680
This week:560Up
User Ratings User Comments (1)
 All time
Utility:83%StarStarStarStarStar
Consistency:83%StarStarStarStarStar
Documentation:83%StarStarStarStarStar
Examples:83%StarStarStarStarStar
Tests:-
Videos:-
Overall:66%StarStarStarStar
Rank:504