DCD/modulecache.d

223 lines
5.3 KiB
D

/**
* This file is part of DCD, a development tool for the D programming language.
* Copyright (C) 2013 Brian Schott
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
module modulecache;
import std.file;
import std.datetime;
import stdx.d.lexer;
import stdx.d.parser;
import stdx.d.ast;
import std.stdio;
import std.array;
import std.path;
import std.algorithm;
import std.conv;
import actypes;
import semantic;
import astconverter;
import stupidlog;
struct CacheEntry
{
const(ACSymbol)*[] symbols;
SysTime modificationTime;
void opAssign(ref const CacheEntry other)
{
this.symbols = cast(typeof(symbols)) other.symbols;
this.modificationTime = other.modificationTime;
}
}
/**
* Caches pre-parsed module information.
*/
struct ModuleCache
{
@disable this();
/**
* Clears the completion cache
*/
static void clear()
{
cache = cache.init;
}
static void estimateMemory()
{
size_t estimate = 0;
foreach (c; cache)
{
foreach (symbol; c.symbols)
estimate = symbol.estimateMemory(estimate);
}
double megabytes = estimate / (1024.0F * 1024.0F);
Log.trace("Memory use estimated at ", megabytes, " megabytes");
}
/**
* Adds the given path to the list of directories checked for imports
*/
static void addImportPaths(string[] paths)
{
foreach (path; paths)
{
if (!exists(path))
{
Log.error("Cannot cache modules in ", path, " because it does not exist");
continue;
}
importPaths ~= path;
}
foreach (path; paths)
{
foreach (fileName; dirEntries(path, "*.{d,di}", SpanMode.depth))
{
getSymbolsInModule(fileName);
}
}
}
/**
* Params:
* moduleName = the name of the module in "a/b/c" form
* Returns:
* The symbols defined in the given module
*/
static const(ACSymbol)*[] getSymbolsInModule(string location)
{
if (location is null)
return [];
if (!needsReparsing(location))
{
if (location in cache)
return cache[location].symbols;
return [];
}
Log.info("Getting symbols for ", location);
recursionGuard[location] = true;
const(ACSymbol)*[] symbols;
try
{
File f = File(location);
ubyte[] source = uninitializedArray!(ubyte[])(cast(size_t)f.size);
f.rawRead(source);
LexerConfig config;
config.fileName = location;
auto tokens = source.byToken(config).array();
symbols = convertAstToSymbols(tokens, location);
// Parsing allocates a lot of AST nodes. We can greatly reduce the
// program's idle memory use by running the GC here.
// TODO: Re-visit this when D gets a precise GC.
import core.memory;
GC.collect();
GC.minimize();
}
catch (Exception ex)
{
Log.error("Couln't parse ", location, " due to exception: ", ex.msg);
return [];
}
SysTime access;
SysTime modification;
getTimes(location, access, modification);
CacheEntry c = CacheEntry(symbols, modification);
cache[location] = c;
recursionGuard[location] = false;
return symbols;
}
/**
* Params:
* moduleName the name of the module being imported, in "a/b/c" style
* Returns:
* The absolute path to the file that contains the module, or null if
* not found.
*/
static string resolveImportLoctation(string moduleName)
{
if (isRooted(moduleName))
return moduleName;
string[] alternatives;
foreach (path; importPaths)
{
string filePath = buildPath(path, moduleName);
if (exists(filePath ~ ".d") && isFile(filePath ~ ".d"))
alternatives = (filePath ~ ".d") ~ alternatives;
else if (exists(filePath ~ ".di") && isFile(filePath ~ ".di"))
alternatives = (filePath ~ ".di") ~ alternatives;
else if (exists(filePath) && isDir(filePath))
{
string packagePath = buildPath(filePath, "package.d");
if (exists(packagePath) && isFile(packagePath))
{
alternatives ~= packagePath;
continue;
}
packagePath ~= "i";
if (exists(packagePath) && isFile(packagePath))
alternatives ~= packagePath;
}
}
return alternatives.length > 0 ? alternatives[0] : null;
}
static const(string[]) getImportPaths()
{
return cast(const(string[])) importPaths;
}
private:
/**
* Params:
* mod = the path to the module
* Returns:
* true if the module needs to be reparsed, false otherwise
*/
static bool needsReparsing(string mod)
{
if (mod !in recursionGuard)
return true;
if (recursionGuard[mod])
return false;
if (!exists(mod) || mod !in cache)
return true;
SysTime access;
SysTime modification;
getTimes(mod, access, modification);
return cache[mod].modificationTime != modification;
}
// Mapping of file paths to their cached symbols.
static CacheEntry[string] cache;
static bool[string] recursionGuard;
// Listing of paths to check for imports
static string[] importPaths;
}