Added InputBuffer, removed get_line (struct _Slave): (struct
2001-04-20 Bradford Hovinen <hovinen@ximian.com> * config-log.c: Added InputBuffer, removed get_line (struct _Slave): (struct _ConfigLogPrivate ): Replaced GIOChannel * and FILE * with InputBuffer *'s (input_buffer_new): Implement. Constructs a new input buffer (input_buffer_destroy): Implement. Destroys an input buffer and closes the file descriptor (input_buffer_cycle): Implement (borrowed from GDict). Reads additional data from the input file (input_buffer_read_line): Implement (borrowed from GDict). Reads a line from the input file and returns a pointer to it (input_buffer_write): Implement. Write the indicated string out to the channel 2001-04-15 Bradford Hovinen <hovinen@ximian.com> * config-log.c (config_log_set_arg): Create semaphore for auto-reloading (do_load): Removed locking code (load_log_entry): Support prepending log entries to the beginning of the log; free entry->date if parsing was unsuccessful (config_log_reset_filenames): Unlink socket filename if not owner (config_log_reset_filenames): Rebind socket when filename is reset (connect_socket): Implement. Creates or connects to the socket associated with the config log (check_socket_filename): Implement. Checks to see if the filename associated with the socket is in use. (bind_socket): Implement. Binds the socket to the filename. (socket_connect_cb): Implement. Callback issued when a master gets a new connection. (socket_data_cb): Implement. Callback issued when a slave gets data from the master. (slave_new): Implement. Creates a new slave structure (slave_destroy): Implement. Destroys a slave structure (slave_data_cb): Implement. Callback issued when data comes in from a slave (slave_broadcast_data): Implement. Broadcast the first log entry to all the slaves except the given one (disconnect_socket): Implement. Disconnects the socket (config_log_open): Call connect_socket (do_unload): Don't dump the log unless currently the socket owner (config_log_write_entry): Broadcast data to slaves or write data to socket, depending on whether currently the socket owner 2001-04-14 Bradford Hovinen <hovinen@ximian.com> * config-log.c (do_unload): Add a parameter write_log to tell whether to write out the log when unloading (config_log_finalize): Implement * config-log.[ch]: Put all data fields in ConfigLogPrivate structure * gui-backend-list.c (gui_backend_list_launch_current): Rewrite to use popen
This commit is contained in:
parent
1ce0887b68
commit
49876695d2
5 changed files with 872 additions and 231 deletions
|
@ -1,3 +1,58 @@
|
|||
2001-04-20 Bradford Hovinen <hovinen@ximian.com>
|
||||
|
||||
* config-log.c: Added InputBuffer, removed get_line
|
||||
(struct _Slave):
|
||||
(struct _ConfigLogPrivate ): Replaced GIOChannel * and FILE * with
|
||||
InputBuffer *'s
|
||||
(input_buffer_new): Implement. Constructs a new input buffer
|
||||
(input_buffer_destroy): Implement. Destroys an input buffer and
|
||||
closes the file descriptor
|
||||
(input_buffer_cycle): Implement (borrowed from GDict). Reads
|
||||
additional data from the input file
|
||||
(input_buffer_read_line): Implement (borrowed from GDict). Reads a
|
||||
line from the input file and returns a pointer to it
|
||||
(input_buffer_write): Implement. Write the indicated string out to
|
||||
the channel
|
||||
|
||||
2001-04-15 Bradford Hovinen <hovinen@ximian.com>
|
||||
|
||||
* config-log.c (config_log_set_arg): Create semaphore for
|
||||
auto-reloading
|
||||
(do_load): Removed locking code
|
||||
(load_log_entry): Support prepending log entries to the beginning
|
||||
of the log; free entry->date if parsing was unsuccessful
|
||||
(config_log_reset_filenames): Unlink socket filename if not owner
|
||||
(config_log_reset_filenames): Rebind socket when filename is reset
|
||||
(connect_socket): Implement. Creates or connects to the socket
|
||||
associated with the config log
|
||||
(check_socket_filename): Implement. Checks to see if the filename
|
||||
associated with the socket is in use.
|
||||
(bind_socket): Implement. Binds the socket to the filename.
|
||||
(socket_connect_cb): Implement. Callback issued when a master gets
|
||||
a new connection.
|
||||
(socket_data_cb): Implement. Callback issued when a slave gets
|
||||
data from the master.
|
||||
(slave_new): Implement. Creates a new slave structure
|
||||
(slave_destroy): Implement. Destroys a slave structure
|
||||
(slave_data_cb): Implement. Callback issued when data comes in
|
||||
from a slave
|
||||
(slave_broadcast_data): Implement. Broadcast the first log entry
|
||||
to all the slaves except the given one
|
||||
(disconnect_socket): Implement. Disconnects the socket
|
||||
(config_log_open): Call connect_socket
|
||||
(do_unload): Don't dump the log unless currently the socket owner
|
||||
(config_log_write_entry): Broadcast data to slaves or write data
|
||||
to socket, depending on whether currently the socket owner
|
||||
|
||||
2001-04-14 Bradford Hovinen <hovinen@ximian.com>
|
||||
|
||||
* config-log.c (do_unload): Add a parameter write_log to tell
|
||||
whether to write out the log when unloading
|
||||
(config_log_finalize): Implement
|
||||
|
||||
* config-log.[ch]: Put all data fields in ConfigLogPrivate
|
||||
structure
|
||||
|
||||
2001-04-11 Bradford Hovinen <hovinen@ximian.com>
|
||||
|
||||
* location.c (run_backend_proc): Make sure to search location of
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -34,6 +34,7 @@
|
|||
|
||||
typedef struct _ConfigLog ConfigLog;
|
||||
typedef struct _ConfigLogClass ConfigLogClass;
|
||||
typedef struct _ConfigLogPrivate ConfigLogPrivate;
|
||||
|
||||
typedef struct _Location Location;
|
||||
|
||||
|
@ -44,14 +45,7 @@ struct _ConfigLog
|
|||
{
|
||||
GtkObject object;
|
||||
|
||||
Location *location;
|
||||
|
||||
FILE *file;
|
||||
char *filename;
|
||||
char *lock_filename;
|
||||
|
||||
GList *log_data;
|
||||
GList *first_old;
|
||||
ConfigLogPrivate *p;
|
||||
};
|
||||
|
||||
struct _ConfigLogClass
|
||||
|
@ -59,30 +53,31 @@ struct _ConfigLogClass
|
|||
GtkObjectClass parent;
|
||||
};
|
||||
|
||||
guint config_log_get_type (void);
|
||||
guint config_log_get_type (void);
|
||||
|
||||
GtkObject *config_log_open (Location *location);
|
||||
void config_log_delete (ConfigLog *config_log);
|
||||
GtkObject *config_log_open (Location *location);
|
||||
void config_log_delete (ConfigLog *config_log);
|
||||
|
||||
gint config_log_get_rollback_id_for_date (ConfigLog *config_log,
|
||||
struct tm *date,
|
||||
gchar *backend_id);
|
||||
gint config_log_get_rollback_id_by_steps (ConfigLog *config_log,
|
||||
guint steps,
|
||||
gchar *backend_id);
|
||||
gint config_log_get_rollback_id_for_date (ConfigLog *config_log,
|
||||
struct tm *date,
|
||||
gchar *backend_id);
|
||||
gint config_log_get_rollback_id_by_steps (ConfigLog *config_log,
|
||||
guint steps,
|
||||
gchar *backend_id);
|
||||
|
||||
gchar *config_log_get_backend_id_for_id (ConfigLog *config_log,
|
||||
gint id);
|
||||
struct tm *config_log_get_date_for_id (ConfigLog *config_log,
|
||||
gint id);
|
||||
gchar *config_log_get_backend_id_for_id (ConfigLog *config_log,
|
||||
gint id);
|
||||
struct tm *config_log_get_date_for_id (ConfigLog *config_log,
|
||||
gint id);
|
||||
|
||||
gint config_log_write_entry (ConfigLog *config_log,
|
||||
gchar *backend_id);
|
||||
gint config_log_write_entry (ConfigLog *config_log,
|
||||
gchar *backend_id);
|
||||
|
||||
void config_log_iterate (ConfigLog *config_log,
|
||||
ConfigLogIteratorCB callback,
|
||||
gpointer data);
|
||||
void config_log_iterate (ConfigLog *config_log,
|
||||
ConfigLogIteratorCB callback,
|
||||
gpointer data);
|
||||
|
||||
void config_log_reset_filenames (ConfigLog *config_log);
|
||||
void config_log_reset_filenames (ConfigLog *config_log);
|
||||
void config_log_reload (ConfigLog *config_log);
|
||||
|
||||
#endif /* __CONFIG_LOG */
|
||||
|
|
|
@ -2,10 +2,10 @@
|
|||
|
||||
<location>
|
||||
<contains backend="background-properties-capplet"/>
|
||||
<contains backend="bell-properties-capplet"/>
|
||||
<contains backend="bell-properties"/>
|
||||
<contains backend="gnome-edit-properties-capplet"/>
|
||||
<contains backend="keyboard-properties-capplet"/>
|
||||
<contains backend="mouse-properties-capplet"/>
|
||||
<contains backend="keyboard-properties"/>
|
||||
<contains backend="mouse-properties"/>
|
||||
<contains backend="screensaver-properties-capplet"/>
|
||||
<contains backend="session-properties-capplet"/>
|
||||
<contains backend="wm-properties"/>
|
||||
|
|
|
@ -302,6 +302,9 @@ main (int argc, char **argv)
|
|||
Archive *archive;
|
||||
Location *location = NULL;
|
||||
|
||||
/* For Electric Fence */
|
||||
free (malloc (1));
|
||||
|
||||
bindtextdomain (PACKAGE, GNOMELOCALEDIR);
|
||||
textdomain (PACKAGE);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue