All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.squarespace.less.model.MixinCallArgs Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (c) 2014 SQUARESPACE, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.squarespace.less.model;

import static com.squarespace.less.core.LessUtils.safeEquals;

import java.util.List;

import com.squarespace.less.LessException;
import com.squarespace.less.core.Buffer;
import com.squarespace.less.core.LessInternalException;
import com.squarespace.less.core.LessUtils;
import com.squarespace.less.exec.ExecEnv;


/**
 * Arguments to a mixin call.
 */
public class MixinCallArgs implements Node {

  /**
   * The argument delimiter.
   */
  protected final char delimiter;

  /**
   * List of arguments.
   */
  protected List args;

  /**
   * Indicates whether any of the arguments require evaluation.
   */
  protected boolean evaluate;

  /**
   * Constructs mixin call arguments with the given delimiter.
   */
  public MixinCallArgs(char delimiter) {
    this.delimiter = delimiter;
  }

  /**
   * Returns the argument delimiter character.
   */
  public char delim() {
    return delimiter;
  }

  /**
   * Returns the arguments.
   */
  public List args() {
    return LessUtils.safeList(args);
  }

  /**
   * Adds an argument.
   */
  public void add(Argument arg) {
    if (arg == null) {
      throw new LessInternalException("Serious error: arg cannot be null.");
    }
    args = LessUtils.initList(args, 3);
    args.add(arg);
    evaluate |= arg.needsEval();
  }

  /**
   * Indicates whether there are any arguments.
   */
  public boolean isEmpty() {
    return args().isEmpty();
  }

  /**
   * See {@link Node#type()}
   */
  @Override
  public NodeType type() {
    return NodeType.MIXIN_ARGS;
  }

  /**
   * See {@link Node#needsEval()}
   */
  @Override
  public boolean needsEval() {
    return evaluate;
  }

  /**
   * See {@link Node#eval(ExecEnv)}
   */
  @Override
  public Node eval(ExecEnv env) throws LessException {
    if (!evaluate) {
      return this;
    }
    MixinCallArgs res = new MixinCallArgs(delimiter);
    int size = args.size();
    for (int i = 0; i < size; i++) {
      Argument arg = args.get(i);
      res.add((Argument)arg.eval(env));
    }
    return res;
  }

  /**
   * See {@link Node#repr(Buffer)}
   */
  @Override
  public void repr(Buffer buf) {
    boolean expnList = false;
    buf.append('(');
    if (args != null) {
      int size = args.size();
      for (int i = 0; i < size; i++) {
        if (i > 0) {
          buf.append(delimiter);
          if (!buf.compress()) {
            buf.append(' ');
          }
        }
        Argument arg = args.get(i);
        expnList = expnList || (arg.value != null &&  arg.value.type() == NodeType.EXPRESSION_LIST);
        arg.repr(buf);
      }
    }

    if (delimiter == ';' && expnList) {
      buf.append(';');
    }
    buf.append(')');
  }

  /**
   * See {@link Node#modelRepr(Buffer)}
   */
  @Override
  public void modelRepr(Buffer buf) {
    buf.append(type().toString()).append(" delim=").append(delimiter).append('\n');
    buf.incrIndent();
    ReprUtils.modelRepr(buf, "\n", true, args);
    buf.decrIndent();
  }

  @Override
  public boolean equals(Object obj) {
    if (obj instanceof MixinCallArgs) {
      MixinCallArgs other = (MixinCallArgs)obj;
      return delimiter == other.delimiter && safeEquals(args, other.args);
    }
    return false;
  }

  @Override
  public String toString() {
    return ModelUtils.toString(this);
  }

  @Override
  public int hashCode() {
    return ModelUtils.notHashable();
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy