63 lines
2.1 KiB
C#
63 lines
2.1 KiB
C#
#region Copyright & License Information
|
|
/*
|
|
* Copyright 2007-2017 The OpenRA Developers (see AUTHORS)
|
|
* This file is part of OpenRA, which is free software. It is made
|
|
* available to you under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation, either version 3 of
|
|
* the License, or (at your option) any later version. For more
|
|
* information, see COPYING.
|
|
*/
|
|
#endregion
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using OpenRA.Traits;
|
|
|
|
namespace OpenRA.Mods.Common.Lint
|
|
{
|
|
class CheckSyncAnnotations : ILintPass
|
|
{
|
|
public void Run(Action<string> emitError, Action<string> emitWarning, ModData modData)
|
|
{
|
|
var modTypes = modData.ObjectCreator.GetTypes();
|
|
CheckTypesWithSyncableMembersImplementSyncInterface(modTypes, emitWarning);
|
|
CheckTypesImplementingSyncInterfaceHaveSyncableMembers(modTypes, emitWarning);
|
|
}
|
|
|
|
static readonly Type SyncInterface = typeof(ISync);
|
|
|
|
static bool TypeImplementsSync(Type type)
|
|
{
|
|
return type.GetInterfaces().Contains(SyncInterface);
|
|
}
|
|
|
|
static bool AnyTypeMemberIsSynced(Type type)
|
|
{
|
|
const BindingFlags Flags = BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly;
|
|
while (type != null)
|
|
{
|
|
if (((MemberInfo[])type.GetFields(Flags)).Concat(type.GetProperties(Flags)).Any(x => x.HasAttribute<SyncAttribute>()))
|
|
return true;
|
|
type = type.BaseType;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
static void CheckTypesWithSyncableMembersImplementSyncInterface(IEnumerable<Type> types, Action<string> emitWarning)
|
|
{
|
|
foreach (var type in types)
|
|
if (!TypeImplementsSync(type) && AnyTypeMemberIsSynced(type))
|
|
emitWarning("{0} has members with the Sync attribute but does not implement ISync".F(type.FullName));
|
|
}
|
|
|
|
static void CheckTypesImplementingSyncInterfaceHaveSyncableMembers(IEnumerable<Type> types, Action<string> emitWarning)
|
|
{
|
|
foreach (var type in types)
|
|
if (TypeImplementsSync(type) && !AnyTypeMemberIsSynced(type))
|
|
emitWarning("{0} implements ISync but does not use the Sync attribute on any members.".F(type.FullName));
|
|
}
|
|
}
|
|
} |