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
|
#include "PHPDocVar.h"
#include <wx/regex.h>
PHPDocVar::PHPDocVar(PHPSourceFile& sourceFile, const wxString& doc)
: m_isOk(false)
, m_dbId(wxNOT_FOUND)
, m_lineNumber(wxNOT_FOUND)
{
static wxRegEx reVarType(wxT("@(var|variable)[ \t]+([\\a-zA-Z_]{1}[\\a-zA-Z0-9_]*)"));
if(reVarType.IsValid() && reVarType.Matches(doc)) {
m_type = reVarType.GetMatch(doc, 2);
m_type = sourceFile.MakeIdentifierAbsolute(m_type);
m_isOk = true;
}
// @var Type $Name
static wxRegEx reVarType2(wxT("@(var|variable)[ \t]+([\\a-zA-Z0-9_]+)[ \t]+([\\$]{1}[\\a-zA-Z0-9_]*)"));
if(reVarType2.IsValid() && reVarType2.Matches(doc)) {
m_type = reVarType2.GetMatch(doc, 2);
m_type = sourceFile.MakeIdentifierAbsolute(m_type);
m_name = reVarType2.GetMatch(doc, 3);
m_isOk = true;
}
m_filename = sourceFile.GetFilename();
}
PHPDocVar::PHPDocVar()
: m_isOk(false)
, m_dbId(wxNOT_FOUND)
, m_lineNumber(wxNOT_FOUND)
{
}
PHPDocVar::~PHPDocVar() {}
void PHPDocVar::Store(wxSQLite3Database& db, wxLongLong parentDdId)
{
try {
wxSQLite3Statement statement = db.PrepareStatement(
"REPLACE INTO PHPDOC_VAR_TABLE (ID, SCOPE_ID, NAME, TYPE, LINE_NUMBER, FILE_NAME) "
"VALUES (NULL, :SCOPE_ID, :NAME, :TYPE, :LINE_NUMBER, :FILE_NAME)");
statement.Bind(statement.GetParamIndex(":SCOPE_ID"), parentDdId);
statement.Bind(statement.GetParamIndex(":NAME"), GetName());
statement.Bind(statement.GetParamIndex(":TYPE"), GetType());
statement.Bind(statement.GetParamIndex(":LINE_NUMBER"), GetLineNumber());
statement.Bind(statement.GetParamIndex(":FILE_NAME"), GetFilename().GetFullPath());
statement.ExecuteUpdate();
SetDbId(db.GetLastRowId());
} catch(wxSQLite3Exception& exc) {
wxUnusedVar(exc);
}
}
void PHPDocVar::FromResultSet(wxSQLite3ResultSet& res)
{
SetDbId(res.GetInt("ID"));
SetParentDbId(res.GetInt("SCOPE_ID"));
SetName(res.GetString("NAME"));
SetType(res.GetString("TYPE"));
SetLineNumber(res.GetInt("LINE_NUMBER"));
SetFilename(res.GetString("FILE_NAME"));
}
|