我目前正在处理一个多页表单,我book
在表单期间填充一个域对象。在表单之间,我通过book
使用本地 php 函数serialize
、unserialize
和.base64_encode
base64_decode
但是,我的book
对象包含一个域 Object Image
,它也在多页表单中填充。该Image
对象需要与会话不同的存储方式,因为图像文件应保存到文件系统而不是对象中。
所以目前使用 php mvc 语言我有两个不同的数据映射器。一个可以store
和fetch
一个book
到/从会话没有Image
对象,另一个可以store
并且fetch
只有Image
对象到/从会话。我现在的问题是,是否可以将这两个数据映射器合并为一个通用的数据映射器,它能够检索book
包括 object 在内的完整Image
对象?
提前感谢您的帮助,如果您需要有关数据映射器的更多详细信息,请告诉我。
编辑:添加了我所说的两个数据映射器的代码。要保存Image
域对象以外的任何其他对象,我只使用会话数据映射器。对于Image
对象,我使用图像会话数据映射器将图像保存在文件系统中,然后使用会话数据映射器将对象存储到会话。请注意DBSession
,我的自定义 SessionHandler 实现SessionHandlerInterface
了将 Sessions 保存到数据库表中。我希望我发布的代码不要太多。
Image Session DataMapper;
namespace model\DataAccess\DataMapper;
class tmpImage {
protected $dbhandler;
public function __construct ($dbhandler) {
$this->dbhandler = $dbhandler;
}
protected function createLocalFilestring (\model\DomainObjects\Image $Image) {
$file = ROOT."data/temp/".$Image->getType()."/".$Image->getName().$Image->getExtension();
return str_replace("\\","/",$file);
}
protected function createHTTPFilestring (\model\DomainObjects\Image $Image) {
$file = HTTP."data/temp/".$Image->getType()."/".$Image->getName().$Image->getExtension();
return str_replace("\\","/",$file);
}
public function store (\model\DomainObjects\Image $Image) {
$filestring=$this->createLocalFilestring($Image);
move_uploaded_file($Image->getTmpname(),$filestring);
}
public function fetch (\model\DomainObjects\Image $Image) {
$filestring=$this->createHTTPFilestring($Image);
$Image->setUrl($filestring);
}
public function remove (\model\DomainObjects\Image $Image) {
$filestring=$this->createLocalFilestring($Image);
unlink($filestring);
}
}
会话数据映射器
namespace model\DataAccess\DataMapper;
class sessionMapper {
private $dbhandler;
private $sessionHandler;
private $cache=array();
public function __construct($dbhandler){
$this->dbhandler = $dbhandler;
$this->sessionHandler = DBSession::start($this->dbhandler);
$this->loadCache();
}
public function fetch (&$varToFill,$refName){
//check if variable with $refName exists in Session
//if existant read out of cache
if(is_object($varToFill)===true){
if($this->ExistInSession($refName)===true) {
$varToFill = unserialize(base64_decode($this->cache[$refName]));
}
//else object remains empty
}
//variable is not an object
else {
if($this->ExistInSession($refName)===true) {
$varToFill = $this->cache[$refName];
}
//else retrieve null
else {
$varToFill = null;
}
}
}
public function store ($varToFill,$refName){
if(is_object($varToFill)===true){
$this->cache[$refName] = base64_encode(serialize($varToFill));
}
else {
$this->cache[$refName] = $varToFill;
}
//save cache to Session
$this->saveCache($refName);
}
public function remove ($refName) {
//remove from cache
unset($this->cache[$refName]);
//remove from session
unset($_SESSION[$refName]);
}
//this function reads all stored session data and writes it into cache
private function loadCache () {
$this->cache = $_SESSION;
}
private function saveCache ($refName) {
$_SESSION[$refName] = $this->cache[$refName];
//for some reason direct accessing the session handler leads to writing an empty data field at session closing to the database
//so you call this function and the right data is inserted into DB but when Session is closed and PHP tries to write SessionData to DB
//before it is lost it retrieves an empty data field it writes to DB which overwrites your prior data
//$this->sessionHandler->write(session_id(),$this->cache[$refName]);
}
//this function checks if SessionVariable with given name exists
public function ExistInSession ($name) {
if((isset($this->cache[$name]))&&(!empty($this->cache[$name]))){
return true;
}
return false;
}
public function getSessionID () {
return session_id();
}
}