message-view: bgo #727634 - Cannot copy build output
[anjuta.git] / libanjuta / anjuta-sync-command.c
bloba6bfa70f5154b89eeeea1632e3f47d1eb01665aa
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3 * anjuta
4 * Copyright (C) James Liggett 2007 <jrliggett@cox.net>
5 *
6 * anjuta is free software.
7 *
8 * You may redistribute it and/or modify it under the terms of the
9 * GNU General Public License, as published by the Free Software
10 * Foundation; either version 2 of the License, or (at your option)
11 * any later version.
13 * anjuta is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16 * See the GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with anjuta. If not, write to:
20 * The Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor
22 * Boston, MA 02110-1301, USA.
25 #include "anjuta-sync-command.h"
27 /**
28 * SECTION: anjuta-sync-command
29 * @short_description: #AnjutaCommand subclass that serves as the base for
30 * commands that run synchronously.
31 * @include: libanjuta/anjuta-sync-command.h
33 * #AnjutaSyncCommand allows plugins to abstract the work of tasks that do not
34 * need to be run in another thread. This class can provide a base for
35 * abstratraction between client code and asynchronous facilities such as
36 * #AnjutaLauncher or GIO, and is especially useful when complicated tasks
37 * are being performed.
39 * #AnjutaSyncCommand simply calls ::run directly from ::start, and emits the
40 * command-finished signal as soon as it returns.
42 * For an example of how #AnjutaSyncCommand is used, see the Git plugin.
45 G_DEFINE_TYPE (AnjutaSyncCommand, anjuta_sync_command, ANJUTA_TYPE_COMMAND);
47 static void
48 anjuta_sync_command_init (AnjutaSyncCommand *self)
53 static void
54 anjuta_sync_command_finalize (GObject *object)
56 G_OBJECT_CLASS (anjuta_sync_command_parent_class)->finalize (object);
59 static void
60 start_command (AnjutaCommand *command)
62 guint return_code;
64 return_code = ANJUTA_COMMAND_GET_CLASS (command)->run (command);
65 anjuta_command_notify_complete (command, return_code);
68 static void
69 notify_data_arrived (AnjutaCommand *command)
71 g_signal_emit_by_name (command, "data-arrived");
74 static void
75 notify_complete (AnjutaCommand *command, guint return_code)
77 g_signal_emit_by_name (command, "command-finished",
78 return_code);
81 static void
82 notify_progress (AnjutaCommand *command, gfloat progress)
84 g_signal_emit_by_name (command, "progress", progress);
87 static void
88 anjuta_sync_command_class_init (AnjutaSyncCommandClass *klass)
90 GObjectClass* object_class = G_OBJECT_CLASS (klass);
91 AnjutaCommandClass* parent_class = ANJUTA_COMMAND_CLASS (klass);
93 object_class->finalize = anjuta_sync_command_finalize;
95 parent_class->start = start_command;
96 parent_class->notify_data_arrived = notify_data_arrived;
97 parent_class->notify_complete = notify_complete;
98 parent_class->notify_progress = notify_progress;