1. /*
  2. * Copyright 2001-2004 The Apache Software Foundation.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. /*
  17. * $Id: NamedMethodGenerator.java,v 1.7 2004/02/16 22:26:44 minchau Exp $
  18. */
  19. package com.sun.org.apache.xalan.internal.xsltc.compiler.util;
  20. import com.sun.org.apache.bcel.internal.generic.ALOAD;
  21. import com.sun.org.apache.bcel.internal.generic.ASTORE;
  22. import com.sun.org.apache.bcel.internal.generic.ConstantPoolGen;
  23. import com.sun.org.apache.bcel.internal.generic.Instruction;
  24. import com.sun.org.apache.bcel.internal.generic.InstructionList;
  25. import com.sun.org.apache.bcel.internal.generic.Type;
  26. /**
  27. * This class is used for named templates. Named template methods have access
  28. * to the DOM, the current iterator, the handler and the current node.
  29. * @author Jacek Ambroziak
  30. * @author Santiago Pericas-Geertsen
  31. */
  32. public final class NamedMethodGenerator extends MethodGenerator {
  33. protected static int CURRENT_INDEX = 4;
  34. // The index of the first parameter (after dom/iterator/handler/current)
  35. private static final int PARAM_START_INDEX = 5;
  36. public NamedMethodGenerator(int access_flags, Type return_type,
  37. Type[] arg_types, String[] arg_names,
  38. String method_name, String class_name,
  39. InstructionList il, ConstantPoolGen cp) {
  40. super(access_flags, return_type, arg_types, arg_names, method_name,
  41. class_name, il, cp);
  42. }
  43. public int getLocalIndex(String name) {
  44. if (name.equals("current")) {
  45. return CURRENT_INDEX;
  46. }
  47. return super.getLocalIndex(name);
  48. }
  49. public Instruction loadParameter(int index) {
  50. return new ALOAD(index + PARAM_START_INDEX);
  51. }
  52. public Instruction storeParameter(int index) {
  53. return new ASTORE(index + PARAM_START_INDEX);
  54. }
  55. }