doujia4041 2019-02-01 22:04
浏览 72

双向数据填充设计模式

I'm looking to implement this strategy for using Symfony Form data classes in a more formal, generic way.

tl;dr: The basic idea is to capture form data into a flat, tolerant object then perform validation. If validated, populate form data into stricter, hierarchical ORM entity structure. If modifying existing data, first initialize the form data from the ORM data.

In its most simplified, unsupported, covariant form, it looks something like this:

abstract class FormDataInterface
{
  protected $entity;

  public function __construct(EntityInterface $entity)
  {
    $this->entity = $entity;
  }

  abstract public static function initialize(EntityInterface $entity): self;
  abstract public function populate(): void;
}

/**
 * Each concrete child is a two-way adaptor responsible for defining its own
 * data members and rules for populating initial form data and repopulating the
 * data back into the entity.  (In practice, this is very unique and sometimes 
 * complicated)
 */
class UserData extends FormDataInterface
{
  private $name;

  public function __construct(UserEntity $user)
  {
    parent::__construct($user);
  }

  // accessors for private members

  public static function initialize(UserEntity $user): self
  {
    $userData = new self($user);
    $userData->setName($user->getName());
    return $userData;
  }

  public function populate(): void
  {
    $this->entity->setName($this->name);
  }
}

The problem is the specialization of the EntityInterface to a specific concrete entity. The rules of the system indicate that each concrete form data class will be paired with a specific entity. Also, I want to be able to define the initialize() and populate() methods somehow in the contract.

I've read through this issue. Both the Strategy Pattern and Bridge Pattern seem viable, but I'm not clear on how either address the covariance problem.

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥20 关于#硬件工程#的问题,请各位专家解答!
    • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
    • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
    • ¥30 截图中的mathematics程序转换成matlab
    • ¥15 动力学代码报错,维度不匹配
    • ¥15 Power query添加列问题
    • ¥50 Kubernetes&Fission&Eleasticsearch
    • ¥15 報錯:Person is not mapped,如何解決?
    • ¥15 c++头文件不能识别CDialog
    • ¥15 Excel发现不可读取的内容