blob: 72352478c858f169fa7736dd61973ed0db25c9c9 (
plain)
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
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="HandBrakePresetService.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// The hand brake preset service.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Interop
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.InteropServices;
using HandBrake.Interop.Interop.HbLib;
using HandBrake.Interop.Interop.HbLib.Wrappers.Interfaces;
using HandBrake.Interop.Interop.Helpers;
using HandBrake.Interop.Interop.Json.Presets;
using HandBrake.Interop.Interop.Model;
using HandBrake.Interop.Interop.Providers;
using HandBrake.Interop.Interop.Providers.Interfaces;
using Newtonsoft.Json;
/// <summary>
/// The hand brake preset service.
/// </summary>
public class HandBrakePresetService
{
private static IHbFunctions hbFunctions;
static HandBrakePresetService()
{
IHbFunctionsProvider hbFunctionsProvider = new HbFunctionsProvider();
hbFunctions = hbFunctionsProvider.GetHbFunctionsWrapper();
}
/// <summary>
/// The get built in presets.
/// Requires an hb_init to have been invoked.
/// </summary>
/// <returns>
/// The <see cref="string"/>.
/// </returns>
public static IList<PresetCategory> GetBuiltInPresets()
{
IntPtr presets = hbFunctions.hb_presets_builtin_get_json();
string presetJson = Marshal.PtrToStringAnsi(presets);
IList<PresetCategory> presetList = JsonConvert.DeserializeObject<IList<PresetCategory>>(presetJson);
return presetList;
}
/// <summary>
/// The get preset from file.
/// </summary>
/// <param name="filename">
/// The filename.
/// </param>
/// <returns>
/// The <see cref="PresetCategory"/>.
/// </returns>
public static PresetTransportContainer GetPresetsFromFile(string filename)
{
IntPtr presetStringPointer = hbFunctions.hb_presets_read_file_json(InteropUtilities.ToUtf8PtrFromString(filename));
string presetJson = Marshal.PtrToStringAnsi(presetStringPointer);
if (!string.IsNullOrEmpty(presetJson))
{
// Check to see if we have a list of presets.
if (presetJson.StartsWith("["))
{
presetJson = "{ \"PresetList\":" + presetJson + " } ";
}
PresetTransportContainer preset = JsonConvert.DeserializeObject<PresetTransportContainer>(presetJson);
return preset;
}
return null;
}
/// <summary>
/// The export preset.
/// </summary>
/// <param name="filename">
/// The filename.
/// </param>
/// <param name="container">
/// The container.
/// </param>
public static void ExportPreset(string filename, PresetTransportContainer container)
{
string preset = JsonConvert.SerializeObject(container, Formatting.Indented, new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore });
using (StreamWriter writer = new StreamWriter(filename))
{
writer.Write(preset);
}
}
public static PresetVersion GetCurrentPresetVersion()
{
IntPtr major = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(int)));
IntPtr minor = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(int)));
IntPtr micro = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(int)));
hbFunctions.hb_presets_current_version(major, minor, micro);
int majorVersion = Marshal.ReadInt32(major);
int minorVersion = Marshal.ReadInt32(minor);
int microVersion = Marshal.ReadInt32(micro);
Marshal.FreeHGlobal(major);
Marshal.FreeHGlobal(minor);
Marshal.FreeHGlobal(micro);
return new PresetVersion(majorVersion, minorVersion, microVersion);
}
}
}
|