|
| | antelope.c |
| | Main functions for Antelope, a DBMS for sensor devices.
|
| |
| | antelope.h |
| | Declarations of the main Antelope functions.
|
| |
| | aql-adt.c |
| | Utilities for building the internal representation of an AQL command.
|
| |
| | aql-exec.c |
| | Query execution functions for AQL.
|
| |
| | aql-lexer.c |
| | Lexical analyzer for AQL, the Antelope Query Language.
|
| |
| | aql-parser.c |
| | A recursive parser for AQL, the Antelope Query Language.
|
| |
| | aql.h |
| | Definitions and declarations for AQL, the Antelope Query Language.
|
| |
| | attribute.h |
| | Definitions for attributes.
|
| |
| | db-options.h |
| | Database configuration options.
|
| |
| | db-types.h |
| |
| | debug.h |
| | A set of debugging macros.
|
| |
| | index-inline.c |
| | A binary search index for attributes that are constrained to be monotonically increasing, which is a rather common pattern for time series or keys.
|
| |
| | index-maxheap.c |
| | MaxHeap - A binary maximum heap index for flash memory.
|
| |
| | index-memhash.c |
| | A memory-resident hash map used as a DB index.
|
| |
| | index.c |
| | This component forwards index calls using the generic index API to specific implementations.
|
| |
| | index.h |
| |
| | lvm.c |
| | Logic engine used for quickly evaluating data constraints in relations.
|
| |
| | lvm.h |
| | Definitions and declarations for the Propositional Logic Engine.
|
| |
| | relation.c |
| | Logic for relational databases.
|
| |
| | relation.h |
| |
| | result.c |
| | Result acquisition interface for AQL queries.
|
| |
| | result.h |
| | Declarations for the result acquisition API.
|
| |
| | storage-cfs.c |
| | Contiki File System (CFS) backend for the storage abstraction used by the database.
|
| |
| | storage.h |
| | The storage interface used by the database.
|
| |