Descent3/lib/linux/lnxdatabase.h

76 lines
2.2 KiB
C
Raw Normal View History

/*
* Descent 3
* Copyright (C) 2024 Parallax Software
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
--- HISTORICAL COMMENTS FOLLOW ---
2024-04-16 03:43:29 +00:00
* Application Database for Linux version
2024-04-16 18:56:40 +00:00
*
2024-04-16 03:43:29 +00:00
* $NoKeywords: $
*/
#ifndef LINUXDATABASE
#define LINUXDATABASE
#include <stdio.h>
#include <stdlib.h>
class CRegistry;
#include "Macros.h"
/* oeLnxAppDatabase
to get info about the application from a managed database (or a custom info file)
*/
2024-04-16 18:56:40 +00:00
class oeLnxAppDatabase : public oeAppDatabase {
2024-04-16 03:43:29 +00:00
protected:
2024-04-16 18:56:40 +00:00
CRegistry *database;
2024-04-16 03:43:29 +00:00
public:
2024-04-16 18:56:40 +00:00
oeLnxAppDatabase();
oeLnxAppDatabase(oeLnxAppDatabase *parent);
virtual ~oeLnxAppDatabase();
CRegistry *GetSystemRegistry();
// creates an empty classification or structure where you can store information
virtual bool create_record(const char *pathname);
// set current database focus to a particular record
virtual bool lookup_record(const char *pathname);
// read either an integer or string from the current record
virtual bool read(const char *label, char *entry, int *entrylen);
virtual bool read(const char *label, void *entry, int wordsize); // read a variable-size int
virtual bool read(const char *label, bool *entry);
// write either an integer or string to a record.
virtual bool write(const char *label, const char *entry, int entrylen);
virtual bool write(const char *label, int entry);
// get the current user's name.
virtual void get_user_name(char *buffer, size_t *size);
2024-04-16 03:43:29 +00:00
};
2024-04-16 18:56:40 +00:00
// Handy macro to read an int without having to specify the wordsize
#define read_int(label, varp) read(label, varp, sizeof(*varp))
2024-04-16 03:43:29 +00:00
2024-04-16 18:56:40 +00:00
// Macro to write a string
#define write_string(label, varp) write(label, varp, strlen(varp))
2024-04-16 03:43:29 +00:00
#endif