Improve debugging and improve manage_table_sql
element will be added at the right place Manage_Table_SQL can work also with a SQL query or a view Icon place can be modified
This commit is contained in:
parent
52849e775f
commit
a5ef1138a4
14 changed files with 1187 additions and 109 deletions
306
include/lib/data_sql.class.php
Normal file
306
include/lib/data_sql.class.php
Normal file
|
|
@ -0,0 +1,306 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of NOALYSS.
|
||||
*
|
||||
* NOALYSS is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* NOALYSS is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with NOALYSS; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
// Copyright Author Dany De Bontridder danydb@aevalys.eu
|
||||
|
||||
/**
|
||||
* @file
|
||||
* @brief this wrapper is used to created easily a wrapper to a table
|
||||
* You must create a class extending this one, in the constructor
|
||||
* these variables have to be defined
|
||||
*
|
||||
* - table = name of the view or empty
|
||||
* - select = name of the select
|
||||
* - name = array of column name, match between logic and actual name
|
||||
* - type = array , match between column and type of data
|
||||
* - default = array of column with a default value
|
||||
* - date_format = format of the date
|
||||
*
|
||||
* After you call the parent constructor
|
||||
* @note the view or the table must include an unique key, otherwise the load
|
||||
* doesn't work.
|
||||
*
|
||||
* @class Noalyss_SQL
|
||||
* Match a table or a view into an object, you need to add the code for each table
|
||||
* @note : the primary key must be an integer
|
||||
*
|
||||
* @code
|
||||
class table_name_sql extends Noalyss_SQL
|
||||
{
|
||||
|
||||
function __construct($p_id=-1)
|
||||
{
|
||||
$this->table = "schema.table";
|
||||
$this->primary_key = "o_id";
|
||||
|
||||
$this->name=array(
|
||||
"id"=>"o_id",
|
||||
"program"=>"o_prog",
|
||||
"date"=>"o_date",
|
||||
"qcode"=>"o_qcode",
|
||||
"fiche"=>"f_id",
|
||||
|
||||
|
||||
);
|
||||
|
||||
$this->type = array(
|
||||
"o_id"=>"numeric",
|
||||
"o_prog"=>"numeric",
|
||||
"o_date"=>"date",
|
||||
"o_qcode"=>"text",
|
||||
"f_id"=>"numeric",
|
||||
|
||||
);
|
||||
|
||||
$this->default = array(
|
||||
"o_id" => "auto",
|
||||
);
|
||||
$this->date_format = "DD.MM.YYYY";
|
||||
global $cn;
|
||||
|
||||
parent::__construct($cn,$p_id);
|
||||
}
|
||||
|
||||
}
|
||||
* @endcode
|
||||
*
|
||||
*/
|
||||
abstract class Data_SQL
|
||||
{
|
||||
|
||||
function __construct($p_cn, $p_id=-1)
|
||||
{
|
||||
$this->cn=$p_cn;
|
||||
$pk=$this->primary_key;
|
||||
$this->$pk=$p_id;
|
||||
// check that the definition is correct
|
||||
if (count($this->name) != count($this->type) ){
|
||||
throw new Exception (__FILE__." $this->table Cannot instantiate");
|
||||
}
|
||||
/* Initialize an empty object */
|
||||
foreach ($this->name as $key)
|
||||
{
|
||||
$this->$key=null;
|
||||
}
|
||||
$this->$pk=$p_id;
|
||||
/* load it */
|
||||
if ($p_id != -1 )$this->load();
|
||||
}
|
||||
/**
|
||||
* Insert or update : if the row already exists, update otherwise insert
|
||||
*/
|
||||
public function save()
|
||||
{
|
||||
$count = $this->exist();
|
||||
|
||||
if ($count == 0)
|
||||
$this->insert();
|
||||
else
|
||||
$this->update();
|
||||
}
|
||||
/**
|
||||
*@brief get the value thanks the colum name and not the alias (name).
|
||||
*@see getp
|
||||
*/
|
||||
public function get($p_string)
|
||||
{
|
||||
if (array_key_exists($p_string, $this->type)) {
|
||||
return $this->$p_string;
|
||||
}
|
||||
else
|
||||
throw new Exception(__FILE__.":".__LINE__.$p_string.'Erreur attribut inexistant '.$p_string);
|
||||
}
|
||||
|
||||
/**
|
||||
*@brief set the value thanks the colum name and not the alias (name)
|
||||
*@see setp
|
||||
*/
|
||||
public function set($p_string, $p_value)
|
||||
{
|
||||
if (array_key_exists($p_string, $this->type)) {
|
||||
$this->$idx=$p_value;
|
||||
} else
|
||||
throw new Exception(__FILE__.":".__LINE__.$p_string.'Erreur attribut inexistant '.$p_string);
|
||||
}
|
||||
|
||||
/**
|
||||
*@brief set the value thanks the alias name instead of the colum name
|
||||
*@see get
|
||||
*/
|
||||
public function getp($p_string)
|
||||
{
|
||||
if (array_key_exists($p_string, $this->name)) {
|
||||
$idx=$this->name[$p_string];
|
||||
return $this->$idx;
|
||||
}
|
||||
else
|
||||
throw new Exception(__FILE__.":".__LINE__.$p_string.'Erreur attribut inexistant '.$p_string);
|
||||
}
|
||||
|
||||
/**
|
||||
*@brief set the value thanks the alias name instead of the colum name
|
||||
*@see set
|
||||
*/
|
||||
public function setp($p_string, $p_value)
|
||||
{
|
||||
if (array_key_exists($p_string, $this->name)) {
|
||||
$idx=$this->name[$p_string];
|
||||
$this->$idx=$p_value;
|
||||
} else
|
||||
throw new Exception(__FILE__.":".__LINE__.$p_string.'Erreur attribut inexistant '.$p_string);
|
||||
}
|
||||
|
||||
abstract function insert();
|
||||
|
||||
abstract function delete();
|
||||
|
||||
abstract function update();
|
||||
|
||||
public function set_pk_value($p_value)
|
||||
{
|
||||
$pk=$this->primary_key;
|
||||
$this->$pk=$p_value;
|
||||
}
|
||||
public function get_pk_value()
|
||||
{
|
||||
$pk=$this->primary_key;
|
||||
return $this->$pk;
|
||||
}
|
||||
|
||||
abstract function load();
|
||||
|
||||
public function get_info()
|
||||
{
|
||||
return var_export($this, true);
|
||||
}
|
||||
/**
|
||||
* @todo ajout vérification type (date, text ou numeric)
|
||||
* @return int
|
||||
*/
|
||||
public function verify()
|
||||
{
|
||||
foreach ($this->name as $key)
|
||||
{
|
||||
if (trim($this->$key)=='')
|
||||
$this->$key=null;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Transform an array into object
|
||||
* @param type $p_array
|
||||
* @return object
|
||||
*/
|
||||
public function from_array($p_array)
|
||||
{
|
||||
foreach ($this->name as $key=> $value)
|
||||
{
|
||||
if (isset($p_array[$value]))
|
||||
{
|
||||
$this->$value=$p_array[$value];
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->$value=null;
|
||||
}
|
||||
}
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Turn an object (row) into an array
|
||||
* @return array
|
||||
*/
|
||||
public function to_array()
|
||||
{
|
||||
$array=array();
|
||||
foreach ($this->name as $key=> $value)
|
||||
{
|
||||
|
||||
$array[$key]=$this->$key;
|
||||
}
|
||||
return $array;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief retrieve array of object thanks a condition
|
||||
* @param $cond condition (where clause) (optional by default all the rows are fetched)
|
||||
* you can use this parameter for the order or subselect
|
||||
* @param $p_array array for the SQL stmt
|
||||
* @see Database::exec_sql get_object Database::num_row
|
||||
* @return the return value of exec_sql
|
||||
*/
|
||||
abstract function seek($cond='', $p_array=null);
|
||||
|
||||
/**
|
||||
* get_seek return the next object, the return of the query must have all the column
|
||||
* of the object
|
||||
* @param $p_ret is the return value of an exec_sql
|
||||
* @param $idx is the index
|
||||
* @see seek
|
||||
* @return object
|
||||
*/
|
||||
public function next($ret, $i)
|
||||
{
|
||||
$array=$this->cn->fetch_array($ret, $i);
|
||||
return $this->from_array($array);
|
||||
}
|
||||
|
||||
/**
|
||||
* @see next
|
||||
*/
|
||||
public function get_object($p_ret, $idx)
|
||||
{
|
||||
return $this->next($p_ret, $idx);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief return an array of objects.
|
||||
* Do not use this function if they are too many objects, it takes a lot of memory,
|
||||
* and could slow down your application.
|
||||
* @param $cond condition, order...
|
||||
* @param $p_array array to use for a condition
|
||||
* @note this function could slow down your application.
|
||||
*/
|
||||
function collect_objects($cond='', $p_array=null)
|
||||
{
|
||||
if ($p_array != null && ! is_array($p_array) )
|
||||
{
|
||||
throw new Exception(_("Erreur : exec_sql attend un array"));
|
||||
}
|
||||
$ret=$this->seek($cond, $p_array);
|
||||
$max=Database::num_row($ret);
|
||||
$a_return=array();
|
||||
for ($i=0; $i<$max; $i++)
|
||||
{
|
||||
$a_return[$i]=clone $this->next($ret, $i);
|
||||
}
|
||||
return $a_return;
|
||||
}
|
||||
abstract function count($p_where="",$p_array=null) ;
|
||||
|
||||
/**
|
||||
* Count the number of record with the id ,
|
||||
* @return integer 0 doesn't exist , 1 exists
|
||||
*/
|
||||
abstract function exist() ;
|
||||
}
|
||||
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue