Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-cpplib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-cpplib
Commits
321264f5
Verified
Commit
321264f5
authored
3 years ago
by
Timm Fitschen
Browse files
Options
Downloads
Patches
Plain Diff
Add more declarations in ccaosdb.h
parent
ef20b937
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!23
Copy constructor for result set and entity
Pipeline
#13215
passed
3 years ago
Stage: info
Stage: setup
Stage: test
Stage: deploy
Pipeline: caosdb-cppinttest
#13216
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/ccaosdb.h
+18
-6
18 additions, 6 deletions
include/ccaosdb.h
with
18 additions
and
6 deletions
include/ccaosdb.h
+
18
−
6
View file @
321264f5
...
@@ -297,12 +297,17 @@ typedef struct caosdb_transaction_result_set {
...
@@ -297,12 +297,17 @@ typedef struct caosdb_transaction_result_set {
bool
_deletable
=
false
;
bool
_deletable
=
false
;
}
caosdb_transaction_result_set
;
}
caosdb_transaction_result_set
;
typedef
struct
caosdb_entity_entity
{
void
*
wrapped_entity
;
bool
_deletable
=
false
;
}
caosdb_entity_entity
;
int
caosdb_transaction_transaction_get_result_set
(
caosdb_transaction_transaction
*
transaction
,
int
caosdb_transaction_transaction_get_result_set
(
caosdb_transaction_transaction
*
transaction
,
caosdb_transaction_result_set
*
out
);
caosdb_transaction_result_set
*
out
);
/**
/**
* Release the result set from the transaction.
* Release the result set from the transaction.
*
*
* The transactions is spoiled after this action and should be used anymore.
* The transactions is spoiled after this action and should
not
be used anymore.
*
*
* Note: The result_set has to be deleted via caosdb_transaction_delete_result_set.
* Note: The result_set has to be deleted via caosdb_transaction_delete_result_set.
*
*
...
@@ -310,6 +315,18 @@ int caosdb_transaction_transaction_get_result_set(caosdb_transaction_transaction
...
@@ -310,6 +315,18 @@ int caosdb_transaction_transaction_get_result_set(caosdb_transaction_transaction
*/
*/
int
caosdb_transaction_transaction_release_result_set
(
caosdb_transaction_transaction
*
transaction
,
int
caosdb_transaction_transaction_release_result_set
(
caosdb_transaction_transaction
*
transaction
,
caosdb_transaction_result_set
*
out
);
caosdb_transaction_result_set
*
out
);
/**
* Release the entity from the result set.
*
* Each entity (each index) can be released once. The result set is spoiled
* after this action and should not be used for anything else anymore.
*
* Note: The result_set has to be deleted via caosdb_entity_delete_entity.
*
* EXPERT USE ONLY. Only use it when you know what you are doing.
*/
int
caosdb_transaction_result_set_release_at
(
caosdb_transaction_result_set
*
result_set
,
caosdb_entity_entity
*
entity
,
int
index
);
/**
/**
* Destructor for caosdb_transaction_result_set.
* Destructor for caosdb_transaction_result_set.
*
*
...
@@ -320,11 +337,6 @@ int caosdb_transaction_delete_result_set(caosdb_transaction_result_set *result_s
...
@@ -320,11 +337,6 @@ int caosdb_transaction_delete_result_set(caosdb_transaction_result_set *result_s
int
caosdb_transaction_transaction_get_count_result
(
caosdb_transaction_transaction
*
transaction
,
int
caosdb_transaction_transaction_get_count_result
(
caosdb_transaction_transaction
*
transaction
,
long
*
out
);
long
*
out
);
typedef
struct
caosdb_entity_entity
{
void
*
wrapped_entity
;
bool
_deletable
=
false
;
}
caosdb_entity_entity
;
int
caosdb_transaction_result_set_at
(
caosdb_transaction_result_set
*
result_set
,
int
caosdb_transaction_result_set_at
(
caosdb_transaction_result_set
*
result_set
,
caosdb_entity_entity
*
entity
,
int
index
);
caosdb_entity_entity
*
entity
,
int
index
);
int
caosdb_transaction_result_set_size
(
caosdb_transaction_result_set
*
result_set
,
int
*
out
);
int
caosdb_transaction_result_set_size
(
caosdb_transaction_result_set
*
result_set
,
int
*
out
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment