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
|
#include "utils.h"
#include <wx/tokenzr.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <wx/string.h>
#include <wx/regex.h>
#include <wx/arrstr.h>
#include <map>
#include "pptable.h"
#ifdef __WXMSW__
# include <windows.h>
# include <process.h>
# include <Tlhelp32.h>
#else
# include <signal.h>
#endif
#ifdef __FreeBSD__
#include <fcntl.h>
#include <paths.h>
#include <kvm.h>
#include <sys/param.h>
#include <sys/sysctl.h>
#include <sys/user.h>
#endif
#ifdef _WIN32
#define CURRENT_GCC_VERSION ((__GNUC__*1000)+(__GNUC_MINOR__*100))
#define GCC_VERSION(major, minor) ((major*1000)+(minor*100))
#if CURRENT_GCC_VERSION < GCC_VERSION(4,9)
#include <string.h>
#define strdup _strdup
#endif
#endif
/**
* helper string methods
*/
/**
* @brief remove whitespaces from string
* @param str
*/
void string_trim(std::string &str)
{
str.erase(0, str.find_first_not_of(" \t\n\r\v"));
str.erase(str.find_last_not_of(" \t\n\r\v")+1);
}
/**
* @brief tokenize string into array of string by delimiters
* @param str input string
* @param delimiters delimiters to break the string according to
* @return vector of strings
*/
std::vector<std::string> string_tokenize(const std::string &str, const std::string& delimiter)
{
std::string::size_type start (0);
std::vector<std::string> tokens;
std::string token;
std::string::size_type end = str.find(delimiter);
while ( end != std::string::npos ) {
if ( end != start )
token = str.substr(start, end - start);
else
token.clear();
// trim spaces
string_trim(token);
if ( !token.empty() )
tokens.push_back(token);
// next token
start = end + delimiter.length();
end = str.find(delimiter, start );
}
if ( start != (str.length() - 1) ) {
// We have another token which is not delimited
token = str.substr(start);
tokens.push_back(token);
}
return tokens;
}
// ------------------------------------------
// Process manipulation
// ------------------------------------------
bool is_process_alive(long pid)
{
#ifdef __WXMSW__
static HANDLE hProc = NULL;
if ( hProc == NULL ) {
hProc = OpenProcess(PROCESS_ALL_ACCESS, FALSE, (DWORD)pid);
}
if ( hProc ) {
int rc = WaitForSingleObject(hProc, 5);
switch (rc) {
case WAIT_TIMEOUT:
return true;
default:
return false;
}
}
return true;
#else
return kill(pid, 0) == 0; // send signal 0 to process
#endif
}
static char *load_file(const char *fileName) {
FILE *fp;
long len;
char *buf = NULL;
fp = fopen(fileName, "rb");
if (!fp) {
return 0;
}
fseek(fp, 0, SEEK_END);
len = ftell(fp);
fseek(fp, 0, SEEK_SET);
buf = (char *)malloc(len+1);
long bytes = fread(buf, sizeof(char), len, fp);
if (bytes != len) {
fclose(fp);
free(buf);
return 0;
}
buf[len] = 0; // make it null terminated string
fclose(fp);
return buf;
}
static CLReplacementList replacements;
static int first = 1;
extern "C" char* ctagsReplacements(char* result)
{
/**
* try to load the file once
**/
if( first ) {
char *content = (char*)0;
char *file_name = getenv("CTAGS_REPLACEMENTS");
first = 0;
if(file_name) {
/* open the file */
content = load_file(file_name);
if(content) {
wxArrayString lines = wxStringTokenize(wxString::From8BitData(content), wxT("\n"), wxTOKEN_STRTOK);
free(content);
for(size_t i=0; i<lines.GetCount(); i++) {
wxString pattern = lines.Item(i).BeforeFirst(wxT('='));
wxString replace = lines.Item(i).AfterFirst(wxT('='));
pattern.Trim().Trim(false);
replace.Trim().Trim(false);
CLReplacement repl;
repl.construct(pattern.To8BitData().data(), replace.To8BitData().data());
if(repl.is_ok) {
replacements.push_back( repl );
}
}
}
}
}
if( replacements.empty() == false ) {
std::string outStr = result;
CLReplacementList::iterator iter = replacements.begin();
for(; iter != replacements.end(); iter++) {
CLReplacePatternA(outStr, *iter, outStr);
}
if(outStr == result)
return NULL;
return strdup(outStr.c_str());
}
return NULL;
}
|