/*
* VisualBasicConstantsFile.java
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 3
* of the License, or (at your option) any later version.
*
* This library 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. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307, USA.
*
* Copyright (c) 2004 Adrian Moore. All rights reserved.
* Copyright (c) 2004-2005 Per Cederberg. All rights reserved.
*/
package net.percederberg.grammatica.output;
import java.io.IOException;
import java.util.HashMap;
import net.percederberg.grammatica.code.visualbasic.VisualBasicComment;
import net.percederberg.grammatica.code.visualbasic.VisualBasicEnumeration;
import net.percederberg.grammatica.code.visualbasic.VisualBasicFile;
import net.percederberg.grammatica.code.visualbasic.VisualBasicNamespace;
import net.percederberg.grammatica.parser.ProductionPattern;
import net.percederberg.grammatica.parser.TokenPattern;
/**
* The Visual Basic constants file generator. This class encapsulates
* all the Visual Basic (.NET) code necessary for creating a constants
* enumeration file.
*
* @author Adrian Moore, <adrianrob at hotmail dot com>
* @author Per Cederberg, <per at percederberg dot net>
* @version 1.5
* @since 1.5
*/
class VisualBasicConstantsFile {
/**
* The enumeration comment.
*/
private static final String TYPE_COMMENT =
"<remarks>An enumeration with token and production node\n" +
"constants.</remarks>";
/**
* The parser generator.
*/
private VisualBasicParserGenerator gen;
/**
* The file to write.
*/
private VisualBasicFile file;
/**
* The enumeration declaration.
*/
private VisualBasicEnumeration enm;
/**
* The mapping from id to constant name. This map contains all
* tokens and productions added to the file.
*/
private HashMap constantNames = new HashMap();
/**
* Creates a new constants file.
*
* @param gen the parser generator to use
*/
public VisualBasicConstantsFile(VisualBasicParserGenerator gen) {
String name = gen.getBaseName() + "Constants";
int modifiers;
this.gen = gen;
this.file = new VisualBasicFile(gen.getBaseDir(), name);
if (gen.getPublicAccess()) {
modifiers = VisualBasicEnumeration.PUBLIC;
} else {
modifiers = VisualBasicEnumeration.FRIEND;
}
this.enm = new VisualBasicEnumeration(modifiers, name);
initializeCode();
}
/**
* Initializes the source code objects.
*/
private void initializeCode() {
String str;
VisualBasicNamespace n;
// Add namespace
if (gen.getNamespace() == null) {
file.addEnumeration(enm);
} else {
n = new VisualBasicNamespace(gen.getNamespace());
n.addEnumeration(enm);
file.addNamespace(n);
}
// Add file comment
str = file.toString() + "\n\n" + gen.getFileComment();
file.addComment(new VisualBasicComment(VisualBasicComment.SINGLELINE,
str));
// Add type comment
enm.addComment(new VisualBasicComment(TYPE_COMMENT));
}
/**
* Adds a token constant definition to this file.
*
* @param pattern the token pattern
*/
public void addToken(TokenPattern pattern) {
String constant;
constant = gen.getCodeStyle().getUpperCase(pattern.getName());
enm.addConstant(constant, String.valueOf(pattern.getId()));
constantNames.put(new Integer(pattern.getId()), constant);
}
/**
* Adds a production constant definition to this file. This method
* checks if the production pattern has already been added.
*
* @param pattern the production pattern
*/
public void addProduction(ProductionPattern pattern) {
String constant;
if (!pattern.isSynthetic()) {
constant = gen.getCodeStyle().getUpperCase(pattern.getName());
enm.addConstant(constant, String.valueOf(pattern.getId()));
constantNames.put(new Integer(pattern.getId()), constant);
}
}
/**
* Creates source code for accessing one of the constants in this
* file.
*
* @param id the node type (pattern) id
*
* @return the constant name, or
* null if not found
*/
public String getConstant(int id) {
String name = (String) constantNames.get(new Integer(id));
if (name == null) {
return null;
} else {
return enm.toString() + "." + name;
}
}
/**
* Writes the file source code.
*
* @throws IOException if the output file couldn't be created
* correctly
*/
public void writeCode() throws IOException {
file.writeCode(gen.getCodeStyle());
}
}