1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : cl_calltip.cpp
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// 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 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#include "precompiled_header.h"
#include <map>
#include "ctags_manager.h"
#include "cl_calltip.h"
#ifdef __VISUALC__
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
#endif
struct tagCallTipInfo {
wxString sig;
wxString retValue;
std::vector<std::pair<int, int> > paramLen;
};
clCallTip::clCallTip(const std::vector<TagEntryPtr> &tips)
: m_curr(0)
{
Initialize(tips);
}
clCallTip::clCallTip(const clCallTip& rhs)
{
*this = rhs;
}
clCallTip& clCallTip::operator =(const clCallTip& rhs)
{
if (this == &rhs)
return *this;
m_tips = rhs.m_tips;
return *this;
}
wxString clCallTip::First()
{
m_curr = 0;
if (m_tips.empty())
return wxEmptyString;
return TipAt(0);
}
wxString clCallTip::TipAt(int at)
{
wxString tip;
if ( m_tips.size() > 1 ) {
tip << m_tips.at(at).str ;
} else {
tip << m_tips.at( 0 ).str;
}
return tip;
}
wxString clCallTip::Next()
{
// format a tip string and return it
if ( m_tips.empty() )
return wxEmptyString;
m_curr++;
if ( m_curr >= (int)m_tips.size() ) {
m_curr = 0;
} // if( m_curr >= m_tips.size() )
return TipAt(m_curr);
}
wxString clCallTip::Prev()
{
// format a tip string and return it
if ( m_tips.empty() )
return wxEmptyString;
m_curr--;
if (m_curr < 0) {
m_curr = (int)m_tips.size()-1;
}
return TipAt(m_curr);
}
wxString clCallTip::All()
{
wxString tip;
for (size_t i=0; i<m_tips.size(); i++) {
tip << m_tips.at(i).str << wxT("\n");
}
tip.RemoveLast();
return tip;
}
int clCallTip::Count() const
{
return (int)m_tips.size();
}
void clCallTip::Initialize(const std::vector<TagEntryPtr> &tips)
{
std::map<wxString, tagCallTipInfo> mymap;
for (size_t i=0; i< tips.size(); i++) {
tagCallTipInfo cti;
TagEntryPtr t = tips.at(i);
if ( t->IsMethod() ) {
wxString raw_sig ( t->GetSignature().Trim().Trim(false) );
// evaluate the return value of the tag
cti.retValue = TagsManagerST::Get()->GetFunctionReturnValueFromPattern(t);
bool hasDefaultValues = (raw_sig.Find(wxT("=")) != wxNOT_FOUND);
// the key for unique entries is the function prototype without the variables names and
// any default values
wxString key = TagsManagerST::Get()->NormalizeFunctionSig(raw_sig, Normalize_Func_Reverse_Macro);
// the signature that we want to keep is one with name & default values, so try and get the maximum out of the
// function signature
wxString full_signature = TagsManagerST::Get()->NormalizeFunctionSig(raw_sig, Normalize_Func_Name | Normalize_Func_Default_value | Normalize_Func_Reverse_Macro, &cti.paramLen);
cti.sig = full_signature;
if (hasDefaultValues) {
// incase default values exist in this prototype,
// update/insert this signature
mymap[key] = cti;
}
// make sure we dont add duplicates
if ( mymap.find(key) == mymap.end() ) {
// add it
mymap[key] = cti;
}
} else {
// macro
wxString macroName = t->GetName();
wxString pattern = t->GetPattern();
int where = pattern.Find(macroName);
if (where != wxNOT_FOUND) {
//remove the #define <name> from the pattern
pattern = pattern.Mid(where + macroName.Length());
pattern = pattern.Trim().Trim(false);
if (pattern.StartsWith(wxT("("))) {
//this macro has the form of a function
pattern = pattern.BeforeFirst(wxT(')'));
pattern.Append(wxT(')'));
cti.sig = pattern.Trim().Trim(false);
mymap[cti.sig] = cti;
}
}
}
}
std::map<wxString, tagCallTipInfo>::iterator iter = mymap.begin();
m_tips.clear();
for (; iter != mymap.end(); iter++) {
wxString tip;
if ( iter->second.retValue.empty() == false ) {
tip << iter->second.retValue.Trim(false).Trim() << wxT(" : ");
}
tip << iter->second.sig;
clTipInfo ti;
ti.paramLen = iter->second.paramLen;
ti.str = tip;
m_tips.push_back(ti);
}
}
void clCallTip::GetHighlightPos(int index, int& start, int& len)
{
start = wxNOT_FOUND;
len = wxNOT_FOUND;
if (m_curr >= 0 && m_curr < (int)m_tips.size()) {
clTipInfo ti = m_tips.at(m_curr);
int base = ti.str.Find(wxT("("));
// sanity
if (base != wxNOT_FOUND && index < (int)ti.paramLen.size() && index >= 0) {
start = ti.paramLen.at(index).first + base;
len = ti.paramLen.at(index).second;
}
}
}
wxString clCallTip::Current()
{
// format a tip string and return it
if ( m_tips.empty() )
return wxEmptyString;
if ( m_curr >= (int)m_tips.size() || m_curr < 0) {
m_curr = 0;
}
return TipAt(m_curr);
}
|