2005-10-24 23:26:25 +08:00
|
|
|
/** \file env_universal.h
|
2012-11-18 18:23:22 +08:00
|
|
|
Universal variable client library.
|
2005-09-20 21:26:39 +08:00
|
|
|
*/
|
|
|
|
|
2005-10-04 23:11:39 +08:00
|
|
|
#ifndef ENV_UNIVERSAL_H
|
|
|
|
#define ENV_UNIVERSAL_H
|
|
|
|
|
|
|
|
#include <wchar.h>
|
2005-09-20 21:26:39 +08:00
|
|
|
|
|
|
|
#include "env_universal_common.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
Data about the universal variable server.
|
|
|
|
*/
|
|
|
|
extern connection_t env_universal_server;
|
|
|
|
|
|
|
|
/**
|
|
|
|
Initialize the envuni library
|
|
|
|
*/
|
2012-11-19 08:30:30 +08:00
|
|
|
void env_universal_init(wchar_t * p,
|
2012-11-18 18:23:22 +08:00
|
|
|
wchar_t *u,
|
2011-12-27 11:18:46 +08:00
|
|
|
void (*sf)(),
|
2012-11-19 08:30:30 +08:00
|
|
|
void (*cb)(fish_message_type_t type, const wchar_t *name, const wchar_t *val));
|
2005-10-24 23:26:25 +08:00
|
|
|
/**
|
2005-09-20 21:26:39 +08:00
|
|
|
Free memory used by envuni
|
|
|
|
*/
|
|
|
|
void env_universal_destroy();
|
|
|
|
|
|
|
|
/**
|
|
|
|
Get the value of a universal variable
|
|
|
|
*/
|
2013-02-12 15:16:50 +08:00
|
|
|
const wchar_t *env_universal_get(const wcstring &name);
|
2005-09-23 04:16:52 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
Get the export flag of the variable with the specified
|
|
|
|
name. Returns 0 if the variable doesn't exist.
|
|
|
|
*/
|
2013-01-20 05:16:21 +08:00
|
|
|
bool env_universal_get_export(const wcstring &name);
|
2005-09-23 04:16:52 +08:00
|
|
|
|
2005-09-20 21:26:39 +08:00
|
|
|
/**
|
|
|
|
Set the value of a universal variable
|
|
|
|
*/
|
2013-01-20 05:16:21 +08:00
|
|
|
void env_universal_set(const wcstring &name, const wcstring &val, bool exportv);
|
2005-09-20 21:26:39 +08:00
|
|
|
/**
|
|
|
|
Erase a universal variable
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2006-06-05 04:14:51 +08:00
|
|
|
\return zero if the variable existed, and non-zero if the variable did not exist
|
2005-09-20 21:26:39 +08:00
|
|
|
*/
|
2012-11-19 08:30:30 +08:00
|
|
|
int env_universal_remove(const wchar_t *name);
|
2005-09-20 21:26:39 +08:00
|
|
|
|
2005-10-03 21:24:46 +08:00
|
|
|
/**
|
|
|
|
Read all available messages from the server.
|
|
|
|
*/
|
2005-09-20 21:26:39 +08:00
|
|
|
int env_universal_read_all();
|
|
|
|
|
2005-10-03 21:24:46 +08:00
|
|
|
/**
|
|
|
|
Get the names of all universal variables
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2005-10-03 21:24:46 +08:00
|
|
|
\param l the list to insert the names into
|
|
|
|
\param show_exported whether exported variables should be shown
|
|
|
|
\param show_unexported whether unexported variables should be shown
|
|
|
|
*/
|
2013-02-12 15:16:50 +08:00
|
|
|
void env_universal_get_names(wcstring_list_t &list,
|
|
|
|
bool show_exported,
|
|
|
|
bool show_unexported);
|
2005-09-23 04:16:52 +08:00
|
|
|
|
2005-10-03 21:24:46 +08:00
|
|
|
/**
|
|
|
|
Synchronize with fishd
|
|
|
|
*/
|
2005-09-23 04:16:52 +08:00
|
|
|
void env_universal_barrier();
|
|
|
|
|
2005-09-20 21:26:39 +08:00
|
|
|
#endif
|