aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/interface/CompilerStack.cpp
diff options
context:
space:
mode:
authorVoR0220 <rj@erisindustries.com>2017-01-06 02:01:27 +0800
committerVoR0220 <rj@erisindustries.com>2017-01-09 12:53:54 +0800
commit6d9020b3b80aff0baf7d6e023460cfbcd930de6b (patch)
tree00bf573709390ab0a977fa478ec4c91a66701bc4 /libsolidity/interface/CompilerStack.cpp
parent4f62980d52daa58f21dad3ef7caca5f854395c38 (diff)
downloaddexon-solidity-6d9020b3b80aff0baf7d6e023460cfbcd930de6b.tar.gz
dexon-solidity-6d9020b3b80aff0baf7d6e023460cfbcd930de6b.tar.zst
dexon-solidity-6d9020b3b80aff0baf7d6e023460cfbcd930de6b.zip
fixed test and added solution
Signed-off-by: VoR0220 <rj@erisindustries.com>
Diffstat (limited to 'libsolidity/interface/CompilerStack.cpp')
-rw-r--r--libsolidity/interface/CompilerStack.cpp29
1 files changed, 26 insertions, 3 deletions
diff --git a/libsolidity/interface/CompilerStack.cpp b/libsolidity/interface/CompilerStack.cpp
index ee55f41a..a097e4c8 100644
--- a/libsolidity/interface/CompilerStack.cpp
+++ b/libsolidity/interface/CompilerStack.cpp
@@ -507,21 +507,44 @@ string CompilerStack::applyRemapping(string const& _path, string const& _context
return false;
return std::equal(_a.begin(), _a.end(), _b.begin());
};
+ // Try to find whether _a is a closer match for context _reference than _b
+ // Defaults to longest prefix in case of a tie.
+ auto isClosestContext = [](string const& _a, string const& _b, string const& _reference)
+ {
+ int a = _reference.compare(_a);
+ int b = _reference.compare(_b);
+ if (a == 0)
+ return true;
+ else if (b == 0)
+ return false;
+ else if (abs(a) == abs(b)) {
+ return a > 0;
+ }
+ return abs(a) < abs(b);
+ };
+ using filepath = boost::filesystem::path;
+ filepath context(_context);
size_t longestPrefix = 0;
string longestPrefixTarget;
+ string currentClosestContext;
+ string referenceContext = context.parent_path().generic_string();
for (auto const& redir: m_remappings)
{
+ filepath redirContext(redir.context);
// Skip if we already have a closer match.
- if (longestPrefix > 0 && redir.prefix.length() <= longestPrefix)
+ if (longestPrefix > 0 && redir.prefix.length() < longestPrefix)
continue;
// Skip if redir.context is not a prefix of _context
- if (!isPrefixOf(redir.context, _context))
+ if (!isPrefixOf(redirContext.generic_string(), _context))
continue;
// Skip if the prefix does not match.
if (!isPrefixOf(redir.prefix, _path))
continue;
-
+ // Skip if there is a prefix collision and the current context is closer
+ if (redir.prefix.length() == longestPrefix && !isClosestContext(redirContext.generic_string(), currentClosestContext, referenceContext))
+ continue;
+ currentClosestContext = redir.context;
longestPrefix = redir.prefix.length();
longestPrefixTarget = redir.target;
}