// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// Defines the Portable type.
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Utilities
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Windows;
///
/// This class is responsible for reading the Portable.ini file that allows HandBrake to be run out of a directory.
///
public class Portable
{
private static readonly string portableFile = Path.Combine(Environment.CurrentDirectory, "portable.ini");
private static Dictionary keyPairs = new Dictionary();
///
/// Initializes a new instance of the class.
///
public static bool Initialise()
{
if (!IsPortable())
{
return true;
}
// Read the INI file
if (File.Exists(portableFile))
{
try
{
using (StreamReader fileReader = new StreamReader(portableFile))
{
string line;
while ((line = fileReader.ReadLine()) != null)
{
line = line.Trim();
if (line.StartsWith("#"))
{
continue; // Ignore Comments
}
string[] setting = line.Split('=');
if (setting.Length == 2)
{
keyPairs.Add(setting[0].Trim(), setting[1].Trim());
}
}
}
}
catch
{
MessageBox.Show(
HandBrakeWPF.Properties.Resources.Portable_IniFileError,
Properties.Resources.Error,
MessageBoxButton.OK,
MessageBoxImage.Error);
return false;
}
}
// Create any missing directories
string tmpDir = GetTempDirectory();
if (!string.IsNullOrEmpty(tmpDir) && !Directory.Exists(tmpDir))
{
try
{
Directory.CreateDirectory(tmpDir);
}
catch (Exception)
{
MessageBox.Show(
string.Format(Properties.Resources.Portable_TmpNotWritable, tmpDir),
Properties.Resources.Error,
MessageBoxButton.OK,
MessageBoxImage.Error);
return false;
}
}
string stroageDir = GetStorageDirectory();
if (!Directory.Exists(stroageDir))
{
try
{
Directory.CreateDirectory(stroageDir);
}
catch (Exception)
{
MessageBox.Show(
string.Format(HandBrakeWPF.Properties.Resources.Portable_StorageNotWritable, stroageDir),
Properties.Resources.Error,
MessageBoxButton.OK,
MessageBoxImage.Error);
return false;
}
}
// Setup environment variables for this instance.
if (!string.IsNullOrEmpty(tmpDir))
{
Environment.SetEnvironmentVariable("TMP", GetTempDirectory());
}
return true;
}
///
/// The is portable.
///
///
/// The .
///
public static bool IsPortable()
{
if (!File.Exists(portableFile))
{
return false;
}
return true;
}
///
/// The get config directory.
///
///
/// The .
///
public static string GetStorageDirectory()
{
// Default to App Data
string storagePath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
if (keyPairs.ContainsKey("storage.dir"))
{
string directory = keyPairs["storage.dir"];
// If "cwd", then treat that as Current Working Directory.
if (!string.IsNullOrEmpty(directory) && directory == "cwd")
{
storagePath = Path.Combine(Environment.CurrentDirectory, "storage");
}
// Otherwise, the users set directory.
if (!string.IsNullOrEmpty(directory) && directory != "cwd")
{
storagePath = directory;
}
}
// Return what path we figured out to use.
return storagePath;
}
public static bool IsUpdateCheckEnabled()
{
if (keyPairs.ContainsKey("update.check"))
{
string updateCheckEnabled = keyPairs["update.check"];
if (!string.IsNullOrEmpty(updateCheckEnabled) && updateCheckEnabled.Trim() == "true")
{
return true;
}
return false;
}
return true;
}
public static bool IsHardwareEnabled()
{
if (keyPairs.ContainsKey("hardware.enabled"))
{
string hardwareEnabled = keyPairs["hardware.enabled"];
if (!string.IsNullOrEmpty(hardwareEnabled) && hardwareEnabled.Trim() == "true")
{
return true;
}
return false;
}
return true; // Default to On.
}
///
/// The get temp directory.
///
///
/// The .
///
private static string GetTempDirectory()
{
if (keyPairs.ContainsKey("tmp.dir"))
{
string directory = keyPairs["tmp.dir"];
if (directory == "cwd")
{
return Path.Combine(Environment.CurrentDirectory, "tmp");
}
if (!string.IsNullOrEmpty(directory) && directory != "cwd")
{
return directory;
}
return null;
}
return null;
}
}
}