1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Fixed Bug 101875 - [Navigation] Offsets wrong if header files do not have a trailing new-line

This commit is contained in:
John Camelon 2005-06-27 19:16:06 +00:00
parent c79f8eb661
commit e931e4a547
2 changed files with 164 additions and 80 deletions

View file

@ -12,6 +12,7 @@ package org.eclipse.cdt.core.parser.tests.ast2;
import java.io.InputStream; import java.io.InputStream;
import java.util.Collections; import java.util.Collections;
import java.util.List;
import junit.framework.Test; import junit.framework.Test;
import junit.framework.TestSuite; import junit.framework.TestSuite;
@ -37,6 +38,7 @@ import org.eclipse.cdt.core.parser.NullLogService;
import org.eclipse.cdt.core.parser.ParserLanguage; import org.eclipse.cdt.core.parser.ParserLanguage;
import org.eclipse.cdt.core.parser.ParserMode; import org.eclipse.cdt.core.parser.ParserMode;
import org.eclipse.cdt.core.parser.ScannerInfo; import org.eclipse.cdt.core.parser.ScannerInfo;
import org.eclipse.cdt.core.parser.ast.IASTScope;
import org.eclipse.cdt.core.parser.tests.FileBasePluginTest; import org.eclipse.cdt.core.parser.tests.FileBasePluginTest;
import org.eclipse.cdt.internal.core.dom.parser.ISourceCodeParser; import org.eclipse.cdt.internal.core.dom.parser.ISourceCodeParser;
import org.eclipse.cdt.internal.core.dom.parser.c.CVisitor; import org.eclipse.cdt.internal.core.dom.parser.c.CVisitor;
@ -57,6 +59,36 @@ import org.eclipse.core.resources.IFile;
*/ */
public class DOMLocationInclusionTests extends FileBasePluginTest { public class DOMLocationInclusionTests extends FileBasePluginTest {
public void testBug101875() throws Exception {
for (int i = 0; i < 4; ++i) {
StringBuffer buffer = new StringBuffer();
buffer.append("#ifndef _BLAH_H_\n"); //$NON-NLS-1$
buffer.append("#endif"); //$NON-NLS-1$
if (i > 1)
buffer.append(" /* _BLAH_H_ */"); //$NON-NLS-1$
if ((i % 2) == 1)
buffer.append("\n"); //$NON-NLS-1$
importFile("blah.h", buffer.toString()); //$NON-NLS-1$
buffer = new StringBuffer();
buffer.append("#include \"blah.h\"\n"); //$NON-NLS-1$
buffer.append("/**\n"); //$NON-NLS-1$
buffer.append(" * A type used by test functions.\n"); //$NON-NLS-1$
buffer.append("*/\n"); //$NON-NLS-1$
buffer.append("int SomeStructure;\n"); //$NON-NLS-1$
String code = buffer.toString();
IFile source = importFile("blah.c", code); //$NON-NLS-1$
for (ParserLanguage p = ParserLanguage.C; p != null; p = (p == ParserLanguage.C) ? ParserLanguage.CPP
: null) {
IASTTranslationUnit tu = parse(source, p); //$NON-NLS-1$
IASTSimpleDeclaration declaration = (IASTSimpleDeclaration) tu
.getDeclarations()[0];
assertSoleFileLocation(
declaration.getDeclarators()[0],
"blah.c", code.indexOf("SomeStructure"), "SomeStructure".length()); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
}
}
}
private static final IScannerInfo SCANNER_INFO = new ScannerInfo(); private static final IScannerInfo SCANNER_INFO = new ScannerInfo();
private static final IParserLogService NULL_LOG = new NullLogService(); private static final IParserLogService NULL_LOG = new NullLogService();
@ -82,9 +114,16 @@ public class DOMLocationInclusionTests extends FileBasePluginTest {
protected IASTTranslationUnit parse(IFile code, ParserLanguage language, protected IASTTranslationUnit parse(IFile code, ParserLanguage language,
IScannerInfo s) throws Exception { IScannerInfo s) throws Exception {
InputStream stream = code.getContents(); InputStream stream = code.getContents();
IScanner scanner = new DOMScanner(new CodeReader(code.getLocation() CodeReader codeReader = null;
.toOSString(), stream), s, ParserMode.COMPLETE_PARSE, language, try {
NULL_LOG, getScannerConfig(language), factory); codeReader = new CodeReader(code.getLocation().toOSString(), stream);
} finally {
stream.close();
}
IScanner scanner = new DOMScanner(codeReader, s,
ParserMode.COMPLETE_PARSE, language, NULL_LOG,
getScannerConfig(language), factory);
ISourceCodeParser parser = null; ISourceCodeParser parser = null;
if (language == ParserLanguage.CPP) { if (language == ParserLanguage.CPP) {
parser = new GNUCPPSourceParser(scanner, ParserMode.COMPLETE_PARSE, parser = new GNUCPPSourceParser(scanner, ParserMode.COMPLETE_PARSE,
@ -93,7 +132,7 @@ public class DOMLocationInclusionTests extends FileBasePluginTest {
parser = new GNUCSourceParser(scanner, ParserMode.COMPLETE_PARSE, parser = new GNUCSourceParser(scanner, ParserMode.COMPLETE_PARSE,
NULL_LOG, new GCCParserExtensionConfiguration()); NULL_LOG, new GCCParserExtensionConfiguration());
} }
stream.close();
IASTTranslationUnit parseResult = parser.parse(); IASTTranslationUnit parseResult = parser.parse();
if (parser.encounteredError()) if (parser.encounteredError())
@ -318,57 +357,64 @@ public class DOMLocationInclusionTests extends FileBasePluginTest {
} }
public void testBug90851() throws Exception { public void testBug90851() throws Exception {
IFile imacro_file = importFile( "macro.h", "#define BEAST 666\n"); //$NON-NLS-1$ //$NON-NLS-2$ IFile imacro_file = importFile("macro.h", "#define BEAST 666\n"); //$NON-NLS-1$ //$NON-NLS-2$
StringBuffer buffer = new StringBuffer(); StringBuffer buffer = new StringBuffer();
buffer.append( "#ifndef _INCLUDE_H_\n" ); //$NON-NLS-1$ buffer.append("#ifndef _INCLUDE_H_\n"); //$NON-NLS-1$
buffer.append( "#define _INCLUDE_H_\n" ); //$NON-NLS-1$ buffer.append("#define _INCLUDE_H_\n"); //$NON-NLS-1$
buffer.append( "typedef void (*vfp)();\n" ); //$NON-NLS-1$ buffer.append("typedef void (*vfp)();\n"); //$NON-NLS-1$
buffer.append( "typedef int (*ifp)();\n" ); //$NON-NLS-1$ buffer.append("typedef int (*ifp)();\n"); //$NON-NLS-1$
buffer.append( "struct Include {\n" ); //$NON-NLS-1$ buffer.append("struct Include {\n"); //$NON-NLS-1$
buffer.append( "int i;\n" ); //$NON-NLS-1$ buffer.append("int i;\n"); //$NON-NLS-1$
buffer.append( "};\n" ); //$NON-NLS-1$ buffer.append("};\n"); //$NON-NLS-1$
buffer.append( "#endif /*_INCLUDE_H_*/\n" ); //$NON-NLS-1$ buffer.append("#endif /*_INCLUDE_H_*/\n"); //$NON-NLS-1$
final String inc_file_code = buffer.toString(); final String inc_file_code = buffer.toString();
IFile include_file = importFile( "include.h", inc_file_code ); //$NON-NLS-1$ //$NON-NLS-2$ IFile include_file = importFile("include.h", inc_file_code); //$NON-NLS-1$ //$NON-NLS-2$
String [] macros = { imacro_file.getLocation().toOSString() }; String[] macros = { imacro_file.getLocation().toOSString() };
String [] includes = { include_file.getLocation().toOSString() }; String[] includes = { include_file.getLocation().toOSString() };
IExtendedScannerInfo scannerInfo = new ExtendedScannerInfo( Collections.EMPTY_MAP, EMPTY_STRING_ARRAY, macros, includes ); IExtendedScannerInfo scannerInfo = new ExtendedScannerInfo(
IFile code = importFile( "main.c", "int main() { return BEAST * sizeof( Include ); } "); //$NON-NLS-1$ //$NON-NLS-2$ Collections.EMPTY_MAP, EMPTY_STRING_ARRAY, macros, includes);
IFile code = importFile(
"main.c", "int main() { return BEAST * sizeof( Include ); } "); //$NON-NLS-1$ //$NON-NLS-2$
for (ParserLanguage p = ParserLanguage.C; p != null; p = (p == ParserLanguage.C) ? ParserLanguage.CPP for (ParserLanguage p = ParserLanguage.C; p != null; p = (p == ParserLanguage.C) ? ParserLanguage.CPP
: null) { : null) {
IASTTranslationUnit tu = parse(code, p, scannerInfo ); //$NON-NLS-1$ IASTTranslationUnit tu = parse(code, p, scannerInfo); //$NON-NLS-1$
IASTPreprocessorMacroDefinition [] macro_defs = tu.getMacroDefinitions(); IASTPreprocessorMacroDefinition[] macro_defs = tu
assertEquals( macro_defs.length, 2 ); .getMacroDefinitions();
assertEquals(macro_defs.length, 2);
IASTPreprocessorMacroDefinition BEAST = macro_defs[0]; IASTPreprocessorMacroDefinition BEAST = macro_defs[0];
assertEquals( BEAST.getName().toString(), "BEAST"); //$NON-NLS-1$ assertEquals(BEAST.getName().toString(), "BEAST"); //$NON-NLS-1$
IASTPreprocessorMacroDefinition INCLUDE_H = macro_defs[1]; IASTPreprocessorMacroDefinition INCLUDE_H = macro_defs[1];
final IASTNodeLocation[] nodeLocations = INCLUDE_H.getName().getNodeLocations(); final IASTNodeLocation[] nodeLocations = INCLUDE_H.getName()
assertEquals( nodeLocations.length, 1 ); .getNodeLocations();
final IASTFileLocation flatLoc = INCLUDE_H.getName().getFileLocation(); assertEquals(nodeLocations.length, 1);
assertNotNull( flatLoc ); final IASTFileLocation flatLoc = INCLUDE_H.getName()
assertEquals( include_file.getLocation().toOSString(), flatLoc.getFileName() ); .getFileLocation();
assertEquals( inc_file_code.indexOf( "#define _INCLUDE_H_") + "#define ".length(), flatLoc.getNodeOffset() ); //$NON-NLS-1$ //$NON-NLS-2$ assertNotNull(flatLoc);
assertEquals( "_INCLUDE_H_".length(), flatLoc.getNodeLength() ); //$NON-NLS-1$ assertEquals(include_file.getLocation().toOSString(), flatLoc
.getFileName());
assertEquals(
inc_file_code.indexOf("#define _INCLUDE_H_") + "#define ".length(), flatLoc.getNodeOffset()); //$NON-NLS-1$ //$NON-NLS-2$
assertEquals("_INCLUDE_H_".length(), flatLoc.getNodeLength()); //$NON-NLS-1$
} }
} }
public void testIProblemLocation() throws Exception public void testIProblemLocation() throws Exception {
{
StringBuffer buffer = new StringBuffer(); StringBuffer buffer = new StringBuffer();
buffer.append( "#include <not_found.h>\n"); //$NON-NLS-1$ buffer.append("#include <not_found.h>\n"); //$NON-NLS-1$
buffer.append( "int x,y,z;"); //$NON-NLS-1$ buffer.append("int x,y,z;"); //$NON-NLS-1$
String code = buffer.toString(); String code = buffer.toString();
IFile f = importFile( "blah.c", code ); //$NON-NLS-1$ IFile f = importFile("blah.c", code); //$NON-NLS-1$
for (ParserLanguage p = ParserLanguage.C; p != null; p = (p == ParserLanguage.C) ? ParserLanguage.CPP for (ParserLanguage p = ParserLanguage.C; p != null; p = (p == ParserLanguage.C) ? ParserLanguage.CPP
: null) { : null) {
IASTTranslationUnit tu = parse( f, p ); //$NON-NLS-1$ IASTTranslationUnit tu = parse(f, p); //$NON-NLS-1$
IASTProblem [] prbs = tu.getPreprocessorProblems(); IASTProblem[] prbs = tu.getPreprocessorProblems();
assertEquals( prbs.length, 1 ); assertEquals(prbs.length, 1);
IASTNodeLocation [] locs = prbs[0].getNodeLocations(); IASTNodeLocation[] locs = prbs[0].getNodeLocations();
assertEquals( locs.length, 1 ); assertEquals(locs.length, 1);
IASTFileLocation fileLoc = (IASTFileLocation) locs[0]; IASTFileLocation fileLoc = (IASTFileLocation) locs[0];
assertEquals( code.indexOf( "#include" ), fileLoc.getNodeOffset() ); //$NON-NLS-1$ assertEquals(code.indexOf("#include"), fileLoc.getNodeOffset()); //$NON-NLS-1$
assertEquals( "#include <not_found.h>\n".length(), fileLoc.getNodeLength() ); //$NON-NLS-1$ assertEquals(
"#include <not_found.h>\n".length(), fileLoc.getNodeLength()); //$NON-NLS-1$
} }
} }
@ -380,41 +426,68 @@ public class DOMLocationInclusionTests extends FileBasePluginTest {
} }
public void testBug97603() throws Exception { public void testBug97603() throws Exception {
IFile imacro_file = importFile( "macro.h", "#define JEDEN 1\n#define DVA 2\n#define TRI 3\n"); //$NON-NLS-1$ //$NON-NLS-2$ IFile imacro_file = importFile(
"macro.h", "#define JEDEN 1\n#define DVA 2\n#define TRI 3\n"); //$NON-NLS-1$ //$NON-NLS-2$
StringBuffer buffer = new StringBuffer(); StringBuffer buffer = new StringBuffer();
buffer.append( "#ifndef _INCLUDE_H_\n" ); //$NON-NLS-1$ buffer.append("#ifndef _INCLUDE_H_\n"); //$NON-NLS-1$
buffer.append( "#define _INCLUDE_H_\n" ); //$NON-NLS-1$ buffer.append("#define _INCLUDE_H_\n"); //$NON-NLS-1$
buffer.append( "typedef void (*vfp)();\n" ); //$NON-NLS-1$ buffer.append("typedef void (*vfp)();\n"); //$NON-NLS-1$
buffer.append( "typedef int (*ifp)();\n" ); //$NON-NLS-1$ buffer.append("typedef int (*ifp)();\n"); //$NON-NLS-1$
buffer.append( "struct Include {\n" ); //$NON-NLS-1$ buffer.append("struct Include {\n"); //$NON-NLS-1$
buffer.append( "int i;\n" ); //$NON-NLS-1$ buffer.append("int i;\n"); //$NON-NLS-1$
buffer.append( "};\n" ); //$NON-NLS-1$ buffer.append("};\n"); //$NON-NLS-1$
buffer.append( "#endif /*_INCLUDE_H_*/\n" ); //$NON-NLS-1$ buffer.append("#endif /*_INCLUDE_H_*/\n"); //$NON-NLS-1$
final String inc_file_code = buffer.toString(); final String inc_file_code = buffer.toString();
IFile include_file = importFile( "include.h", inc_file_code ); //$NON-NLS-1$ //$NON-NLS-2$ IFile include_file = importFile("include.h", inc_file_code); //$NON-NLS-1$ //$NON-NLS-2$
String [] macros = { imacro_file.getLocation().toOSString() }; String[] macros = { imacro_file.getLocation().toOSString() };
String [] includes = { include_file.getLocation().toOSString() }; String[] includes = { include_file.getLocation().toOSString() };
IExtendedScannerInfo scannerInfo = new ExtendedScannerInfo( Collections.EMPTY_MAP, EMPTY_STRING_ARRAY, macros, includes ); IExtendedScannerInfo scannerInfo = new ExtendedScannerInfo(
IFile code = importFile( "main.c", "int main() { return BEAST * sizeof( Include ); } "); //$NON-NLS-1$ //$NON-NLS-2$ Collections.EMPTY_MAP, EMPTY_STRING_ARRAY, macros, includes);
IFile code = importFile(
"main.c", "int main() { return BEAST * sizeof( Include ); } "); //$NON-NLS-1$ //$NON-NLS-2$
for (ParserLanguage p = ParserLanguage.C; p != null; p = (p == ParserLanguage.C) ? ParserLanguage.CPP for (ParserLanguage p = ParserLanguage.C; p != null; p = (p == ParserLanguage.C) ? ParserLanguage.CPP
: null) { : null) {
IASTTranslationUnit tu = parse(code, p, scannerInfo ); //$NON-NLS-1$ IASTTranslationUnit tu = parse(code, p, scannerInfo); //$NON-NLS-1$
IASTPreprocessorMacroDefinition [] macro_defs = tu.getMacroDefinitions(); IASTPreprocessorMacroDefinition[] macro_defs = tu
assertEquals( macro_defs.length, 4 ); .getMacroDefinitions();
assertEquals(macro_defs.length, 4);
IASTPreprocessorMacroDefinition BEAST = macro_defs[0]; IASTPreprocessorMacroDefinition BEAST = macro_defs[0];
assertEquals( BEAST.getName().toString(), "JEDEN"); //$NON-NLS-1$ assertEquals(BEAST.getName().toString(), "JEDEN"); //$NON-NLS-1$
IASTPreprocessorMacroDefinition INCLUDE_H = macro_defs[3]; IASTPreprocessorMacroDefinition INCLUDE_H = macro_defs[3];
final IASTNodeLocation[] nodeLocations = INCLUDE_H.getName().getNodeLocations(); final IASTNodeLocation[] nodeLocations = INCLUDE_H.getName()
assertEquals( nodeLocations.length, 1 ); .getNodeLocations();
final IASTFileLocation flatLoc = INCLUDE_H.getName().getFileLocation(); assertEquals(nodeLocations.length, 1);
assertNotNull( flatLoc ); final IASTFileLocation flatLoc = INCLUDE_H.getName()
assertEquals( include_file.getLocation().toOSString(), flatLoc.getFileName() ); .getFileLocation();
assertEquals( inc_file_code.indexOf( "#define _INCLUDE_H_") + "#define ".length(), flatLoc.getNodeOffset() ); //$NON-NLS-1$ //$NON-NLS-2$ assertNotNull(flatLoc);
assertEquals( "_INCLUDE_H_".length(), flatLoc.getNodeLength() ); //$NON-NLS-1$ assertEquals(include_file.getLocation().toOSString(), flatLoc
for( int j = 0; j < macro_defs.length; ++j ) .getFileName());
assertNotNull(macro_defs[j].getName().getFileLocation() ); assertEquals(
inc_file_code.indexOf("#define _INCLUDE_H_") + "#define ".length(), flatLoc.getNodeOffset()); //$NON-NLS-1$ //$NON-NLS-2$
assertEquals("_INCLUDE_H_".length(), flatLoc.getNodeLength()); //$NON-NLS-1$
for (int j = 0; j < macro_defs.length; ++j)
assertNotNull(macro_defs[j].getName().getFileLocation());
} }
} }
protected IASTScope parse(IFile code, List callbackList,
ParserLanguage language) throws Exception {
return null;
}
protected IASTScope parse(IFile code, List callbacks) throws Exception {
return null;
}
protected org.eclipse.cdt.core.parser.ast.IASTNode parse(IFile code,
List callbacks, int offset1, int offset2, boolean expectedToPass,
ParserLanguage language) throws Exception {
return null;
}
protected org.eclipse.cdt.core.parser.ast.IASTNode parse(IFile code,
List callbacks, int start, int end) throws Exception {
return null;
}
} }

View file

@ -230,6 +230,12 @@ public class DOMScanner extends BaseScanner {
*/ */
protected Object popContext() { protected Object popContext() {
Object result = super.popContext(); Object result = super.popContext();
int delta_pos = 0;
if( bufferPos[bufferStackPos + 1] > bufferLimit[ bufferStackPos + 1 ] )
delta_pos += bufferLimit[ bufferStackPos + 1 ];
else
delta_pos += bufferPos[ bufferStackPos + 1 ];
if (result instanceof CodeReader) { if (result instanceof CodeReader) {
if( isInitialized ) if( isInitialized )
locationMap.endTranslationUnit(bufferDelta[0] locationMap.endTranslationUnit(bufferDelta[0]
@ -245,8 +251,8 @@ public class DOMScanner extends BaseScanner {
log.traceLog(buffer.toString()); log.traceLog(buffer.toString());
} }
locationMap.endInclusion(getGlobalCounter(bufferStackPos + 1) int value = getGlobalCounter(bufferStackPos + 1) + delta_pos;
+ bufferPos[bufferStackPos + 1]); locationMap.endInclusion(value);
bufferDelta[bufferStackPos] += bufferDelta[bufferStackPos + 1] bufferDelta[bufferStackPos] += bufferDelta[bufferStackPos + 1]
+ codeReader.buffer.length; + codeReader.buffer.length;
} else if (result instanceof MacroData) { } else if (result instanceof MacroData) {
@ -255,17 +261,17 @@ public class DOMScanner extends BaseScanner {
locationMap locationMap
.endFunctionStyleExpansion(getGlobalCounter(bufferStackPos + 1) .endFunctionStyleExpansion(getGlobalCounter(bufferStackPos + 1)
+ bufferPos[bufferStackPos + 1] + 1); // functionstyle + delta_pos + 1); // functionstyle
// macro) // macro)
// ; // ;
bufferDelta[bufferStackPos] += bufferDelta[bufferStackPos + 1] bufferDelta[bufferStackPos] += bufferDelta[bufferStackPos + 1]
+ bufferPos[bufferStackPos + 1] + 1; + delta_pos + 1;
} else if (data.macro instanceof ObjectStyleMacro && fsmCount == 0) { } else if (data.macro instanceof ObjectStyleMacro && fsmCount == 0) {
locationMap locationMap
.endObjectStyleMacroExpansion(getGlobalCounter(bufferStackPos + 1) .endObjectStyleMacroExpansion(getGlobalCounter(bufferStackPos + 1)
+ bufferPos[bufferStackPos + 1]); + delta_pos );
bufferDelta[bufferStackPos] += bufferDelta[bufferStackPos + 1] bufferDelta[bufferStackPos] += bufferDelta[bufferStackPos + 1]
+ bufferPos[bufferStackPos + 1]; + delta_pos;
} }
} }
@ -277,7 +283,12 @@ public class DOMScanner extends BaseScanner {
return 0; return 0;
int result = bufferDelta[value]; int result = bufferDelta[value];
for (int i = value - 1; i >= 0; --i) for (int i = value - 1; i >= 0; --i)
{
if( bufferPos[i] > bufferLimit[i] )
result += bufferLimit[i] + bufferDelta[i];
else
result += bufferPos[i] + bufferDelta[i]; result += bufferPos[i] + bufferDelta[i];
}
return result; return result;