/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. * * Oracle and Java are registered trademarks of Oracle and/or its affiliates. * Other names may be trademarks of their respective owners. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common * Development and Distribution License("CDDL") (collectively, the * "License"). You may not use this file except in compliance with the * License. You can obtain a copy of the License at * http://www.netbeans.org/cddl-gplv2.html * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the * specific language governing permissions and limitations under the * License. When distributing the software, include this License Header * Notice in each file and include the License file at * nbbuild/licenses/CDDL-GPL-2-CP. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the GPL Version 2 section of the License file that * accompanied this code. If applicable, add the following below the * License Header, with the fields enclosed by brackets [] replaced by * your own identifying information: * "Portions Copyrighted [year] [name of copyright owner]" * * Contributor(s): * * The Original Software is NetBeans. The Initial Developer of the Original * Software is Sun Microsystems, Inc. Portions Copyright 1997-2008 Sun * Microsystems, Inc. All Rights Reserved. * * If you wish your version of this file to be governed by only the CDDL * or only the GPL Version 2, indicate your decision by adding * "[Contributor] elects to include this software in this distribution * under the [CDDL or GPL Version 2] license." If you do not indicate a * single choice of license, a recipient has the option to distribute * your version of this file under either the CDDL, the GPL Version 2 or * to extend the choice of license to its licensees as provided above. * However, if you add GPL Version 2 code and therefore, elected the GPL * Version 2 license, then the option applies only if the new code is * made subject to such option by the copyright holder. */ package org.netbeans.modules.ruby.lexer; import java.util.Collection; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import org.netbeans.api.lexer.InputAttributes; import org.netbeans.api.lexer.Language; import org.netbeans.api.lexer.LanguagePath; import org.netbeans.api.lexer.Token; import org.netbeans.api.lexer.TokenId; import org.netbeans.api.ruby.platform.RubyInstallation; import org.netbeans.spi.lexer.LanguageEmbedding; import org.netbeans.spi.lexer.LanguageHierarchy; import org.netbeans.spi.lexer.Lexer; import org.netbeans.spi.lexer.LexerRestartInfo; /** * @todo I should handle embeddings of =begin/=end token pairs such that they * get comment/rdoc highlighting! * * @author Tor Norbye */ public enum RubyTokenId implements TokenId { ERROR(null, "error"), IDENTIFIER(null, "identifier"), CLASS_VAR(null, "staticfield"), INSTANCE_VAR(null, "field"), GLOBAL_VAR(null, "static"), CONSTANT(null, "constant"), DOCUMENTATION(null, "comment"), ABSTRACT("abstract", "keyword"), INT_LITERAL(null, "number"), REGEXP_LITERAL(null, "regexp"), FLOAT_LITERAL(null, "number"), STRING_LITERAL(null, "string"), WHITESPACE(null, "whitespace"), LINE_COMMENT(null, "comment"), BLOCK_COMMENT(null, "comment"), TYPE_SYMBOL(null, "typesymbol"), LPAREN("(", "separator"), RPAREN(")", "separator"), LBRACE("{", "separator"), RBRACE("}", "separator"), LBRACKET("[", "separator"), RBRACKET("]", "separator"), STRING_BEGIN(null, "string"), STRING_END(null, "string"), REGEXP_BEGIN(null, "regexp"), // or separator, REGEXP_END(null, "regexp"), // Cheating: out of laziness just map all keywords returning from JRuby // into a single KEYWORD token; eventually I will have separate tokens // for each here such that the various helper methods for formatting, // smart indent, brace matching etc. can refer to specific keywords ANY_KEYWORD(null, "keyword"), ANY_OPERATOR(null, "operator"), // FixedText on these tokens is risky since the JRuby parser in some cases // seems to use these tokens for multiple source words; when I try opening // for example imap.rb Bad Stuff happens. For now compute token text on the fly. DOT(null, "operator"), RANGE(null, "operator"), COLON3(null, "operator"), SUPER(null, "keyword"), SELF(null, "keyword"), QUOTED_STRING_LITERAL(null, "string"), QUOTED_STRING_BEGIN(null, "string"), QUOTED_STRING_END(null, "string"), EMBEDDED_RUBY(null, "default"), MODULE(null, "keyword"), CLASS(null, "keyword"), DEF(null, "keyword"), END(null, "keyword"), BEGIN(null, "keyword"), FOR(null, "keyword"), CASE(null, "keyword"), LOOP(null, "keyword"), /** The keyword, when used as a block (NOT as a statement modifier or in a block/closure) */ DO(null, "keyword"), /** The keyword, when used as a block (NOT as a statement modifier) */ IF(null, "keyword"), /** The keyword, when used as a block (NOT as a statement modifier) */ WHILE(null, "keyword"), /** The keyword, when used as a block (NOT as a statement modifier) */ UNTIL(null, "keyword"), /** The keyword, when used as a block (NOT as a statement modifier) */ UNLESS(null, "keyword"), // Indent words ELSE(null, "keyword"), ELSIF(null, "keyword"), ENSURE(null, "keyword"), WHEN(null, "keyword"), RESCUE(null, "keyword"), // Non-unary operators which indicate a line continuation if used at the end of a line NONUNARY_OP(null, "operator"); private final String fixedText; private final String primaryCategory; RubyTokenId(String fixedText, String primaryCategory) { this.fixedText = fixedText; this.primaryCategory = primaryCategory; } public String fixedText() { return fixedText; } public String primaryCategory() { return primaryCategory; } private static final Language<RubyTokenId> language = new LanguageHierarchy<RubyTokenId>() { protected String mimeType() { return RubyInstallation.RUBY_MIME_TYPE; } protected Collection<RubyTokenId> createTokenIds() { return EnumSet.allOf(RubyTokenId.class); } @Override protected Map<String, Collection<RubyTokenId>> createTokenCategories() { Map<String, Collection<RubyTokenId>> cats = new HashMap<String, Collection<RubyTokenId>>(); return cats; } protected Lexer<RubyTokenId> createLexer(LexerRestartInfo<RubyTokenId> info) { return RubyLexer.create(info); } @Override protected LanguageEmbedding<?> embedding(Token<RubyTokenId> token, LanguagePath languagePath, InputAttributes inputAttributes) { RubyTokenId id = token.id(); if (id == QUOTED_STRING_LITERAL) { return LanguageEmbedding.create(RubyStringTokenId.languageDouble(), 0, 0); } else if (id == STRING_LITERAL) { return LanguageEmbedding.create(RubyStringTokenId.languageSingle(), 0, 0); } else if ((id == LINE_COMMENT) || (id == BLOCK_COMMENT)) { return LanguageEmbedding.create(RubyCommentTokenId.language(), 1, 0); //} else if (id == REGEXP_LITERAL) { // return LanguageEmbedding.create(RubyRegexpTokenId.language(), 0, 0); } else if (id == DOCUMENTATION) { return LanguageEmbedding.create(RubyCommentTokenId.language(), 0, 0); } else if (id == EMBEDDED_RUBY) { return LanguageEmbedding.create(RubyTokenId.language(), 0, 0); } return null; // No embedding } }.language(); public static Language<RubyTokenId> language() { return language; } }