12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?php
- class LtDb
- {
- public $configHandle;
- public $group;
- public $node;
- protected $dbh;
- public function __construct()
- {
- if (! $this->configHandle instanceof LtConfig)
- {
- if (class_exists("LtObjectUtil", false))
- {
- $this->configHandle = LtObjectUtil::singleton("LtConfig");
- }
- else
- {
- $this->configHandle = new LtConfig;
- }
- }
- }
- public function init()
- {
- $this->dbh = new LtDbHandle;
- $this->dbh->configHandle = $this->configHandle;
- $this->dbh->group = $this->getGroup();
- $this->dbh->node = $this->getNode();
- $this->dbh->init();
- }
- public function getDbHandle()
- {
- return $this->dbh;
- }
- public function getTDG($tableName)
- {
- $tg = new LtDbTableDataGateway;
- $tg->configHandle = $this->configHandle;
- $tg->tableName = $tableName;
- $tg->createdColumn = 'created';
- $tg->modifiedColumn = 'modified';
- $tg->dbh = $this->dbh;
- return $tg;
- }
- public function getSqlMapClient()
- {
- $smc = new LtDbSqlMapClient;
- $smc->configHandle = $this->configHandle;
- $smc->dbh = $this->dbh;
- return $smc;
- }
- public function changeNode($node)
- {
- $this->node = $node;
- $this->dbh->node = $node;
- }
- protected function getGroup()
- {
- if ($this->group)
- {
- return $this->group;
- }
- $servers = $this->configHandle->get("db.servers");
- if (1 == count($servers))
- {
- return key($servers);
- }
- return false;
- }
- protected function getNode()
- {
- if ($this->node)
- {
- return $this->node;
- }
- $servers = $this->configHandle->get("db.servers");
- if (1 == count($servers[$this->getGroup()]))
- {
- return key($servers[$this->getGroup()]);
- }
- return false;
- }
- }
|