1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
/* OGMRip - A library for DVD ripping and encoding
* Copyright (C) 2004-2012 Olivier Rolland <billl@users.sourceforge.net>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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 GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/**
* SECTION:ogmrip-dvdcpy
* @title: OGMRipDvdcpy
* @short_description: A codec to copy a DVD title
* @include: ogmrip-dvdcpy.h
*/
#include "ogmrip-dvdcpy.h"
#include "ogmjob-exec.h"
#include <string.h>
#include <unistd.h>
#include <glib/gstdio.h>
static gint ogmrip_dvdcpy_run (OGMJobSpawn *spawn);
static gdouble
ogmrip_dvdcpy_watch (OGMJobExec *exec, const gchar *buffer, OGMRipVideoCodec *video)
{
guint bytes, total, percent;
if (sscanf (buffer, "%u/%u blocks written (%u%%)", &bytes, &total, &percent) == 3)
return percent / 100.;
return -1;
}
static gchar **
ogmrip_dvdcpy_command (OGMRipDvdCpy *dvdcpy, const gchar *input, const gchar *output)
{
OGMDvdTitle *title;
GPtrArray *argv;
const gchar *device;
gint vid;
g_return_val_if_fail (OGMRIP_IS_DVDCPY (dvdcpy), NULL);
if (!output)
output = ogmrip_codec_get_output (OGMRIP_CODEC (dvdcpy));
g_return_val_if_fail (output != NULL, NULL);
title = ogmrip_codec_get_input (OGMRIP_CODEC (dvdcpy));
g_return_val_if_fail (title != NULL, NULL);
argv = g_ptr_array_new ();
g_ptr_array_add (argv, g_strdup ("dvdcpy"));
g_ptr_array_add (argv, g_strdup ("-s"));
g_ptr_array_add (argv, g_strdup ("skip"));
g_ptr_array_add (argv, g_strdup ("-o"));
g_ptr_array_add (argv, g_strdup (output));
g_ptr_array_add (argv, g_strdup ("-m"));
vid = ogmdvd_title_get_nr (title);
g_ptr_array_add (argv, g_strdup ("-t"));
g_ptr_array_add (argv, g_strdup_printf ("%d", vid + 1));
device = ogmdvd_disc_get_device (ogmdvd_title_get_disc (title));
g_ptr_array_add (argv, g_strdup (device));
g_ptr_array_add (argv, NULL);
return (gchar **) g_ptr_array_free (argv, FALSE);
}
G_DEFINE_TYPE (OGMRipDvdCpy, ogmrip_dvdcpy, OGMRIP_TYPE_CODEC)
static void
ogmrip_dvdcpy_class_init (OGMRipDvdCpyClass *klass)
{
OGMJobSpawnClass *spawn_class;
spawn_class = OGMJOB_SPAWN_CLASS (klass);
spawn_class->run = ogmrip_dvdcpy_run;
}
static void
ogmrip_dvdcpy_init (OGMRipDvdCpy *dvdcpy)
{
}
static gint
ogmrip_dvdcpy_run (OGMJobSpawn *spawn)
{
OGMJobSpawn *child;
gchar **argv;
gint result;
argv = ogmrip_dvdcpy_command (OGMRIP_DVDCPY (spawn), NULL, NULL);
if (!argv)
return OGMJOB_RESULT_ERROR;
child = ogmjob_exec_newv (argv);
ogmjob_exec_add_watch_full (OGMJOB_EXEC (child), (OGMJobWatch) ogmrip_dvdcpy_watch, spawn, TRUE, FALSE, FALSE);
ogmjob_container_add (OGMJOB_CONTAINER (spawn), child);
g_object_unref (child);
result = OGMJOB_SPAWN_CLASS (ogmrip_dvdcpy_parent_class)->run (spawn);
ogmjob_container_remove (OGMJOB_CONTAINER (spawn), child);
return result;
}
/**
* ogmrip_dvdcpy_new:
* @title: An #OGMDvdTitle
* @output: The output file
*
* Creates a new #OGMRipDvdcpy.
*
* Returns: The new #OGMRipDvdcpy
*/
OGMJobSpawn *
ogmrip_dvdcpy_new (OGMDvdTitle *title, const gchar *output)
{
g_return_val_if_fail (title != NULL, NULL);
g_return_val_if_fail (output && *output, NULL);
return g_object_new (OGMRIP_TYPE_DVDCPY, "input", title, "output", output, NULL);
}
|