2015-05-07 15:58:04 +00:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
2016-02-12 16:23:26 +00:00
|
|
|
Copyright (c) 2014-2016 Chung, Hyung-Hwan. All rights reserved.
|
2015-05-07 15:58:04 +00:00
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
|
|
|
|
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stix-prv.h"
|
|
|
|
|
2015-05-28 16:51:37 +00:00
|
|
|
static stix_oop_oop_t expand_bucket (stix_t* stix, stix_oop_oop_t oldbuc)
|
2015-05-07 15:58:04 +00:00
|
|
|
{
|
2015-05-28 16:51:37 +00:00
|
|
|
stix_oop_oop_t newbuc;
|
2015-05-07 15:58:04 +00:00
|
|
|
stix_oow_t oldsz, newsz, index;
|
|
|
|
stix_oop_association_t ass;
|
|
|
|
stix_oop_char_t key;
|
|
|
|
|
2015-12-22 07:49:28 +00:00
|
|
|
oldsz = STIX_OBJ_GET_SIZE(oldbuc);
|
|
|
|
|
|
|
|
/* TODO: better growth policy? */
|
|
|
|
if (oldsz < 5000) newsz = oldsz + oldsz;
|
|
|
|
else if (oldsz < 50000) newsz = oldsz + (oldsz / 2);
|
|
|
|
else if (oldsz < 100000) newsz = oldsz + (oldsz / 4);
|
|
|
|
else if (oldsz < 200000) newsz = oldsz + (oldsz / 8);
|
|
|
|
else if (oldsz < 400000) newsz = oldsz + (oldsz / 16);
|
|
|
|
else if (oldsz < 800000) newsz = oldsz + (oldsz / 32);
|
|
|
|
else if (oldsz < 1600000) newsz = oldsz + (oldsz / 64);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
stix_oow_t inc, inc_max;
|
|
|
|
|
|
|
|
inc = oldsz / 128;
|
|
|
|
inc_max = STIX_OBJ_SIZE_MAX - oldsz;
|
|
|
|
if (inc > inc_max)
|
|
|
|
{
|
|
|
|
if (inc_max > 0) inc = inc_max;
|
|
|
|
else
|
|
|
|
{
|
2015-12-22 15:50:01 +00:00
|
|
|
stix->errnum = STIX_EOOMEM;
|
2015-12-22 07:49:28 +00:00
|
|
|
return STIX_NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
newsz = oldsz + inc;
|
|
|
|
}
|
|
|
|
|
2015-05-28 16:51:37 +00:00
|
|
|
stix_pushtmp (stix, (stix_oop_t*)&oldbuc);
|
2015-12-22 07:49:28 +00:00
|
|
|
newbuc = (stix_oop_oop_t)stix_instantiate (stix, stix->_array, STIX_NULL, newsz);
|
2015-05-28 16:51:37 +00:00
|
|
|
stix_poptmp (stix);
|
|
|
|
if (!newbuc) return STIX_NULL;
|
2015-05-07 15:58:04 +00:00
|
|
|
|
|
|
|
while (oldsz > 0)
|
|
|
|
{
|
2015-05-28 16:51:37 +00:00
|
|
|
ass = (stix_oop_association_t)oldbuc->slot[--oldsz];
|
2015-05-07 15:58:04 +00:00
|
|
|
if ((stix_oop_t)ass != stix->_nil)
|
|
|
|
{
|
2016-12-26 18:44:47 +00:00
|
|
|
STIX_ASSERT (stix, STIX_CLASSOF(stix,ass) == stix->_association);
|
2015-05-07 15:58:04 +00:00
|
|
|
|
|
|
|
key = (stix_oop_char_t)ass->key;
|
2016-12-26 18:44:47 +00:00
|
|
|
STIX_ASSERT (stix, STIX_CLASSOF(stix,key) == (stix_oop_t)stix->_symbol);
|
2015-05-07 15:58:04 +00:00
|
|
|
|
2017-01-05 10:16:04 +00:00
|
|
|
index = stix_hashoochars(key->slot, STIX_OBJ_GET_SIZE(key)) % newsz;
|
2015-05-28 16:51:37 +00:00
|
|
|
while (newbuc->slot[index] != stix->_nil) index = (index + 1) % newsz;
|
|
|
|
newbuc->slot[index] = (stix_oop_t)ass;
|
2015-05-07 15:58:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-28 16:51:37 +00:00
|
|
|
return newbuc;
|
2015-05-07 15:58:04 +00:00
|
|
|
}
|
|
|
|
|
2015-07-15 08:39:18 +00:00
|
|
|
static stix_oop_association_t find_or_upsert (stix_t* stix, stix_oop_set_t dic, stix_oop_char_t key, stix_oop_t value)
|
2015-05-07 15:58:04 +00:00
|
|
|
{
|
2015-11-20 09:05:55 +00:00
|
|
|
stix_ooi_t tally;
|
|
|
|
stix_oow_t index;
|
2015-05-07 15:58:04 +00:00
|
|
|
stix_oop_association_t ass;
|
|
|
|
stix_oow_t tmp_count = 0;
|
|
|
|
|
|
|
|
/* the system dictionary is not a generic dictionary.
|
|
|
|
* it accepts only a symbol as a key. */
|
2016-12-26 18:44:47 +00:00
|
|
|
STIX_ASSERT (stix, STIX_CLASSOF(stix,key) == stix->_symbol);
|
|
|
|
STIX_ASSERT (stix, STIX_CLASSOF(stix,dic->tally) == stix->_small_integer);
|
|
|
|
STIX_ASSERT (stix, STIX_CLASSOF(stix,dic->bucket) == stix->_array);
|
2015-05-07 15:58:04 +00:00
|
|
|
|
2017-01-05 10:16:04 +00:00
|
|
|
index = stix_hashoochars(key->slot, STIX_OBJ_GET_SIZE(key)) % STIX_OBJ_GET_SIZE(dic->bucket);
|
2015-05-07 15:58:04 +00:00
|
|
|
|
2015-11-20 09:05:55 +00:00
|
|
|
/* find */
|
2015-05-28 16:51:37 +00:00
|
|
|
while (dic->bucket->slot[index] != stix->_nil)
|
2015-05-07 15:58:04 +00:00
|
|
|
{
|
2015-05-28 16:51:37 +00:00
|
|
|
ass = (stix_oop_association_t)dic->bucket->slot[index];
|
2015-05-07 15:58:04 +00:00
|
|
|
|
2016-12-26 18:44:47 +00:00
|
|
|
STIX_ASSERT (stix, STIX_CLASSOF(stix,ass) == stix->_association);
|
|
|
|
STIX_ASSERT (stix, STIX_CLASSOF(stix,ass->key) == stix->_symbol);
|
2015-05-07 15:58:04 +00:00
|
|
|
|
2015-05-08 14:29:35 +00:00
|
|
|
if (STIX_OBJ_GET_SIZE(key) == STIX_OBJ_GET_SIZE(ass->key) &&
|
2016-11-29 05:25:08 +00:00
|
|
|
stix_equaloochars (key->slot, ((stix_oop_char_t)ass->key)->slot, STIX_OBJ_GET_SIZE(key)))
|
2015-05-07 15:58:04 +00:00
|
|
|
{
|
2015-07-15 08:39:18 +00:00
|
|
|
/* the value of STIX_NULL indicates no insertion or update. */
|
2015-11-20 09:05:55 +00:00
|
|
|
if (value) ass->value = value; /* update */
|
2015-06-04 18:34:37 +00:00
|
|
|
return ass;
|
2015-05-07 15:58:04 +00:00
|
|
|
}
|
|
|
|
|
2015-05-28 16:51:37 +00:00
|
|
|
index = (index + 1) % STIX_OBJ_GET_SIZE(dic->bucket);
|
2015-05-07 15:58:04 +00:00
|
|
|
}
|
|
|
|
|
2015-07-15 08:39:18 +00:00
|
|
|
if (!value)
|
2015-05-07 15:58:04 +00:00
|
|
|
{
|
2015-07-15 08:39:18 +00:00
|
|
|
/* when value is STIX_NULL, perform no insertion.
|
|
|
|
* the value of STIX_NULL indicates no insertion or update. */
|
2015-05-07 15:58:04 +00:00
|
|
|
stix->errnum = STIX_ENOENT;
|
|
|
|
return STIX_NULL;
|
|
|
|
}
|
|
|
|
|
2015-11-20 09:05:55 +00:00
|
|
|
/* the key is not found. insert it. */
|
2016-12-26 18:44:47 +00:00
|
|
|
STIX_ASSERT (stix, STIX_OOP_IS_SMOOI(dic->tally));
|
2015-11-20 09:05:55 +00:00
|
|
|
tally = STIX_OOP_TO_SMOOI(dic->tally);
|
|
|
|
if (tally >= STIX_SMOOI_MAX)
|
|
|
|
{
|
|
|
|
/* this built-in dictionary is not allowed to hold more than
|
|
|
|
* STIX_SMOOI_MAX items for efficiency sake */
|
|
|
|
stix->errnum = STIX_EDFULL;
|
|
|
|
return STIX_NULL;
|
|
|
|
}
|
|
|
|
|
2015-05-28 16:51:37 +00:00
|
|
|
stix_pushtmp (stix, (stix_oop_t*)&dic); tmp_count++;
|
2015-05-07 15:58:04 +00:00
|
|
|
stix_pushtmp (stix, (stix_oop_t*)&key); tmp_count++;
|
|
|
|
stix_pushtmp (stix, &value); tmp_count++;
|
|
|
|
|
2015-11-20 09:05:55 +00:00
|
|
|
/* no conversion to stix_oow_t is necessary for tally + 1.
|
|
|
|
* the maximum value of tally is checked to be STIX_SMOOI_MAX - 1.
|
|
|
|
* tally + 1 can produce at most STIX_SMOOI_MAX. above all,
|
|
|
|
* STIX_SMOOI_MAX is way smaller than STIX_TYPE_MAX(stix_ooi_t). */
|
2015-05-28 16:51:37 +00:00
|
|
|
if (tally + 1 >= STIX_OBJ_GET_SIZE(dic->bucket))
|
2015-05-07 15:58:04 +00:00
|
|
|
{
|
|
|
|
stix_oop_oop_t bucket;
|
|
|
|
|
|
|
|
/* TODO: make the growth policy configurable instead of growing
|
2015-11-20 09:05:55 +00:00
|
|
|
it just before it gets full. The polcy can be grow it
|
2015-05-07 15:58:04 +00:00
|
|
|
if it's 70% full */
|
|
|
|
|
2015-11-20 09:05:55 +00:00
|
|
|
/* enlarge the bucket before it gets full to
|
2015-05-07 15:58:04 +00:00
|
|
|
* make sure that it has at least one free slot left
|
|
|
|
* after having added a new symbol. this is to help
|
|
|
|
* traversal end at a _nil slot if no entry is found. */
|
2015-05-28 16:51:37 +00:00
|
|
|
bucket = expand_bucket (stix, dic->bucket);
|
2015-05-07 15:58:04 +00:00
|
|
|
if (!bucket) goto oops;
|
|
|
|
|
2015-05-28 16:51:37 +00:00
|
|
|
dic->bucket = bucket;
|
2015-05-07 15:58:04 +00:00
|
|
|
|
|
|
|
/* recalculate the index for the expanded bucket */
|
2017-01-05 10:16:04 +00:00
|
|
|
index = stix_hashoochars(key->slot, STIX_OBJ_GET_SIZE(key)) % STIX_OBJ_GET_SIZE(dic->bucket);
|
2015-05-07 15:58:04 +00:00
|
|
|
|
2015-05-28 16:51:37 +00:00
|
|
|
while (dic->bucket->slot[index] != stix->_nil)
|
|
|
|
index = (index + 1) % STIX_OBJ_GET_SIZE(dic->bucket);
|
2015-05-07 15:58:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* create a new assocation of a key and a value since
|
|
|
|
* the key isn't found in the root dictionary */
|
|
|
|
ass = (stix_oop_association_t)stix_instantiate (stix, stix->_association, STIX_NULL, 0);
|
2015-05-11 16:08:09 +00:00
|
|
|
if (!ass) goto oops;
|
2015-05-28 16:51:37 +00:00
|
|
|
|
2015-05-11 16:08:09 +00:00
|
|
|
ass->key = (stix_oop_t)key;
|
|
|
|
ass->value = value;
|
2015-05-07 15:58:04 +00:00
|
|
|
|
2015-11-20 09:05:55 +00:00
|
|
|
/* the current tally must be less than the maximum value. otherwise,
|
|
|
|
* it overflows after increment below */
|
2016-12-26 18:44:47 +00:00
|
|
|
STIX_ASSERT (stix, tally < STIX_SMOOI_MAX);
|
2015-11-12 06:57:35 +00:00
|
|
|
dic->tally = STIX_SMOOI_TO_OOP(tally + 1);
|
2015-05-28 16:51:37 +00:00
|
|
|
dic->bucket->slot[index] = (stix_oop_t)ass;
|
2015-05-07 15:58:04 +00:00
|
|
|
|
|
|
|
stix_poptmps (stix, tmp_count);
|
2015-06-04 18:34:37 +00:00
|
|
|
return ass;
|
2015-05-07 15:58:04 +00:00
|
|
|
|
|
|
|
oops:
|
|
|
|
stix_poptmps (stix, tmp_count);
|
|
|
|
return STIX_NULL;
|
|
|
|
}
|
|
|
|
|
2015-10-28 14:58:58 +00:00
|
|
|
static stix_oop_association_t lookup (stix_t* stix, stix_oop_set_t dic, const stix_oocs_t* name)
|
2015-05-25 17:10:49 +00:00
|
|
|
{
|
|
|
|
/* this is special version of stix_getatsysdic() that performs
|
|
|
|
* lookup using a plain string specified */
|
|
|
|
|
|
|
|
stix_oow_t index;
|
|
|
|
stix_oop_association_t ass;
|
|
|
|
|
2016-12-26 18:44:47 +00:00
|
|
|
STIX_ASSERT (stix, STIX_CLASSOF(stix,dic->tally) == stix->_small_integer);
|
|
|
|
STIX_ASSERT (stix, STIX_CLASSOF(stix,dic->bucket) == stix->_array);
|
2015-05-25 17:10:49 +00:00
|
|
|
|
2017-01-05 10:16:04 +00:00
|
|
|
index = stix_hashoochars(name->ptr, name->len) % STIX_OBJ_GET_SIZE(dic->bucket);
|
2015-05-25 17:10:49 +00:00
|
|
|
|
2015-05-28 16:51:37 +00:00
|
|
|
while (dic->bucket->slot[index] != stix->_nil)
|
2015-05-25 17:10:49 +00:00
|
|
|
{
|
2015-05-28 16:51:37 +00:00
|
|
|
ass = (stix_oop_association_t)dic->bucket->slot[index];
|
2015-05-25 17:10:49 +00:00
|
|
|
|
2016-12-26 18:44:47 +00:00
|
|
|
STIX_ASSERT (stix, STIX_CLASSOF(stix,ass) == stix->_association);
|
|
|
|
STIX_ASSERT (stix, STIX_CLASSOF(stix,ass->key) == stix->_symbol);
|
2015-05-25 17:10:49 +00:00
|
|
|
|
|
|
|
if (name->len == STIX_OBJ_GET_SIZE(ass->key) &&
|
2016-11-29 05:25:08 +00:00
|
|
|
stix_equaloochars(name->ptr, ((stix_oop_char_t)ass->key)->slot, name->len))
|
2015-05-25 17:10:49 +00:00
|
|
|
{
|
2015-06-04 18:34:37 +00:00
|
|
|
return ass;
|
2015-05-25 17:10:49 +00:00
|
|
|
}
|
|
|
|
|
2015-05-28 16:51:37 +00:00
|
|
|
index = (index + 1) % STIX_OBJ_GET_SIZE(dic->bucket);
|
2015-05-25 17:10:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* when value is STIX_NULL, perform no insertion */
|
|
|
|
stix->errnum = STIX_ENOENT;
|
|
|
|
return STIX_NULL;
|
|
|
|
}
|
2015-05-28 16:51:37 +00:00
|
|
|
|
2015-06-04 18:34:37 +00:00
|
|
|
stix_oop_association_t stix_putatsysdic (stix_t* stix, stix_oop_t key, stix_oop_t value)
|
2015-05-28 16:51:37 +00:00
|
|
|
{
|
2016-12-26 18:44:47 +00:00
|
|
|
STIX_ASSERT (stix, STIX_CLASSOF(stix,key) == stix->_symbol);
|
2015-07-15 08:39:18 +00:00
|
|
|
return find_or_upsert (stix, stix->sysdic, (stix_oop_char_t)key, value);
|
2015-05-28 16:51:37 +00:00
|
|
|
}
|
|
|
|
|
2015-06-04 18:34:37 +00:00
|
|
|
stix_oop_association_t stix_getatsysdic (stix_t* stix, stix_oop_t key)
|
2015-05-28 16:51:37 +00:00
|
|
|
{
|
2016-12-26 18:44:47 +00:00
|
|
|
STIX_ASSERT (stix, STIX_CLASSOF(stix,key) == stix->_symbol);
|
2015-07-15 08:39:18 +00:00
|
|
|
return find_or_upsert (stix, stix->sysdic, (stix_oop_char_t)key, STIX_NULL);
|
2015-05-28 16:51:37 +00:00
|
|
|
}
|
|
|
|
|
2015-10-28 14:58:58 +00:00
|
|
|
stix_oop_association_t stix_lookupsysdic (stix_t* stix, const stix_oocs_t* name)
|
2015-05-28 16:51:37 +00:00
|
|
|
{
|
|
|
|
return lookup (stix, stix->sysdic, name);
|
|
|
|
}
|
|
|
|
|
2015-06-04 18:34:37 +00:00
|
|
|
stix_oop_association_t stix_putatdic (stix_t* stix, stix_oop_set_t dic, stix_oop_t key, stix_oop_t value)
|
2015-05-28 16:51:37 +00:00
|
|
|
{
|
2016-12-26 18:44:47 +00:00
|
|
|
STIX_ASSERT (stix, STIX_CLASSOF(stix,key) == stix->_symbol);
|
2015-07-15 08:39:18 +00:00
|
|
|
return find_or_upsert (stix, dic, (stix_oop_char_t)key, value);
|
2015-05-28 16:51:37 +00:00
|
|
|
}
|
|
|
|
|
2015-06-04 18:34:37 +00:00
|
|
|
stix_oop_association_t stix_getatdic (stix_t* stix, stix_oop_set_t dic, stix_oop_t key)
|
2015-05-28 16:51:37 +00:00
|
|
|
{
|
2016-12-26 18:44:47 +00:00
|
|
|
STIX_ASSERT (stix, STIX_CLASSOF(stix,key) == stix->_symbol);
|
2015-07-15 08:39:18 +00:00
|
|
|
return find_or_upsert (stix, dic, (stix_oop_char_t)key, STIX_NULL);
|
2015-05-28 16:51:37 +00:00
|
|
|
}
|
|
|
|
|
2015-10-28 14:58:58 +00:00
|
|
|
stix_oop_association_t stix_lookupdic (stix_t* stix, stix_oop_set_t dic, const stix_oocs_t* name)
|
2015-05-28 16:51:37 +00:00
|
|
|
{
|
|
|
|
return lookup (stix, dic, name);
|
|
|
|
}
|
|
|
|
|
2015-06-04 18:34:37 +00:00
|
|
|
stix_oop_set_t stix_makedic (stix_t* stix, stix_oop_t cls, stix_oow_t size)
|
2015-05-28 16:51:37 +00:00
|
|
|
{
|
|
|
|
stix_oop_set_t dic;
|
|
|
|
stix_oop_t tmp;
|
|
|
|
|
2016-12-26 18:44:47 +00:00
|
|
|
STIX_ASSERT (stix, STIX_CLASSOF(stix,cls) == stix->_class);
|
2015-05-31 16:44:56 +00:00
|
|
|
|
2015-05-28 16:51:37 +00:00
|
|
|
dic = (stix_oop_set_t)stix_instantiate (stix, cls, STIX_NULL, 0);
|
|
|
|
if (!dic) return STIX_NULL;
|
|
|
|
|
2016-12-26 18:44:47 +00:00
|
|
|
STIX_ASSERT (stix, STIX_OBJ_GET_SIZE(dic) == STIX_SET_NAMED_INSTVARS);
|
2015-05-28 16:51:37 +00:00
|
|
|
|
|
|
|
stix_pushtmp (stix, (stix_oop_t*)&dic);
|
|
|
|
tmp = stix_instantiate (stix, stix->_array, STIX_NULL, size);
|
|
|
|
stix_poptmp (stix);
|
|
|
|
if (!tmp) return STIX_NULL;
|
|
|
|
|
2015-11-12 06:57:35 +00:00
|
|
|
dic->tally = STIX_SMOOI_TO_OOP(0);
|
2015-05-28 16:51:37 +00:00
|
|
|
dic->bucket = (stix_oop_oop_t)tmp;
|
2015-05-31 18:43:37 +00:00
|
|
|
|
2016-12-26 18:44:47 +00:00
|
|
|
STIX_ASSERT (stix, STIX_OBJ_GET_SIZE(dic) == STIX_SET_NAMED_INSTVARS);
|
|
|
|
STIX_ASSERT (stix, STIX_OBJ_GET_SIZE(dic->bucket) == size);
|
2015-05-31 18:43:37 +00:00
|
|
|
|
2015-06-04 18:34:37 +00:00
|
|
|
return dic;
|
2015-05-28 16:51:37 +00:00
|
|
|
}
|