protobuf(fpc)

protobuf(fpc)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
//cxg 2021-8-11 protobuf
unit Unit1;
 
{$mode objfpc}{$H+}
 
interface
 
uses
  protobuf_fpc, protobuf_fpc_types,
  Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls;
 
type
  { TPeople }
  //message People {
  //  required Int32 Code = 1;
  //  required string FirstName = 2;
  //  optional string LastName = 3;
  //}
  TPeople = class(TSerializationObject) //message People
  private
    FCode: Int32;
    FFirstName: string;
    FLastName: string;
  protected
    procedure InternalRegisterProperty; override;
    procedure InternalInit; override;
  public
  published
    property Code:Int32 read FCode write FCode; //1;
    property FirstName:string read FFirstName write FFirstName;//2;
    property LastName:string read FLastName write FLastName;//3;
  end;
 
  TPeoples = specialize GSerializationObjectList<TPeople>;
 
  { TPeopleArr }
 
  TPeopleArr = class(TSerializationObject)
  private
    FPeopleArr: TPeoples;
  protected
    procedure InternalRegisterProperty; override;
    procedure InternalInit; override;
  published
    property PeopleArr: TPeoples read FPeopleArr write FPeopleArr;
  end;
 
type
 
  { TForm1 }
 
  TForm1 = class(TForm)
    Button1: TButton;
    Button2: TButton;
    Memo1: TMemo;
    procedure Button1Click(Sender: TObject);
    procedure Button2Click(Sender: TObject);
  private
 
  public
 
  end;
 
var
  Form1: TForm1;
 
implementation
 
{$R *.lfm}
 
{ TPeopleArr }
 
procedure TPeopleArr.InternalRegisterProperty;
begin
  inherited InternalRegisterProperty;
  RegisterProp('PeopleArr', 1);
end;
 
procedure TPeopleArr.InternalInit;
begin
  inherited InternalInit;
  FPeopleArr := TPeoples.create;
end;
 
{ TForm1 }
 
procedure TForm1.Button1Click(Sender: TObject);
var P, p2: TPeople;
  b: tbytesstream;
begin
  p:=TPeople.Create;
  p.Code:=1;
  p.FirstName:='第一名称';
  p.LastName:='第二名称';
  b := tbytesstream.Create;
  p.SaveToStream(b);
  p.free;
 
  p2 := TPeople.Create;
  p2.LoadFromStream(b);
  b.free;
  memo1.Lines.Add(p2.Code.tostring);
  memo1.Lines.Add(p2.FirstName);
  memo1.Lines.Add(p2.LastName);
  p2.free;
end;
 
procedure TForm1.Button2Click(Sender: TObject);
var
  arr, arr2: tpeoplearr;
  p, p2: TPeople;
  b: tbytesstream;
begin
  arr := tpeoplearr.Create;
  p := arr.PeopleArr.AddItem;
  p.Code:=1;
  p.FirstName:='第一名称';
  p.LastName:='第二名称';
  p := arr.PeopleArr.AddItem;
  p.Code:=2;
  p.FirstName:='fname2';
  p.LastName:='lname2';
  b := tbytesstream.Create;
  arr.SaveToStream(b);
  arr.Free;
 
  arr2 := tpeoplearr.Create;
  arr2.LoadFromStream(b);
  b.free;
  for p2 in arr2.PeopleArr do
  begin
    memo1.Lines.Add(p2.Code.tostring);
    memo1.Lines.Add(p2.FirstName);
    memo1.Lines.Add(p2.LastName);
  end;
  arr2.free;
end;
 
{ TPeople }
 
procedure TPeople.InternalRegisterProperty;
begin
  inherited InternalRegisterProperty;
  RegisterProp('Code', 1);
  RegisterProp('FirstName', 2);
  RegisterProp('LastName', 3);
end;
 
procedure TPeople.InternalInit;
begin
  inherited InternalInit;
end;
 
end.

  

posted @   delphi中间件  阅读(144)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· 单线程的Redis速度为什么快?
历史上的今天:
2020-08-11 关于olevariant数据序列的续说
2020-08-11 mormot对windows websocket的封装
2020-08-11 mormot对http.sys的封装
2017-08-11 怎样设计REST中间件---中间件JSON对数据库数据的组织
2016-08-11 为方便二层升三层新增的远程方法QuerySql6()
2014-08-11 中间件集群的协议和算法的类语言描述
点击右上角即可分享
微信分享提示