..
This commit is contained in:
parent
818cfcd706
commit
3be84a1318
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.vs/HaoYueTunnel/v17/.futdcache.v2
Normal file
BIN
.vs/HaoYueTunnel/v17/.futdcache.v2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
15
Client-Cli/Client-Cli.csproj
Normal file
15
Client-Cli/Client-Cli.csproj
Normal file
@ -0,0 +1,15 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<RootNamespace>Client_Cli</RootNamespace>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\ClientCore\ClientCore.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
18
Client-Cli/Program.cs
Normal file
18
Client-Cli/Program.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using ClientCore;
|
||||
ClientManager.Init("127.0.0.1", 23846);
|
||||
|
||||
while (true)
|
||||
{
|
||||
string CommandStr = Console.ReadLine();
|
||||
string Command = "";
|
||||
Command = ((CommandStr.IndexOf(" ") <= 0) ? CommandStr : CommandStr.Substring(0, CommandStr.IndexOf(" ")));
|
||||
switch (Command)
|
||||
{
|
||||
case "login":
|
||||
StaticComm.login.Login();
|
||||
break;
|
||||
default:
|
||||
Console.WriteLine("未知命令" + CommandStr);
|
||||
break;
|
||||
}
|
||||
}
|
@ -11,12 +11,12 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="Google.Protobuf">
|
||||
<HintPath>..\NetLib\Google.Protobuf.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="HaoYueNet.ClientNetwork">
|
||||
<HintPath>..\NetLib\HaoYueNet.ClientNetwork.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="protobuf-net">
|
||||
<HintPath>..\NetLib\protobuf-net.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
17
ClientCore/Manager/AppLogin.cs
Normal file
17
ClientCore/Manager/AppLogin.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using AxibugProtobuf;
|
||||
|
||||
namespace ClientCore
|
||||
{
|
||||
public class AppLogin
|
||||
{
|
||||
public void Login()
|
||||
{
|
||||
Protobuf_Login msg = new Protobuf_Login()
|
||||
{
|
||||
LoginType = 0,
|
||||
//TODO
|
||||
};
|
||||
StaticComm.networkHelper.SendToServer((int)CommandID.CmdLogin, NetBase.Serizlize(msg));
|
||||
}
|
||||
}
|
||||
}
|
12
ClientCore/Manager/ClientManager.cs
Normal file
12
ClientCore/Manager/ClientManager.cs
Normal file
@ -0,0 +1,12 @@
|
||||
namespace ClientCore
|
||||
{
|
||||
public static class ClientManager
|
||||
{
|
||||
public static void Init(string IP,int port)
|
||||
{
|
||||
StaticComm.networkHelper = new NetworkHelper();
|
||||
StaticComm.login = new AppLogin();
|
||||
StaticComm.networkHelper.Init(IP, port);
|
||||
}
|
||||
}
|
||||
}
|
@ -1,32 +1,20 @@
|
||||
using ProtoBuf;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Google.Protobuf;
|
||||
|
||||
namespace ClientCore
|
||||
{
|
||||
public static class NetBase
|
||||
{
|
||||
//序列化
|
||||
public static byte[] Serizlize<T>(T MsgObj)
|
||||
public static byte[] Serizlize(IMessage msg)
|
||||
{
|
||||
using (MemoryStream ms = new MemoryStream())
|
||||
{
|
||||
Serializer.Serialize<T>(ms, MsgObj);
|
||||
byte[] data1 = ms.ToArray();
|
||||
return data1;
|
||||
}
|
||||
return msg.ToByteArray();
|
||||
}
|
||||
//反序列化
|
||||
public static T DeSerizlize<T>(byte[] MsgObj)
|
||||
|
||||
public static T DeSerizlize<T>(byte[] bytes)
|
||||
{
|
||||
using (MemoryStream ms = new MemoryStream(MsgObj))
|
||||
{
|
||||
var ds_obj = Serializer.Deserialize<T>(ms);
|
||||
return ds_obj;
|
||||
}
|
||||
var msgType = typeof(T);
|
||||
object msg = Activator.CreateInstance(msgType);
|
||||
((IMessage)msg).MergeFrom(bytes);
|
||||
return (T)msg;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -13,5 +13,6 @@ namespace ClientCore
|
||||
public static string IP;
|
||||
public static int Port;
|
||||
public static NetworkHelper networkHelper;
|
||||
public static AppLogin login;
|
||||
}
|
||||
}
|
||||
|
@ -1,23 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("ClientCore")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("ClientCore")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("ClientCore")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// 由 MSBuild WriteCodeFragment 类生成。
|
||||
|
@ -1 +0,0 @@
|
||||
9630890bec62ff48cb69f5f7a5e4a2d043a235d8
|
@ -1,11 +0,0 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net7.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = ClientCore
|
||||
build_property.ProjectDir = F:\Sin365\HaoYueTunnel\ClientCore\
|
Binary file not shown.
@ -3,20 +3,22 @@ Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.4.33403.182
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServerCore", "ServerCore\ServerCore.csproj", "{D0235FE1-FE11-408B-8F4A-8D45BC376E35}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServerCore", "ServerCore\ServerCore.csproj", "{D0235FE1-FE11-408B-8F4A-8D45BC376E35}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "NetLib", "NetLib", "{86164379-C3F5-448C-AD1D-841AAC89EFB3}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
NetLib\Google.Protobuf.dll = NetLib\Google.Protobuf.dll
|
||||
NetLib\HaoYueNet.ClientNetwork.dll = NetLib\HaoYueNet.ClientNetwork.dll
|
||||
NetLib\HaoYueNet.ServerNetwork.dll = NetLib\HaoYueNet.ServerNetwork.dll
|
||||
NetLib\protobuf-net.dll = NetLib\protobuf-net.dll
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Server", "Server\Server.csproj", "{5C2CE565-BA8D-499D-8D7A-C4B8A9CDE35C}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Server", "Server\Server.csproj", "{5C2CE565-BA8D-499D-8D7A-C4B8A9CDE35C}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClientCore", "ClientCore\ClientCore.csproj", "{28ADA527-3403-4BAE-B919-633D107EDB3A}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClientCore", "ClientCore\ClientCore.csproj", "{28ADA527-3403-4BAE-B919-633D107EDB3A}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Protobuf", "Protobuf\Protobuf.csproj", "{07B4FB42-CA26-4C68-AFE8-47A50BABFB64}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Protobuf", "Protobuf\Protobuf.csproj", "{07B4FB42-CA26-4C68-AFE8-47A50BABFB64}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Client-Cli", "Client-Cli\Client-Cli.csproj", "{A363C9A2-FBFB-40D7-8B34-2BE384C49A29}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
@ -40,6 +42,10 @@ Global
|
||||
{07B4FB42-CA26-4C68-AFE8-47A50BABFB64}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{07B4FB42-CA26-4C68-AFE8-47A50BABFB64}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{07B4FB42-CA26-4C68-AFE8-47A50BABFB64}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{A363C9A2-FBFB-40D7-8B34-2BE384C49A29}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{A363C9A2-FBFB-40D7-8B34-2BE384C49A29}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{A363C9A2-FBFB-40D7-8B34-2BE384C49A29}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{A363C9A2-FBFB-40D7-8B34-2BE384C49A29}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
BIN
NetLib/Google.Protobuf.dll
Normal file
BIN
NetLib/Google.Protobuf.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -7,8 +7,8 @@
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="protobuf-net">
|
||||
<HintPath>..\NetLib\protobuf-net.dll</HintPath>
|
||||
<Reference Include="Google.Protobuf">
|
||||
<HintPath>..\NetLib\Google.Protobuf.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
|
||||
|
702
Protobuf/ProtobufAuth.cs
Normal file
702
Protobuf/ProtobufAuth.cs
Normal file
@ -0,0 +1,702 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: protobuf_Auth.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace AxibugProtobuf {
|
||||
|
||||
/// <summary>Holder for reflection information generated from protobuf_Auth.proto</summary>
|
||||
public static partial class ProtobufAuthReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for protobuf_Auth.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static ProtobufAuthReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChNwcm90b2J1Zl9BdXRoLnByb3RvEg5BeGlidWdQcm90b2J1ZiKRAQoOUHJv",
|
||||
"dG9idWZfTG9naW4SLAoJbG9naW5UeXBlGAEgASgOMhkuQXhpYnVnUHJvdG9i",
|
||||
"dWYuTG9naW5UeXBlEi4KCmRldmljZVR5cGUYAiABKA4yGi5BeGlidWdQcm90",
|
||||
"b2J1Zi5EZXZpY2VUeXBlEg8KB0FjY291bnQYAyABKAkSEAoIUGFzc3dvcmQY",
|
||||
"BCABKAkifwoTUHJvdG9idWZfTG9naW5fUkVTUBINCgVUb2tlbhgBIAEoCRIV",
|
||||
"Cg1MYXN0TG9naW5EYXRlGAIgASgJEg8KB1JlZ0RhdGUYAyABKAkSMQoGU3Rh",
|
||||
"dHVzGAQgASgOMiEuQXhpYnVnUHJvdG9idWYuTG9naW5SZXN1bHRTdGF0dXMq",
|
||||
"KwoJQ29tbWFuZElEEg4KCkNNRF9ERUZBVUwQABIOCglDTURfTE9HSU4Q0Q8q",
|
||||
"KwoJRXJyb3JDb2RlEhAKDEVSUk9SX0RFRkFVTBAAEgwKCEVSUk9SX09LEAEq",
|
||||
"PgoJTG9naW5UeXBlEg8KC0Jhc2VEZWZhdWx0EAASDgoKSGFvWXVlQXV0aBAB",
|
||||
"EgcKA0JGMxADEgcKA0JGNBAEKksKCkRldmljZVR5cGUSFgoSRGV2aWNlVHlw",
|
||||
"ZV9EZWZhdWx0EAASBgoCUEMQARILCgdBbmRyb2lkEAISBwoDSU9TEAMSBwoD",
|
||||
"UFNWEAQqTgoRTG9naW5SZXN1bHRTdGF0dXMSIQodTG9naW5SZXN1bHRTdGF0",
|
||||
"dXNfQmFzZURlZmF1bHQQABIGCgJPSxABEg4KCkFjY291bnRFcnIQAkICSAFi",
|
||||
"BnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::AxibugProtobuf.CommandID), typeof(global::AxibugProtobuf.ErrorCode), typeof(global::AxibugProtobuf.LoginType), typeof(global::AxibugProtobuf.DeviceType), typeof(global::AxibugProtobuf.LoginResultStatus), }, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::AxibugProtobuf.Protobuf_Login), global::AxibugProtobuf.Protobuf_Login.Parser, new[]{ "LoginType", "DeviceType", "Account", "Password" }, null, null, null, null),
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::AxibugProtobuf.Protobuf_Login_RESP), global::AxibugProtobuf.Protobuf_Login_RESP.Parser, new[]{ "Token", "LastLoginDate", "RegDate", "Status" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum CommandID {
|
||||
/// <summary>
|
||||
///缺省不使用
|
||||
/// </summary>
|
||||
[pbr::OriginalName("CMD_DEFAUL")] CmdDefaul = 0,
|
||||
/// <summary>
|
||||
///登录上行 | 下行 对应 Protobuf_Login | Protobuf_Login_RESP
|
||||
/// </summary>
|
||||
[pbr::OriginalName("CMD_LOGIN")] CmdLogin = 2001,
|
||||
}
|
||||
|
||||
public enum ErrorCode {
|
||||
/// <summary>
|
||||
///缺省不使用
|
||||
/// </summary>
|
||||
[pbr::OriginalName("ERROR_DEFAUL")] ErrorDefaul = 0,
|
||||
/// <summary>
|
||||
///成功
|
||||
/// </summary>
|
||||
[pbr::OriginalName("ERROR_OK")] ErrorOk = 1,
|
||||
}
|
||||
|
||||
public enum LoginType {
|
||||
/// <summary>
|
||||
///缺省不使用
|
||||
/// </summary>
|
||||
[pbr::OriginalName("BaseDefault")] BaseDefault = 0,
|
||||
[pbr::OriginalName("HaoYueAuth")] HaoYueAuth = 1,
|
||||
[pbr::OriginalName("BF3")] Bf3 = 3,
|
||||
[pbr::OriginalName("BF4")] Bf4 = 4,
|
||||
}
|
||||
|
||||
public enum DeviceType {
|
||||
/// <summary>
|
||||
///缺省不使用
|
||||
/// </summary>
|
||||
[pbr::OriginalName("DeviceType_Default")] Default = 0,
|
||||
[pbr::OriginalName("PC")] Pc = 1,
|
||||
[pbr::OriginalName("Android")] Android = 2,
|
||||
[pbr::OriginalName("IOS")] Ios = 3,
|
||||
[pbr::OriginalName("PSV")] Psv = 4,
|
||||
}
|
||||
|
||||
public enum LoginResultStatus {
|
||||
/// <summary>
|
||||
///缺省不使用
|
||||
/// </summary>
|
||||
[pbr::OriginalName("LoginResultStatus_BaseDefault")] BaseDefault = 0,
|
||||
[pbr::OriginalName("OK")] Ok = 1,
|
||||
[pbr::OriginalName("AccountErr")] AccountErr = 2,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Messages
|
||||
/// <summary>
|
||||
///登录数据上行
|
||||
/// </summary>
|
||||
public sealed partial class Protobuf_Login : pb::IMessage<Protobuf_Login>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<Protobuf_Login> _parser = new pb::MessageParser<Protobuf_Login>(() => new Protobuf_Login());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<Protobuf_Login> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::AxibugProtobuf.ProtobufAuthReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Protobuf_Login() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Protobuf_Login(Protobuf_Login other) : this() {
|
||||
loginType_ = other.loginType_;
|
||||
deviceType_ = other.deviceType_;
|
||||
account_ = other.account_;
|
||||
password_ = other.password_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Protobuf_Login Clone() {
|
||||
return new Protobuf_Login(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "loginType" field.</summary>
|
||||
public const int LoginTypeFieldNumber = 1;
|
||||
private global::AxibugProtobuf.LoginType loginType_ = global::AxibugProtobuf.LoginType.BaseDefault;
|
||||
/// <summary>
|
||||
///登录操作类型 [0]皓月通行证 [3] 皓月BF3 [4] 皓月BF4
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::AxibugProtobuf.LoginType LoginType {
|
||||
get { return loginType_; }
|
||||
set {
|
||||
loginType_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "deviceType" field.</summary>
|
||||
public const int DeviceTypeFieldNumber = 2;
|
||||
private global::AxibugProtobuf.DeviceType deviceType_ = global::AxibugProtobuf.DeviceType.Default;
|
||||
/// <summary>
|
||||
///设备类型 [0]PC [1]AndroidPad预留 [3]IPad预留
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::AxibugProtobuf.DeviceType DeviceType {
|
||||
get { return deviceType_; }
|
||||
set {
|
||||
deviceType_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "Account" field.</summary>
|
||||
public const int AccountFieldNumber = 3;
|
||||
private string account_ = "";
|
||||
/// <summary>
|
||||
///用户名
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string Account {
|
||||
get { return account_; }
|
||||
set {
|
||||
account_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "Password" field.</summary>
|
||||
public const int PasswordFieldNumber = 4;
|
||||
private string password_ = "";
|
||||
/// <summary>
|
||||
///密码
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string Password {
|
||||
get { return password_; }
|
||||
set {
|
||||
password_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as Protobuf_Login);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(Protobuf_Login other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (LoginType != other.LoginType) return false;
|
||||
if (DeviceType != other.DeviceType) return false;
|
||||
if (Account != other.Account) return false;
|
||||
if (Password != other.Password) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (LoginType != global::AxibugProtobuf.LoginType.BaseDefault) hash ^= LoginType.GetHashCode();
|
||||
if (DeviceType != global::AxibugProtobuf.DeviceType.Default) hash ^= DeviceType.GetHashCode();
|
||||
if (Account.Length != 0) hash ^= Account.GetHashCode();
|
||||
if (Password.Length != 0) hash ^= Password.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (LoginType != global::AxibugProtobuf.LoginType.BaseDefault) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteEnum((int) LoginType);
|
||||
}
|
||||
if (DeviceType != global::AxibugProtobuf.DeviceType.Default) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteEnum((int) DeviceType);
|
||||
}
|
||||
if (Account.Length != 0) {
|
||||
output.WriteRawTag(26);
|
||||
output.WriteString(Account);
|
||||
}
|
||||
if (Password.Length != 0) {
|
||||
output.WriteRawTag(34);
|
||||
output.WriteString(Password);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (LoginType != global::AxibugProtobuf.LoginType.BaseDefault) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteEnum((int) LoginType);
|
||||
}
|
||||
if (DeviceType != global::AxibugProtobuf.DeviceType.Default) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteEnum((int) DeviceType);
|
||||
}
|
||||
if (Account.Length != 0) {
|
||||
output.WriteRawTag(26);
|
||||
output.WriteString(Account);
|
||||
}
|
||||
if (Password.Length != 0) {
|
||||
output.WriteRawTag(34);
|
||||
output.WriteString(Password);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (LoginType != global::AxibugProtobuf.LoginType.BaseDefault) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) LoginType);
|
||||
}
|
||||
if (DeviceType != global::AxibugProtobuf.DeviceType.Default) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) DeviceType);
|
||||
}
|
||||
if (Account.Length != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeStringSize(Account);
|
||||
}
|
||||
if (Password.Length != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeStringSize(Password);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(Protobuf_Login other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.LoginType != global::AxibugProtobuf.LoginType.BaseDefault) {
|
||||
LoginType = other.LoginType;
|
||||
}
|
||||
if (other.DeviceType != global::AxibugProtobuf.DeviceType.Default) {
|
||||
DeviceType = other.DeviceType;
|
||||
}
|
||||
if (other.Account.Length != 0) {
|
||||
Account = other.Account;
|
||||
}
|
||||
if (other.Password.Length != 0) {
|
||||
Password = other.Password;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 8: {
|
||||
LoginType = (global::AxibugProtobuf.LoginType) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
DeviceType = (global::AxibugProtobuf.DeviceType) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
case 26: {
|
||||
Account = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 34: {
|
||||
Password = input.ReadString();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 8: {
|
||||
LoginType = (global::AxibugProtobuf.LoginType) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
DeviceType = (global::AxibugProtobuf.DeviceType) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
case 26: {
|
||||
Account = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 34: {
|
||||
Password = input.ReadString();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///登录数据下行
|
||||
/// </summary>
|
||||
public sealed partial class Protobuf_Login_RESP : pb::IMessage<Protobuf_Login_RESP>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<Protobuf_Login_RESP> _parser = new pb::MessageParser<Protobuf_Login_RESP>(() => new Protobuf_Login_RESP());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<Protobuf_Login_RESP> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::AxibugProtobuf.ProtobufAuthReflection.Descriptor.MessageTypes[1]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Protobuf_Login_RESP() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Protobuf_Login_RESP(Protobuf_Login_RESP other) : this() {
|
||||
token_ = other.token_;
|
||||
lastLoginDate_ = other.lastLoginDate_;
|
||||
regDate_ = other.regDate_;
|
||||
status_ = other.status_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Protobuf_Login_RESP Clone() {
|
||||
return new Protobuf_Login_RESP(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "Token" field.</summary>
|
||||
public const int TokenFieldNumber = 1;
|
||||
private string token_ = "";
|
||||
/// <summary>
|
||||
///登录凭据 (本次登录之后,所有业务请求凭据,需要存储在内存中)
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string Token {
|
||||
get { return token_; }
|
||||
set {
|
||||
token_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "LastLoginDate" field.</summary>
|
||||
public const int LastLoginDateFieldNumber = 2;
|
||||
private string lastLoginDate_ = "";
|
||||
/// <summary>
|
||||
///上次登录时间(只用于呈现的字符串,若界面需求需要)
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string LastLoginDate {
|
||||
get { return lastLoginDate_; }
|
||||
set {
|
||||
lastLoginDate_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "RegDate" field.</summary>
|
||||
public const int RegDateFieldNumber = 3;
|
||||
private string regDate_ = "";
|
||||
/// <summary>
|
||||
///注册时间(只用于呈现的字符串,若界面需求需要)
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string RegDate {
|
||||
get { return regDate_; }
|
||||
set {
|
||||
regDate_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "Status" field.</summary>
|
||||
public const int StatusFieldNumber = 4;
|
||||
private global::AxibugProtobuf.LoginResultStatus status_ = global::AxibugProtobuf.LoginResultStatus.BaseDefault;
|
||||
/// <summary>
|
||||
///账号状态 (预留) [1]正常[0]被禁封
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::AxibugProtobuf.LoginResultStatus Status {
|
||||
get { return status_; }
|
||||
set {
|
||||
status_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as Protobuf_Login_RESP);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(Protobuf_Login_RESP other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (Token != other.Token) return false;
|
||||
if (LastLoginDate != other.LastLoginDate) return false;
|
||||
if (RegDate != other.RegDate) return false;
|
||||
if (Status != other.Status) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Token.Length != 0) hash ^= Token.GetHashCode();
|
||||
if (LastLoginDate.Length != 0) hash ^= LastLoginDate.GetHashCode();
|
||||
if (RegDate.Length != 0) hash ^= RegDate.GetHashCode();
|
||||
if (Status != global::AxibugProtobuf.LoginResultStatus.BaseDefault) hash ^= Status.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (Token.Length != 0) {
|
||||
output.WriteRawTag(10);
|
||||
output.WriteString(Token);
|
||||
}
|
||||
if (LastLoginDate.Length != 0) {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteString(LastLoginDate);
|
||||
}
|
||||
if (RegDate.Length != 0) {
|
||||
output.WriteRawTag(26);
|
||||
output.WriteString(RegDate);
|
||||
}
|
||||
if (Status != global::AxibugProtobuf.LoginResultStatus.BaseDefault) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteEnum((int) Status);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (Token.Length != 0) {
|
||||
output.WriteRawTag(10);
|
||||
output.WriteString(Token);
|
||||
}
|
||||
if (LastLoginDate.Length != 0) {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteString(LastLoginDate);
|
||||
}
|
||||
if (RegDate.Length != 0) {
|
||||
output.WriteRawTag(26);
|
||||
output.WriteString(RegDate);
|
||||
}
|
||||
if (Status != global::AxibugProtobuf.LoginResultStatus.BaseDefault) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteEnum((int) Status);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Token.Length != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeStringSize(Token);
|
||||
}
|
||||
if (LastLoginDate.Length != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeStringSize(LastLoginDate);
|
||||
}
|
||||
if (RegDate.Length != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeStringSize(RegDate);
|
||||
}
|
||||
if (Status != global::AxibugProtobuf.LoginResultStatus.BaseDefault) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) Status);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(Protobuf_Login_RESP other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.Token.Length != 0) {
|
||||
Token = other.Token;
|
||||
}
|
||||
if (other.LastLoginDate.Length != 0) {
|
||||
LastLoginDate = other.LastLoginDate;
|
||||
}
|
||||
if (other.RegDate.Length != 0) {
|
||||
RegDate = other.RegDate;
|
||||
}
|
||||
if (other.Status != global::AxibugProtobuf.LoginResultStatus.BaseDefault) {
|
||||
Status = other.Status;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 10: {
|
||||
Token = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 18: {
|
||||
LastLoginDate = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 26: {
|
||||
RegDate = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 32: {
|
||||
Status = (global::AxibugProtobuf.LoginResultStatus) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 10: {
|
||||
Token = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 18: {
|
||||
LastLoginDate = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 26: {
|
||||
RegDate = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 32: {
|
||||
Status = (global::AxibugProtobuf.LoginResultStatus) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
Binary file not shown.
@ -1,425 +0,0 @@
|
||||
IMPORTANT NOTICE
|
||||
|
||||
Copyright (C) 1998-2008 Free Software Foundation, Inc.
|
||||
Copyright (C) 1996-2012 Oracle and/or its affiliates
|
||||
Copyright (C) 2002-2012 Jeroen Frijters
|
||||
|
||||
Some files in this distribution are part of GNU Classpath or OpenJDK and
|
||||
are licensed under the GNU General Public License (GPL) version 2
|
||||
with "Classpath" exception. This applies in particular to:
|
||||
- IKVM.OpenJDK.*.dll
|
||||
- some of the *.java files (see each file header for license)
|
||||
|
||||
See http://www.gnu.org/software/classpath/ for information on the
|
||||
GNU Classpath license and "Classpath" exception.
|
||||
|
||||
See below for a full copy of the GPL license and the Sun version of the
|
||||
"Classpath" exception.
|
||||
|
||||
-----------------------------------------------------------------------------
|
||||
|
||||
Copyright (C) 2002-2012 Jeroen Frijters
|
||||
|
||||
This software is provided 'as-is', without any express or implied
|
||||
warranty. In no event will the authors be held liable for any damages
|
||||
arising from the use of this software.
|
||||
|
||||
Permission is granted to anyone to use this software for any purpose,
|
||||
including commercial applications, and to alter it and redistribute it
|
||||
freely, subject to the following restrictions:
|
||||
|
||||
1. The origin of this software must not be misrepresented; you must not
|
||||
claim that you wrote the original software. If you use this software
|
||||
in a product, an acknowledgment in the product documentation would be
|
||||
appreciated but is not required.
|
||||
2. Altered source versions must be plainly marked as such, and must not be
|
||||
misrepresented as being the original software.
|
||||
3. This notice may not be removed or altered from any source distribution.
|
||||
|
||||
Jeroen Frijters
|
||||
jeroen@frijters.net
|
||||
|
||||
-----------------------------------------------------------------------------
|
||||
|
||||
The GNU General Public License (GPL)
|
||||
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies of this license
|
||||
document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your freedom to share
|
||||
and change it. By contrast, the GNU General Public License is intended to
|
||||
guarantee your freedom to share and change free software--to make sure the
|
||||
software is free for all its users. This General Public License applies to
|
||||
most of the Free Software Foundation's software and to any other program whose
|
||||
authors commit to using it. (Some other Free Software Foundation software is
|
||||
covered by the GNU Library General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not price. Our
|
||||
General Public Licenses are designed to make sure that you have the freedom to
|
||||
distribute copies of free software (and charge for this service if you wish),
|
||||
that you receive source code or can get it if you want it, that you can change
|
||||
the software or use pieces of it in new free programs; and that you know you
|
||||
can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid anyone to deny
|
||||
you these rights or to ask you to surrender the rights. These restrictions
|
||||
translate to certain responsibilities for you if you distribute copies of the
|
||||
software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether gratis or for
|
||||
a fee, you must give the recipients all the rights that you have. You must
|
||||
make sure that they, too, receive or can get the source code. And you must
|
||||
show them these terms so they know their rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and (2)
|
||||
offer you this license which gives you legal permission to copy, distribute
|
||||
and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain that
|
||||
everyone understands that there is no warranty for this free software. If the
|
||||
software is modified by someone else and passed on, we want its recipients to
|
||||
know that what they have is not the original, so that any problems introduced
|
||||
by others will not reflect on the original authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software patents. We
|
||||
wish to avoid the danger that redistributors of a free program will
|
||||
individually obtain patent licenses, in effect making the program proprietary.
|
||||
To prevent this, we have made it clear that any patent must be licensed for
|
||||
everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and modification
|
||||
follow.
|
||||
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains a notice
|
||||
placed by the copyright holder saying it may be distributed under the terms of
|
||||
this General Public License. The "Program", below, refers to any such program
|
||||
or work, and a "work based on the Program" means either the Program or any
|
||||
derivative work under copyright law: that is to say, a work containing the
|
||||
Program or a portion of it, either verbatim or with modifications and/or
|
||||
translated into another language. (Hereinafter, translation is included
|
||||
without limitation in the term "modification".) Each licensee is addressed as
|
||||
"you".
|
||||
|
||||
Activities other than copying, distribution and modification are not covered by
|
||||
this License; they are outside its scope. The act of running the Program is
|
||||
not restricted, and the output from the Program is covered only if its contents
|
||||
constitute a work based on the Program (independent of having been made by
|
||||
running the Program). Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's source code as
|
||||
you receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice and
|
||||
disclaimer of warranty; keep intact all the notices that refer to this License
|
||||
and to the absence of any warranty; and give any other recipients of the
|
||||
Program a copy of this License along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and you may
|
||||
at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion of it, thus
|
||||
forming a work based on the Program, and copy and distribute such modifications
|
||||
or work under the terms of Section 1 above, provided that you also meet all of
|
||||
these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices stating
|
||||
that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in whole or
|
||||
in part contains or is derived from the Program or any part thereof, to be
|
||||
licensed as a whole at no charge to all third parties under the terms of
|
||||
this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively when run,
|
||||
you must cause it, when started running for such interactive use in the
|
||||
most ordinary way, to print or display an announcement including an
|
||||
appropriate copyright notice and a notice that there is no warranty (or
|
||||
else, saying that you provide a warranty) and that users may redistribute
|
||||
the program under these conditions, and telling the user how to view a copy
|
||||
of this License. (Exception: if the Program itself is interactive but does
|
||||
not normally print such an announcement, your work based on the Program is
|
||||
not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If identifiable
|
||||
sections of that work are not derived from the Program, and can be reasonably
|
||||
considered independent and separate works in themselves, then this License, and
|
||||
its terms, do not apply to those sections when you distribute them as separate
|
||||
works. But when you distribute the same sections as part of a whole which is a
|
||||
work based on the Program, the distribution of the whole must be on the terms
|
||||
of this License, whose permissions for other licensees extend to the entire
|
||||
whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest your
|
||||
rights to work written entirely by you; rather, the intent is to exercise the
|
||||
right to control the distribution of derivative or collective works based on
|
||||
the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program with the
|
||||
Program (or with a work based on the Program) on a volume of a storage or
|
||||
distribution medium does not bring the other work under the scope of this
|
||||
License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it, under
|
||||
Section 2) in object code or executable form under the terms of Sections 1 and
|
||||
2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable source
|
||||
code, which must be distributed under the terms of Sections 1 and 2 above
|
||||
on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three years, to
|
||||
give any third party, for a charge no more than your cost of physically
|
||||
performing source distribution, a complete machine-readable copy of the
|
||||
corresponding source code, to be distributed under the terms of Sections 1
|
||||
and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer to
|
||||
distribute corresponding source code. (This alternative is allowed only
|
||||
for noncommercial distribution and only if you received the program in
|
||||
object code or executable form with such an offer, in accord with
|
||||
Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for making
|
||||
modifications to it. For an executable work, complete source code means all
|
||||
the source code for all modules it contains, plus any associated interface
|
||||
definition files, plus the scripts used to control compilation and installation
|
||||
of the executable. However, as a special exception, the source code
|
||||
distributed need not include anything that is normally distributed (in either
|
||||
source or binary form) with the major components (compiler, kernel, and so on)
|
||||
of the operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering access to copy
|
||||
from a designated place, then offering equivalent access to copy the source
|
||||
code from the same place counts as distribution of the source code, even though
|
||||
third parties are not compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program except as
|
||||
expressly provided under this License. Any attempt otherwise to copy, modify,
|
||||
sublicense or distribute the Program is void, and will automatically terminate
|
||||
your rights under this License. However, parties who have received copies, or
|
||||
rights, from you under this License will not have their licenses terminated so
|
||||
long as such parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not signed it.
|
||||
However, nothing else grants you permission to modify or distribute the Program
|
||||
or its derivative works. These actions are prohibited by law if you do not
|
||||
accept this License. Therefore, by modifying or distributing the Program (or
|
||||
any work based on the Program), you indicate your acceptance of this License to
|
||||
do so, and all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the Program),
|
||||
the recipient automatically receives a license from the original licensor to
|
||||
copy, distribute or modify the Program subject to these terms and conditions.
|
||||
You may not impose any further restrictions on the recipients' exercise of the
|
||||
rights granted herein. You are not responsible for enforcing compliance by
|
||||
third parties to this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues), conditions
|
||||
are imposed on you (whether by court order, agreement or otherwise) that
|
||||
contradict the conditions of this License, they do not excuse you from the
|
||||
conditions of this License. If you cannot distribute so as to satisfy
|
||||
simultaneously your obligations under this License and any other pertinent
|
||||
obligations, then as a consequence you may not distribute the Program at all.
|
||||
For example, if a patent license would not permit royalty-free redistribution
|
||||
of the Program by all those who receive copies directly or indirectly through
|
||||
you, then the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under any
|
||||
particular circumstance, the balance of the section is intended to apply and
|
||||
the section as a whole is intended to apply in other circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any patents or
|
||||
other property right claims or to contest validity of any such claims; this
|
||||
section has the sole purpose of protecting the integrity of the free software
|
||||
distribution system, which is implemented by public license practices. Many
|
||||
people have made generous contributions to the wide range of software
|
||||
distributed through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing to
|
||||
distribute software through any other system and a licensee cannot impose that
|
||||
choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to be a
|
||||
consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in certain
|
||||
countries either by patents or by copyrighted interfaces, the original
|
||||
copyright holder who places the Program under this License may add an explicit
|
||||
geographical distribution limitation excluding those countries, so that
|
||||
distribution is permitted only in or among countries not thus excluded. In
|
||||
such case, this License incorporates the limitation as if written in the body
|
||||
of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions of the
|
||||
General Public License from time to time. Such new versions will be similar in
|
||||
spirit to the present version, but may differ in detail to address new problems
|
||||
or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any later
|
||||
version", you have the option of following the terms and conditions either of
|
||||
that version or of any later version published by the Free Software Foundation.
|
||||
If the Program does not specify a version number of this License, you may
|
||||
choose any version ever published by the Free Software Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free programs
|
||||
whose distribution conditions are different, write to the author to ask for
|
||||
permission. For software which is copyrighted by the Free Software Foundation,
|
||||
write to the Free Software Foundation; we sometimes make exceptions for this.
|
||||
Our decision will be guided by the two goals of preserving the free status of
|
||||
all derivatives of our free software and of promoting the sharing and reuse of
|
||||
software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR
|
||||
THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE
|
||||
STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE
|
||||
PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
|
||||
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||
FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
|
||||
PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE,
|
||||
YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL
|
||||
ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE
|
||||
PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR
|
||||
INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA
|
||||
BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
|
||||
FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER
|
||||
OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest possible
|
||||
use to the public, the best way to achieve this is to make it free software
|
||||
which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest to attach
|
||||
them to the start of each source file to most effectively convey the exclusion
|
||||
of warranty; and each file should have at least the "copyright" line and a
|
||||
pointer to where the full notice is found.
|
||||
|
||||
One line to give the program's name and a brief idea of what it does.
|
||||
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU General Public License as published by the Free
|
||||
Software Foundation; either version 2 of the License, or (at your option)
|
||||
any later version.
|
||||
|
||||
This program 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 General Public License for
|
||||
more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc., 59
|
||||
Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program is interactive, make it output a short notice like this when it
|
||||
starts in an interactive mode:
|
||||
|
||||
Gnomovision version 69, Copyright (C) year name of author Gnomovision comes
|
||||
with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free
|
||||
software, and you are welcome to redistribute it under certain conditions;
|
||||
type 'show c' for details.
|
||||
|
||||
The hypothetical commands 'show w' and 'show c' should show the appropriate
|
||||
parts of the General Public License. Of course, the commands you use may be
|
||||
called something other than 'show w' and 'show c'; they could even be
|
||||
mouse-clicks or menu items--whatever suits your program.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary. Here
|
||||
is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||
'Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||
|
||||
signature of Ty Coon, 1 April 1989
|
||||
|
||||
Ty Coon, President of Vice
|
||||
|
||||
This General Public License does not permit incorporating your program into
|
||||
proprietary programs. If your program is a subroutine library, you may
|
||||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Library General Public
|
||||
License instead of this License.
|
||||
|
||||
|
||||
"CLASSPATH" EXCEPTION TO THE GPL
|
||||
|
||||
Certain source files distributed by Oracle America and/or its affiliates are
|
||||
subject to the following clarification and special exception to the GPL, but
|
||||
only where Oracle has expressly included in the particular source file's header
|
||||
the words "Oracle designates this particular file as subject to the "Classpath"
|
||||
exception as provided by Oracle in the LICENSE file that accompanied this code."
|
||||
|
||||
Linking this library statically or dynamically with other modules is making
|
||||
a combined work based on this library. Thus, the terms and conditions of
|
||||
the GNU General Public License cover the whole combination.
|
||||
|
||||
As a special exception, the copyright holders of this library give you
|
||||
permission to link this library with independent modules to produce an
|
||||
executable, regardless of the license terms of these independent modules,
|
||||
and to copy and distribute the resulting executable under terms of your
|
||||
choice, provided that you also meet, for each linked independent module,
|
||||
the terms and conditions of the license of that module. An independent
|
||||
module is a module which is not derived from or based on this library. If
|
||||
you modify this library, you may extend this exception to your version of
|
||||
the library, but you are not obligated to do so. If you do not wish to do
|
||||
so, delete this exception statement from your version.
|
||||
|
||||
-----------------------------------------------------------------------------
|
||||
|
||||
-------------------------------------------------------------------------
|
||||
$Id: LICENSE,v 1.7.4.1 2012/06/12 08:44:39 jfrijters Exp $
|
||||
-------------------------------------------------------------------------
|
||||
Copyright (c) 1999 Visual Numerics Inc. All Rights Reserved.
|
||||
|
||||
Permission to use, copy, modify, and distribute this software is freely
|
||||
granted by Visual Numerics, Inc., provided that the copyright notice
|
||||
above and the following warranty disclaimer are preserved in human
|
||||
readable form.
|
||||
|
||||
Because this software is licenses free of charge, it is provided
|
||||
"AS IS", with NO WARRANTY. TO THE EXTENT PERMITTED BY LAW, VNI
|
||||
DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
||||
TO ITS PERFORMANCE, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
||||
VNI WILL NOT BE LIABLE FOR ANY DAMAGES WHATSOEVER ARISING OUT OF THE USE
|
||||
OF OR INABILITY TO USE THIS SOFTWARE, INCLUDING BUT NOT LIMITED TO DIRECT,
|
||||
INDIRECT, SPECIAL, CONSEQUENTIAL, PUNITIVE, AND EXEMPLARY DAMAGES, EVEN
|
||||
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
|
||||
This Java code is based on C code in the package fdlibm,
|
||||
which can be obtained from www.netlib.org.
|
||||
The original fdlibm C code contains the following notice.
|
||||
|
||||
Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
|
||||
|
||||
Developed at SunSoft, a Sun Microsystems, Inc. business.
|
||||
Permission to use, copy, modify, and distribute this
|
||||
software is freely granted, provided that this notice
|
||||
is preserved.
|
||||
|
||||
-----------------------------------------------------------------------------
|
Binary file not shown.
Binary file not shown.
@ -1,460 +0,0 @@
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 2.1, February 1999
|
||||
|
||||
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
|
||||
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
[This is the first released version of the Lesser GPL. It also counts
|
||||
as the successor of the GNU Library Public License, version 2, hence
|
||||
the version number 2.1.]
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
Licenses are intended to guarantee your freedom to share and change
|
||||
free software--to make sure the software is free for all its users.
|
||||
|
||||
This license, the Lesser General Public License, applies to some
|
||||
specially designated software packages--typically libraries--of the
|
||||
Free Software Foundation and other authors who decide to use it. You
|
||||
can use it too, but we suggest you first think carefully about whether
|
||||
this license or the ordinary General Public License is the better
|
||||
strategy to use in any particular case, based on the explanations below.
|
||||
|
||||
When we speak of free software, we are referring to freedom of use,
|
||||
not price. Our General Public Licenses are designed to make sure that
|
||||
you have the freedom to distribute copies of free software (and charge
|
||||
for this service if you wish); that you receive source code or can get
|
||||
it if you want it; that you can change the software and use pieces of
|
||||
it in new free programs; and that you are informed that you can do
|
||||
these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
distributors to deny you these rights or to ask you to surrender these
|
||||
rights. These restrictions translate to certain responsibilities for
|
||||
you if you distribute copies of the library or if you modify it.
|
||||
|
||||
For example, if you distribute copies of the library, whether gratis
|
||||
or for a fee, you must give the recipients all the rights that we gave
|
||||
you. You must make sure that they, too, receive or can get the source
|
||||
code. If you link other code with the library, you must provide
|
||||
complete object files to the recipients, so that they can relink them
|
||||
with the library after making changes to the library and recompiling
|
||||
it. And you must show them these terms so they know their rights.
|
||||
|
||||
We protect your rights with a two-step method: (1) we copyright the
|
||||
library, and (2) we offer you this license, which gives you legal
|
||||
permission to copy, distribute and/or modify the library.
|
||||
|
||||
To protect each distributor, we want to make it very clear that
|
||||
there is no warranty for the free library. Also, if the library is
|
||||
modified by someone else and passed on, the recipients should know
|
||||
that what they have is not the original version, so that the original
|
||||
author's reputation will not be affected by problems that might be
|
||||
introduced by others.
|
||||
|
||||
Finally, software patents pose a constant threat to the existence of
|
||||
any free program. We wish to make sure that a company cannot
|
||||
effectively restrict the users of a free program by obtaining a
|
||||
restrictive license from a patent holder. Therefore, we insist that
|
||||
any patent license obtained for a version of the library must be
|
||||
consistent with the full freedom of use specified in this license.
|
||||
|
||||
Most GNU software, including some libraries, is covered by the
|
||||
ordinary GNU General Public License. This license, the GNU Lesser
|
||||
General Public License, applies to certain designated libraries, and
|
||||
is quite different from the ordinary General Public License. We use
|
||||
this license for certain libraries in order to permit linking those
|
||||
libraries into non-free programs.
|
||||
|
||||
When a program is linked with a library, whether statically or using
|
||||
a shared library, the combination of the two is legally speaking a
|
||||
combined work, a derivative of the original library. The ordinary
|
||||
General Public License therefore permits such linking only if the
|
||||
entire combination fits its criteria of freedom. The Lesser General
|
||||
Public License permits more lax criteria for linking other code with
|
||||
the library.
|
||||
|
||||
We call this license the "Lesser" General Public License because it
|
||||
does Less to protect the user's freedom than the ordinary General
|
||||
Public License. It also provides other free software developers Less
|
||||
of an advantage over competing non-free programs. These disadvantages
|
||||
are the reason we use the ordinary General Public License for many
|
||||
libraries. However, the Lesser license provides advantages in certain
|
||||
special circumstances.
|
||||
|
||||
For example, on rare occasions, there may be a special need to
|
||||
encourage the widest possible use of a certain library, so that it becomes
|
||||
a de-facto standard. To achieve this, non-free programs must be
|
||||
allowed to use the library. A more frequent case is that a free
|
||||
library does the same job as widely used non-free libraries. In this
|
||||
case, there is little to gain by limiting the free library to free
|
||||
software only, so we use the Lesser General Public License.
|
||||
|
||||
In other cases, permission to use a particular library in non-free
|
||||
programs enables a greater number of people to use a large body of
|
||||
free software. For example, permission to use the GNU C Library in
|
||||
non-free programs enables many more people to use the whole GNU
|
||||
operating system, as well as its variant, the GNU/Linux operating
|
||||
system.
|
||||
|
||||
Although the Lesser General Public License is Less protective of the
|
||||
users' freedom, it does ensure that the user of a program that is
|
||||
linked with the Library has the freedom and the wherewithal to run
|
||||
that program using a modified version of the Library.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow. Pay close attention to the difference between a
|
||||
"work based on the library" and a "work that uses the library". The
|
||||
former contains code derived from the library, whereas the latter must
|
||||
be combined with the library in order to run.
|
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License Agreement applies to any software library or other
|
||||
program which contains a notice placed by the copyright holder or
|
||||
other authorized party saying it may be distributed under the terms of
|
||||
this Lesser General Public License (also called "this License").
|
||||
Each licensee is addressed as "you".
|
||||
|
||||
A "library" means a collection of software functions and/or data
|
||||
prepared so as to be conveniently linked with application programs
|
||||
(which use some of those functions and data) to form executables.
|
||||
|
||||
The "Library", below, refers to any such software library or work
|
||||
which has been distributed under these terms. A "work based on the
|
||||
Library" means either the Library or any derivative work under
|
||||
copyright law: that is to say, a work containing the Library or a
|
||||
portion of it, either verbatim or with modifications and/or translated
|
||||
straightforwardly into another language. (Hereinafter, translation is
|
||||
included without limitation in the term "modification".)
|
||||
|
||||
"Source code" for a work means the preferred form of the work for
|
||||
making modifications to it. For a library, complete source code means
|
||||
all the source code for all modules it contains, plus any associated
|
||||
interface definition files, plus the scripts used to control compilation
|
||||
and installation of the library.
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running a program using the Library is not restricted, and output from
|
||||
such a program is covered only if its contents constitute a work based
|
||||
on the Library (independent of the use of the Library in a tool for
|
||||
writing it). Whether that is true depends on what the Library does
|
||||
and what the program that uses the Library does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Library's
|
||||
complete source code as you receive it, in any medium, provided that
|
||||
you conspicuously and appropriately publish on each copy an
|
||||
appropriate copyright notice and disclaimer of warranty; keep intact
|
||||
all the notices that refer to this License and to the absence of any
|
||||
warranty; and distribute a copy of this License along with the
|
||||
Library.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy,
|
||||
and you may at your option offer warranty protection in exchange for a
|
||||
fee.
|
||||
|
||||
2. You may modify your copy or copies of the Library or any portion
|
||||
of it, thus forming a work based on the Library, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) The modified work must itself be a software library.
|
||||
|
||||
b) You must cause the files modified to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
c) You must cause the whole of the work to be licensed at no
|
||||
charge to all third parties under the terms of this License.
|
||||
|
||||
d) If a facility in the modified Library refers to a function or a
|
||||
table of data to be supplied by an application program that uses
|
||||
the facility, other than as an argument passed when the facility
|
||||
is invoked, then you must make a good faith effort to ensure that,
|
||||
in the event an application does not supply such function or
|
||||
table, the facility still operates, and performs whatever part of
|
||||
its purpose remains meaningful.
|
||||
|
||||
(For example, a function in a library to compute square roots has
|
||||
a purpose that is entirely well-defined independent of the
|
||||
application. Therefore, Subsection 2d requires that any
|
||||
application-supplied function or table used by this function must
|
||||
be optional: if the application does not supply it, the square
|
||||
root function must still compute square roots.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Library,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Library, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote
|
||||
it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Library.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Library
|
||||
with the Library (or with a work based on the Library) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may opt to apply the terms of the ordinary GNU General Public
|
||||
License instead of this License to a given copy of the Library. To do
|
||||
this, you must alter all the notices that refer to this License, so
|
||||
that they refer to the ordinary GNU General Public License, version 2,
|
||||
instead of to this License. (If a newer version than version 2 of the
|
||||
ordinary GNU General Public License has appeared, then you can specify
|
||||
that version instead if you wish.) Do not make any other change in
|
||||
these notices.
|
||||
|
||||
Once this change is made in a given copy, it is irreversible for
|
||||
that copy, so the ordinary GNU General Public License applies to all
|
||||
subsequent copies and derivative works made from that copy.
|
||||
|
||||
This option is useful when you wish to copy part of the code of
|
||||
the Library into a program that is not a library.
|
||||
|
||||
4. You may copy and distribute the Library (or a portion or
|
||||
derivative of it, under Section 2) in object code or executable form
|
||||
under the terms of Sections 1 and 2 above provided that you accompany
|
||||
it with the complete corresponding machine-readable source code, which
|
||||
must be distributed under the terms of Sections 1 and 2 above on a
|
||||
medium customarily used for software interchange.
|
||||
|
||||
If distribution of object code is made by offering access to copy
|
||||
from a designated place, then offering equivalent access to copy the
|
||||
source code from the same place satisfies the requirement to
|
||||
distribute the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
5. A program that contains no derivative of any portion of the
|
||||
Library, but is designed to work with the Library by being compiled or
|
||||
linked with it, is called a "work that uses the Library". Such a
|
||||
work, in isolation, is not a derivative work of the Library, and
|
||||
therefore falls outside the scope of this License.
|
||||
|
||||
However, linking a "work that uses the Library" with the Library
|
||||
creates an executable that is a derivative of the Library (because it
|
||||
contains portions of the Library), rather than a "work that uses the
|
||||
library". The executable is therefore covered by this License.
|
||||
Section 6 states terms for distribution of such executables.
|
||||
|
||||
When a "work that uses the Library" uses material from a header file
|
||||
that is part of the Library, the object code for the work may be a
|
||||
derivative work of the Library even though the source code is not.
|
||||
Whether this is true is especially significant if the work can be
|
||||
linked without the Library, or if the work is itself a library. The
|
||||
threshold for this to be true is not precisely defined by law.
|
||||
|
||||
If such an object file uses only numerical parameters, data
|
||||
structure layouts and accessors, and small macros and small inline
|
||||
functions (ten lines or less in length), then the use of the object
|
||||
file is unrestricted, regardless of whether it is legally a derivative
|
||||
work. (Executables containing this object code plus portions of the
|
||||
Library will still fall under Section 6.)
|
||||
|
||||
Otherwise, if the work is a derivative of the Library, you may
|
||||
distribute the object code for the work under the terms of Section 6.
|
||||
Any executables containing that work also fall under Section 6,
|
||||
whether or not they are linked directly with the Library itself.
|
||||
|
||||
6. As an exception to the Sections above, you may also combine or
|
||||
link a "work that uses the Library" with the Library to produce a
|
||||
work containing portions of the Library, and distribute that work
|
||||
under terms of your choice, provided that the terms permit
|
||||
modification of the work for the customer's own use and reverse
|
||||
engineering for debugging such modifications.
|
||||
|
||||
You must give prominent notice with each copy of the work that the
|
||||
Library is used in it and that the Library and its use are covered by
|
||||
this License. You must supply a copy of this License. If the work
|
||||
during execution displays copyright notices, you must include the
|
||||
copyright notice for the Library among them, as well as a reference
|
||||
directing the user to the copy of this License. Also, you must do one
|
||||
of these things:
|
||||
|
||||
a) Accompany the work with the complete corresponding
|
||||
machine-readable source code for the Library including whatever
|
||||
changes were used in the work (which must be distributed under
|
||||
Sections 1 and 2 above); and, if the work is an executable linked
|
||||
with the Library, with the complete machine-readable "work that
|
||||
uses the Library", as object code and/or source code, so that the
|
||||
user can modify the Library and then relink to produce a modified
|
||||
executable containing the modified Library. (It is understood
|
||||
that the user who changes the contents of definitions files in the
|
||||
Library will not necessarily be able to recompile the application
|
||||
to use the modified definitions.)
|
||||
|
||||
b) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (1) uses at run time a
|
||||
copy of the library already present on the user's computer system,
|
||||
rather than copying library functions into the executable, and (2)
|
||||
will operate properly with a modified version of the library, if
|
||||
the user installs one, as long as the modified version is
|
||||
interface-compatible with the version that the work was made with.
|
||||
|
||||
c) Accompany the work with a written offer, valid for at
|
||||
least three years, to give the same user the materials
|
||||
specified in Subsection 6a, above, for a charge no more
|
||||
than the cost of performing this distribution.
|
||||
|
||||
d) If distribution of the work is made by offering access to copy
|
||||
from a designated place, offer equivalent access to copy the above
|
||||
specified materials from the same place.
|
||||
|
||||
e) Verify that the user has already received a copy of these
|
||||
materials or that you have already sent this user a copy.
|
||||
|
||||
For an executable, the required form of the "work that uses the
|
||||
Library" must include any data and utility programs needed for
|
||||
reproducing the executable from it. However, as a special exception,
|
||||
the materials to be distributed need not include anything that is
|
||||
normally distributed (in either source or binary form) with the major
|
||||
components (compiler, kernel, and so on) of the operating system on
|
||||
which the executable runs, unless that component itself accompanies
|
||||
the executable.
|
||||
|
||||
It may happen that this requirement contradicts the license
|
||||
restrictions of other proprietary libraries that do not normally
|
||||
accompany the operating system. Such a contradiction means you cannot
|
||||
use both them and the Library together in an executable that you
|
||||
distribute.
|
||||
|
||||
7. You may place library facilities that are a work based on the
|
||||
Library side-by-side in a single library together with other library
|
||||
facilities not covered by this License, and distribute such a combined
|
||||
library, provided that the separate distribution of the work based on
|
||||
the Library and of the other library facilities is otherwise
|
||||
permitted, and provided that you do these two things:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work
|
||||
based on the Library, uncombined with any other library
|
||||
facilities. This must be distributed under the terms of the
|
||||
Sections above.
|
||||
|
||||
b) Give prominent notice with the combined library of the fact
|
||||
that part of it is a work based on the Library, and explaining
|
||||
where to find the accompanying uncombined form of the same work.
|
||||
|
||||
8. You may not copy, modify, sublicense, link with, or distribute
|
||||
the Library except as expressly provided under this License. Any
|
||||
attempt otherwise to copy, modify, sublicense, link with, or
|
||||
distribute the Library is void, and will automatically terminate your
|
||||
rights under this License. However, parties who have received copies,
|
||||
or rights, from you under this License will not have their licenses
|
||||
terminated so long as such parties remain in full compliance.
|
||||
|
||||
9. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Library or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Library (or any work based on the
|
||||
Library), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Library or works based on it.
|
||||
|
||||
10. Each time you redistribute the Library (or any work based on the
|
||||
Library), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute, link with or modify the Library
|
||||
subject to these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties with
|
||||
this License.
|
||||
|
||||
11. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Library at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Library by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Library.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under any
|
||||
particular circumstance, the balance of the section is intended to apply,
|
||||
and the section as a whole is intended to apply in other circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
12. If the distribution and/or use of the Library is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Library under this License may add
|
||||
an explicit geographical distribution limitation excluding those countries,
|
||||
so that distribution is permitted only in or among countries not thus
|
||||
excluded. In such case, this License incorporates the limitation as if
|
||||
written in the body of this License.
|
||||
|
||||
13. The Free Software Foundation may publish revised and/or new
|
||||
versions of the Lesser General Public License from time to time.
|
||||
Such new versions will be similar in spirit to the present version,
|
||||
but may differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Library
|
||||
specifies a version number of this License which applies to it and
|
||||
"any later version", you have the option of following the terms and
|
||||
conditions either of that version or of any later version published by
|
||||
the Free Software Foundation. If the Library does not specify a
|
||||
license version number, you may choose any version ever published by
|
||||
the Free Software Foundation.
|
||||
|
||||
14. If you wish to incorporate parts of the Library into other free
|
||||
programs whose distribution conditions are incompatible with these,
|
||||
write to the author to ask for permission. For software which is
|
||||
copyrighted by the Free Software Foundation, write to the Free
|
||||
Software Foundation; we sometimes make exceptions for this. Our
|
||||
decision will be guided by the two goals of preserving the free status
|
||||
of all derivatives of our free software and of promoting the sharing
|
||||
and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
|
||||
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
|
||||
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
|
||||
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
|
||||
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
|
||||
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
|
||||
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
|
||||
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
|
||||
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
|
||||
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
|
||||
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
|
||||
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
|
||||
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
|
||||
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
|
||||
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
||||
DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,53 +0,0 @@
|
||||
// this is prototype only!!!
|
||||
|
||||
package bcl;
|
||||
|
||||
message TimeSpan {
|
||||
optional sint64 value = 1; // the size of the timespan (in units of the selected scale)
|
||||
optional TimeSpanScale scale = 2 [default = DAYS]; // the scale of the timespan
|
||||
enum TimeSpanScale {
|
||||
DAYS = 0;
|
||||
HOURS = 1;
|
||||
MINUTES = 2;
|
||||
SECONDS = 3;
|
||||
MILLISECONDS = 4;
|
||||
TICKS = 5;
|
||||
|
||||
MINMAX = 15; // dubious
|
||||
}
|
||||
}
|
||||
|
||||
message DateTime {
|
||||
optional sint64 value = 1; // the offset (in units of the selected scale) from 1970/01/01
|
||||
optional TimeSpanScale scale = 2 [default = DAYS]; // the scale of the timespan
|
||||
enum TimeSpanScale {
|
||||
DAYS = 0;
|
||||
HOURS = 1;
|
||||
MINUTES = 2;
|
||||
SECONDS = 3;
|
||||
MILLISECONDS = 4;
|
||||
TICKS = 5;
|
||||
|
||||
MINMAX = 15; // dubious
|
||||
}
|
||||
}
|
||||
|
||||
message NetObjectProxy {
|
||||
optional int32 existingObjectKey = 1; // for a tracked object, the key of the **first** time this object was seen
|
||||
optional int32 newObjectKey = 2; // for a tracked object, a **new** key, the first time this object is seen
|
||||
optional int32 existingTypeKey = 3; // for dynamic typing, the key of the **first** time this type was seen
|
||||
optional int32 newTypeKey = 4; // for dynamic typing, a **new** key, the first time this type is seen
|
||||
optional string typeName = 8; // for dynamic typing, the name of the type (only present along with newTypeKey)
|
||||
optional bytes payload = 10; // the new string/value (only present along with newObjectKey)
|
||||
}
|
||||
|
||||
message Guid {
|
||||
optional fixed64 lo = 1; // the first 8 bytes of the guid
|
||||
optional fixed64 hi = 2; // the second 8 bytes of the guid
|
||||
}
|
||||
|
||||
message Decimal {
|
||||
optional uint64 lo = 1; // the first 64 bits of the underlying value
|
||||
optional uint32 hi = 2; // the last 32 bis of the underlying value
|
||||
optional uint32 signScale = 3; // the number of decimal digits (bits 1-16), and the sign (bit 0)
|
||||
}
|
Binary file not shown.
Binary file not shown.
@ -1,5 +0,0 @@
|
||||
package DAL;
|
||||
|
||||
message Database {
|
||||
repeated group Order Orders = 1;
|
||||
}
|
Binary file not shown.
@ -1,31 +0,0 @@
|
||||
package DAL;
|
||||
|
||||
message Database {
|
||||
repeated Order Orders = 1;
|
||||
}
|
||||
|
||||
message Order {
|
||||
optional int32 OrderID = 1;
|
||||
optional string CustomerID = 2;
|
||||
optional int32 EmployeeID = 3;
|
||||
optional bcl.DateTime OrderDate = 4;
|
||||
optional bcl.DateTime RequiredDate = 5;
|
||||
optional bcl.DateTime ShippedDate = 6;
|
||||
optional int32 ShipVia = 7;
|
||||
optional bcl.Decimal Freight = 8;
|
||||
optional string ShipName = 9;
|
||||
optional string ShipAddress = 10;
|
||||
optional string ShipCity = 11;
|
||||
optional string ShipRegion = 12;
|
||||
optional string ShipPostalCode = 13;
|
||||
optional string ShipCountry = 14;
|
||||
repeated OrderLine Lines = 15;
|
||||
}
|
||||
|
||||
message OrderLine {
|
||||
optional int32 OrderID = 1;
|
||||
optional int32 ProductID = 2;
|
||||
optional bcl.Decimal UnitPrice = 3;
|
||||
optional sint32 Quantity = 4;
|
||||
optional float Discount = 5;
|
||||
}
|
Binary file not shown.
@ -1,15 +0,0 @@
|
||||
Protocol Buffers - Google's data interchange format
|
||||
Copyright 2008 Google Inc.
|
||||
http://code.google.com/p/protobuf/
|
||||
|
||||
This package contains a precompiled Win32 binary version of the protocol buffer
|
||||
compiler (protoc). This binary is intended for Windows users who want to
|
||||
use Protocol Buffers in Java or Python but do not want to compile protoc
|
||||
themselves. To install, simply place this binary somewhere in your PATH.
|
||||
|
||||
This binary was built using MinGW, but the output is the same regardless of
|
||||
the C++ compiler used.
|
||||
|
||||
You will still need to download the source code package in order to obtain the
|
||||
Java or Python runtime libraries. Get it from:
|
||||
http://code.google.com/p/protobuf/downloads/
|
Binary file not shown.
@ -1,109 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"
|
||||
>
|
||||
<!--
|
||||
<xsl:template name="capitalizeFirst">
|
||||
<xsl:param name="value"/>
|
||||
<xsl:value-of select="translate(substring($value,1,1),$alpha,$ALPHA)"/>
|
||||
<xsl:value-of select="substring($value,2)"/>
|
||||
</xsl:template>
|
||||
-->
|
||||
<xsl:template match="*">
|
||||
<xsl:message terminate="yes">
|
||||
Node not handled: <xsl:for-each select="ancestor-or-self::*">/<xsl:value-of select="name()"/></xsl:for-each>
|
||||
<xsl:for-each select="*">
|
||||
; <xsl:value-of select="concat(name(),'=',.)"/>
|
||||
</xsl:for-each>
|
||||
</xsl:message>
|
||||
</xsl:template>
|
||||
<xsl:param name="fixCase"/>
|
||||
<xsl:variable name="optionFixCase" select="$fixCase='true'"/>
|
||||
|
||||
<xsl:template name="escapeKeyword">
|
||||
<xsl:param name="value"/>
|
||||
<xsl:value-of select="$value"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="toCamelCase">
|
||||
<xsl:param name="value"/>
|
||||
<xsl:param name="delimiter" select="'_'"/>
|
||||
<xsl:param name="keepDelimiter" select="false()"/>
|
||||
<xsl:variable name="segment" select="substring-before($value, $delimiter)"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$segment != ''">
|
||||
<xsl:value-of select="$segment"/><xsl:if test="$keepDelimiter"><xsl:value-of select="$delimiter"/></xsl:if>
|
||||
<xsl:call-template name="toPascalCase">
|
||||
<xsl:with-param name="value" select="substring-after($value, $delimiter)"/>
|
||||
<xsl:with-param name="delimiter" select="$delimiter"/>
|
||||
<xsl:with-param name="keepDelimiter" select="$keepDelimiter"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$value"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:variable name="alpha" select="'abcdefghijklmnopqrstuvwxyz'"/>
|
||||
<xsl:variable name="ALPHA" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'"/>
|
||||
|
||||
<xsl:template name="toPascalCase">
|
||||
<xsl:param name="value"/>
|
||||
<xsl:param name="delimiter" select="'_'"/>
|
||||
<xsl:param name="keepDelimiter" select="false()"/>
|
||||
<xsl:if test="$value != ''">
|
||||
<xsl:variable name="segment" select="substring-before($value, $delimiter)"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$segment != ''">
|
||||
<xsl:value-of select="translate(substring($segment,1,1),$alpha,$ALPHA)"/><xsl:value-of select="substring($segment,2)"/><xsl:if test="$keepDelimiter"><xsl:value-of select="$delimiter"/></xsl:if>
|
||||
<xsl:call-template name="toPascalCase">
|
||||
<xsl:with-param name="value" select="substring-after($value, $delimiter)"/>
|
||||
<xsl:with-param name="delimiter" select="$delimiter"/>
|
||||
<xsl:with-param name="keepDelimiter" select="$keepDelimiter"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="translate(substring($value,1,1),$alpha,$ALPHA)"/><xsl:value-of select="substring($value,2)"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
<xsl:template name="pascal">
|
||||
<xsl:param name="value" select="name"/>
|
||||
<xsl:param name="delimiter" select="'_'"/>
|
||||
<xsl:call-template name="escapeKeyword">
|
||||
<xsl:with-param name="value"><xsl:choose>
|
||||
<xsl:when test="$optionFixCase"><xsl:variable name="dotted"><xsl:call-template name="toPascalCase">
|
||||
<xsl:with-param name="value" select="$value"/>
|
||||
<xsl:with-param name="delimiter" select="'.'"/>
|
||||
<xsl:with-param name="keepDelimiter" select="true()"/>
|
||||
</xsl:call-template></xsl:variable><xsl:call-template name="toPascalCase">
|
||||
<xsl:with-param name="value" select="$dotted"/>
|
||||
<xsl:with-param name="delimiter" select="$delimiter"/>
|
||||
</xsl:call-template></xsl:when>
|
||||
<xsl:otherwise><xsl:value-of select="$value"/></xsl:otherwise>
|
||||
</xsl:choose></xsl:with-param></xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="PickNamespace"><xsl:param name="defaultNamespace"/><xsl:choose>
|
||||
<xsl:when test="package"><xsl:call-template name="pascal">
|
||||
<xsl:with-param name="value" select="package"/>
|
||||
</xsl:call-template></xsl:when>
|
||||
<xsl:when test="$defaultNamespace"><xsl:value-of select="$defaultNamespace"/></xsl:when>
|
||||
<xsl:otherwise><xsl:variable name="trimmedName"><xsl:choose>
|
||||
<xsl:when test="substring(name,string-length(name)-5,6)='.proto'"><xsl:value-of select="substring(name,1,string-length(name)-6)"/></xsl:when>
|
||||
<xsl:otherwise><xsl:value-of select="name"/></xsl:otherwise>
|
||||
</xsl:choose></xsl:variable><xsl:call-template name="pascal">
|
||||
<xsl:with-param name="value" select="$trimmedName"/>
|
||||
</xsl:call-template></xsl:otherwise>
|
||||
</xsl:choose></xsl:template>
|
||||
|
||||
<xsl:template match="FieldDescriptorProto/options"/>
|
||||
<xsl:template match="FileDescriptorProto/options"/>
|
||||
<xsl:template match="DescriptorProto/options"/>
|
||||
<xsl:template match="EnumValueDescriptorProto/options"/>
|
||||
<xsl:template match="EnumDescriptorProto/options"/>
|
||||
<xsl:template match="ServiceDescriptorProto/options"/>
|
||||
<xsl:template match="MethodDescriptorProto/options"/>
|
||||
</xsl:stylesheet>
|
@ -1,628 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xsl:stylesheet version="1.0"
|
||||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="xsl msxsl"
|
||||
>
|
||||
<xsl:import href="common.xslt"/>
|
||||
<xsl:param name="help"/>
|
||||
<xsl:param name="xml"/>
|
||||
<xsl:param name="datacontract"/>
|
||||
<xsl:param name="binary"/>
|
||||
<xsl:param name="protoRpc"/>
|
||||
<xsl:param name="observable"/>
|
||||
<xsl:param name="preObservable"/>
|
||||
<xsl:param name="partialMethods"/>
|
||||
<xsl:param name="detectMissing"/>
|
||||
<xsl:param name="lightFramework"/>
|
||||
<xsl:param name="asynchronous"/>
|
||||
<xsl:param name="clientProxy"/>
|
||||
<xsl:param name="defaultNamespace"/>
|
||||
<xsl:param name="import"/>
|
||||
|
||||
<xsl:key name="fieldNames" match="//FieldDescriptorProto" use="name"/>
|
||||
<xsl:output method="text" indent="no" omit-xml-declaration="yes"/>
|
||||
|
||||
<xsl:variable name="optionXml" select="$xml='true'"/>
|
||||
<xsl:variable name="optionDataContract" select="$datacontract='true'"/>
|
||||
<xsl:variable name="optionBinary" select="$binary='true'"/>
|
||||
<xsl:variable name="optionProtoRpc" select="$protoRpc='true'"/>
|
||||
<xsl:variable name="optionObservable" select="$observable='true'"/>
|
||||
<xsl:variable name="optionPreObservable" select="$preObservable='true'"/>
|
||||
<xsl:variable name="optionPartialMethods" select="$partialMethods='true'"/>
|
||||
<xsl:variable name="optionDetectMissing" select="$detectMissing='true'"/>
|
||||
<xsl:variable name="optionFullFramework" select="not($lightFramework='true')"/>
|
||||
<xsl:variable name="optionAsynchronous" select="$asynchronous='true'"/>
|
||||
<xsl:variable name="optionClientProxy" select="$clientProxy='true'"/>
|
||||
|
||||
<xsl:template match="/">
|
||||
<xsl:text disable-output-escaping="yes">//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
</xsl:text><!--
|
||||
--><xsl:apply-templates select="*"/><!--
|
||||
--></xsl:template>
|
||||
|
||||
<xsl:template name="WriteUsings">
|
||||
<xsl:param name="ns"/>
|
||||
<xsl:if test="$ns != ''"><xsl:choose>
|
||||
<xsl:when test="contains($ns,';')">
|
||||
using <xsl:value-of select="substring-before($ns,';')"/>;<!--
|
||||
--><xsl:call-template name="WriteUsings">
|
||||
<xsl:with-param name="ns" select="substring-after($ns,';')"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
using <xsl:value-of select="$ns"/>;
|
||||
</xsl:otherwise>
|
||||
</xsl:choose></xsl:if></xsl:template>
|
||||
|
||||
<xsl:template match="FileDescriptorSet">
|
||||
<xsl:if test="$help='true'">
|
||||
<xsl:message terminate="yes">
|
||||
CSharp template for protobuf-net.
|
||||
Options:
|
||||
General:
|
||||
"help" - this page
|
||||
Additional serializer support:
|
||||
"xml" - enable explicit xml support (XmlSerializer)
|
||||
"datacontract" - enable data-contract support (DataContractSerializer; requires .NET 3.0)
|
||||
"binary" - enable binary support (BinaryFormatter; not supported on Silverlight)
|
||||
Other:
|
||||
"protoRpc" - enable proto-rpc client
|
||||
"observable" - change notification (observer pattern) support
|
||||
"preObservable" - pre-change notification (observer pattern) support (requires .NET 3.5)
|
||||
"partialMethods" - provide partial methods for changes (requires C# 3.0)
|
||||
"detectMissing" - provide *Specified properties to indicate whether fields are present
|
||||
"lightFramework" - omit additional attributes not included in CF/Silverlight
|
||||
"asynchronous" - emit asynchronous methods for use with WCF
|
||||
"clientProxy" - emit asynchronous client proxy class
|
||||
"import" - additional namespaces to import (semicolon delimited)
|
||||
"fixCase" - change type/member names (types/properties become PascalCase; fields become camelCase)
|
||||
</xsl:message>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:if test="$optionXml and $optionDataContract">
|
||||
<xsl:message terminate="yes">
|
||||
Invalid options: xml and data-contract serialization are mutually exclusive.
|
||||
</xsl:message>
|
||||
</xsl:if>
|
||||
<xsl:if test="$optionXml">
|
||||
// Option: xml serialization ([XmlType]/[XmlElement]) enabled
|
||||
</xsl:if><xsl:if test="$optionDataContract">
|
||||
// Option: data-contract serialization ([DataContract]/[DataMember]) enabled
|
||||
</xsl:if><xsl:if test="$optionBinary">
|
||||
// Option: binary serialization (ISerializable) enabled
|
||||
</xsl:if><xsl:if test="$optionObservable">
|
||||
// Option: observable (OnPropertyChanged) enabled
|
||||
</xsl:if><xsl:if test="$optionPreObservable">
|
||||
// Option: pre-observable (OnPropertyChanging) enabled
|
||||
</xsl:if><xsl:if test="$partialMethods">
|
||||
// Option: partial methods (On*Changing/On*Changed) enabled
|
||||
</xsl:if><xsl:if test="$optionDetectMissing">
|
||||
// Option: missing-value detection (*Specified/ShouldSerialize*/Reset*) enabled
|
||||
</xsl:if><xsl:if test="not($optionFullFramework)">
|
||||
// Option: light framework (CF/Silverlight) enabled
|
||||
</xsl:if><xsl:if test="$optionProtoRpc">
|
||||
// Option: proto-rpc enabled
|
||||
</xsl:if>
|
||||
<xsl:call-template name="WriteUsings">
|
||||
<xsl:with-param name="ns" select="$import"/>
|
||||
</xsl:call-template>
|
||||
<xsl:apply-templates select="file/FileDescriptorProto"/>
|
||||
</xsl:template>
|
||||
|
||||
|
||||
<xsl:template match="FileDescriptorProto">
|
||||
// Generated from: <xsl:value-of select="name"/>
|
||||
|
||||
<xsl:apply-templates select="dependency/string[.!='']"/>
|
||||
<xsl:variable name="namespace"><xsl:call-template name="PickNamespace">
|
||||
<xsl:with-param name="defaultNamespace" select="$defaultNamespace"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:if test="string($namespace) != ''">
|
||||
namespace <xsl:value-of select="translate($namespace,':-/\','__..')"/>
|
||||
{</xsl:if>
|
||||
<xsl:apply-templates select="message_type | enum_type | service"/>
|
||||
<xsl:if test="string($namespace) != ''">
|
||||
}</xsl:if></xsl:template>
|
||||
|
||||
<xsl:template match="FileDescriptorProto/dependency/string">
|
||||
// Note: requires additional types generated from: <xsl:value-of select="."/></xsl:template>
|
||||
|
||||
|
||||
<xsl:template name="camel">
|
||||
<xsl:param name="value" select="name"/>
|
||||
<xsl:param name="delimiter" select="'_'"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$optionFixCase"><xsl:call-template name="toCamelCase">
|
||||
<xsl:with-param name="value" select="$value"/>
|
||||
<xsl:with-param name="delimiter" select="$delimiter"/>
|
||||
</xsl:call-template></xsl:when>
|
||||
<xsl:otherwise><xsl:value-of select="$value"/></xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="DescriptorProto">
|
||||
[<xsl:if test="$optionFullFramework">global::System.Serializable, </xsl:if>global::ProtoBuf.ProtoContract(Name=@"<xsl:value-of select="name"/>")]
|
||||
<xsl:if test="$optionDataContract">[global::System.Runtime.Serialization.DataContract(Name=@"<xsl:value-of select="name"/>")]
|
||||
</xsl:if><xsl:if test="$optionXml">[global::System.Xml.Serialization.XmlType(TypeName=@"<xsl:value-of select="name"/>")]
|
||||
</xsl:if><!--
|
||||
-->public partial class <xsl:call-template name="pascal"/> : global::ProtoBuf.IExtensible<!--
|
||||
--><xsl:if test="$optionBinary">, global::System.Runtime.Serialization.ISerializable</xsl:if><!--
|
||||
--><xsl:if test="$optionObservable">, global::System.ComponentModel.INotifyPropertyChanged</xsl:if><!--
|
||||
--><xsl:if test="$optionPreObservable">, global::System.ComponentModel.INotifyPropertyChanging</xsl:if>
|
||||
{
|
||||
public <xsl:call-template name="pascal"/>() {}
|
||||
<xsl:apply-templates select="*"/><xsl:if test="$optionBinary">
|
||||
protected <xsl:call-template name="pascal"/>(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context)
|
||||
: this() { global::ProtoBuf.Serializer.Merge(info, this); }
|
||||
void global::System.Runtime.Serialization.ISerializable.GetObjectData(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context)
|
||||
{ global::ProtoBuf.Serializer.Serialize(info, this); }
|
||||
</xsl:if><xsl:if test="$optionObservable">
|
||||
public event global::System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
|
||||
protected virtual void OnPropertyChanged(string propertyName)
|
||||
{ if(PropertyChanged != null) PropertyChanged(this, new global::System.ComponentModel.PropertyChangedEventArgs(propertyName)); }
|
||||
</xsl:if><xsl:if test="$optionPreObservable">
|
||||
public event global::System.ComponentModel.PropertyChangingEventHandler PropertyChanging;
|
||||
protected virtual void OnPropertyChanging(string propertyName)
|
||||
{ if(PropertyChanging != null) PropertyChanging(this, new global::System.ComponentModel.PropertyChangingEventArgs(propertyName)); }
|
||||
</xsl:if>
|
||||
private global::ProtoBuf.IExtension extensionObject;
|
||||
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
|
||||
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
|
||||
}
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="DescriptorProto/name | DescriptorProto/extension_range | DescriptorProto/extension"/>
|
||||
|
||||
<xsl:template match="
|
||||
FileDescriptorProto/message_type | FileDescriptorProto/enum_type | FileDescriptorProto/service
|
||||
| DescriptorProto/enum_type | DescriptorProto/message_type
|
||||
| DescriptorProto/nested_type | EnumDescriptorProto/value | ServiceDescriptorProto/method">
|
||||
<xsl:apply-templates select="*"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="DescriptorProto/field">
|
||||
<xsl:apply-templates select="*"/>
|
||||
<xsl:variable name="extName" select="concat('.',(ancestor::FileDescriptorProto/package)[1],'.',../name)"/>
|
||||
<xsl:apply-templates select="//FieldDescriptorProto[extendee=$extName]"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="EnumDescriptorProto">
|
||||
[global::ProtoBuf.ProtoContract(Name=@"<xsl:value-of select="name"/>")]
|
||||
<xsl:if test="$optionDataContract">[global::System.Runtime.Serialization.DataContract(Name=@"<xsl:value-of select="name"/>")]
|
||||
</xsl:if>
|
||||
<xsl:if test="$optionXml">[global::System.Xml.Serialization.XmlType(TypeName=@"<xsl:value-of select="name"/>")]
|
||||
</xsl:if><!--
|
||||
-->public enum <xsl:call-template name="pascal"/>
|
||||
{
|
||||
<xsl:apply-templates select="value"/>
|
||||
}
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="EnumValueDescriptorProto">
|
||||
<xsl:variable name="value"><xsl:choose>
|
||||
<xsl:when test="number"><xsl:value-of select="number"/></xsl:when>
|
||||
<xsl:otherwise>0</xsl:otherwise>
|
||||
</xsl:choose></xsl:variable>
|
||||
[global::ProtoBuf.ProtoEnum(Name=@"<xsl:value-of select="name"/>", Value=<xsl:value-of select="$value"/>)]<!--
|
||||
--><xsl:if test="$optionDataContract">
|
||||
[global::System.Runtime.Serialization.EnumMember(Value=@"<xsl:value-of select="name"/>")]</xsl:if><!--
|
||||
--><xsl:if test="$optionXml">
|
||||
[global::System.Xml.Serialization.XmlEnum(@"<xsl:value-of select="name"/>")]</xsl:if><!--
|
||||
--><xsl:text disable-output-escaping="yes">
|
||||
</xsl:text><xsl:call-template name="pascal"/><xsl:text xml:space="preserve"> = </xsl:text><xsl:value-of select="$value"/><xsl:if test="position()!=last()">,
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="FieldDescriptorProto" mode="field">
|
||||
<xsl:variable name="field"><xsl:choose>
|
||||
<xsl:when test="$optionFixCase"><xsl:call-template name="toCamelCase">
|
||||
<xsl:with-param name="value" select="name"/>
|
||||
</xsl:call-template></xsl:when>
|
||||
<xsl:otherwise><xsl:value-of select="name"/></xsl:otherwise>
|
||||
</xsl:choose></xsl:variable>
|
||||
<xsl:call-template name="escapeKeyword">
|
||||
<xsl:with-param name="value"><xsl:choose>
|
||||
<xsl:when test="not(key('fieldNames',concat('_',$field)))"><xsl:value-of select="concat('_',$field)"/></xsl:when>
|
||||
<xsl:when test="not(key('fieldNames',concat($field,'Field')))"><xsl:value-of select="concat($field,'Field')"/></xsl:when>
|
||||
<xsl:otherwise><xsl:value-of select="concat('_',generate-id())"/></xsl:otherwise>
|
||||
</xsl:choose></xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="escapeKeyword">
|
||||
<xsl:param name="value"/>
|
||||
<xsl:if test="contains($keywords,concat('|',$value,'|'))">@</xsl:if><xsl:value-of select="$value"/>
|
||||
</xsl:template>
|
||||
<xsl:variable name="keywords">|abstract|as|base|bool|break|byte|case|catch|char|checked|class|const|continue|decimal|default|delegate|do|double|else|enum|event|explicit|extern|false|finally|fixed|float|for|foreach|goto|if|implicit|in|int|interface|internal|is|lock|long|namespace|new|null|object|operator|out|override|params|private|protected|public|readonly|ref|return|sbyte|sealed|short|sizeof|stackalloc|static|string|struct|switch|this|throw|true|try|typeof|uint|ulong|unchecked|unsafe|ushort|using|virtual|void|volatile|while|</xsl:variable>
|
||||
|
||||
<xsl:template match="FieldDescriptorProto" mode="format">
|
||||
<xsl:choose>
|
||||
<xsl:when test="type='TYPE_DOUBLE' or type='TYPE_FLOAT'
|
||||
or type='TYPE_FIXED32' or type='TYPE_FIXED64'
|
||||
or type='TYPE_SFIXED32' or type='TYPE_SFIXED64'">FixedSize</xsl:when>
|
||||
<xsl:when test="type='TYPE_GROUP'">Group</xsl:when>
|
||||
<xsl:when test="not(type) or type='TYPE_INT32' or type='TYPE_INT64'
|
||||
or type='TYPE_UINT32' or type='TYPE_UINT64'
|
||||
or type='TYPE_ENUM'">TwosComplement</xsl:when>
|
||||
<xsl:when test="type='TYPE_SINT32' or type='TYPE_SINT64'">ZigZag</xsl:when>
|
||||
<xsl:otherwise>Default</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
<xsl:template match="FieldDescriptorProto" mode="primitiveType">
|
||||
<xsl:choose>
|
||||
<xsl:when test="not(type)">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_DOUBLE'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_FLOAT'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_INT64'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_UINT64'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_INT32'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_FIXED64'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_FIXED32'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_BOOL'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_STRING'">class</xsl:when>
|
||||
<xsl:when test="type='TYPE_BYTES'">class</xsl:when>
|
||||
<xsl:when test="type='TYPE_UINT32'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_SFIXED32'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_SFIXED64'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_SINT32'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_SINT64'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_ENUM'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_GROUP' or type='TYPE_MESSAGE'">none</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message terminate="yes">
|
||||
Field type not implemented: <xsl:value-of select="type"/> (<xsl:value-of select="../../name"/>.<xsl:value-of select="name"/>)
|
||||
</xsl:message>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
<xsl:template match="FieldDescriptorProto" mode="type">
|
||||
<xsl:choose>
|
||||
<xsl:when test="not(type)">double</xsl:when>
|
||||
<xsl:when test="type='TYPE_DOUBLE'">double</xsl:when>
|
||||
<xsl:when test="type='TYPE_FLOAT'">float</xsl:when>
|
||||
<xsl:when test="type='TYPE_INT64'">long</xsl:when>
|
||||
<xsl:when test="type='TYPE_UINT64'">ulong</xsl:when>
|
||||
<xsl:when test="type='TYPE_INT32'">int</xsl:when>
|
||||
<xsl:when test="type='TYPE_FIXED64'">ulong</xsl:when>
|
||||
<xsl:when test="type='TYPE_FIXED32'">uint</xsl:when>
|
||||
<xsl:when test="type='TYPE_BOOL'">bool</xsl:when>
|
||||
<xsl:when test="type='TYPE_STRING'">string</xsl:when>
|
||||
<xsl:when test="type='TYPE_BYTES'">byte[]</xsl:when>
|
||||
<xsl:when test="type='TYPE_UINT32'">uint</xsl:when>
|
||||
<xsl:when test="type='TYPE_SFIXED32'">int</xsl:when>
|
||||
<xsl:when test="type='TYPE_SFIXED64'">long</xsl:when>
|
||||
<xsl:when test="type='TYPE_SINT32'">int</xsl:when>
|
||||
<xsl:when test="type='TYPE_SINT64'">long</xsl:when>
|
||||
<xsl:when test="type='TYPE_GROUP' or type='TYPE_MESSAGE' or type='TYPE_ENUM'"><xsl:call-template name="pascal">
|
||||
<xsl:with-param name="value" select="substring-after(type_name,'.')"/>
|
||||
</xsl:call-template></xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message terminate="yes">
|
||||
Field type not implemented: <xsl:value-of select="type"/> (<xsl:value-of select="../../name"/>.<xsl:value-of select="name"/>)
|
||||
</xsl:message>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="FieldDescriptorProto[default_value]" mode="defaultValue">
|
||||
<xsl:choose>
|
||||
<xsl:when test="type='TYPE_STRING'">@"<xsl:value-of select="default_value"/>"</xsl:when>
|
||||
<xsl:when test="type='TYPE_ENUM'"><xsl:apply-templates select="." mode="type"/>.<xsl:call-template name="pascal">
|
||||
<xsl:with-param name="value" select="default_value"/>
|
||||
</xsl:call-template></xsl:when>
|
||||
<xsl:when test="type='TYPE_BYTES'"> /*
|
||||
<xsl:value-of select="default_value"/>
|
||||
*/ null </xsl:when>
|
||||
<xsl:otherwise>(<xsl:apply-templates select="." mode="type"/>)<xsl:value-of select="default_value"/></xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<!--
|
||||
We need to find the first enum value given .foo.bar.SomeEnum - but the enum itself
|
||||
only knows about SomeEnum; we need to look at all parent DescriptorProto nodes, and
|
||||
the FileDescriptorProto for the namespace.
|
||||
|
||||
This does an annoying up/down recursion... a bit expensive, but *generally* OK.
|
||||
Could perhaps index the last part of the enum name to reduce overhead?
|
||||
-->
|
||||
<xsl:template name="GetFirstEnumValue">
|
||||
<xsl:variable name="hunt" select="type_name"/>
|
||||
<xsl:for-each select="//EnumDescriptorProto">
|
||||
<xsl:variable name="fullName">
|
||||
<xsl:for-each select="ancestor::FileDescriptorProto[package!='']">.<xsl:value-of select="package"/></xsl:for-each>
|
||||
<xsl:for-each select="ancestor::DescriptorProto">.<xsl:value-of select="name"/></xsl:for-each>
|
||||
<xsl:value-of select="'.'"/>
|
||||
<xsl:call-template name="pascal"/>
|
||||
</xsl:variable>
|
||||
<xsl:if test="$fullName=$hunt"><xsl:value-of select="(value/EnumValueDescriptorProto)[1]/name"/></xsl:if>
|
||||
</xsl:for-each>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="FieldDescriptorProto[not(default_value)]" mode="defaultValue">
|
||||
<xsl:choose>
|
||||
<xsl:when test="type='TYPE_STRING'">""</xsl:when>
|
||||
<xsl:when test="type='TYPE_MESSAGE'">null</xsl:when>
|
||||
<xsl:when test="type='TYPE_BYTES'">null</xsl:when>
|
||||
<xsl:when test="type='TYPE_ENUM'"><xsl:apply-templates select="." mode="type"/>.<xsl:call-template name="GetFirstEnumValue"/></xsl:when>
|
||||
<xsl:otherwise>default(<xsl:apply-templates select="." mode="type"/>)</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="FieldDescriptorProto" mode="checkDeprecated"><!--
|
||||
--><xsl:if test="options/deprecated='true'">global::System.Obsolete, </xsl:if><!--
|
||||
--></xsl:template>
|
||||
<xsl:template match="FieldDescriptorProto[label='LABEL_OPTIONAL' or not(label)]">
|
||||
<xsl:variable name="propType"><xsl:apply-templates select="." mode="type"/></xsl:variable>
|
||||
<xsl:variable name="format"><xsl:apply-templates select="." mode="format"/></xsl:variable>
|
||||
<xsl:variable name="primitiveType"><xsl:apply-templates select="." mode="primitiveType"/></xsl:variable>
|
||||
<xsl:variable name="defaultValue"><xsl:apply-templates select="." mode="defaultValue"/></xsl:variable>
|
||||
<xsl:variable name="field"><xsl:apply-templates select="." mode="field"/></xsl:variable>
|
||||
<xsl:variable name="specified" select="$optionDetectMissing and ($primitiveType='struct' or $primitiveType='class')"/>
|
||||
<xsl:variable name="fieldType"><xsl:value-of select="$propType"/><xsl:if test="$specified and $primitiveType='struct'">?</xsl:if></xsl:variable>
|
||||
private <xsl:value-of select="concat($fieldType,' ',$field)"/><xsl:if test="not($specified)"> = <xsl:value-of select="$defaultValue"/></xsl:if>;
|
||||
[<xsl:apply-templates select="." mode="checkDeprecated"/>global::ProtoBuf.ProtoMember(<xsl:value-of select="number"/>, IsRequired = false, Name=@"<xsl:value-of select="name"/>", DataFormat = global::ProtoBuf.DataFormat.<xsl:value-of select="$format"/>)]<!--
|
||||
--><xsl:if test="not($specified)">
|
||||
[global::System.ComponentModel.DefaultValue(<xsl:value-of select="$defaultValue"/>)]</xsl:if><!--
|
||||
--><xsl:if test="$optionXml">
|
||||
[global::System.Xml.Serialization.XmlElement(@"<xsl:value-of select="name"/>", Order = <xsl:value-of select="number"/>)]
|
||||
</xsl:if><xsl:if test="$optionDataContract">
|
||||
[global::System.Runtime.Serialization.DataMember(Name=@"<xsl:value-of select="name"/>", Order = <xsl:value-of select="number"/>, IsRequired = false)]
|
||||
</xsl:if><xsl:call-template name="WriteGetSet">
|
||||
<xsl:with-param name="fieldType" select="$fieldType"/>
|
||||
<xsl:with-param name="propType" select="$propType"/>
|
||||
<xsl:with-param name="name"><xsl:call-template name="pascal"/></xsl:with-param>
|
||||
<xsl:with-param name="field" select="$field"/>
|
||||
<xsl:with-param name="defaultValue" select="$defaultValue"/>
|
||||
<xsl:with-param name="specified" select="$specified"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="FieldDescriptorProto[label='LABEL_REQUIRED']">
|
||||
<xsl:variable name="type"><xsl:apply-templates select="." mode="type"/></xsl:variable>
|
||||
<xsl:variable name="format"><xsl:apply-templates select="." mode="format"/></xsl:variable>
|
||||
<xsl:variable name="field"><xsl:apply-templates select="." mode="field"/></xsl:variable>
|
||||
private <xsl:value-of select="concat($type, ' ', $field)"/>;
|
||||
[<xsl:apply-templates select="." mode="checkDeprecated"/>global::ProtoBuf.ProtoMember(<xsl:value-of select="number"/>, IsRequired = true, Name=@"<xsl:value-of select="name"/>", DataFormat = global::ProtoBuf.DataFormat.<xsl:value-of select="$format"/>)]<!--
|
||||
--><xsl:if test="$optionXml">
|
||||
[global::System.Xml.Serialization.XmlElement(@"<xsl:value-of select="name"/>", Order = <xsl:value-of select="number"/>)]
|
||||
</xsl:if><xsl:if test="$optionDataContract">
|
||||
[global::System.Runtime.Serialization.DataMember(Name=@"<xsl:value-of select="name"/>", Order = <xsl:value-of select="number"/>, IsRequired = true)]
|
||||
</xsl:if><xsl:call-template name="WriteGetSet">
|
||||
<xsl:with-param name="fieldType" select="$type"/>
|
||||
<xsl:with-param name="propType" select="$type"/>
|
||||
<xsl:with-param name="name"><xsl:call-template name="pascal"/></xsl:with-param>
|
||||
<xsl:with-param name="field" select="$field"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="stripKeyword">
|
||||
<xsl:param name="value"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="starts-with($value,'@')"><xsl:value-of select="substring-after($value,'@')"/></xsl:when>
|
||||
<xsl:otherwise><xsl:value-of select="$value"/></xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="WriteGetSet">
|
||||
<xsl:param name="fieldType"/>
|
||||
<xsl:param name="propType"/>
|
||||
<xsl:param name="name"/>
|
||||
<xsl:param name="field"/>
|
||||
<xsl:param name="specified" select="false()"/>
|
||||
<xsl:param name="defaultValue"/>
|
||||
<xsl:variable name="nameNoKeyword">
|
||||
<xsl:call-template name="stripKeyword">
|
||||
<xsl:with-param name="value" select="$name"/>
|
||||
</xsl:call-template></xsl:variable>
|
||||
public <xsl:value-of select="concat($fieldType,' ',$name)"/>
|
||||
{
|
||||
get { return <xsl:value-of select="$field"/>; }
|
||||
set { <xsl:if test="$optionPartialMethods">On<xsl:value-of select="$nameNoKeyword"/>Changing(value); </xsl:if><xsl:if test="$optionPreObservable">OnPropertyChanging(@"<xsl:value-of select="$nameNoKeyword"/>"); </xsl:if><xsl:value-of select="$field"/> = value; <xsl:if test="$optionObservable">OnPropertyChanged(@"<xsl:value-of select="$nameNoKeyword"/>"); </xsl:if><xsl:if test="$optionPartialMethods">On<xsl:value-of select="$nameNoKeyword"/>Changed();</xsl:if>}
|
||||
}<xsl:if test="$optionPartialMethods">
|
||||
partial void On<xsl:value-of select="$nameNoKeyword"/>Changing(<xsl:value-of select="$propType"/> value);
|
||||
partial void On<xsl:value-of select="$nameNoKeyword"/>Changed();</xsl:if><xsl:if test="$specified">
|
||||
[global::System.Xml.Serialization.XmlIgnore]
|
||||
<xsl:if test="$optionFullFramework">[global::System.ComponentModel.Browsable(false)]</xsl:if>
|
||||
public bool <xsl:value-of select="$nameNoKeyword"/>Specified
|
||||
{
|
||||
get { return this.<xsl:value-of select="$field"/> != null; }
|
||||
set { if (value == (this.<xsl:value-of select="$field"/>== null)) this.<xsl:value-of select="$field"/> = value ? this.<xsl:value-of select="$name"/> : (<xsl:value-of select="$fieldType"/>)null; }
|
||||
}
|
||||
private bool ShouldSerialize<xsl:value-of select="$nameNoKeyword"/>() { return <xsl:value-of select="$nameNoKeyword"/>Specified; }
|
||||
private void Reset<xsl:value-of select="$nameNoKeyword"/>() { <xsl:value-of select="$nameNoKeyword"/>Specified = false; }
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
<xsl:template match="FieldDescriptorProto[label='LABEL_REPEATED']">
|
||||
<xsl:variable name="type"><xsl:apply-templates select="." mode="type"/></xsl:variable>
|
||||
<xsl:variable name="format"><xsl:apply-templates select="." mode="format"/></xsl:variable>
|
||||
<xsl:variable name="field"><xsl:apply-templates select="." mode="field"/></xsl:variable>
|
||||
private <xsl:if test="not($optionXml)">readonly</xsl:if> global::System.Collections.Generic.List<<xsl:value-of select="$type" />> <xsl:value-of select="$field"/> = new global::System.Collections.Generic.List<<xsl:value-of select="$type"/>>();
|
||||
[<xsl:apply-templates select="." mode="checkDeprecated"/>global::ProtoBuf.ProtoMember(<xsl:value-of select="number"/>, Name=@"<xsl:value-of select="name"/>", DataFormat = global::ProtoBuf.DataFormat.<xsl:value-of select="$format"/><xsl:if test="options/packed='true'">, Options = global::ProtoBuf.MemberSerializationOptions.Packed</xsl:if>)]<!--
|
||||
--><xsl:if test="$optionDataContract">
|
||||
[global::System.Runtime.Serialization.DataMember(Name=@"<xsl:value-of select="name"/>", Order = <xsl:value-of select="number"/>, IsRequired = false)]
|
||||
</xsl:if><xsl:if test="$optionXml">
|
||||
[global::System.Xml.Serialization.XmlElement(@"<xsl:value-of select="name"/>", Order = <xsl:value-of select="number"/>)]
|
||||
</xsl:if>
|
||||
public global::System.Collections.Generic.List<<xsl:value-of select="$type" />> <xsl:call-template name="pascal"/>
|
||||
{
|
||||
get { return <xsl:value-of select="$field"/>; }<!--
|
||||
--><xsl:if test="$optionXml">
|
||||
set { <xsl:value-of select="$field"/> = value; }</xsl:if>
|
||||
}
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="ServiceDescriptorProto">
|
||||
<xsl:if test="($optionClientProxy or $optionDataContract)">
|
||||
[global::System.ServiceModel.ServiceContract(Name = @"<xsl:value-of select="name"/>")]</xsl:if>
|
||||
public interface I<xsl:value-of select="name"/>
|
||||
{
|
||||
<xsl:apply-templates select="method"/>
|
||||
}
|
||||
|
||||
<xsl:if test="$optionProtoRpc">
|
||||
public class <xsl:value-of select="name"/>Client : global::ProtoBuf.ServiceModel.RpcClient
|
||||
{
|
||||
public <xsl:value-of select="name"/>Client() : base(typeof(I<xsl:value-of select="name"/>)) { }
|
||||
<xsl:apply-templates select="method/MethodDescriptorProto" mode="protoRpc"/>
|
||||
}
|
||||
</xsl:if>
|
||||
<xsl:apply-templates select="." mode="clientProxy"/>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="MethodDescriptorProto">
|
||||
<xsl:if test="($optionClientProxy or $optionDataContract)">
|
||||
[global::System.ServiceModel.OperationContract(Name = @"<xsl:value-of select="name"/>")]
|
||||
<xsl:if test="$optionFullFramework">[global::ProtoBuf.ServiceModel.ProtoBehavior]</xsl:if>
|
||||
</xsl:if>
|
||||
<xsl:apply-templates select="output_type"/><xsl:text xml:space="preserve"> </xsl:text><xsl:value-of select="name"/>(<xsl:apply-templates select="input_type"/> request);
|
||||
<xsl:if test="$optionAsynchronous and ($optionClientProxy or $optionDataContract)">
|
||||
[global::System.ServiceModel.OperationContract(AsyncPattern = true, Name = @"<xsl:value-of select="name"/>")]
|
||||
global::System.IAsyncResult Begin<xsl:value-of select="name"/>(<xsl:apply-templates select="input_type"/> request, global::System.AsyncCallback callback, object state);
|
||||
<xsl:apply-templates select="output_type"/> End<xsl:value-of select="name"/>(global::System.IAsyncResult ar);
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="MethodDescriptorProto" mode="protoRpc">
|
||||
<xsl:apply-templates select="output_type"/><xsl:text xml:space="preserve"> </xsl:text><xsl:value-of select="name"/>(<xsl:apply-templates select="input_type"/> request)
|
||||
{
|
||||
return (<xsl:apply-templates select="output_type"/>) Send(@"<xsl:value-of select="name"/>", request);
|
||||
}
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="MethodDescriptorProto/input_type | MethodDescriptorProto/output_type">
|
||||
<xsl:value-of select="substring-after(.,'.')"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="MethodDescriptorProto" mode="CompleteEvent">
|
||||
<xsl:if test="$optionAsynchronous and $optionDataContract">
|
||||
public partial class <xsl:value-of select="name"/>CompletedEventArgs : global::System.ComponentModel.AsyncCompletedEventArgs
|
||||
{
|
||||
private object[] results;
|
||||
|
||||
public <xsl:value-of select="name"/>CompletedEventArgs(object[] results, global::System.Exception exception, bool cancelled, object userState)
|
||||
: base(exception, cancelled, userState)
|
||||
{
|
||||
this.results = results;
|
||||
}
|
||||
|
||||
public <xsl:apply-templates select="output_type"/> Result
|
||||
{
|
||||
get {
|
||||
base.RaiseExceptionIfNecessary();
|
||||
return (<xsl:apply-templates select="output_type"/>)(this.results[0]);
|
||||
}
|
||||
}
|
||||
}
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="ServiceDescriptorProto" mode="clientProxy">
|
||||
<xsl:if test="$optionAsynchronous and $optionDataContract and $optionClientProxy">
|
||||
<xsl:apply-templates select="method/MethodDescriptorProto" mode="CompleteEvent"/>
|
||||
|
||||
[global::System.Diagnostics.DebuggerStepThroughAttribute()]
|
||||
public partial class <xsl:value-of select="name"/>Client : global::System.ServiceModel.ClientBase<I<xsl:value-of select="name"/>>, I<xsl:value-of select="name"/>
|
||||
{
|
||||
|
||||
public <xsl:value-of select="name"/>Client()
|
||||
{}
|
||||
public <xsl:value-of select="name"/>Client(string endpointConfigurationName)
|
||||
: base(endpointConfigurationName)
|
||||
{}
|
||||
public <xsl:value-of select="name"/>Client(string endpointConfigurationName, string remoteAddress)
|
||||
: base(endpointConfigurationName, remoteAddress)
|
||||
{}
|
||||
public <xsl:value-of select="name"/>Client(string endpointConfigurationName, global::System.ServiceModel.EndpointAddress remoteAddress)
|
||||
: base(endpointConfigurationName, remoteAddress)
|
||||
{}
|
||||
public <xsl:value-of select="name"/>Client(global::System.ServiceModel.Channels.Binding binding, global::System.ServiceModel.EndpointAddress remoteAddress)
|
||||
: base(binding, remoteAddress)
|
||||
{}
|
||||
|
||||
<xsl:apply-templates select="method/MethodDescriptorProto" mode="clientProxy"/>
|
||||
}
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="MethodDescriptorProto" mode="clientProxy">
|
||||
<xsl:if test="$optionAsynchronous and $optionDataContract and $optionClientProxy">
|
||||
private BeginOperationDelegate onBegin<xsl:value-of select="name"/>Delegate;
|
||||
private EndOperationDelegate onEnd<xsl:value-of select="name"/>Delegate;
|
||||
private global::System.Threading.SendOrPostCallback on<xsl:value-of select="name"/>CompletedDelegate;
|
||||
|
||||
public event global::System.EventHandler<<xsl:value-of select="name"/>CompletedEventArgs> <xsl:value-of select="name"/>Completed;
|
||||
|
||||
public <xsl:apply-templates select="output_type"/><xsl:text xml:space="preserve"> </xsl:text><xsl:value-of select="name"/>(<xsl:apply-templates select="input_type"/> request)
|
||||
{
|
||||
return base.Channel.<xsl:value-of select="name"/>(request);
|
||||
}
|
||||
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||
public global::System.IAsyncResult Begin<xsl:value-of select="name"/>(<xsl:apply-templates select="input_type"/> request, global::System.AsyncCallback callback, object asyncState)
|
||||
{
|
||||
return base.Channel.Begin<xsl:value-of select="name"/>(request, callback, asyncState);
|
||||
}
|
||||
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||
public <xsl:apply-templates select="output_type"/> End<xsl:value-of select="name"/>(global::System.IAsyncResult result)
|
||||
{
|
||||
return base.Channel.End<xsl:value-of select="name"/>(result);
|
||||
}
|
||||
|
||||
private global::System.IAsyncResult OnBegin<xsl:value-of select="name"/>(object[] inValues, global::System.AsyncCallback callback, object asyncState)
|
||||
{
|
||||
<xsl:apply-templates select="input_type"/> request = ((<xsl:apply-templates select="input_type"/>)(inValues[0]));
|
||||
return this.Begin<xsl:value-of select="name"/>(request, callback, asyncState);
|
||||
}
|
||||
|
||||
private object[] OnEnd<xsl:value-of select="name"/>(global::System.IAsyncResult result)
|
||||
{
|
||||
<xsl:apply-templates select="output_type"/> retVal = this.End<xsl:value-of select="name"/>(result);
|
||||
return new object[] {
|
||||
retVal};
|
||||
}
|
||||
|
||||
private void On<xsl:value-of select="name"/>Completed(object state)
|
||||
{
|
||||
if ((this.<xsl:value-of select="name"/>Completed != null))
|
||||
{
|
||||
InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
|
||||
this.<xsl:value-of select="name"/>Completed(this, new <xsl:value-of select="name"/>CompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
|
||||
}
|
||||
}
|
||||
|
||||
public void <xsl:value-of select="name"/>Async(<xsl:apply-templates select="input_type"/> request)
|
||||
{
|
||||
this.<xsl:value-of select="name"/>Async(request, null);
|
||||
}
|
||||
|
||||
public void <xsl:value-of select="name"/>Async(<xsl:apply-templates select="input_type"/> request, object userState)
|
||||
{
|
||||
if ((this.onBegin<xsl:value-of select="name"/>Delegate == null))
|
||||
{
|
||||
this.onBegin<xsl:value-of select="name"/>Delegate = new BeginOperationDelegate(this.OnBegin<xsl:value-of select="name"/>);
|
||||
}
|
||||
if ((this.onEnd<xsl:value-of select="name"/>Delegate == null))
|
||||
{
|
||||
this.onEnd<xsl:value-of select="name"/>Delegate = new EndOperationDelegate(this.OnEnd<xsl:value-of select="name"/>);
|
||||
}
|
||||
if ((this.on<xsl:value-of select="name"/>CompletedDelegate == null))
|
||||
{
|
||||
this.on<xsl:value-of select="name"/>CompletedDelegate = new global::System.Threading.SendOrPostCallback(this.On<xsl:value-of select="name"/>Completed);
|
||||
}
|
||||
base.InvokeAsync(this.onBegin<xsl:value-of select="name"/>Delegate, new object[] {
|
||||
request}, this.onEnd<xsl:value-of select="name"/>Delegate, this.on<xsl:value-of select="name"/>CompletedDelegate, userState);
|
||||
}
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -1,3 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<configuration>
|
||||
<startup><supportedRuntime version="v2.0.50727"/></startup></configuration>
|
@ -1,745 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xsl:stylesheet version="1.0"
|
||||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="xsl msxsl"
|
||||
>
|
||||
<xsl:import href="common.xslt"/>
|
||||
<xsl:param name="help"/>
|
||||
<xsl:param name="xml"/>
|
||||
<xsl:param name="datacontract"/>
|
||||
<xsl:param name="binary"/>
|
||||
<xsl:param name="protoRpc"/>
|
||||
<xsl:param name="observable"/>
|
||||
<xsl:param name="preObservable"/>
|
||||
<xsl:param name="partialMethods"/>
|
||||
<xsl:param name="detectMissing"/>
|
||||
<xsl:param name="lightFramework"/>
|
||||
<xsl:param name="asynchronous"/>
|
||||
<xsl:param name="clientProxy"/>
|
||||
<xsl:param name="defaultNamespace"/>
|
||||
|
||||
|
||||
<xsl:key name="fieldNames" match="//FieldDescriptorProto" use="name"/>
|
||||
|
||||
<xsl:output method="text" indent="no" omit-xml-declaration="yes"/>
|
||||
<xsl:variable name="types" select="//EnumDescriptorProto | //DescriptorProto"/>
|
||||
<xsl:variable name="optionXml" select="$xml='true'"/>
|
||||
<xsl:variable name="optionDataContract" select="$datacontract='true'"/>
|
||||
<xsl:variable name="optionBinary" select="$binary='true'"/>
|
||||
<xsl:variable name="optionProtoRpc" select="$protoRpc='true'"/>
|
||||
<xsl:variable name="optionObservable" select="$observable='true'"/>
|
||||
<xsl:variable name="optionPreObservable" select="$preObservable='true'"/>
|
||||
<xsl:variable name="optionPartialMethods" select="$partialMethods='true'"/>
|
||||
<xsl:variable name="optionDetectMissing" select="$detectMissing='true'"/>
|
||||
<xsl:variable name="optionFullFramework" select="not($lightFramework='true')"/>
|
||||
<xsl:variable name="optionAsynchronous" select="$asynchronous='true'"/>
|
||||
<xsl:variable name="optionClientProxy" select="$clientProxy='true'"/>
|
||||
<xsl:variable name="optionFixCase" select="$fixCase='true'"/>
|
||||
|
||||
<xsl:template match="FileDescriptorSet">
|
||||
<xsl:if test="$help='true'">
|
||||
<xsl:message terminate="yes">
|
||||
VisualBasic template for protobuf-net.
|
||||
Options:
|
||||
General:
|
||||
"help" - this page
|
||||
Additional serializer support:
|
||||
"xml" - enable explicit xml support (XmlSerializer)
|
||||
"datacontract" - enable data-contract support (DataContractSerializer; requires .NET 3.0)
|
||||
"binary" - enable binary support (BinaryFormatter; not supported on Silverlight)
|
||||
Other:
|
||||
"protoRpc" - enable proto-rpc client
|
||||
"observable" - change notification (observer pattern) support
|
||||
"preObservable" - pre-change notification (observer pattern) support (requires .NET 3.5)
|
||||
"partialMethods" - provide partial methods for changes (requires C# 3.0)
|
||||
"detectMissing" - provide *Specified properties to indicate whether fields are present
|
||||
"lightFramework" - omit additional attributes not included in CF/Silverlight
|
||||
"asynchronous" - emit asynchronous methods for use with WCF
|
||||
"clientProxy" - emit asynchronous client proxy class
|
||||
</xsl:message>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:if test="$optionXml and $optionDataContract">
|
||||
<xsl:message terminate="yes">
|
||||
Invalid options: xml and data-contract serialization are mutually exclusive.
|
||||
</xsl:message>
|
||||
</xsl:if>
|
||||
' Generated from <xsl:value-of select="name"/>
|
||||
<xsl:if test="$optionXml">
|
||||
' Option: xml serialization ([XmlType]/[XmlElement]) enabled
|
||||
</xsl:if><xsl:if test="$optionDataContract">
|
||||
' Option: data-contract serialization ([DataContract]/[DataMember]) enabled
|
||||
</xsl:if><xsl:if test="$optionBinary">
|
||||
' Option: binary serialization (ISerializable) enabled
|
||||
</xsl:if><xsl:if test="$optionObservable">
|
||||
' Option: observable (OnPropertyChanged) enabled
|
||||
</xsl:if><xsl:if test="$optionPreObservable">
|
||||
' Option: pre-observable (OnPropertyChanging) enabled
|
||||
</xsl:if><xsl:if test="$partialMethods">
|
||||
' Option: partial methods (On*Changing/On*Changed) enabled
|
||||
</xsl:if><xsl:if test="$detectMissing">
|
||||
' Option: missing-value detection (*Specified/ShouldSerialize*/Reset*) enabled
|
||||
</xsl:if><xsl:if test="not($optionFullFramework)">
|
||||
' Option: light framework (CF/Silverlight) enabled
|
||||
</xsl:if><xsl:if test="$optionProtoRpc">
|
||||
' Option: proto-rpc enabled
|
||||
</xsl:if>
|
||||
<xsl:apply-templates select="file/FileDescriptorProto"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="FileDescriptorProto">
|
||||
' Generated from: <xsl:value-of select="name"/>
|
||||
<xsl:apply-templates select="dependency/string[.!='']"/>
|
||||
<xsl:variable name="namespace"><xsl:call-template name="PickNamespace">
|
||||
<xsl:with-param name="defaultNamespace" select="$defaultNamespace"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:if test="string($namespace) != ''">
|
||||
Namespace <xsl:value-of select="translate($namespace,':-/\','__..')"/>
|
||||
</xsl:if>
|
||||
<xsl:apply-templates select="message_type | enum_type | service"/>
|
||||
<xsl:if test="string($namespace) != ''">
|
||||
End Namespace</xsl:if></xsl:template>
|
||||
|
||||
<xsl:template match="FileDescriptorProto/dependency/string">
|
||||
' Note: requires additional types generated from: <xsl:value-of select="."/></xsl:template>
|
||||
|
||||
<xsl:template match="DescriptorProto">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$optionDataContract">
|
||||
<Global.System.Serializable, Global.ProtoBuf.ProtoContract(Name:="<xsl:value-of select="name"/>")> _
|
||||
<Global.System.Runtime.Serialization.DataContract(Name:="<xsl:value-of select="name"/>")> _
|
||||
</xsl:when>
|
||||
<xsl:when test="$optionXml">
|
||||
<Global.System.Serializable, Global.ProtoBuf.ProtoContract(Name:="<xsl:value-of select="name"/>")> _
|
||||
<Global.System.Xml.Serialization.XmlType(TypeName:="<xsl:value-of select="name"/>")> _
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<Global.System.Serializable, Global.ProtoBuf.ProtoContract(Name:="<xsl:value-of select="name"/>")> _
|
||||
</xsl:otherwise>
|
||||
</xsl:choose><!--
|
||||
-->Public Partial Class <xsl:call-template name="pascal"/>
|
||||
implements Global.ProtoBuf.IExtensible<!--
|
||||
--><xsl:if test="$optionBinary">, Global.System.Runtime.Serialization.ISerializable</xsl:if><!--
|
||||
--><xsl:if test="$optionObservable">, Global.System.ComponentModel.INotifyPropertyChanged</xsl:if><!--
|
||||
--><xsl:if test="$optionPreObservable">, Global.System.ComponentModel.INotifyPropertyChanging</xsl:if>
|
||||
|
||||
Public Sub New
|
||||
End Sub
|
||||
<xsl:apply-templates select="*"/><xsl:if test="$optionBinary">
|
||||
Protected Sub New(ByVal info As Global.System.Runtime.Serialization.SerializationInfo, ByVal context As Global.System.Runtime.Serialization.StreamingContext)
|
||||
MyBase.New()
|
||||
Global.ProtoBuf.Serializer.Merge(info, Me)
|
||||
End Sub
|
||||
|
||||
Sub GetObjectData(ByVal info As Global.System.Runtime.Serialization.SerializationInfo, ByVal context As Global.System.Runtime.Serialization.StreamingContext) implements Global.System.Runtime.Serialization.ISerializable.GetObjectData
|
||||
Global.ProtoBuf.Serializer.Serialize(info, Me)
|
||||
End Sub
|
||||
|
||||
</xsl:if><xsl:if test="$optionObservable">
|
||||
Public Event PropertyChanged As Global.System.ComponentModel.PropertyChangedEventHandler Implements Global.System.ComponentModel.INotifyPropertyChanged.PropertyChanged
|
||||
Protected Overridable Sub OnPropertyChanged(ByVal propertyName As String)
|
||||
RaiseEvent PropertyChanged(Me, New Global.System.ComponentModel.PropertyChangedEventArgs(propertyName))
|
||||
End Sub
|
||||
</xsl:if><xsl:if test="$optionPreObservable">
|
||||
Public Event PropertyChanging As Global.System.ComponentModel.PropertyChangingEventHandler Implements Global.System.ComponentModel.INotifyPropertyChanging.PropertyChanging
|
||||
Protected Overridable Sub OnPropertyChanging(ByVal propertyName As String)
|
||||
RaiseEvent PropertyChanging(Me, New Global.System.ComponentModel.PropertyChangingEventArgs(propertyName))
|
||||
End Sub
|
||||
</xsl:if>
|
||||
Private extensionObject As Global.ProtoBuf.IExtension
|
||||
Function GetExtensionObject(createIfMissing As Boolean) As Global.ProtoBuf.IExtension Implements Global.ProtoBuf.IExtensible.GetExtensionObject
|
||||
Return Global.ProtoBuf.Extensible.GetExtensionObject(extensionObject, createIfMissing)
|
||||
End Function
|
||||
End Class
|
||||
</xsl:template>
|
||||
|
||||
|
||||
|
||||
<xsl:template match="DescriptorProto/name | DescriptorProto/extension_range | DescriptorProto/extension"/>
|
||||
|
||||
<xsl:template match="
|
||||
FileDescriptorProto/message_type | FileDescriptorProto/enum_type | FileDescriptorProto/service
|
||||
| DescriptorProto/field | DescriptorProto/enum_type | DescriptorProto/message_type
|
||||
| DescriptorProto/nested_type | EnumDescriptorProto/value | ServiceDescriptorProto/method">
|
||||
<xsl:apply-templates select="*"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="EnumDescriptorProto">
|
||||
Public Enum <xsl:call-template name="pascal"/>
|
||||
<xsl:apply-templates select="value"/>
|
||||
End Enum
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="EnumValueDescriptorProto">
|
||||
<xsl:text>
|
||||
</xsl:text>
|
||||
<xsl:value-of select="name"/>
|
||||
<xsl:text xml:space="preserve"> = </xsl:text><xsl:choose>
|
||||
<xsl:when test="number"><xsl:value-of select="number"/></xsl:when>
|
||||
<xsl:otherwise>0</xsl:otherwise>
|
||||
</xsl:choose><xsl:if test="position()!=last()">
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="FieldDescriptorProto" mode="field">
|
||||
<xsl:choose>
|
||||
<xsl:when test="not(key('fieldNames',concat('_',name)))"><xsl:value-of select="concat('_',name)"/></xsl:when>
|
||||
<xsl:when test="not(key('fieldNames',concat(name,'Field')))"><xsl:value-of select="concat(name,'Field')"/></xsl:when>
|
||||
<xsl:otherwise><xsl:value-of select="concat('_',generate-id())"/></xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="FieldDescriptorProto" mode="format">
|
||||
<xsl:choose>
|
||||
<xsl:when test="type='TYPE_DOUBLE' or type='TYPE_FLOAT'
|
||||
or type='TYPE_FIXED32' or type='TYPE_FIXED64'
|
||||
or type='TYPE_SFIXED32' or type='TYPE_SFIXED64'">FixedSize</xsl:when>
|
||||
<xsl:when test="type='TYPE_GROUP'">Group</xsl:when>
|
||||
<xsl:when test="not(type) or type='TYPE_INT32' or type='TYPE_INT64'
|
||||
or type='TYPE_UINT32' or type='TYPE_UINT64'
|
||||
or type='TYPE_ENUM'">TwosComplement</xsl:when>
|
||||
<xsl:when test="type='TYPE_SINT32' or type='TYPE_SINT64'">ZigZag</xsl:when>
|
||||
<xsl:otherwise>Default</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
<xsl:template match="FieldDescriptorProto" mode="primitiveType">
|
||||
<xsl:choose>
|
||||
<xsl:when test="not(type)">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_DOUBLE'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_FLOAT'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_INT64'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_UINT64'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_INT32'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_FIXED64'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_FIXED32'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_BOOL'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_STRING'">class</xsl:when>
|
||||
<xsl:when test="type='TYPE_BYTES'">class</xsl:when>
|
||||
<xsl:when test="type='TYPE_UINT32'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_SFIXED32'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_SFIXED64'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_SINT32'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_SINT64'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_ENUM'">struct</xsl:when>
|
||||
<xsl:when test="type='TYPE_GROUP' or type='TYPE_MESSAGE'">none</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message terminate="yes">
|
||||
Field type not implemented: <xsl:value-of select="type"/> (<xsl:value-of select="../../name"/>.<xsl:value-of select="name"/>)
|
||||
</xsl:message>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
<xsl:template match="FieldDescriptorProto" mode="type">
|
||||
<xsl:choose>
|
||||
<xsl:when test="not(type)">double</xsl:when>
|
||||
<xsl:when test="type='TYPE_DOUBLE'">Double</xsl:when>
|
||||
<xsl:when test="type='TYPE_FLOAT'">Single</xsl:when>
|
||||
<xsl:when test="type='TYPE_INT64'">Long</xsl:when>
|
||||
<xsl:when test="type='TYPE_UINT64'">ULong</xsl:when>
|
||||
<xsl:when test="type='TYPE_INT32'">Integer</xsl:when>
|
||||
<xsl:when test="type='TYPE_FIXED64'">ULong</xsl:when>
|
||||
<xsl:when test="type='TYPE_FIXED32'">UInteger</xsl:when>
|
||||
<xsl:when test="type='TYPE_BOOL'">Boolean</xsl:when>
|
||||
<xsl:when test="type='TYPE_STRING'">String</xsl:when>
|
||||
<xsl:when test="type='TYPE_BYTES'">Byte()</xsl:when>
|
||||
<xsl:when test="type='TYPE_UINT32'">UInteger</xsl:when>
|
||||
<xsl:when test="type='TYPE_SFIXED32'">Integer</xsl:when>
|
||||
<xsl:when test="type='TYPE_SFIXED64'">Long</xsl:when>
|
||||
<xsl:when test="type='TYPE_SINT32'">Integer</xsl:when>
|
||||
<xsl:when test="type='TYPE_SINT64'">Long</xsl:when>
|
||||
<xsl:when test="type='TYPE_GROUP' or type='TYPE_MESSAGE' or type='TYPE_ENUM'"><xsl:call-template name="pascal">
|
||||
<xsl:with-param name="value" select="substring-after(type_name,'.')"/>
|
||||
</xsl:call-template></xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message terminate="yes">
|
||||
Field type not implemented: <xsl:value-of select="type"/> (<xsl:value-of select="../../name"/>.<xsl:value-of select="name"/>)
|
||||
</xsl:message>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="FieldDescriptorProto[default_value]" mode="defaultValue">
|
||||
<xsl:choose>
|
||||
<xsl:when test="type='TYPE_STRING'">"<xsl:value-of select="default_value"/>"</xsl:when>
|
||||
<xsl:when test="type='TYPE_ENUM'"><xsl:apply-templates select="." mode="type"/>.<xsl:value-of select="default_value"/></xsl:when>
|
||||
<xsl:when test="type='TYPE_BYTES'"> ' <xsl:value-of select="default_value"/></xsl:when>
|
||||
<xsl:otherwise>CType(<xsl:value-of select="default_value"/>, <xsl:apply-templates select="." mode="type"/>)</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<!--
|
||||
We need to find the first enum value given .foo.bar.SomeEnum - but the enum itself
|
||||
only knows about SomeEnum; we need to look at all parent DescriptorProto nodes, and
|
||||
the FileDescriptorProto for the namespace.
|
||||
|
||||
This does an annoying up/down recursion... a bit expensive, but *generally* OK.
|
||||
Could perhaps index the last part of the enum name to reduce overhead?
|
||||
-->
|
||||
<xsl:template name="GetFirstEnumValue">
|
||||
<xsl:variable name="hunt" select="type_name"/>
|
||||
<xsl:for-each select="//EnumDescriptorProto">
|
||||
<xsl:variable name="fullName">
|
||||
<xsl:for-each select="ancestor::FileDescriptorProto">.<xsl:value-of select="package"/></xsl:for-each>
|
||||
<xsl:for-each select="ancestor::DescriptorProto">.<xsl:value-of select="name"/></xsl:for-each>
|
||||
<xsl:value-of select="concat('.',name)"/>
|
||||
</xsl:variable>
|
||||
<xsl:if test="$fullName=$hunt"><xsl:value-of select="(value/EnumValueDescriptorProto)[1]/name"/></xsl:if>
|
||||
</xsl:for-each>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="FieldDescriptorProto[not(default_value)]" mode="defaultValue">
|
||||
<xsl:choose>
|
||||
<xsl:when test="type='TYPE_DOUBLE'">0.0</xsl:when>
|
||||
<xsl:when test="type='TYPE_FLOAT'">0.0F</xsl:when>
|
||||
<xsl:when test="type='TYPE_INT64'">0L</xsl:when>
|
||||
<xsl:when test="type='TYPE_UINT64'">0L</xsl:when>
|
||||
<xsl:when test="type='TYPE_INT32'">0</xsl:when>
|
||||
<xsl:when test="type='TYPE_FIXED64'">0L</xsl:when>
|
||||
<xsl:when test="type='TYPE_FIXED32'">0</xsl:when>
|
||||
<xsl:when test="type='TYPE_BOOL'">False</xsl:when>
|
||||
<xsl:when test="type='TYPE_STRING'">""</xsl:when>
|
||||
<xsl:when test="type='TYPE_BYTES'">Nothing</xsl:when>
|
||||
<xsl:when test="type='TYPE_UINT32'">0</xsl:when>
|
||||
<xsl:when test="type='TYPE_SFIXED32'">0</xsl:when>
|
||||
<xsl:when test="type='TYPE_SFIXED64'">0L</xsl:when>
|
||||
<xsl:when test="type='TYPE_SINT32'">0</xsl:when>
|
||||
<xsl:when test="type='TYPE_SINT64'">0L</xsl:when>
|
||||
<xsl:when test="type='TYPE_MESSAGE'">Nothing</xsl:when>
|
||||
<xsl:when test="type='TYPE_ENUM'"><xsl:apply-templates select="." mode="type"/>.<xsl:call-template name="GetFirstEnumValue"/></xsl:when>
|
||||
<xsl:otherwise>Nothing</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="FieldDescriptorProto[label='LABEL_OPTIONAL' or not(label)]">
|
||||
<xsl:variable name="propType"><xsl:apply-templates select="." mode="type"/></xsl:variable>
|
||||
<xsl:variable name="format"><xsl:apply-templates select="." mode="format"/></xsl:variable>
|
||||
<xsl:variable name="primitiveType"><xsl:apply-templates select="." mode="primitiveType"/></xsl:variable>
|
||||
<xsl:variable name="defaultValue"><xsl:apply-templates select="." mode="defaultValue"/></xsl:variable>
|
||||
<xsl:variable name="field"><xsl:apply-templates select="." mode="field"/></xsl:variable>
|
||||
<xsl:variable name="specified" select="$optionDetectMissing and ($primitiveType='struct' or $primitiveType='class')"/>
|
||||
<xsl:variable name="fieldType"><xsl:if test="$specified and $primitiveType='struct'">Nullable(Of </xsl:if><xsl:value-of select="$propType"/><xsl:if test="$specified and $primitiveType='struct'">)</xsl:if></xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="substring-after($fieldType, 'google.protobuf.')">
|
||||
Private <xsl:value-of select="concat($field,' As ',substring-after($fieldType, 'google.protobuf.'))"/><xsl:if test="not($specified)"> =<xsl:value-of select="$defaultValue"/></xsl:if>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
Private <xsl:value-of select="concat($field,' As ',$fieldType)"/><xsl:if test="not($specified)"> =<xsl:value-of select="$defaultValue"/></xsl:if>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
<xsl:choose>
|
||||
<xsl:when test="not($specified) and $optionXml">
|
||||
<Global.ProtoBuf.ProtoMember(<xsl:value-of select="number"/>, IsRequired:=False, Name:="<xsl:value-of select="name"/>", DataFormat:=Global.ProtoBuf.DataFormat.<xsl:value-of select="$format"/>)> _
|
||||
<xsl:choose>
|
||||
<xsl:when test="substring-after($fieldType, 'google.protobuf.')">
|
||||
<Global.System.ComponentModel.DefaultValue(CType(<xsl:value-of select="$defaultValue"/>, <xsl:value-of select="substring-after($fieldType, 'google.protobuf.')"/>))> _
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<Global.System.ComponentModel.DefaultValue(CType(<xsl:value-of select="$defaultValue"/>, <xsl:value-of select="$fieldType"/>))> _
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
<Global.System.Xml.Serialization.XmlElement("<xsl:value-of select="name"/>", Order:=<xsl:value-of select="number"/>)> _ <!--
|
||||
--></xsl:when>
|
||||
<xsl:when test="not($specified) and $optionDataContract">
|
||||
<Global.ProtoBuf.ProtoMember(<xsl:value-of select="number"/>, IsRequired:=False, Name:="<xsl:value-of select="name"/>", DataFormat:=Global.ProtoBuf.DataFormat.<xsl:value-of select="$format"/>)> _
|
||||
<xsl:choose>
|
||||
<xsl:when test="substring-after($fieldType, 'google.protobuf.')">
|
||||
<Global.System.ComponentModel.DefaultValue(CType(<xsl:value-of select="$defaultValue"/>, <xsl:value-of select="substring-after($fieldType, 'google.protobuf.')"/>))> _
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<Global.System.ComponentModel.DefaultValue(CType(<xsl:value-of select="$defaultValue"/>, <xsl:value-of select="$fieldType"/>))> _
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
<Global.System.Runtime.Serialization.DataMember(Name:="<xsl:value-of select="name"/>", Order:=<xsl:value-of select="number"/>, IsRequired:=False)> _ <!--
|
||||
--></xsl:when>
|
||||
<xsl:when test="not($specified)">
|
||||
<Global.ProtoBuf.ProtoMember(<xsl:value-of select="number"/>, IsRequired:=False, Name:="<xsl:value-of select="name"/>", DataFormat:=Global.ProtoBuf.DataFormat.<xsl:value-of select="$format"/>)> _ <!--
|
||||
--><xsl:choose>
|
||||
<xsl:when test="substring-after($fieldType, 'google.protobuf.')">
|
||||
<Global.System.ComponentModel.DefaultValue(CType(<xsl:value-of select="$defaultValue"/>, <xsl:value-of select="substring-after($fieldType, 'google.protobuf.')"/>))> _ <!--
|
||||
--></xsl:when>
|
||||
<xsl:otherwise>
|
||||
<Global.System.ComponentModel.DefaultValue(CType(<xsl:value-of select="$defaultValue"/>, <xsl:value-of select="$fieldType"/>))> _ <!--
|
||||
--></xsl:otherwise>
|
||||
</xsl:choose><!--
|
||||
--></xsl:when>
|
||||
<xsl:when test="$optionDataContract">
|
||||
<Global.ProtoBuf.ProtoMember(<xsl:value-of select="number"/>, IsRequired:=False, Name:="<xsl:value-of select="name"/>", DataFormat:=Global.ProtoBuf.DataFormat.<xsl:value-of select="$format"/>)> _
|
||||
<Global.System.Runtime.Serialization.DataMember(Name:="<xsl:value-of select="name"/>", Order:=<xsl:value-of select="number"/>, IsRequired:=False)> _ <!--
|
||||
--></xsl:when>
|
||||
<xsl:when test="$optionXml">
|
||||
<Global.ProtoBuf.ProtoMember(<xsl:value-of select="number"/>, IsRequired:=False, Name:="<xsl:value-of select="name"/>", DataFormat:=Global.ProtoBuf.DataFormat.<xsl:value-of select="$format"/>)> _
|
||||
<Global.System.Xml.Serialization.XmlElement("<xsl:value-of select="name"/>", Order:=<xsl:value-of select="number"/>)> _ <!--
|
||||
--></xsl:when>
|
||||
<xsl:otherwise>
|
||||
<Global.ProtoBuf.ProtoMember(<xsl:value-of select="number"/>, IsRequired:=False, Name:="<xsl:value-of select="name"/>", DataFormat:=Global.ProtoBuf.DataFormat.<xsl:value-of select="$format"/>)> _ <!--
|
||||
--></xsl:otherwise>
|
||||
</xsl:choose><!--
|
||||
--><xsl:call-template name="WriteGetSet">
|
||||
<xsl:with-param name="fieldType" select="$fieldType"/>
|
||||
<xsl:with-param name="propType" select="$propType"/>
|
||||
<xsl:with-param name="name"><xsl:call-template name="pascalPropName"/></xsl:with-param>
|
||||
<xsl:with-param name="field" select="$field"/>
|
||||
<xsl:with-param name="defaultValue" select="$defaultValue"/>
|
||||
<xsl:with-param name="specified" select="$specified"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="pascalPropName">
|
||||
<xsl:param name="value" select="name"/>
|
||||
<xsl:param name="delimiter" select="'_'"/>
|
||||
<xsl:variable name="valueUC" select="translate($value,$alpha,$ALPHA)"/>
|
||||
<xsl:variable name="finalName">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$types[translate(name,$alpha,$ALPHA)=$valueUC]"><xsl:value-of select="concat($value,$delimiter,'Property')"/></xsl:when>
|
||||
<xsl:otherwise><xsl:value-of select="$value"/></xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
<xsl:call-template name="pascal">
|
||||
<xsl:with-param name="value" select="$finalName"/>
|
||||
<xsl:with-param name="delimiter" select="$delimiter"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="FieldDescriptorProto[label='LABEL_REQUIRED']">
|
||||
<xsl:variable name="type"><xsl:apply-templates select="." mode="type"/></xsl:variable>
|
||||
<xsl:variable name="format"><xsl:apply-templates select="." mode="format"/></xsl:variable>
|
||||
<xsl:variable name="field"><xsl:apply-templates select="." mode="field"/></xsl:variable>
|
||||
Private <xsl:value-of select="concat($field, ' As ', $type)"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$optionDataContract">
|
||||
<Global.ProtoBuf.ProtoMember(<xsl:value-of select="number"/>, IsRequired:=True, Name:="<xsl:value-of select="name"/>", DataFormat:=Global.ProtoBuf.DataFormat.<xsl:value-of select="$format"/>)> _
|
||||
<Global.System.Runtime.Serialization.DataMember(Name:="<xsl:value-of select="name"/>", Order:=<xsl:value-of select="number"/>, IsRequired:=True)> _ <!--
|
||||
--></xsl:when>
|
||||
<xsl:when test="$optionXml">
|
||||
<Global.ProtoBuf.ProtoMember(<xsl:value-of select="number"/>, IsRequired:=True, Name:="<xsl:value-of select="name"/>", DataFormat:=Global.ProtoBuf.DataFormat.<xsl:value-of select="$format"/>)> _
|
||||
<Global.System.Xml.Serialization.XmlElement("<xsl:value-of select="name"/>", Order:=<xsl:value-of select="number"/>)> _ <!--
|
||||
--></xsl:when>
|
||||
<xsl:otherwise>
|
||||
<Global.ProtoBuf.ProtoMember(<xsl:value-of select="number"/>, IsRequired:=True, Name:="<xsl:value-of select="name"/>", DataFormat:=Global.ProtoBuf.DataFormat.<xsl:value-of select="$format"/>)> _ <!--
|
||||
--></xsl:otherwise>
|
||||
</xsl:choose><!--
|
||||
--><xsl:call-template name="WriteGetSet">
|
||||
<xsl:with-param name="fieldType" select="$type"/>
|
||||
<xsl:with-param name="propType" select="$type"/>
|
||||
<xsl:with-param name="name" select="name"/>
|
||||
<xsl:with-param name="field" select="$field"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="WriteGetSet">
|
||||
<xsl:param name="fieldType"/>
|
||||
<xsl:param name="propType"/>
|
||||
<xsl:param name="name"/>
|
||||
<xsl:param name="field"/>
|
||||
<xsl:param name="specified" select="false()"/>
|
||||
<xsl:param name="defaultValue"/>
|
||||
<xsl:variable name="primitiveType"><xsl:apply-templates select="." mode="primitiveType"/></xsl:variable>
|
||||
<xsl:choose>
|
||||
<xsl:when test="substring-after($fieldType, 'google.protobuf.')">
|
||||
Public Property <xsl:value-of select="concat($name,' As ',substring-after($fieldType, 'google.protobuf.'))"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
Public Property <xsl:value-of select="concat($name,' As ',$fieldType)"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
Get
|
||||
<xsl:choose>
|
||||
<xsl:when test="$specified and $primitiveType='struct'"><!--
|
||||
-->Return <xsl:value-of select="$field"/><!--
|
||||
--></xsl:when>
|
||||
<xsl:when test="$specified">
|
||||
If Not <xsl:value-of select="$field"/> Is Nothing Then
|
||||
Return <xsl:value-of select="$field"/>
|
||||
Else
|
||||
Return <xsl:value-of select="$defaultValue"/>
|
||||
End If<!--
|
||||
--></xsl:when>
|
||||
<xsl:otherwise><!--
|
||||
-->Return <xsl:value-of select="$field"/><!--
|
||||
--></xsl:otherwise>
|
||||
</xsl:choose>
|
||||
End Get
|
||||
<xsl:choose>
|
||||
<xsl:when test="substring-after($fieldType, 'google.protobuf.')">
|
||||
Set(<xsl:value-of select="concat('value As ',substring-after($fieldType, 'google.protobuf.'))"/>)
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
Set(<xsl:value-of select="concat('value As ',$fieldType)"/>)
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
<xsl:if test="$optionPartialMethods">On<xsl:value-of select="$name"/>Changing(value)
|
||||
</xsl:if><xsl:if test="$optionPreObservable">OnPropertyChanging("<xsl:value-of select="$name"/>")
|
||||
</xsl:if><xsl:value-of select="$field"/> = value
|
||||
<xsl:if test="$optionObservable">OnPropertyChanged("<xsl:value-of select="$name"/>") </xsl:if><xsl:if test="$optionPartialMethods">On<xsl:value-of select="$name"/>Changed()</xsl:if>
|
||||
End Set
|
||||
End Property
|
||||
<xsl:if test="$optionPartialMethods">
|
||||
partial void On<xsl:value-of select="$name"/>Changing(<xsl:value-of select="$propType"/> value);
|
||||
partial void On<xsl:value-of select="$name"/>Changed();</xsl:if><xsl:if test="$specified">
|
||||
<Global.System.Xml.Serialization.XmlIgnore> _
|
||||
<xsl:if test="$optionFullFramework"><Global.System.ComponentModel.Browsable(false)> _ </xsl:if>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$specified and $primitiveType='struct'">
|
||||
Public Property <xsl:value-of select="$name"/>Specified As Boolean
|
||||
Get
|
||||
Return <xsl:value-of select="$field"/>.HasValue
|
||||
End Get
|
||||
Set (ByVal value As Boolean)
|
||||
If Not <xsl:value-of select="$field"/>.HasValue Then
|
||||
If value = True then <xsl:value-of select="$field"/> = <xsl:value-of select="$name"/>
|
||||
Else
|
||||
If value = False then <xsl:value-of select="$field"/> = Nothing
|
||||
End If
|
||||
End Set
|
||||
End Property
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
Public Property <xsl:value-of select="$name"/>Specified As Boolean
|
||||
Get
|
||||
Return <xsl:value-of select="$field"/> IsNot Nothing
|
||||
End Get
|
||||
Set (ByVal value As Boolean)
|
||||
If <xsl:value-of select="$field"/> Is Nothing Then
|
||||
If value = True then <xsl:value-of select="$field"/> = <xsl:value-of select="$name"/>
|
||||
Else
|
||||
If value = False then <xsl:value-of select="$field"/> = Nothing
|
||||
End If
|
||||
End Set
|
||||
End Property
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
Private Function ShouldSerialize<xsl:value-of select="$name"/>() As Boolean
|
||||
Return <xsl:value-of select="$name"/>Specified
|
||||
End Function
|
||||
Private Sub Reset<xsl:value-of select="$name"/>()
|
||||
<xsl:value-of select="$name"/>Specified = false
|
||||
End Sub
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
<xsl:template match="FieldDescriptorProto[label='LABEL_REPEATED']">
|
||||
<xsl:variable name="type"><xsl:apply-templates select="." mode="type"/></xsl:variable>
|
||||
<xsl:variable name="format"><xsl:apply-templates select="." mode="format"/></xsl:variable>
|
||||
<xsl:variable name="field"><xsl:apply-templates select="." mode="field"/></xsl:variable>
|
||||
<xsl:choose>
|
||||
<xsl:when test="substring-after($type, 'google.protobuf.')">
|
||||
Private <xsl:if test="not($optionXml)">ReadOnly </xsl:if> <xsl:value-of select="$field"/> as Global.System.Collections.Generic.List(Of <xsl:value-of select="substring-after($type, 'google.protobuf.')" />) = New Global.System.Collections.Generic.List(Of <xsl:value-of select="substring-after($type, 'google.protobuf.')"/>)()
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
Private <xsl:if test="not($optionXml)">ReadOnly </xsl:if> <xsl:value-of select="$field"/> as Global.System.Collections.Generic.List(Of <xsl:value-of select="$type" />) = New Global.System.Collections.Generic.List(Of <xsl:value-of select="$type"/>)()
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$optionDataContract">
|
||||
<Global.ProtoBuf.ProtoMember(<xsl:value-of select="number"/>, Name:="<xsl:value-of select="name"/>", DataFormat:=Global.ProtoBuf.DataFormat.<xsl:value-of select="$format"/>)> _
|
||||
<Global.System.Runtime.Serialization.DataMember(Name:="<xsl:value-of select="name"/>", Order:=<xsl:value-of select="number"/>, IsRequired:=False)> _
|
||||
</xsl:when>
|
||||
<xsl:when test="$optionXml">
|
||||
<Global.ProtoBuf.ProtoMember(<xsl:value-of select="number"/>, Name:="<xsl:value-of select="name"/>", DataFormat:=Global.ProtoBuf.DataFormat.<xsl:value-of select="$format"/>)> _
|
||||
<Global.System.Xml.Serialization.XmlElement("<xsl:value-of select="name"/>", Order:=<xsl:value-of select="number"/>)> _
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<Global.ProtoBuf.ProtoMember(<xsl:value-of select="number"/>, Name:="<xsl:value-of select="name"/>", DataFormat:=Global.ProtoBuf.DataFormat.<xsl:value-of select="$format"/>)> _
|
||||
</xsl:otherwise>
|
||||
</xsl:choose><!--
|
||||
--><xsl:choose>
|
||||
<xsl:when test="substring-after($type, 'google.protobuf.')"><!--
|
||||
-->Public <xsl:if test="not($optionXml)">ReadOnly </xsl:if>Property <xsl:value-of select="name"/> As Global.System.Collections.Generic.List(Of <xsl:value-of select="substring-after($type, 'google.protobuf.')" />)
|
||||
</xsl:when>
|
||||
<xsl:otherwise><!--
|
||||
-->Public <xsl:if test="not($optionXml)">ReadOnly </xsl:if>Property <xsl:value-of select="name"/> As Global.System.Collections.Generic.List(Of <xsl:value-of select="$type" />)
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
Get
|
||||
Return <xsl:value-of select="$field"/>
|
||||
End Get
|
||||
<!----><xsl:if test="$optionXml">
|
||||
<xsl:choose>
|
||||
<xsl:when test="substring-after($type, 'google.protobuf.')">
|
||||
Set (value As Global.System.Collections.Generic.List(Of <xsl:value-of select="substring-after($type, 'google.protobuf.')" />))
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
Set (value As Global.System.Collections.Generic.List(Of <xsl:value-of select="$type" />))
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
<xsl:value-of select="$field"/> = value
|
||||
End Set
|
||||
</xsl:if>
|
||||
End Property
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="ServiceDescriptorProto">
|
||||
<xsl:if test="($optionClientProxy or $optionDataContract)">
|
||||
<Global.System.ServiceModel.ServiceContract(Name:="<xsl:value-of select="name"/>")> _
|
||||
</xsl:if>
|
||||
Public Interface I<xsl:value-of select="name"/>
|
||||
<xsl:apply-templates select="method"/>
|
||||
End Interface
|
||||
|
||||
<xsl:if test="$optionProtoRpc">
|
||||
Public Class <xsl:value-of select="name"/>Client : Global.ProtoBuf.ServiceModel.RpcClient
|
||||
public <xsl:value-of select="name"/>Client() : base(typeof(I<xsl:value-of select="name"/>)) { }
|
||||
|
||||
<xsl:apply-templates select="method/MethodDescriptorProto" mode="protoRpc"/>
|
||||
End Class
|
||||
</xsl:if>
|
||||
<xsl:apply-templates select="." mode="clientProxy"/>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="MethodDescriptorProto">
|
||||
<xsl:if test="$optionDataContract">
|
||||
<Global.System.ServiceModel.OperationContract(Name:="<xsl:value-of select="name"/>")> _
|
||||
<Global.ProtoBuf.ServiceModel.ProtoBehavior()> _
|
||||
</xsl:if>
|
||||
<xsl:apply-templates select="output_type"/><xsl:text xml:space="preserve"> </xsl:text><xsl:value-of select="name"/>(<xsl:apply-templates select="input_type"/> request);
|
||||
<xsl:if test="$optionAsynchronous and $optionDataContract">
|
||||
<Global.System.ServiceModel.OperationContract(AsyncPattern:=True, Name:="<xsl:value-of select="name"/>")> _
|
||||
Global.System.IAsyncResult Begin<xsl:value-of select="name"/>(<xsl:apply-templates select="input_type"/> request, Global.System.AsyncCallback callback, object state);
|
||||
<xsl:apply-templates select="output_type"/> End<xsl:value-of select="name"/>(Global.System.IAsyncResult ar);
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="MethodDescriptorProto" mode="protoRpc">
|
||||
<xsl:apply-templates select="output_type"/><xsl:text xml:space="preserve"> </xsl:text><xsl:value-of select="name"/>(<xsl:apply-templates select="input_type"/> request)
|
||||
{
|
||||
return (<xsl:apply-templates select="output_type"/>) Send("<xsl:value-of select="name"/>", request);
|
||||
}
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="MethodDescriptorProto/input_type | MethodDescriptorProto/output_type">
|
||||
<xsl:value-of select="substring-after(.,'.')"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="MethodDescriptorProto" mode="CompleteEvent">
|
||||
<xsl:if test="$optionAsynchronous and $optionDataContract">
|
||||
Public Class <xsl:value-of select="name"/>CompletedEventArgs : Global.System.ComponentModel.AsyncCompletedEventArgs
|
||||
private object[] results;
|
||||
|
||||
public <xsl:value-of select="name"/>CompletedEventArgs(object[] results, Global.System.Exception exception, bool cancelled, object userState)
|
||||
: base(exception, cancelled, userState)
|
||||
{
|
||||
this.results = results;
|
||||
}
|
||||
|
||||
public <xsl:apply-templates select="output_type"/> Result
|
||||
{
|
||||
get {
|
||||
base.RaiseExceptionIfNecessary();
|
||||
return (<xsl:apply-templates select="output_type"/>)(this.results[0]);
|
||||
}
|
||||
}
|
||||
End Class
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="ServiceDescriptorProto" mode="clientProxy">
|
||||
<xsl:if test="$optionAsynchronous and $optionDataContract and $optionClientProxy">
|
||||
<xsl:apply-templates select="method/MethodDescriptorProto" mode="CompleteEvent"/>
|
||||
|
||||
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
|
||||
public partial class <xsl:value-of select="name"/>Client : Global.System.ServiceModel.ClientBase<I<xsl:value-of select="name"/>>, I<xsl:value-of select="name"/>
|
||||
{
|
||||
|
||||
public <xsl:value-of select="name"/>Client()
|
||||
{}
|
||||
public <xsl:value-of select="name"/>Client(string endpointConfigurationName)
|
||||
: base(endpointConfigurationName)
|
||||
{}
|
||||
public <xsl:value-of select="name"/>Client(string endpointConfigurationName, string remoteAddress)
|
||||
: base(endpointConfigurationName, remoteAddress)
|
||||
{}
|
||||
public <xsl:value-of select="name"/>Client(string endpointConfigurationName, Global.System.ServiceModel.EndpointAddress remoteAddress)
|
||||
: base(endpointConfigurationName, remoteAddress)
|
||||
{}
|
||||
public <xsl:value-of select="name"/>Client(Global.System.ServiceModel.Channels.Binding binding, Global.System.ServiceModel.EndpointAddress remoteAddress)
|
||||
: base(binding, remoteAddress)
|
||||
{}
|
||||
|
||||
<xsl:apply-templates select="method/MethodDescriptorProto" mode="clientProxy"/>
|
||||
}
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="MethodDescriptorProto" mode="clientProxy">
|
||||
<xsl:if test="$optionAsynchronous and $optionDataContract and $optionClientProxy">
|
||||
private BeginOperationDelegate onBegin<xsl:value-of select="name"/>Delegate;
|
||||
private EndOperationDelegate onEnd<xsl:value-of select="name"/>Delegate;
|
||||
private Global.System.Threading.SendOrPostCallback on<xsl:value-of select="name"/>CompletedDelegate;
|
||||
|
||||
public event Global.System.EventHandler<<xsl:value-of select="name"/>CompletedEventArgs> <xsl:value-of select="name"/>Completed;
|
||||
|
||||
public <xsl:apply-templates select="output_type"/><xsl:text xml:space="preserve"> </xsl:text><xsl:value-of select="name"/>(<xsl:apply-templates select="input_type"/> request)
|
||||
{
|
||||
return base.Channel.<xsl:value-of select="name"/>(request);
|
||||
}
|
||||
|
||||
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
public Global.System.IAsyncResult Begin<xsl:value-of select="name"/>(<xsl:apply-templates select="input_type"/> request, Global.System.AsyncCallback callback, object asyncState)
|
||||
{
|
||||
return base.Channel.Begin<xsl:value-of select="name"/>(request, callback, asyncState);
|
||||
}
|
||||
|
||||
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
public <xsl:apply-templates select="output_type"/> End<xsl:value-of select="name"/>(Global.System.IAsyncResult result)
|
||||
{
|
||||
return base.Channel.End<xsl:value-of select="name"/>(result);
|
||||
}
|
||||
|
||||
private Global.System.IAsyncResult OnBegin<xsl:value-of select="name"/>(object[] inValues, Global.System.AsyncCallback callback, object asyncState)
|
||||
{
|
||||
<xsl:apply-templates select="input_type"/> request = ((<xsl:apply-templates select="input_type"/>)(inValues[0]));
|
||||
return this.Begin<xsl:value-of select="name"/>(request, callback, asyncState);
|
||||
}
|
||||
|
||||
private object[] OnEnd<xsl:value-of select="name"/>(Global.System.IAsyncResult result)
|
||||
{
|
||||
<xsl:apply-templates select="output_type"/> retVal = this.End<xsl:value-of select="name"/>(result);
|
||||
return new object[] {
|
||||
retVal};
|
||||
}
|
||||
|
||||
private void On<xsl:value-of select="name"/>Completed(object state)
|
||||
{
|
||||
if ((this.<xsl:value-of select="name"/>Completed != null))
|
||||
{
|
||||
InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
|
||||
this.<xsl:value-of select="name"/>Completed(this, new <xsl:value-of select="name"/>CompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
|
||||
}
|
||||
}
|
||||
|
||||
public void <xsl:value-of select="name"/>Async(<xsl:apply-templates select="input_type"/> request)
|
||||
{
|
||||
this.<xsl:value-of select="name"/>Async(request, null);
|
||||
}
|
||||
|
||||
public void <xsl:value-of select="name"/>Async(<xsl:apply-templates select="input_type"/> request, object userState)
|
||||
{
|
||||
if ((this.onBegin<xsl:value-of select="name"/>Delegate == null))
|
||||
{
|
||||
this.onBegin<xsl:value-of select="name"/>Delegate = new BeginOperationDelegate(this.OnBegin<xsl:value-of select="name"/>);
|
||||
}
|
||||
if ((this.onEnd<xsl:value-of select="name"/>Delegate == null))
|
||||
{
|
||||
this.onEnd<xsl:value-of select="name"/>Delegate = new EndOperationDelegate(this.OnEnd<xsl:value-of select="name"/>);
|
||||
}
|
||||
if ((this.on<xsl:value-of select="name"/>CompletedDelegate == null))
|
||||
{
|
||||
this.on<xsl:value-of select="name"/>CompletedDelegate = new Global.System.Threading.SendOrPostCallback(this.On<xsl:value-of select="name"/>Completed);
|
||||
}
|
||||
base.InvokeAsync(this.onBegin<xsl:value-of select="name"/>Delegate, new object[] {
|
||||
request}, this.onEnd<xsl:value-of select="name"/>Delegate, this.on<xsl:value-of select="name"/>CompletedDelegate, userState);
|
||||
}
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="escapeKeyword"><xsl:param name="value"/><xsl:choose>
|
||||
<xsl:when test="contains($keywordsUpper,concat('|',translate($value, $alpha, $ALPHA),'|'))">[<xsl:value-of select="$value"/>]</xsl:when>
|
||||
<xsl:otherwise><xsl:value-of select="$value"/></xsl:otherwise>
|
||||
</xsl:choose></xsl:template>
|
||||
<xsl:variable name="keywords">|AddHandler|AddressOf|Alias|And|AndAlso|As|Boolean|ByRef|Byte|ByVal|Call|Case|Catch|CBool|CByte|CChar|CDate|CDec|CDbl|Char|CInt|Class|CLng|CObj|Const|Continue|CSByte|CShort|CSng|CStr|CType|CUInt|CULng|CUShort|Date|Decimal|Declare|Default|Delegate|Dim|DirectCast|Do|Double|Each|Else|ElseIf|End|EndIf|Enum|Erase|Error|Event|Exit|False|Finally|For|Friend|Function|Get|GetType|GetXMLNamespace|Global|GoSub|GoTo|Handles|If|Implements|Imports|In|Inherits|Integer|Interface|Is|IsNot|Let|Lib|Like|Long|Loop|Me|Mod|Module|MustInherit|MustOverride|MyBase|MyClass|Namespace|Narrowing|New|Next|Not|Nothing|NotInheritable|NotOverridable|Object|Of|On|Operator|Option|Optional|Or|OrElse|Overloads|Overridable|Overrides|ParamArray|Partial|Private|Property|Protected|Public|RaiseEvent|ReadOnly|ReDim|REM|RemoveHandler|Resume|Return|SByte|Select|Set|Shadows|Shared|Short|Single|Static|Step|Stop|String|Structure|Sub|SyncLock|Then|Throw|To|True|Try|TryCast|TypeOf|Variant|Wend|UInteger|ULong|UShort|Using|When|While|Widening|With|WithEvents|WriteOnly|Xor|</xsl:variable>
|
||||
<xsl:variable name="keywordsUpper" select="translate($keywords, $alpha, $ALPHA)"/>
|
||||
|
||||
</xsl:stylesheet>
|
@ -1,26 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="xsl msxsl"
|
||||
>
|
||||
<xsl:param name="help"/>
|
||||
<xsl:output method="xml" indent="yes"/>
|
||||
|
||||
|
||||
<xsl:template match="/*">
|
||||
<xsl:if test="$help='true'">
|
||||
<xsl:message terminate="yes">
|
||||
Xml template for protobuf-net.
|
||||
|
||||
This template writes the proto descriptor as xml.
|
||||
No options available.
|
||||
</xsl:message>
|
||||
</xsl:if>
|
||||
<xsl:call-template name="main"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="@* | node()" name="main">
|
||||
<xsl:copy>
|
||||
<xsl:apply-templates select="@* | node()"/>
|
||||
</xsl:copy>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
@ -1,120 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
// Option: missing-value detection (*Specified/ShouldSerialize*/Reset*) enabled
|
||||
|
||||
// Generated from: proto/protobuf_HunterNetCore.proto
|
||||
namespace HunterProtobufCore
|
||||
{
|
||||
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"HunterNet_C2S")]
|
||||
public partial class HunterNet_C2S : global::ProtoBuf.IExtensible
|
||||
{
|
||||
public HunterNet_C2S() {}
|
||||
|
||||
private int? _HunterNetCore_CmdID;
|
||||
[global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"HunterNetCore_CmdID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
|
||||
public int? HunterNetCore_CmdID
|
||||
{
|
||||
get { return _HunterNetCore_CmdID; }
|
||||
set { _HunterNetCore_CmdID = value; }
|
||||
}
|
||||
[global::System.Xml.Serialization.XmlIgnore]
|
||||
[global::System.ComponentModel.Browsable(false)]
|
||||
public bool HunterNetCore_CmdIDSpecified
|
||||
{
|
||||
get { return this._HunterNetCore_CmdID != null; }
|
||||
set { if (value == (this._HunterNetCore_CmdID== null)) this._HunterNetCore_CmdID = value ? this.HunterNetCore_CmdID : (int?)null; }
|
||||
}
|
||||
private bool ShouldSerializeHunterNetCore_CmdID() { return HunterNetCore_CmdIDSpecified; }
|
||||
private void ResetHunterNetCore_CmdID() { HunterNetCore_CmdIDSpecified = false; }
|
||||
|
||||
private byte[] _HunterNetCore_Data;
|
||||
[global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"HunterNetCore_Data", DataFormat = global::ProtoBuf.DataFormat.Default)]
|
||||
public byte[] HunterNetCore_Data
|
||||
{
|
||||
get { return _HunterNetCore_Data; }
|
||||
set { _HunterNetCore_Data = value; }
|
||||
}
|
||||
[global::System.Xml.Serialization.XmlIgnore]
|
||||
[global::System.ComponentModel.Browsable(false)]
|
||||
public bool HunterNetCore_DataSpecified
|
||||
{
|
||||
get { return this._HunterNetCore_Data != null; }
|
||||
set { if (value == (this._HunterNetCore_Data== null)) this._HunterNetCore_Data = value ? this.HunterNetCore_Data : (byte[])null; }
|
||||
}
|
||||
private bool ShouldSerializeHunterNetCore_Data() { return HunterNetCore_DataSpecified; }
|
||||
private void ResetHunterNetCore_Data() { HunterNetCore_DataSpecified = false; }
|
||||
|
||||
private global::ProtoBuf.IExtension extensionObject;
|
||||
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
|
||||
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
|
||||
}
|
||||
|
||||
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"HunterNet_S2C")]
|
||||
public partial class HunterNet_S2C : global::ProtoBuf.IExtensible
|
||||
{
|
||||
public HunterNet_S2C() {}
|
||||
|
||||
private int? _HunterNetCore_CmdID;
|
||||
[global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"HunterNetCore_CmdID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
|
||||
public int? HunterNetCore_CmdID
|
||||
{
|
||||
get { return _HunterNetCore_CmdID; }
|
||||
set { _HunterNetCore_CmdID = value; }
|
||||
}
|
||||
[global::System.Xml.Serialization.XmlIgnore]
|
||||
[global::System.ComponentModel.Browsable(false)]
|
||||
public bool HunterNetCore_CmdIDSpecified
|
||||
{
|
||||
get { return this._HunterNetCore_CmdID != null; }
|
||||
set { if (value == (this._HunterNetCore_CmdID== null)) this._HunterNetCore_CmdID = value ? this.HunterNetCore_CmdID : (int?)null; }
|
||||
}
|
||||
private bool ShouldSerializeHunterNetCore_CmdID() { return HunterNetCore_CmdIDSpecified; }
|
||||
private void ResetHunterNetCore_CmdID() { HunterNetCore_CmdIDSpecified = false; }
|
||||
|
||||
private int? _HunterNetCore_ERRORCode;
|
||||
[global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"HunterNetCore_ERRORCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
|
||||
public int? HunterNetCore_ERRORCode
|
||||
{
|
||||
get { return _HunterNetCore_ERRORCode; }
|
||||
set { _HunterNetCore_ERRORCode = value; }
|
||||
}
|
||||
[global::System.Xml.Serialization.XmlIgnore]
|
||||
[global::System.ComponentModel.Browsable(false)]
|
||||
public bool HunterNetCore_ERRORCodeSpecified
|
||||
{
|
||||
get { return this._HunterNetCore_ERRORCode != null; }
|
||||
set { if (value == (this._HunterNetCore_ERRORCode== null)) this._HunterNetCore_ERRORCode = value ? this.HunterNetCore_ERRORCode : (int?)null; }
|
||||
}
|
||||
private bool ShouldSerializeHunterNetCore_ERRORCode() { return HunterNetCore_ERRORCodeSpecified; }
|
||||
private void ResetHunterNetCore_ERRORCode() { HunterNetCore_ERRORCodeSpecified = false; }
|
||||
|
||||
private byte[] _HunterNetCore_Data;
|
||||
[global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"HunterNetCore_Data", DataFormat = global::ProtoBuf.DataFormat.Default)]
|
||||
public byte[] HunterNetCore_Data
|
||||
{
|
||||
get { return _HunterNetCore_Data; }
|
||||
set { _HunterNetCore_Data = value; }
|
||||
}
|
||||
[global::System.Xml.Serialization.XmlIgnore]
|
||||
[global::System.ComponentModel.Browsable(false)]
|
||||
public bool HunterNetCore_DataSpecified
|
||||
{
|
||||
get { return this._HunterNetCore_Data != null; }
|
||||
set { if (value == (this._HunterNetCore_Data== null)) this._HunterNetCore_Data = value ? this.HunterNetCore_Data : (byte[])null; }
|
||||
}
|
||||
private bool ShouldSerializeHunterNetCore_Data() { return HunterNetCore_DataSpecified; }
|
||||
private void ResetHunterNetCore_Data() { HunterNetCore_DataSpecified = false; }
|
||||
|
||||
private global::ProtoBuf.IExtension extensionObject;
|
||||
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
|
||||
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
|
||||
}
|
||||
|
||||
}
|
@ -1,7 +0,0 @@
|
||||
@echo off
|
||||
cd..
|
||||
set "protopath=%cd%"
|
||||
cd protocol
|
||||
protoc --proto_path=./proto --cpp_out=out "./proto/KyCmdProtocol.proto"
|
||||
protoc --proto_path=./proto --cpp_out=out "./proto/KyMsgProtocol.proto"
|
||||
pause
|
@ -2,8 +2,7 @@
|
||||
|
||||
set "PROTOC_EXE=%cd%\protoc.exe"
|
||||
set "WORK_DIR=%cd%\proto"
|
||||
set "CS_OUT_PATH=%cd%\Target"
|
||||
::if not exist %CS_OUT_PATH% md %CS_OUT_PATH%
|
||||
set "CS_OUT_PATH=%cd%\out"
|
||||
|
||||
echo "==>>buildStart"
|
||||
for /f "delims=" %%i in ('dir /b proto "proto/*.proto"') do (
|
||||
@ -13,6 +12,6 @@ for /f "delims=" %%i in ('dir /b proto "proto/*.proto"') do (
|
||||
echo "==>>build finish"
|
||||
echo "==>>copy cs"
|
||||
|
||||
copy %cd%\Target\ ..\Protobuf\
|
||||
copy %CS_OUT_PATH% ..\Protobuf\
|
||||
|
||||
pause
|
702
ProtobufCore/out/ProtobufAuth.cs
Normal file
702
ProtobufCore/out/ProtobufAuth.cs
Normal file
@ -0,0 +1,702 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: protobuf_Auth.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace AxibugProtobuf {
|
||||
|
||||
/// <summary>Holder for reflection information generated from protobuf_Auth.proto</summary>
|
||||
public static partial class ProtobufAuthReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for protobuf_Auth.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static ProtobufAuthReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChNwcm90b2J1Zl9BdXRoLnByb3RvEg5BeGlidWdQcm90b2J1ZiKRAQoOUHJv",
|
||||
"dG9idWZfTG9naW4SLAoJbG9naW5UeXBlGAEgASgOMhkuQXhpYnVnUHJvdG9i",
|
||||
"dWYuTG9naW5UeXBlEi4KCmRldmljZVR5cGUYAiABKA4yGi5BeGlidWdQcm90",
|
||||
"b2J1Zi5EZXZpY2VUeXBlEg8KB0FjY291bnQYAyABKAkSEAoIUGFzc3dvcmQY",
|
||||
"BCABKAkifwoTUHJvdG9idWZfTG9naW5fUkVTUBINCgVUb2tlbhgBIAEoCRIV",
|
||||
"Cg1MYXN0TG9naW5EYXRlGAIgASgJEg8KB1JlZ0RhdGUYAyABKAkSMQoGU3Rh",
|
||||
"dHVzGAQgASgOMiEuQXhpYnVnUHJvdG9idWYuTG9naW5SZXN1bHRTdGF0dXMq",
|
||||
"KwoJQ29tbWFuZElEEg4KCkNNRF9ERUZBVUwQABIOCglDTURfTE9HSU4Q0Q8q",
|
||||
"KwoJRXJyb3JDb2RlEhAKDEVSUk9SX0RFRkFVTBAAEgwKCEVSUk9SX09LEAEq",
|
||||
"PgoJTG9naW5UeXBlEg8KC0Jhc2VEZWZhdWx0EAASDgoKSGFvWXVlQXV0aBAB",
|
||||
"EgcKA0JGMxADEgcKA0JGNBAEKksKCkRldmljZVR5cGUSFgoSRGV2aWNlVHlw",
|
||||
"ZV9EZWZhdWx0EAASBgoCUEMQARILCgdBbmRyb2lkEAISBwoDSU9TEAMSBwoD",
|
||||
"UFNWEAQqTgoRTG9naW5SZXN1bHRTdGF0dXMSIQodTG9naW5SZXN1bHRTdGF0",
|
||||
"dXNfQmFzZURlZmF1bHQQABIGCgJPSxABEg4KCkFjY291bnRFcnIQAkICSAFi",
|
||||
"BnByb3RvMw=="));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::AxibugProtobuf.CommandID), typeof(global::AxibugProtobuf.ErrorCode), typeof(global::AxibugProtobuf.LoginType), typeof(global::AxibugProtobuf.DeviceType), typeof(global::AxibugProtobuf.LoginResultStatus), }, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::AxibugProtobuf.Protobuf_Login), global::AxibugProtobuf.Protobuf_Login.Parser, new[]{ "LoginType", "DeviceType", "Account", "Password" }, null, null, null, null),
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::AxibugProtobuf.Protobuf_Login_RESP), global::AxibugProtobuf.Protobuf_Login_RESP.Parser, new[]{ "Token", "LastLoginDate", "RegDate", "Status" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Enums
|
||||
public enum CommandID {
|
||||
/// <summary>
|
||||
///缺省不使用
|
||||
/// </summary>
|
||||
[pbr::OriginalName("CMD_DEFAUL")] CmdDefaul = 0,
|
||||
/// <summary>
|
||||
///登录上行 | 下行 对应 Protobuf_Login | Protobuf_Login_RESP
|
||||
/// </summary>
|
||||
[pbr::OriginalName("CMD_LOGIN")] CmdLogin = 2001,
|
||||
}
|
||||
|
||||
public enum ErrorCode {
|
||||
/// <summary>
|
||||
///缺省不使用
|
||||
/// </summary>
|
||||
[pbr::OriginalName("ERROR_DEFAUL")] ErrorDefaul = 0,
|
||||
/// <summary>
|
||||
///成功
|
||||
/// </summary>
|
||||
[pbr::OriginalName("ERROR_OK")] ErrorOk = 1,
|
||||
}
|
||||
|
||||
public enum LoginType {
|
||||
/// <summary>
|
||||
///缺省不使用
|
||||
/// </summary>
|
||||
[pbr::OriginalName("BaseDefault")] BaseDefault = 0,
|
||||
[pbr::OriginalName("HaoYueAuth")] HaoYueAuth = 1,
|
||||
[pbr::OriginalName("BF3")] Bf3 = 3,
|
||||
[pbr::OriginalName("BF4")] Bf4 = 4,
|
||||
}
|
||||
|
||||
public enum DeviceType {
|
||||
/// <summary>
|
||||
///缺省不使用
|
||||
/// </summary>
|
||||
[pbr::OriginalName("DeviceType_Default")] Default = 0,
|
||||
[pbr::OriginalName("PC")] Pc = 1,
|
||||
[pbr::OriginalName("Android")] Android = 2,
|
||||
[pbr::OriginalName("IOS")] Ios = 3,
|
||||
[pbr::OriginalName("PSV")] Psv = 4,
|
||||
}
|
||||
|
||||
public enum LoginResultStatus {
|
||||
/// <summary>
|
||||
///缺省不使用
|
||||
/// </summary>
|
||||
[pbr::OriginalName("LoginResultStatus_BaseDefault")] BaseDefault = 0,
|
||||
[pbr::OriginalName("OK")] Ok = 1,
|
||||
[pbr::OriginalName("AccountErr")] AccountErr = 2,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Messages
|
||||
/// <summary>
|
||||
///登录数据上行
|
||||
/// </summary>
|
||||
public sealed partial class Protobuf_Login : pb::IMessage<Protobuf_Login>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<Protobuf_Login> _parser = new pb::MessageParser<Protobuf_Login>(() => new Protobuf_Login());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<Protobuf_Login> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::AxibugProtobuf.ProtobufAuthReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Protobuf_Login() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Protobuf_Login(Protobuf_Login other) : this() {
|
||||
loginType_ = other.loginType_;
|
||||
deviceType_ = other.deviceType_;
|
||||
account_ = other.account_;
|
||||
password_ = other.password_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Protobuf_Login Clone() {
|
||||
return new Protobuf_Login(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "loginType" field.</summary>
|
||||
public const int LoginTypeFieldNumber = 1;
|
||||
private global::AxibugProtobuf.LoginType loginType_ = global::AxibugProtobuf.LoginType.BaseDefault;
|
||||
/// <summary>
|
||||
///登录操作类型 [0]皓月通行证 [3] 皓月BF3 [4] 皓月BF4
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::AxibugProtobuf.LoginType LoginType {
|
||||
get { return loginType_; }
|
||||
set {
|
||||
loginType_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "deviceType" field.</summary>
|
||||
public const int DeviceTypeFieldNumber = 2;
|
||||
private global::AxibugProtobuf.DeviceType deviceType_ = global::AxibugProtobuf.DeviceType.Default;
|
||||
/// <summary>
|
||||
///设备类型 [0]PC [1]AndroidPad预留 [3]IPad预留
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::AxibugProtobuf.DeviceType DeviceType {
|
||||
get { return deviceType_; }
|
||||
set {
|
||||
deviceType_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "Account" field.</summary>
|
||||
public const int AccountFieldNumber = 3;
|
||||
private string account_ = "";
|
||||
/// <summary>
|
||||
///用户名
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string Account {
|
||||
get { return account_; }
|
||||
set {
|
||||
account_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "Password" field.</summary>
|
||||
public const int PasswordFieldNumber = 4;
|
||||
private string password_ = "";
|
||||
/// <summary>
|
||||
///密码
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string Password {
|
||||
get { return password_; }
|
||||
set {
|
||||
password_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as Protobuf_Login);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(Protobuf_Login other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (LoginType != other.LoginType) return false;
|
||||
if (DeviceType != other.DeviceType) return false;
|
||||
if (Account != other.Account) return false;
|
||||
if (Password != other.Password) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (LoginType != global::AxibugProtobuf.LoginType.BaseDefault) hash ^= LoginType.GetHashCode();
|
||||
if (DeviceType != global::AxibugProtobuf.DeviceType.Default) hash ^= DeviceType.GetHashCode();
|
||||
if (Account.Length != 0) hash ^= Account.GetHashCode();
|
||||
if (Password.Length != 0) hash ^= Password.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (LoginType != global::AxibugProtobuf.LoginType.BaseDefault) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteEnum((int) LoginType);
|
||||
}
|
||||
if (DeviceType != global::AxibugProtobuf.DeviceType.Default) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteEnum((int) DeviceType);
|
||||
}
|
||||
if (Account.Length != 0) {
|
||||
output.WriteRawTag(26);
|
||||
output.WriteString(Account);
|
||||
}
|
||||
if (Password.Length != 0) {
|
||||
output.WriteRawTag(34);
|
||||
output.WriteString(Password);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (LoginType != global::AxibugProtobuf.LoginType.BaseDefault) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteEnum((int) LoginType);
|
||||
}
|
||||
if (DeviceType != global::AxibugProtobuf.DeviceType.Default) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteEnum((int) DeviceType);
|
||||
}
|
||||
if (Account.Length != 0) {
|
||||
output.WriteRawTag(26);
|
||||
output.WriteString(Account);
|
||||
}
|
||||
if (Password.Length != 0) {
|
||||
output.WriteRawTag(34);
|
||||
output.WriteString(Password);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (LoginType != global::AxibugProtobuf.LoginType.BaseDefault) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) LoginType);
|
||||
}
|
||||
if (DeviceType != global::AxibugProtobuf.DeviceType.Default) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) DeviceType);
|
||||
}
|
||||
if (Account.Length != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeStringSize(Account);
|
||||
}
|
||||
if (Password.Length != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeStringSize(Password);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(Protobuf_Login other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.LoginType != global::AxibugProtobuf.LoginType.BaseDefault) {
|
||||
LoginType = other.LoginType;
|
||||
}
|
||||
if (other.DeviceType != global::AxibugProtobuf.DeviceType.Default) {
|
||||
DeviceType = other.DeviceType;
|
||||
}
|
||||
if (other.Account.Length != 0) {
|
||||
Account = other.Account;
|
||||
}
|
||||
if (other.Password.Length != 0) {
|
||||
Password = other.Password;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 8: {
|
||||
LoginType = (global::AxibugProtobuf.LoginType) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
DeviceType = (global::AxibugProtobuf.DeviceType) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
case 26: {
|
||||
Account = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 34: {
|
||||
Password = input.ReadString();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 8: {
|
||||
LoginType = (global::AxibugProtobuf.LoginType) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
DeviceType = (global::AxibugProtobuf.DeviceType) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
case 26: {
|
||||
Account = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 34: {
|
||||
Password = input.ReadString();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///登录数据下行
|
||||
/// </summary>
|
||||
public sealed partial class Protobuf_Login_RESP : pb::IMessage<Protobuf_Login_RESP>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<Protobuf_Login_RESP> _parser = new pb::MessageParser<Protobuf_Login_RESP>(() => new Protobuf_Login_RESP());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pb::MessageParser<Protobuf_Login_RESP> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::AxibugProtobuf.ProtobufAuthReflection.Descriptor.MessageTypes[1]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Protobuf_Login_RESP() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Protobuf_Login_RESP(Protobuf_Login_RESP other) : this() {
|
||||
token_ = other.token_;
|
||||
lastLoginDate_ = other.lastLoginDate_;
|
||||
regDate_ = other.regDate_;
|
||||
status_ = other.status_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public Protobuf_Login_RESP Clone() {
|
||||
return new Protobuf_Login_RESP(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "Token" field.</summary>
|
||||
public const int TokenFieldNumber = 1;
|
||||
private string token_ = "";
|
||||
/// <summary>
|
||||
///登录凭据 (本次登录之后,所有业务请求凭据,需要存储在内存中)
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string Token {
|
||||
get { return token_; }
|
||||
set {
|
||||
token_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "LastLoginDate" field.</summary>
|
||||
public const int LastLoginDateFieldNumber = 2;
|
||||
private string lastLoginDate_ = "";
|
||||
/// <summary>
|
||||
///上次登录时间(只用于呈现的字符串,若界面需求需要)
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string LastLoginDate {
|
||||
get { return lastLoginDate_; }
|
||||
set {
|
||||
lastLoginDate_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "RegDate" field.</summary>
|
||||
public const int RegDateFieldNumber = 3;
|
||||
private string regDate_ = "";
|
||||
/// <summary>
|
||||
///注册时间(只用于呈现的字符串,若界面需求需要)
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public string RegDate {
|
||||
get { return regDate_; }
|
||||
set {
|
||||
regDate_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "Status" field.</summary>
|
||||
public const int StatusFieldNumber = 4;
|
||||
private global::AxibugProtobuf.LoginResultStatus status_ = global::AxibugProtobuf.LoginResultStatus.BaseDefault;
|
||||
/// <summary>
|
||||
///账号状态 (预留) [1]正常[0]被禁封
|
||||
/// </summary>
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public global::AxibugProtobuf.LoginResultStatus Status {
|
||||
get { return status_; }
|
||||
set {
|
||||
status_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as Protobuf_Login_RESP);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public bool Equals(Protobuf_Login_RESP other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (Token != other.Token) return false;
|
||||
if (LastLoginDate != other.LastLoginDate) return false;
|
||||
if (RegDate != other.RegDate) return false;
|
||||
if (Status != other.Status) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Token.Length != 0) hash ^= Token.GetHashCode();
|
||||
if (LastLoginDate.Length != 0) hash ^= LastLoginDate.GetHashCode();
|
||||
if (RegDate.Length != 0) hash ^= RegDate.GetHashCode();
|
||||
if (Status != global::AxibugProtobuf.LoginResultStatus.BaseDefault) hash ^= Status.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (Token.Length != 0) {
|
||||
output.WriteRawTag(10);
|
||||
output.WriteString(Token);
|
||||
}
|
||||
if (LastLoginDate.Length != 0) {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteString(LastLoginDate);
|
||||
}
|
||||
if (RegDate.Length != 0) {
|
||||
output.WriteRawTag(26);
|
||||
output.WriteString(RegDate);
|
||||
}
|
||||
if (Status != global::AxibugProtobuf.LoginResultStatus.BaseDefault) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteEnum((int) Status);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (Token.Length != 0) {
|
||||
output.WriteRawTag(10);
|
||||
output.WriteString(Token);
|
||||
}
|
||||
if (LastLoginDate.Length != 0) {
|
||||
output.WriteRawTag(18);
|
||||
output.WriteString(LastLoginDate);
|
||||
}
|
||||
if (RegDate.Length != 0) {
|
||||
output.WriteRawTag(26);
|
||||
output.WriteString(RegDate);
|
||||
}
|
||||
if (Status != global::AxibugProtobuf.LoginResultStatus.BaseDefault) {
|
||||
output.WriteRawTag(32);
|
||||
output.WriteEnum((int) Status);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Token.Length != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeStringSize(Token);
|
||||
}
|
||||
if (LastLoginDate.Length != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeStringSize(LastLoginDate);
|
||||
}
|
||||
if (RegDate.Length != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeStringSize(RegDate);
|
||||
}
|
||||
if (Status != global::AxibugProtobuf.LoginResultStatus.BaseDefault) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) Status);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(Protobuf_Login_RESP other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.Token.Length != 0) {
|
||||
Token = other.Token;
|
||||
}
|
||||
if (other.LastLoginDate.Length != 0) {
|
||||
LastLoginDate = other.LastLoginDate;
|
||||
}
|
||||
if (other.RegDate.Length != 0) {
|
||||
RegDate = other.RegDate;
|
||||
}
|
||||
if (other.Status != global::AxibugProtobuf.LoginResultStatus.BaseDefault) {
|
||||
Status = other.Status;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 10: {
|
||||
Token = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 18: {
|
||||
LastLoginDate = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 26: {
|
||||
RegDate = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 32: {
|
||||
Status = (global::AxibugProtobuf.LoginResultStatus) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 10: {
|
||||
Token = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 18: {
|
||||
LastLoginDate = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 26: {
|
||||
RegDate = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 32: {
|
||||
Status = (global::AxibugProtobuf.LoginResultStatus) input.ReadEnum();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
@ -5,24 +5,27 @@ option optimize_for = SPEED;
|
||||
enum CommandID
|
||||
{
|
||||
CMD_DEFAUL = 0;//缺省不使用
|
||||
CMD_LOGIN = 2001; //登录 对应上行|下行 Protobuf_Login | Protobuf_Login_RESP
|
||||
|
||||
CMD_LOGIN = 2001; //登录上行 | 下行 对应 Protobuf_Login | Protobuf_Login_RESP
|
||||
}
|
||||
|
||||
enum ErrorCode
|
||||
{
|
||||
ERROR_DEFAUL = 0;//缺省
|
||||
ERROR_DEFAUL = 0;//缺省不使用
|
||||
ERROR_OK = 1; //成功
|
||||
}
|
||||
|
||||
enum LoginType
|
||||
{
|
||||
BaseDefault = 0;//缺省
|
||||
BaseDefault = 0;//缺省不使用
|
||||
HaoYueAuth = 1;
|
||||
BF3 = 3;
|
||||
BF4 = 4;
|
||||
}
|
||||
|
||||
enum DeviceType
|
||||
{
|
||||
Default = 0;//缺省
|
||||
DeviceType_Default = 0;//缺省不使用
|
||||
PC = 1;
|
||||
Android = 2;
|
||||
IOS = 3;
|
||||
@ -39,8 +42,8 @@ enum LoginResultStatus
|
||||
//登录数据上行
|
||||
message Protobuf_Login
|
||||
{
|
||||
LoginType loginType = 1;//登录操作类型
|
||||
DeviceType deviceType = 2;//设备类型
|
||||
LoginType loginType = 1;//登录操作类型 [0]皓月通行证 [3] 皓月BF3 [4] 皓月BF4
|
||||
DeviceType deviceType = 2;//设备类型 [0]PC [1]AndroidPad预留 [3]IPad预留
|
||||
string Account = 3;//用户名
|
||||
string Password = 4;//密码
|
||||
}
|
||||
|
@ -1,16 +0,0 @@
|
||||
syntax = "proto3";
|
||||
package HunterProtobufCore;
|
||||
option optimize_for = SPEED;
|
||||
|
||||
//上行
|
||||
message HunterNet_C2S {
|
||||
int32 HunterNetCore_CmdID = 1;
|
||||
bytes HunterNetCore_Data = 2;
|
||||
}
|
||||
|
||||
//下行
|
||||
message HunterNet_S2C {
|
||||
int32 HunterNetCore_CmdID = 1;
|
||||
int32 HunterNetCore_ERRORCode = 2;
|
||||
bytes HunterNetCore_Data = 3;
|
||||
}
|
Binary file not shown.
Binary file not shown.
@ -1,2 +0,0 @@
|
||||
call protoc proto\protobuf_HunterNetCore.proto --descriptor_set_out=Desc\protobuf_HunterNetCore.protodesc
|
||||
pause
|
@ -1,3 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<configuration>
|
||||
<startup><supportedRuntime version="v2.0.50727"/></startup></configuration>
|
@ -1,2 +0,0 @@
|
||||
call Protogen-Tools\protogen -i:Desc\protobuf_HunterNetCore.protodesc -o:Target\protobuf_HunterNetCore.cs -p:detectMissing
|
||||
|
@ -1,23 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Server")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Server")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Server")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// 由 MSBuild WriteCodeFragment 类生成。
|
||||
|
@ -1 +0,0 @@
|
||||
24a19a338571d06fa5670dc4c5fa352c3d517153
|
@ -1,11 +0,0 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net7.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = Server
|
||||
build_property.ProjectDir = F:\Sin365\HaoYueTunnel\Server\
|
Binary file not shown.
@ -1,32 +1,21 @@
|
||||
using ProtoBuf;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Google.Protobuf;
|
||||
|
||||
namespace ServerCore
|
||||
{
|
||||
public static class NetBase
|
||||
{
|
||||
//序列化
|
||||
public static byte[] Serizlize<T>(T MsgObj)
|
||||
|
||||
public static byte[] Serizlize(IMessage msg)
|
||||
{
|
||||
using (MemoryStream ms = new MemoryStream())
|
||||
{
|
||||
Serializer.Serialize<T>(ms, MsgObj);
|
||||
byte[] data1 = ms.ToArray();
|
||||
return data1;
|
||||
}
|
||||
return msg.ToByteArray();
|
||||
}
|
||||
//反序列化
|
||||
public static T DeSerizlize<T>(byte[] MsgObj)
|
||||
|
||||
public static T DeSerizlize<T>(byte[] bytes)
|
||||
{
|
||||
using (MemoryStream ms = new MemoryStream(MsgObj))
|
||||
{
|
||||
var ds_obj = Serializer.Deserialize<T>(ms);
|
||||
return ds_obj;
|
||||
}
|
||||
var msgType = typeof(T);
|
||||
object msg = Activator.CreateInstance(msgType);
|
||||
((IMessage)msg).MergeFrom(bytes);
|
||||
return (T)msg;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -11,12 +11,12 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="Google.Protobuf">
|
||||
<HintPath>..\NetLib\Google.Protobuf.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="HaoYueNet.ServerNetwork">
|
||||
<HintPath>..\NetLib\HaoYueNet.ServerNetwork.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="protobuf-net">
|
||||
<HintPath>..\NetLib\protobuf-net.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
@ -1,23 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("ServerCore")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("ServerCore")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("ServerCore")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// 由 MSBuild WriteCodeFragment 类生成。
|
||||
|
@ -1 +0,0 @@
|
||||
8595c8bfdc306793f65340af2478834a8a61dc33
|
@ -1,11 +0,0 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net7.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = ServerCore
|
||||
build_property.ProjectDir = F:\Sin365\HaoYueTunnel\ServerCore\
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user