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
|
/************************************************************************
************************************************************************
FAUST compiler
Copyright (C) 2003-2018 GRAME, Centre National de Creation Musicale
---------------------------------------------------------------------
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
************************************************************************
************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cstring>
#include <iostream>
#include "compatibility.hh"
#include "exception.hh"
#include "symbol.hh"
using namespace std;
/**
* Hash table used to store the symbols.
*/
Sym Symbol::gSymbolTable[kHashTableSize];
map<string, size_t> Symbol::gPrefixCounters;
/**
* Search the hash table for the symbol of name \p str or returns a new one.
* \param str the name of the symbol
* \return a symbol of name str
*/
Sym Symbol::get(const string& rawstr)
{
// ---replaces control characters with white spaces---
string str = rawstr;
for (size_t i = 0; i < str.size(); i++) {
char c = rawstr[i];
str[i] = (c >= 0 && c < 32) ? 32 : c;
}
size_t hsh = calcHashKey(str);
int bckt = hsh % kHashTableSize;
Sym item = gSymbolTable[bckt];
while (item && !item->equiv(hsh, str)) {
item = item->fNext;
}
Sym r = item ? item : (gSymbolTable[bckt] = new Symbol(str, hsh, gSymbolTable[bckt]));
return r;
}
/**
* Static method that searches the symbol table for a string.
* \param str string to search
* \return true if the string is NOT in the table (it is a new string)
*/
bool Symbol::isnew(const string& str)
{
size_t hsh = calcHashKey(str);
int bckt = hsh % kHashTableSize;
Sym item = gSymbolTable[bckt];
while (item && !item->equiv(hsh, str)) {
item = item->fNext;
}
return item == nullptr;
}
/**
* Creates a new symbol with a name obtained by concatenating the \p str prefix with a number in
* order to make it unique. \param str the prefix of the name \return a symbol of name \p prefix++n
*/
Sym Symbol::prefix(const string& str)
{
string name;
for (int n = 0; n < 10000; n++) {
name = str + std::to_string(gPrefixCounters[str]++);
if (isnew(name)) {
return get(name);
}
}
faustassert(false);
return get("UNIQUEOVERFLOW");
}
/**
* Check if the name of the symbol is equal to string \p str
* This method is used by isnew() and make() when searching the hashtable
* for an existing symbol.
*
* \param hash the hash key of the string (used to speedup the comparison)
* \param str the string to compare
* \return \p true if the name of the symbol and \p str are the same
*/
bool Symbol::equiv(size_t hash, const string& str) const
{
return (fHash == hash) && (fName == str);
}
/**
* Compute the 32-bits hash key of string \p str.
* \param str the string
* \return a 32-bits hash key
*/
std::size_t Symbol::calcHashKey(const std::string& str)
{
std::size_t hk = 0;
for (char c : str) {
// Taken from by boost::hash_combine
hk = hk ^ (static_cast<std::size_t>(c) + 0x9e3779b9 + (hk << 6) + (hk >> 2));
}
return hk;
}
/**
* Constructs a symbol ready to be placed in the hash table.
* Gets a string to be kept.
* \param str the name of the symbol
* \param hsh the hash key of the symbol
* \param nxt a pointer to the next symbol in the hash table entry
*/
Symbol::Symbol(const string& str, size_t hsh, Sym nxt)
{
fName = str;
fHash = hsh;
fNext = nxt;
fData = 0;
}
Symbol::~Symbol()
{
}
ostream& Symbol::print(ostream& fout) const ///< print a symbol on a stream
{
return fout << fName;
}
void Symbol::init()
{
gPrefixCounters.clear();
memset(gSymbolTable, 0, sizeof(Sym) * kHashTableSize);
}
|