Jazz 1.25.+
Loading...
Searching...
No Matches
sem_space.h
1/* Jazz (c) 2018-2025 kaalam.ai (The Authors of Jazz), using (under the same license):
2
3 1. Biomodelling - The AATBlockQueue class (c) Jacques BasaldĂșa, 2009-2012 licensed
4 exclusively for the use in the Jazz server software.
5
6 Copyright 2009-2012 Jacques BasaldĂșa
7
8 2. BBVA - Jazz: A lightweight analytical web server for data-driven applications.
9
10 Copyright 2016-2017 Banco Bilbao Vizcaya Argentaria, S.A.
11
12 This product includes software developed at
13
14 BBVA (https://www.bbva.com/)
15
16 3. LMDB, Copyright 2011-2017 Howard Chu, Symas Corp. All rights reserved.
17
18 Licensed under http://www.OpenLDAP.org/license.html
19
20
21 Licensed under the Apache License, Version 2.0 (the "License");
22 you may not use this file except in compliance with the License.
23 You may obtain a copy of the License at
24
25 http://www.apache.org/licenses/LICENSE-2.0
26
27 Unless required by applicable law or agreed to in writing, software
28 distributed under the License is distributed on an "AS IS" BASIS,
29 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
30 See the License for the specific language governing permissions and
31 limitations under the License.
32*/
33
34
35#include "src/jazz_models/concept.h"
36
37#if defined CATCH_TEST
38#ifndef INCLUDED_JAZZ_CATCH2
39#define INCLUDED_JAZZ_CATCH2
40
41#include "src/catch2/catch.hpp"
42
43#endif
44#endif
45
46
47#ifndef INCLUDED_JAZZ_BEBOP_SEM_SPACE
48#define INCLUDED_JAZZ_BEBOP_SEM_SPACE
49
50
55namespace jazz_models
56{
57
60class SemSpace : public Space {
61
62 public:
63
64 SemSpace(pBaseAPI api);
65
66 virtual StatusCode start();
67
68 virtual pChar const id();
69
70 // SemSpace-ETL interface
71
72//TODO: Define the SemSpace-ETL interface. This is understood by the Bop compiler and is used by ETL maintenance software that writes
73// special Bop scripts to populate/update/destroy the SemSpace.
74
75//TODO: Define the SemSpace interface.
76
77 private:
78
80};
82
83} // namespace jazz_models
84
85#endif // ifndef INCLUDED_JAZZ_BEBOP_SEM_SPACE
BaseAPI: The parent of API and Core.
Definition base_api.h:122
Space: The abstract space.
Definition space.h:256
SemSpace: A Fields for Concepts.
Definition sem_space.h:60
virtual StatusCode start()
Definition sem_space.cpp:59
virtual pChar const id()
Definition sem_space.cpp:90
Name storage_ent
The name of the storage entity (Typically an lmdb database with the metadata of all SemSpace).
Definition sem_space.h:79
char * pChar
A pointer to a char buffer.
Definition types.h:186
char Name[NAME_SIZE]
A short identifier used in Blocks, Containers and API.
Definition types.h:184
int StatusCode
Type returned by the Service API.
Definition utils.h:141
Concepts: A tree of Snippets with support fro blending that populates a semantic space.
Definition concept.cpp:39
SemSpace * pSemSpace
A pointer to a SemSpace.
Definition sem_space.h:81