2016-02-05 08:14:39 +01:00
|
|
|
|
/* Copyright (c) Citrix Systems Inc.
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms,
|
|
|
|
|
* with or without modification, are permitted provided
|
|
|
|
|
* that the following conditions are met:
|
|
|
|
|
*
|
|
|
|
|
* * Redistributions of source code must retain the above
|
|
|
|
|
* copyright notice, this list of conditions and the
|
|
|
|
|
* following disclaimer.
|
|
|
|
|
* * Redistributions in binary form must reproduce the above
|
|
|
|
|
* copyright notice, this list of conditions and the
|
|
|
|
|
* following disclaimer in the documentation and/or other
|
|
|
|
|
* materials provided with the distribution.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
|
|
|
|
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
|
|
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
|
|
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using XenAdmin;
|
|
|
|
|
using XenAdmin.Alerts;
|
|
|
|
|
using XenAdmin.Core;
|
2016-02-15 05:35:26 +01:00
|
|
|
|
using XenAdmin.Network;
|
2016-02-17 09:02:24 +01:00
|
|
|
|
using XenAdmin.Actions;
|
2016-02-05 08:14:39 +01:00
|
|
|
|
|
|
|
|
|
namespace XenAPI
|
|
|
|
|
{
|
2016-02-15 05:35:26 +01:00
|
|
|
|
public partial class VMSS : IVMPolicy
|
2016-02-05 08:14:39 +01:00
|
|
|
|
{
|
2016-02-16 10:49:39 +01:00
|
|
|
|
public bool is_enabled
|
2016-02-15 05:35:26 +01:00
|
|
|
|
{
|
2016-02-16 10:49:39 +01:00
|
|
|
|
get { return this.enabled; }
|
2016-02-15 05:35:26 +01:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-16 10:49:39 +01:00
|
|
|
|
public bool is_running
|
2016-02-15 05:35:26 +01:00
|
|
|
|
{
|
2016-02-16 10:49:39 +01:00
|
|
|
|
get { return false; }
|
2016-02-15 05:35:26 +01:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-16 10:49:39 +01:00
|
|
|
|
public bool is_archiving
|
2016-02-15 05:35:26 +01:00
|
|
|
|
{
|
2016-02-16 10:49:39 +01:00
|
|
|
|
get { return false; }
|
2016-02-15 05:35:26 +01:00
|
|
|
|
}
|
|
|
|
|
public DateTime _GetNextRunTime()
|
|
|
|
|
{
|
|
|
|
|
return this.GetNextRunTime();
|
|
|
|
|
}
|
|
|
|
|
public DateTime _GetNextArchiveRunTime()
|
|
|
|
|
{
|
|
|
|
|
return new DateTime();
|
|
|
|
|
}
|
2016-02-16 10:49:39 +01:00
|
|
|
|
public Type _Type
|
2016-02-15 05:35:26 +01:00
|
|
|
|
{
|
2016-02-16 10:49:39 +01:00
|
|
|
|
get { return typeof(VMSS); }
|
|
|
|
|
}
|
|
|
|
|
public List<PolicyAlert> PolicyAlerts
|
|
|
|
|
{
|
|
|
|
|
get { return Alerts; }
|
2016-02-15 05:35:26 +01:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-17 09:02:24 +01:00
|
|
|
|
public bool hasArchive
|
|
|
|
|
{
|
|
|
|
|
get { return false; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void set_vm_policy(Session session, string _vm, string _value)
|
|
|
|
|
{
|
|
|
|
|
VM.set_scheduled_snapshot(session, _vm, _value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void do_destroy(Session session, string _policy)
|
|
|
|
|
{
|
|
|
|
|
VMSS.destroy(session, _policy);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string run_now(Session session, string _policy)
|
|
|
|
|
{
|
|
|
|
|
return VMSS.snapshot_now(session, _policy);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void set_is_enabled(Session session, string _policy, bool _is_enabled)
|
|
|
|
|
{
|
|
|
|
|
VMSS.set_enabled(session, _policy, _is_enabled);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public PureAsyncAction getAlertsAction(IVMPolicy policy, int hoursfromnow)
|
|
|
|
|
{
|
|
|
|
|
return new GetVMSSAlertsAction((VMSS)policy, hoursfromnow);
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-05 08:14:39 +01:00
|
|
|
|
public DateTime GetNextRunTime()
|
|
|
|
|
{
|
|
|
|
|
var time = Host.get_server_localtime(Connection.Session, Helpers.GetMaster(Connection).opaque_ref);
|
|
|
|
|
|
2016-02-15 05:35:26 +01:00
|
|
|
|
if (frequency == vmss_frequency.hourly)
|
2016-02-05 08:14:39 +01:00
|
|
|
|
{
|
|
|
|
|
return GetHourlyDate(time, Convert.ToInt32(backup_schedule_min));
|
|
|
|
|
}
|
2016-02-15 05:35:26 +01:00
|
|
|
|
if (frequency == vmss_frequency.daily)
|
2016-02-05 08:14:39 +01:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
var hour = Convert.ToInt32(backup_schedule_hour);
|
|
|
|
|
var min = Convert.ToInt32(backup_schedule_min);
|
|
|
|
|
return GetDailyDate(time, min, hour);
|
|
|
|
|
|
|
|
|
|
}
|
2016-02-15 05:35:26 +01:00
|
|
|
|
if (frequency == vmss_frequency.weekly)
|
2016-02-05 08:14:39 +01:00
|
|
|
|
{
|
|
|
|
|
var hour = Convert.ToInt32(backup_schedule_hour);
|
|
|
|
|
var min = Convert.ToInt32(backup_schedule_min);
|
|
|
|
|
return GetWeeklyDate(time, hour, min, new List<DayOfWeek>(DaysOfWeekBackup));
|
|
|
|
|
}
|
|
|
|
|
return new DateTime();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static DateTime GetDailyDate(DateTime time, int min, int hour)
|
|
|
|
|
{
|
|
|
|
|
var nextDateTime = new DateTime(time.Year, time.Month, time.Day, hour, min, 0);
|
|
|
|
|
if (time > nextDateTime)
|
|
|
|
|
nextDateTime = nextDateTime.AddDays(1);
|
|
|
|
|
return nextDateTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static DateTime GetHourlyDate(DateTime time, int min)
|
|
|
|
|
{
|
|
|
|
|
var nextDateTime = new DateTime(time.Year, time.Month, time.Day, time.Hour, min, 0);
|
|
|
|
|
if (time > nextDateTime)
|
|
|
|
|
nextDateTime = nextDateTime.AddHours(1);
|
|
|
|
|
return nextDateTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static DateTime GetWeeklyDate(DateTime time, int hour, int min, List<DayOfWeek> listDaysOfWeek)
|
|
|
|
|
{
|
|
|
|
|
listDaysOfWeek.Sort();
|
|
|
|
|
|
|
|
|
|
int daysOfDifference;
|
|
|
|
|
DayOfWeek today = time.DayOfWeek;
|
|
|
|
|
|
|
|
|
|
int nextDay = listDaysOfWeek.FindIndex(x => x >= time.DayOfWeek);
|
|
|
|
|
|
|
|
|
|
// No scheduled days later in the week: take first day next week
|
|
|
|
|
if (nextDay < 0)
|
|
|
|
|
{
|
|
|
|
|
daysOfDifference = 7 - (today - listDaysOfWeek[0]);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
daysOfDifference = listDaysOfWeek[nextDay] - today;
|
|
|
|
|
|
|
|
|
|
// Today is a scheduled day: but is the time already past?
|
|
|
|
|
if (daysOfDifference == 0)
|
|
|
|
|
{
|
|
|
|
|
var todaysScheduledTime = new DateTime(time.Year, time.Month, time.Day, hour, min, 0);
|
|
|
|
|
if (time > todaysScheduledTime)
|
|
|
|
|
{
|
|
|
|
|
// Yes, the time is already past. Find the next day in the schedule instead.
|
|
|
|
|
if (listDaysOfWeek.Count == nextDay + 1) // we're at the last scheduled day in the week: go to next week
|
|
|
|
|
daysOfDifference = 7 - (today - listDaysOfWeek[0]);
|
|
|
|
|
else
|
|
|
|
|
daysOfDifference = listDaysOfWeek[nextDay + 1] - today;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return (new DateTime(time.Year, time.Month, time.Day, hour, min, 0)).AddDays(daysOfDifference);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IEnumerable<DayOfWeek> DaysOfWeekBackup
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2016-02-15 05:35:26 +01:00
|
|
|
|
return GetDaysFromDictionary(schedule);
|
2016-02-05 08:14:39 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static IEnumerable<DayOfWeek> GetDaysFromDictionary(Dictionary<string, string> dictionary)
|
|
|
|
|
{
|
|
|
|
|
if (dictionary.ContainsKey("days"))
|
|
|
|
|
{
|
|
|
|
|
if (dictionary["days"].IndexOf("monday", StringComparison.InvariantCultureIgnoreCase) >= 0)
|
|
|
|
|
yield return DayOfWeek.Monday;
|
|
|
|
|
if (dictionary["days"].IndexOf("tuesday", StringComparison.InvariantCultureIgnoreCase) >= 0)
|
|
|
|
|
yield return DayOfWeek.Tuesday;
|
|
|
|
|
if (dictionary["days"].IndexOf("wednesday", StringComparison.InvariantCultureIgnoreCase) >= 0)
|
|
|
|
|
yield return DayOfWeek.Wednesday;
|
|
|
|
|
if (dictionary["days"].IndexOf("thursday", StringComparison.InvariantCultureIgnoreCase) >= 0)
|
|
|
|
|
yield return DayOfWeek.Thursday;
|
|
|
|
|
if (dictionary["days"].IndexOf("friday", StringComparison.InvariantCultureIgnoreCase) >= 0)
|
|
|
|
|
yield return DayOfWeek.Friday;
|
|
|
|
|
if (dictionary["days"].IndexOf("saturday", StringComparison.InvariantCultureIgnoreCase) >= 0)
|
|
|
|
|
yield return DayOfWeek.Saturday;
|
|
|
|
|
if (dictionary["days"].IndexOf("sunday", StringComparison.InvariantCultureIgnoreCase) >= 0)
|
|
|
|
|
yield return DayOfWeek.Sunday;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public override string Name
|
|
|
|
|
{
|
|
|
|
|
get { return name_label; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string Description
|
|
|
|
|
{
|
|
|
|
|
get { return name_description; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string TryGetKey(Dictionary<string, string> dict, string key)
|
|
|
|
|
{
|
|
|
|
|
string r;
|
|
|
|
|
if (dict.TryGetValue(key, out r))
|
|
|
|
|
{
|
|
|
|
|
return r;
|
|
|
|
|
}
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string backup_schedule_min
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2016-02-15 05:35:26 +01:00
|
|
|
|
return TryGetKey(schedule, "min");
|
2016-02-05 08:14:39 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string backup_schedule_hour
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
|
2016-02-15 05:35:26 +01:00
|
|
|
|
return TryGetKey(schedule, "hour");
|
2016-02-05 08:14:39 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string backup_schedule_days
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
|
2016-02-15 05:35:26 +01:00
|
|
|
|
return TryGetKey(schedule, "days");
|
2016-02-05 08:14:39 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
private List<PolicyAlert> _alerts = new List<PolicyAlert>();
|
|
|
|
|
|
|
|
|
|
public List<PolicyAlert> Alerts
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2016-02-15 05:35:26 +01:00
|
|
|
|
foreach (var recent in _alerts)
|
2016-02-05 08:14:39 +01:00
|
|
|
|
{
|
|
|
|
|
if (!_alerts.Contains(recent))
|
|
|
|
|
_alerts.Add(recent);
|
|
|
|
|
}
|
|
|
|
|
return _alerts;
|
|
|
|
|
}
|
|
|
|
|
set { _alerts = value; }
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-15 05:35:26 +01:00
|
|
|
|
/*public List<PolicyAlert> RecentAlerts
|
2016-02-05 08:14:39 +01:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
List<PolicyAlert> result = new List<PolicyAlert>();
|
2016-02-15 05:35:26 +01:00
|
|
|
|
foreach (var body in _alerts)
|
2016-02-05 08:14:39 +01:00
|
|
|
|
{
|
2016-02-15 05:35:26 +01:00
|
|
|
|
result.Add(new PolicyAlert(Connection, body.Text));
|
2016-02-05 08:14:39 +01:00
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-02-15 05:35:26 +01:00
|
|
|
|
*/
|
2016-02-05 08:14:39 +01:00
|
|
|
|
|
|
|
|
|
public string LastResult
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2016-02-15 05:35:26 +01:00
|
|
|
|
if (_alerts.Count > 0)
|
2016-02-05 08:14:39 +01:00
|
|
|
|
{
|
2016-02-15 05:35:26 +01:00
|
|
|
|
var listRecentAlerts = new List<PolicyAlert>(_alerts);
|
2016-02-05 08:14:39 +01:00
|
|
|
|
listRecentAlerts.Sort((x, y) => y.Time.CompareTo(x.Time));
|
|
|
|
|
if (listRecentAlerts[0].Type == "info")
|
|
|
|
|
return Messages.VM_PROTECTION_POLICY_SUCCEEDED;
|
|
|
|
|
|
|
|
|
|
return Messages.FAILED;
|
|
|
|
|
}
|
|
|
|
|
return Messages.NOT_YET_RUN;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|