mirror of https://github.com/BOINC/boinc.git
70 lines
1.6 KiB
C
70 lines
1.6 KiB
C
/*
|
|
* DC-API: Distributed Computing Platform for Master-Worker Applications
|
|
*
|
|
* Internal definitions
|
|
*
|
|
* Authors:
|
|
* Gabor Gombas <gombasg@sztaki.hu>
|
|
*
|
|
* Copyright MTA SZTAKI, 2006
|
|
*/
|
|
|
|
/* <private_header> */
|
|
|
|
#ifndef __DC_INTERNAL_H_
|
|
#define __DC_INTERNAL_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <dc.h>
|
|
|
|
/********************************************************************
|
|
* Constants
|
|
*/
|
|
|
|
/* Master's working directory (absolute path) */
|
|
#define CFG_WORKDIR "WorkingDirectory"
|
|
/* Application instance UUID */
|
|
#define CFG_INSTANCEUUID "InstanceUUID"
|
|
/* Log level */
|
|
#define CFG_LOGLEVEL "LogLevel"
|
|
/* Log file location */
|
|
#define CFG_LOGFILE "LogFile"
|
|
/* Configuration items to send to clients */
|
|
#define CFG_SENDKEYS "SendCfgKeys"
|
|
|
|
|
|
/********************************************************************
|
|
* Function prototypes
|
|
*/
|
|
|
|
/* Parses a configuration file */
|
|
int _DC_parseCfg(const char *cfgfile);
|
|
|
|
/* Copies a file */
|
|
int _DC_copyFile(const char *src, const char *dst);
|
|
|
|
/* Processes a unit suffix and adjust the value accordingly */
|
|
long long _DC_processSuffix(const char *suffix);
|
|
|
|
/* Parses a boolean value */
|
|
int _DC_parseBoolean(const char *value);
|
|
|
|
/* Allocates a physical file descriptor */
|
|
DC_PhysicalFile *_DC_createPhysicalFile(const char *label, const char *path);
|
|
|
|
/* De-allocates a physical file descriptor */
|
|
void _DC_destroyPhysicalFile(DC_PhysicalFile *file);
|
|
|
|
/* Initializa a config file for a client */
|
|
int _DC_initClientConfig(const char *clientName, FILE *f);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __DC_INTERNAL_H_ */
|