Exemple #1
0
 /**
  * @param Board $board
  * @param int $depth
  */
 protected function build(Board $board, $depth)
 {
     $weight = $this->getPrecedence();
     $indent = $board->indent($depth);
     $index = 0;
     /* @var $child Node */
     foreach ($this->getChildren() as $child) {
         // Prep
         $wrap = $child->getPrecedence() <= $weight;
         // Operator
         if ($index) {
             $board->write(',');
             if ($this->isBlock()) {
                 $board->write("\n");
                 (!$child->isBlock() || $wrap) && $board->write($indent);
             } else {
                 $board->write(" ");
             }
         } else {
             $this->isBlock() && $board->write($indent);
         }
         // Child:
         if ($wrap) {
             $board->write("(");
             $child->isBlock() && $board->write("\n");
         }
         $child->build($board, $depth + 1);
         $wrap && $board->write(")");
         // ===
         $index++;
     }
 }
Exemple #2
0
 protected function build(Board $board, $depth = 0)
 {
     $weight = $this->getPrecedence();
     $indent = $board->indent($depth);
     $index = 0;
     /* @var $child Node */
     foreach ($this->getChildren() as $child) {
         // Prep
         $wrap = $child->getPrecedence() < $weight;
         // Indent
         if ($this->isBlock()) {
             $index && $board->write("\n");
             $board->write($indent);
         }
         // Operator
         if ($index) {
             $board->write($child->isBlock() && !$wrap ? '' : ' ');
         }
         // Child:
         $wrap && $board->write("(");
         $child->isBlock() && $board->write("\n");
         $child->build($board, $depth + 1);
         $wrap && $board->write(")");
         // ===
         $index++;
     }
 }
Exemple #3
0
 protected function build(Board $board, $depth)
 {
     $index = 0;
     $indent = $board->indent($depth);
     //
     foreach ($this->components as $compo) {
         if ($index > 0) {
             $board->write("\n");
         }
         $board->write($indent);
         if ($compo['type']) {
             $board->write($compo['type'])->write(' ');
         }
         $compo['ref']->build($board, $depth + 1);
         if ($compo['alias']) {
             $board->write(' AS ');
             $compo['alias']->build($board, $depth + 1);
         }
         if ($compo['cond']) {
             $board->write(' ON (');
             $compo['cond']->build($board, $depth + 1);
             $board->write(')');
         }
         $index++;
     }
 }
Exemple #4
0
 /**
  * @param Board $board
  * @param int $depth
  */
 protected function build(Board $board, $depth)
 {
     $board->write('INSERT INTO ');
     $this->table->build($board, $depth + 1);
     $board->write(" (");
     $this->columns->build($board, $depth + 1);
     $board->write(")\n");
     $this->data->build($board, $depth + 1);
 }
Exemple #5
0
 /**
  * @param Board $board
  * @param int $depth
  */
 protected function build(Board $board, $depth)
 {
     $board->write('DELETE FROM ');
     $this->table->build($board, $depth + 1);
     $where = $this->where;
     if ($where) {
         $board->write("\n");
         $board->write('WHERE');
         $board->write($where->isBlock() ? "\n" : " ");
         $where->build($board, $depth + 1);
     }
 }
Exemple #6
0
 /**
  *
  * @param string $part
  * @param Node|null $node
  * @param Board $board
  * @param int $depth
  */
 protected function buildPart($part, $node, $board, $depth)
 {
     if ($node) {
         $indent = $board->indent($depth);
         $board->write($indent)->write($part);
         $board->write($node->isBlock() ? "\n" : ' ');
         $node->build($board, $depth + 1);
         $board->write("\n");
     }
 }
Exemple #7
0
 /**
  * @param Board $board
  * @param int $depth
  */
 protected function build(Board $board, $depth = 0)
 {
     $board->write($board->quoteIdentifier($this->identifier));
 }
Exemple #8
0
 /**
  * @param Board $board
  * @param int $depth
  */
 protected function build(Board $board, $depth)
 {
     $expr = $this->getExpr();
     $alias = $this->getAlias();
     $wrap = $expr->getPrecedence() < $this->getPrecedence();
     $indent = $board->indent($depth);
     $block = $this->isBlock();
     // Column:
     $block && $board->write($indent);
     $wrap && $board->write('(');
     $expr->isBlock() && $board->write("\n");
     $expr->build($board, $depth + 1);
     $block && $board->write($indent);
     $wrap && $board->write(')');
     // Alias:
     if ($alias) {
         $board->write(' AS ');
         $alias->build($board, $depth + 1);
     }
 }