GnuCash c935c2f+
Loading...
Searching...
No Matches
qofinstance-p.h
1/********************************************************************\
2 * qofinstance-p.h -- private fields common to all object instances *
3 * *
4 * This program is free software; you can redistribute it and/or *
5 * modify it under the terms of the GNU General Public License as *
6 * published by the Free Software Foundation; either version 2 of *
7 * the License, or (at your option) any later version. *
8 * *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU General Public License*
15 * along with this program; if not, contact: *
16 * *
17 * Free Software Foundation Voice: +1-617-542-5942 *
18 * 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
19 * Boston, MA 02110-1301, USA gnu@gnu.org *
20 * *
21\********************************************************************/
22/*
23 * Object instance holds many common fields that most
24 * gnucash objects use.
25 *
26 * Copyright (C) 2003 Linas Vepstas <linas@linas.org>
27 * Copyright (c) 2007 David Hampton <hampton@employees.org>
28 * Copyright 2017 Aaron Laws <dartme18@gmail.com>
29 */
30
31#ifndef QOF_INSTANCE_P_H
32#define QOF_INSTANCE_P_H
33
34#include "qofinstance.h"
35
36#ifdef __cplusplus
37#include "kvp-frame.hpp"
38#include <string>
39#include <optional>
40extern "C"
41{
42#endif
43
47void qof_instance_set_collection (gconstpointer ptr, QofCollection *col);
48
49void qof_instance_set_slots (QofInstance *, KvpFrame *);
50
51/* Set the last_update time. Reserved for use by the SQL backend;
52 * used for comparing version in local memory to that in remote
53 * server.
54 */
55void qof_instance_set_last_update (QofInstance *inst, time64 time);
56
59void qof_instance_set_dirty_flag (gconstpointer inst, gboolean flag);
60
62void qof_instance_set_guid (gpointer inst, const GncGUID *guid);
63
67void qof_instance_copy_guid (gpointer to, gconstpointer from);
68
69//QofIdType qof_instance_get_e_type (const QofInstance *inst);
70//void qof_instance_set_e_type (QofInstance *ent, QofIdType e_type);
71
73/*@ dependent @*/
74KvpFrame* qof_instance_get_slots (const QofInstance *);
75void qof_instance_set_editlevel(gpointer inst, gint level);
76void qof_instance_increase_editlevel (gpointer ptr);
77void qof_instance_decrease_editlevel (gpointer ptr);
78void qof_instance_reset_editlevel (gpointer ptr);
85void qof_instance_set_destroying (gpointer ptr, gboolean value);
86
90void qof_instance_set_dirty(QofInstance* inst);
91
92/* reset the dirty flag */
93void qof_instance_mark_clean (QofInstance *);
96gint32 qof_instance_get_version (gconstpointer inst);
97
100void qof_instance_set_version (gpointer inst, gint32 value);
103void qof_instance_copy_version (gpointer to, gconstpointer from);
104
106guint32 qof_instance_get_version_check (gconstpointer inst);
108void qof_instance_set_version_check (gpointer inst, guint32 value);
110void qof_instance_copy_version_check (gpointer to, gconstpointer from);
111void qof_instance_set_idata(gpointer inst, guint32 idata);
112/* Convenience functions to save some typing in property handlers */
119gboolean qof_instance_has_kvp (QofInstance *inst);
120
129void qof_instance_set_kvp (QofInstance *, GValue const * value, unsigned count, ...);
130
138void qof_instance_get_kvp (QofInstance *, GValue * value, unsigned count, ...);
139
141/* Functions to isolate the KVP mechanism inside QOF for cases where
142GValue * operations won't work.
143 */
144void qof_instance_copy_kvp (QofInstance *to, const QofInstance *from);
145void qof_instance_swap_kvp (QofInstance *a, QofInstance *b);
146int qof_instance_compare_kvp (const QofInstance *a, const QofInstance *b);
148char* qof_instance_kvp_as_string (const QofInstance *inst);
149void qof_instance_kvp_add_guid (const QofInstance *inst, const char* path,
150 time64 time, const char* key,
151 const GncGUID *guid);
152void qof_instance_kvp_remove_guid (const QofInstance *inst, const char *path,
153 const char* key, const GncGUID *guid);
154gboolean qof_instance_kvp_has_guid (const QofInstance *inst, const char *path,
155 const char* key, const GncGUID *guid);
156void qof_instance_kvp_merge_guids (const QofInstance *target,
157 const QofInstance *donor, const char* path);
158gboolean qof_instance_has_slot (const QofInstance *inst, const char *path);
159void qof_instance_slot_delete (const QofInstance *, const char * path);
160void qof_instance_slot_delete_if_empty (const QofInstance *, const char * path);
161void qof_instance_foreach_slot (const QofInstance *inst, const char *head,
162 const char *category, void(*proc)(const char*,
163 const GValue*, void*), void* data);
164#ifdef __cplusplus
165} /* extern "C" */
166
167void qof_instance_get_path_kvp (QofInstance *, GValue *, std::vector<std::string> const &);
168
169void qof_instance_set_path_kvp (QofInstance *, GValue const *, std::vector<std::string> const &);
170
171template <typename T> std::optional<T>
172qof_instance_get_path_kvp (QofInstance*, const Path&);
173
174template <typename T> void
175qof_instance_set_path_kvp (QofInstance*, std::optional<T>, const Path&);
176
177bool qof_instance_has_path_slot (QofInstance const *, std::vector<std::string> const &);
178
179void qof_instance_slot_path_delete (QofInstance const *, std::vector<std::string> const &);
180
181void qof_instance_slot_path_delete_if_empty (QofInstance const *, std::vector<std::string> const &);
182
184std::vector <std::pair <std::string, KvpValue*>>
185qof_instance_get_slots_prefix (QofInstance const *, std::string const & prefix);
186
191template<typename func_type, typename data_type>
192void qof_instance_foreach_slot_prefix(QofInstance const * inst, std::string const & path_prefix,
193 func_type const & func, data_type & data)
194{
195 inst->kvp_data->for_each_slot_prefix(path_prefix, func, data);
196}
197
198#endif
199
200#endif /* QOF_INSTANCE_P_H */
gint64 time64
Most systems that are currently maintained, including Microsoft Windows, BSD-derived Unixes and Linux...
Definition gnc-date.h:87
gboolean qof_instance_has_kvp(QofInstance *inst)
Report whether a QofInstance has anything stored in KVP.
void qof_instance_get_kvp(QofInstance *, GValue *value, unsigned count,...)
Retrieves the contents of a KVP slot into a provided GValue.
void qof_instance_set_kvp(QofInstance *, GValue const *value, unsigned count,...)
Sets a KVP slot to a value from a GValue.
Object instance holds common fields that most gnucash objects use.
The type used to store guids in C.
Definition guid.h:75