Merge branch 'feature_rpc'

This commit is contained in:
Karsten Heiken
2011-04-22 02:55:00 +02:00
3 changed files with 112 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?php
/**
* @author Karsten Heiken, karsten@disposed.de
*/
class Job extends CI_Model {
/**
* Update the progress of a given job.
*
* @param string $job_id The job's id you want to update.
* @param integer $progress The progress of the job.
*/
public function update($job_id, $progress) {
$finished_at = "";
if($progress == 100)
$finished_at = ", `finished_at`=NOW()";
$this->db->query("UPDATE `jobs` SET `progress`=".
$this->db->escape($progress).$finished_at. " WHERE `id`=".
$this->db->escape($job_id));
}
}

View File

@@ -0,0 +1,40 @@
<?php
/**
* @author Karsten Heiken, karsten@disposed.de
*/
class Server extends CI_Model {
/**
* Get a list of all available servers.
*
* @return array List of all available servers.
*/
public function get_all() {
return $this->db->get('servers')->result_array();
}
/**
* Get a list of servers that could handle another job.
*
* @return array List of servers that could handle another job.
*/
public function get_idle() {
return $this->db->get_where('servers', 'workload <= 2')->result_array();
}
/**
* Set a server's workload.
*
* In order to check if a server can handle another job we need to know
* the workload of every server.
*
* @param type $secret The server's secret for basic authentication.
* @param type $workload The server's workload.
*/
public function update_workload($secret, $workload) {
$this->db->query("UPDATE `servers` SET `workload`=".$this->db->escape($workload)
. ", `last_update`=NOW()"
. " WHERE `secret`=".$this->db->escape($secret));
}
}