2017-04-18 02:40:39 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2017 Calvin Rose
|
2017-07-02 01:51:16 +00:00
|
|
|
*
|
2017-04-18 02:40:39 +00:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to
|
|
|
|
* deal in the Software without restriction, including without limitation the
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2017-07-02 01:51:16 +00:00
|
|
|
*
|
2017-04-18 02:40:39 +00:00
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
2017-07-02 01:51:16 +00:00
|
|
|
*
|
2017-04-18 02:40:39 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2017-11-06 03:05:47 +00:00
|
|
|
#include <dst/dst.h>
|
2017-11-27 19:03:34 +00:00
|
|
|
#include "symcache.h"
|
2017-12-21 04:03:34 +00:00
|
|
|
#include "gc.h"
|
2018-01-06 16:09:15 +00:00
|
|
|
#include "util.h"
|
2017-04-15 20:05:59 +00:00
|
|
|
|
2017-11-01 21:53:43 +00:00
|
|
|
/* Create a new empty tuple of the given size. This will return memory
|
2018-01-06 16:09:15 +00:00
|
|
|
* which should be filled with Dsts. The memory will not be collected until
|
2017-11-01 21:53:43 +00:00
|
|
|
* dst_tuple_end is called. */
|
2018-01-06 16:09:15 +00:00
|
|
|
Dst *dst_tuple_begin(int32_t length) {
|
|
|
|
char *data = dst_gcalloc(DST_MEMORY_TUPLE, 2 * sizeof(int32_t) + length * sizeof(Dst));
|
|
|
|
Dst *tuple = (Dst *)(data + (2 * sizeof(int32_t)));
|
2017-11-01 21:53:43 +00:00
|
|
|
dst_tuple_length(tuple) = length;
|
|
|
|
return tuple;
|
|
|
|
}
|
2017-04-15 20:05:59 +00:00
|
|
|
|
2017-11-01 21:53:43 +00:00
|
|
|
/* Finish building a tuple */
|
2018-01-06 16:09:15 +00:00
|
|
|
const Dst *dst_tuple_end(Dst *tuple) {
|
2017-11-29 20:17:56 +00:00
|
|
|
dst_tuple_hash(tuple) = dst_array_calchash(tuple, dst_tuple_length(tuple));
|
2018-01-06 16:09:15 +00:00
|
|
|
return (const Dst *)tuple;
|
2017-11-01 21:53:43 +00:00
|
|
|
}
|
2017-04-15 20:05:59 +00:00
|
|
|
|
2017-11-06 03:05:47 +00:00
|
|
|
/* Build a tuple with n values */
|
2018-01-06 16:09:15 +00:00
|
|
|
const Dst *dst_tuple_n(Dst *values, int32_t n) {
|
|
|
|
Dst *t = dst_tuple_begin(n);
|
|
|
|
memcpy(t, values, sizeof(Dst) * n);
|
2017-11-06 03:05:47 +00:00
|
|
|
return dst_tuple_end(t);
|
2017-11-01 21:53:43 +00:00
|
|
|
}
|
2017-11-27 19:03:34 +00:00
|
|
|
|
|
|
|
/* Check if two tuples are equal */
|
2018-01-06 16:09:15 +00:00
|
|
|
int dst_tuple_equal(const Dst *lhs, const Dst *rhs) {
|
2017-11-28 23:27:55 +00:00
|
|
|
int32_t index;
|
|
|
|
int32_t llen = dst_tuple_length(lhs);
|
|
|
|
int32_t rlen = dst_tuple_length(rhs);
|
|
|
|
int32_t lhash = dst_tuple_hash(lhs);
|
|
|
|
int32_t rhash = dst_tuple_hash(rhs);
|
2017-11-27 19:03:34 +00:00
|
|
|
if (lhash == 0)
|
|
|
|
lhash = dst_tuple_hash(lhs) = dst_array_calchash(lhs, llen);
|
|
|
|
if (rhash == 0)
|
|
|
|
rhash = dst_tuple_hash(rhs) = dst_array_calchash(rhs, rlen);
|
|
|
|
if (lhash != rhash)
|
|
|
|
return 0;
|
2017-11-29 20:17:56 +00:00
|
|
|
if (llen != rlen)
|
|
|
|
return 0;
|
2017-11-27 19:03:34 +00:00
|
|
|
for (index = 0; index < llen; index++) {
|
|
|
|
if (!dst_equals(lhs[index], rhs[index]))
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Compare tuples */
|
2018-01-06 16:09:15 +00:00
|
|
|
int dst_tuple_compare(const Dst *lhs, const Dst *rhs) {
|
2017-11-28 23:27:55 +00:00
|
|
|
int32_t i;
|
|
|
|
int32_t llen = dst_tuple_length(lhs);
|
|
|
|
int32_t rlen = dst_tuple_length(rhs);
|
|
|
|
int32_t count = llen < rlen ? llen : rlen;
|
2017-11-27 19:03:34 +00:00
|
|
|
for (i = 0; i < count; ++i) {
|
|
|
|
int comp = dst_compare(lhs[i], rhs[i]);
|
|
|
|
if (comp != 0) return comp;
|
|
|
|
}
|
|
|
|
if (llen < rlen)
|
|
|
|
return -1;
|
|
|
|
else if (llen > rlen)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|