⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 copyarrayvalue.java

📁 RESIN 3.2 最新源码
💻 JAVA
字号:
/* * Copyright (c) 1998-2008 Caucho Technology -- all rights reserved * * This file is part of Resin(R) Open Source * * Each copy or derived work must preserve the copyright notice and this * notice unmodified. * * Resin Open Source is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * Resin Open Source is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, or any warranty * of NON-INFRINGEMENT.  See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License * along with Resin Open Source; if not, write to the * *   Free Software Foundation, Inc. *   59 Temple Place, Suite 330 *   Boston, MA 02111-1307  USA * * @author Scott Ferguson */package com.caucho.quercus.env;import java.util.IdentityHashMap;import java.util.logging.Logger;import com.caucho.quercus.Location;/** * Represents a PHP array value. */public class CopyArrayValue extends ArrayValue {  private static final Logger log    = Logger.getLogger(CopyArrayValue.class.getName());  private final ArrayValue _constArray;  private ArrayValue _copyArray;  public CopyArrayValue(ArrayValue constArray)  {    _constArray = constArray;  }  /**   * Converts to a boolean.   */  public boolean toBoolean()  {    if (_copyArray != null)      return _copyArray.toBoolean();    else      return _constArray.toBoolean();  }    /**   * Copy for assignment.   */  public Value copy()  {    if (_copyArray != null)      return _copyArray.copy();    else      return _constArray.copy();  }    /**   * Copy for serialization   */  public Value copy(Env env, IdentityHashMap<Value,Value> map)  {    if (_copyArray != null)      return _copyArray.copy(env, map);    else      return _constArray.copy(env, map);  }  /**   * Returns the size.   */  public int getSize()  {    if (_copyArray != null)      return _copyArray.getSize();    else      return _constArray.getSize();  }  /**   * Clears the array   */  public void clear()  {    getCopyArray().clear();  }    /**   * Adds a new value.   */  public Value put(Value key, Value value)  {    return getCopyArray().put(key, value);  }  /**   * Add   */  public Value put(Value value)  {    return getCopyArray().put(value);  }  /**   * Add   */  public ArrayValue unshift(Value value)  {    return getCopyArray().unshift(value);  }  /**   * Add   */  public ArrayValue splice(int start, int end, ArrayValue replace)  {    return getCopyArray().splice(start, end, replace);  }  /**   * Returns the value as an array.   */  public Value getArray(Value fieldName)  {    return getCopyArray().getArray(fieldName);  }  /**   * Returns the value as an argument which may be a reference.   */  public Value getArg(Value index)  {    return getCopyArray().getArg(index);  }  /**   * Returns the field value, creating an object if it's unset.   */  @Override  public Value getObject(Env env, Value fieldName)  {    return getCopyArray().getObject(env, fieldName);  }  /**   * Sets the array ref.   */  public Value putRef()  {    return getCopyArray().putRef();  }  /**   * Add   */  public ArrayValue append(Value key, Value value)  {    put(key, value.toArgValue());    return this;  }  /**   * Add   */  public ArrayValue append(Value value)  {    return getCopyArray().append(value);  }  /**   * Gets a new value.   */  public Value get(Value key)  {    if (_copyArray != null)      return _copyArray.get(key);    else      return _constArray.get(key);  }  /**   * Gets a new value.   */  public Value containsKey(Value key)  {    if (_copyArray != null)      return _copyArray.containsKey(key);    else      return _constArray.containsKey(key);  }  /**   * Removes a value.   */  public Value remove(Value key)  {    return getCopyArray().remove(key);  }  /**   * Returns the array ref.   */  public Var getRef(Value index)  {    return getCopyArray().getRef(index);  }  /**   * Convenience for lib.   */  public void put(String key, String value)  {    put(new StringBuilderValue(key), new StringBuilderValue(value));  }  /**   * Pops the top value.   */  public Value pop()  {    return getCopyArray().pop();  }  /**   * Pops the top value.   */  public Value createTailKey()  {    return getCopyArray().createTailKey();  }  /**   * Shuffles the array   */  public void shuffle()  {    getCopyArray().shuffle();  }  public Entry getHead()  {    if (_copyArray != null)      return _copyArray.getHead();    else      return _constArray.getHead();  }  protected Entry getTail()  {    if (_copyArray != null)      return _copyArray.getTail();    else      return _constArray.getTail();  }  private ArrayValue getCopyArray()  {    if (_copyArray == null)      _copyArray = new ArrayValueImpl(_constArray);    return _copyArray;  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -