Improved xml scanner for this bug
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / php / PHPDocumentPartitioner.java
1 /**********************************************************************
2  Copyright (c) 2002  Widespace, OU  and others.
3  All rights reserved.   This program and the accompanying materials
4  are made available under the terms of the Common Public License v1.0
5  which accompanies this distribution, and is available at
6  http://solareclipse.sourceforge.net/legal/cpl-v10.html
7
8  Contributors:
9  Igor Malinin - initial contribution
10
11  $Id: PHPDocumentPartitioner.java,v 1.3 2005-05-15 23:24:41 axelcl Exp $
12  **********************************************************************/
13 package net.sourceforge.phpeclipse.phpeditor.php;
14
15 import net.sourceforge.phpeclipse.PHPeclipsePlugin;
16 import net.sourceforge.phpeclipse.ui.text.rules.FlatNode;
17 import net.sourceforge.phpeclipse.ui.text.rules.MultiViewPartitioner;
18 import net.sourceforge.phpeclipse.ui.text.rules.ViewNode;
19
20 import org.eclipse.jface.text.Assert;
21 import org.eclipse.jface.text.IDocument;
22 import org.eclipse.jface.text.IDocumentPartitioner;
23 import org.eclipse.jface.text.rules.IPartitionTokenScanner;
24
25 /**
26  * 
27  * 
28  * @author Igor Malinin
29  */
30 public class PHPDocumentPartitioner extends MultiViewPartitioner {
31   public static final String PHP_TEMPLATE_DATA = "__php_template_data";
32
33   public static final String PHP_SCRIPT_CODE = "__php_script_code";
34
35   private IPartitionTokenScanner scriptScanner;
36
37   public PHPDocumentPartitioner(IPartitionTokenScanner scanner, IPartitionTokenScanner scriptScanner) {
38     super(scanner);
39
40     this.scriptScanner = scriptScanner;
41   }
42
43   protected FlatNode createNode(String type, int offset, int length) {
44     if (type.equals(PHPPartitionScanner.PHP_SCRIPTING_AREA)) {
45       if (DEBUG) {
46         Assert.isTrue(offset >= 0);
47       }
48       ViewNode node = new ViewNode(type);
49       node.offset = offset;
50       node.length = length;
51       return node;
52     }
53
54     return super.createNode(type, offset, length);
55   }
56
57   /*
58    * @see net.sf.solareclipse.text.rules.DocumentViewPartitioner#createPartitioner(String)
59    */
60   protected IDocumentPartitioner createPartitioner(String contentType) {
61     if (contentType == null) {
62       //                        return JavaTextTools.createHTMLPartitioner();
63       return PHPeclipsePlugin.getDefault().getJavaTextTools().getXMLTextTools().createPHPXMLPartitioner();
64     }
65
66     if (contentType.equals(PHPPartitionScanner.PHP_SCRIPTING_AREA)) {
67       return PHPeclipsePlugin.getDefault().getJavaTextTools().createPHPPartitioner();
68     }
69     return null;
70   }
71
72   /*
73    * @see net.sf.solareclipse.text.rules.DocumentViewPartitioner#getContentType(String, String)
74    */
75   protected String getContentType(String parent, String view) {
76     if (parent == null) {
77       if (view == IDocument.DEFAULT_CONTENT_TYPE) {
78         return PHP_TEMPLATE_DATA;
79       }
80     } else {
81       if (view == IDocument.DEFAULT_CONTENT_TYPE) {
82         return PHP_SCRIPT_CODE;
83       }
84     }
85
86     return super.getContentType(parent, view);
87   }
88 }