-
Notifications
You must be signed in to change notification settings - Fork 0
/
Route4MeManagerUnit.pas
232 lines (197 loc) · 5.9 KB
/
Route4MeManagerUnit.pas
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
unit Route4MeManagerUnit;
interface
uses
Classes, SysUtils,
OptimizationParametersUnit, DataObjectUnit, IRoute4MeManagerUnit,
AddressBookContactUnit, AddressBookContactActionsUnit,
OptimizationActionsUnit, RouteActionsUnit, IConnectionUnit, UserActionsUnit,
AddressNoteActionsUnit, AddressActionsUnit, AvoidanceZoneUnit,
AvoidanceZoneActionsUnit, OrderActionsUnit, ActivityActionsUnit,
TrackingActionsUnit, GeocodingActionsUnit, TerritoryActionsUnit,
VehicleActionsUnit, FileUploadingActionsUnit, TelematicActionsUnit;
type
TRoute4MeManager = class(TInterfacedObject, IRoute4MeManager)
private
FConnection: IConnection;
FAddressBookContact: TAddressBookContactActions;
FOptimization: TOptimizationActions;
FRoute: TRouteActions;
FUser: TUserActions;
FAddressNote: TAddressNoteActions;
FAddress: TAddressActions;
FAvoidanceZone: TAvoidanceZoneActions;
FGeocoding: TGeocodingActions;
FOrder: TOrderActions;
FActivity: TActivityActions;
FTracking: TTrackingActions;
FTerritory: TTerritoryActions;
FVehicle: TVehicleActions;
FUploading: TFileUploadingActions;
FTelematics: TTelematicActions;
public
constructor Create(Connection: IConnection);
destructor Destroy; override;
procedure Clear;
procedure SetConnectionProxy(Host: String; Port: integer; Username, Password: String);
function Optimization: TOptimizationActions;
function Route: TRouteActions;
function AddressBookContact: TAddressBookContactActions;
function User: TUserActions;
function AddressNote: TAddressNoteActions;
function Address: TAddressActions;
function AvoidanceZone: TAvoidanceZoneActions;
function Geocoding: TGeocodingActions;
function Order: TOrderActions;
function ActivityFeed: TActivityActions;
function Tracking: TTrackingActions;
function Territory: TTerritoryActions;
function Vehicle: TVehicleActions;
function Uploading: TFileUploadingActions;
function Telematics: TTelematicActions;
function Connection: IConnection;
end;
implementation
{ TRoute4MeManager }
uses EnumsUnit;
function TRoute4MeManager.AddressNote: TAddressNoteActions;
begin
if (FAddressNote = nil) then
FAddressNote := TAddressNoteActions.Create(FConnection, Self);
Result := FAddressNote;
end;
function TRoute4MeManager.AvoidanceZone: TAvoidanceZoneActions;
begin
if (FAvoidanceZone = nil) then
FAvoidanceZone := TAvoidanceZoneActions.Create(FConnection);
Result := FAvoidanceZone;
end;
procedure TRoute4MeManager.Clear;
begin
FreeAndNil(FTelematics);
FreeAndNil(FUploading);
FreeAndNil(FVehicle);
FreeAndNil(FTerritory);
FreeAndNil(FTracking);
FreeAndNil(FActivity);
FreeAndNil(FOrder);
FreeAndNil(FAvoidanceZone);
FreeAndNil(FGeocoding);
FreeAndNil(FAddress);
FreeAndNil(FAddressNote);
FreeAndNil(FUser);
FreeAndNil(FRoute);
FreeAndNil(FAddressBookContact);
FreeAndNil(FOptimization);
FConnection := nil;
end;
function TRoute4MeManager.Connection: IConnection;
begin
Result := FConnection;
end;
constructor TRoute4MeManager.Create(Connection: IConnection);
begin
FConnection := Connection;
FAddressBookContact := nil;
FOptimization := nil;
FRoute := nil;
FUser := nil;
FAddressNote := nil;
FAddress := nil;
FAvoidanceZone := nil;
FGeocoding := nil;
FOrder := nil;
FActivity := nil;
FTracking := nil;
FTerritory := nil;
FVehicle := nil;
FUploading := nil;
FTelematics := nil;
end;
destructor TRoute4MeManager.Destroy;
begin
Clear;
inherited;
end;
function TRoute4MeManager.Geocoding: TGeocodingActions;
begin
if (FGeocoding = nil) then
FGeocoding := TGeocodingActions.Create(FConnection);
Result := FGeocoding;
end;
function TRoute4MeManager.Optimization: TOptimizationActions;
begin
if (FOptimization = nil) then
FOptimization := TOptimizationActions.Create(FConnection);
Result := FOptimization;
end;
function TRoute4MeManager.Order: TOrderActions;
begin
if (FOrder = nil) then
FOrder := TOrderActions.Create(FConnection);
Result := FOrder;
end;
function TRoute4MeManager.Route: TRouteActions;
begin
if (FRoute = nil) then
FRoute := TRouteActions.Create(FConnection);
Result := FRoute;
end;
procedure TRoute4MeManager.SetConnectionProxy(Host: String; Port: integer; Username, Password: String);
begin
FConnection.SetProxy(Host, Port, Username, Password);
end;
function TRoute4MeManager.Telematics: TTelematicActions;
begin
if (FTelematics = nil) then
FTelematics := TTelematicActions.Create(FConnection);
Result := FTelematics;
end;
function TRoute4MeManager.Territory: TTerritoryActions;
begin
if (FTerritory = nil) then
FTerritory := TTerritoryActions.Create(FConnection);
Result := FTerritory;
end;
function TRoute4MeManager.Tracking: TTrackingActions;
begin
if (FTracking = nil) then
FTracking := TTrackingActions.Create(FConnection);
Result := FTracking;
end;
function TRoute4MeManager.Uploading: TFileUploadingActions;
begin
if (FUploading = nil) then
FUploading := TFileUploadingActions.Create(FConnection);
Result := FUploading;
end;
function TRoute4MeManager.User: TUserActions;
begin
if (FUser = nil) then
FUser := TUserActions.Create(FConnection);
Result := FUser;
end;
function TRoute4MeManager.Vehicle: TVehicleActions;
begin
if (FVehicle = nil) then
FVehicle := TVehicleActions.Create(FConnection);
Result := FVehicle;
end;
function TRoute4MeManager.ActivityFeed: TActivityActions;
begin
if (FActivity = nil) then
FActivity := TActivityActions.Create(FConnection);
Result := FActivity;
end;
function TRoute4MeManager.Address: TAddressActions;
begin
if (FAddress = nil) then
FAddress := TAddressActions.Create(FConnection);
Result := FAddress;
end;
function TRoute4MeManager.AddressBookContact: TAddressBookContactActions;
begin
if (FAddressBookContact = nil) then
FAddressBookContact := TAddressBookContactActions.Create(FConnection);
Result := FAddressBookContact;
end;
end.