2013-04-27 00:20:23 -06:00
|
|
|
/* Copyright (C) 2013 Phillip Susi
|
|
|
|
*
|
|
|
|
* 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 2 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
|
2014-01-23 03:59:48 -07:00
|
|
|
* GNU General Public License for more details.
|
2013-04-27 00:20:23 -06:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2014-01-23 03:59:48 -07:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2013-04-27 00:20:23 -06:00
|
|
|
*/
|
|
|
|
|
2013-05-27 05:20:16 -06:00
|
|
|
#ifndef GPARTED_PIPECAPTURE_H
|
|
|
|
#define GPARTED_PIPECAPTURE_H
|
2013-02-21 17:57:33 -07:00
|
|
|
|
|
|
|
#include <glibmm/ustring.h>
|
|
|
|
#include <glibmm/main.h>
|
|
|
|
#include <glibmm/iochannel.h>
|
|
|
|
|
|
|
|
namespace GParted {
|
|
|
|
|
|
|
|
// captures output pipe of subprocess into a ustring and emits a signal on eof
|
|
|
|
class PipeCapture
|
|
|
|
{
|
|
|
|
Glib::ustring &buff;
|
2013-10-03 08:22:43 -06:00
|
|
|
Glib::ustring::size_type linestart ;
|
|
|
|
Glib::ustring::size_type cursor ;
|
|
|
|
Glib::ustring::size_type lineend ;
|
2013-02-21 17:57:33 -07:00
|
|
|
Glib::RefPtr<Glib::IOChannel> channel;
|
|
|
|
bool OnReadable( Glib::IOCondition condition );
|
2013-04-25 14:08:58 -06:00
|
|
|
static gboolean _OnReadable( GIOChannel *source,
|
|
|
|
GIOCondition condition,
|
|
|
|
gpointer data );
|
2013-02-21 17:57:33 -07:00
|
|
|
public:
|
|
|
|
PipeCapture( int fd, Glib::ustring &buffer );
|
2013-04-25 14:08:58 -06:00
|
|
|
void connect_signal();
|
2013-02-21 17:57:33 -07:00
|
|
|
~PipeCapture();
|
2013-05-02 01:35:17 -06:00
|
|
|
sigc::signal<void> signal_eof;
|
|
|
|
sigc::signal<void> signal_update;
|
2013-02-21 17:57:33 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namepace GParted
|
|
|
|
|
2013-05-27 05:20:16 -06:00
|
|
|
#endif /* GPARTED_PIPECAPTURE_H */
|