-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathReplicate.dbl
More file actions
252 lines (219 loc) · 8.63 KB
/
Copy pathReplicate.dbl
File metadata and controls
252 lines (219 loc) · 8.63 KB
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
;*****************************************************************************
;
; File: Replicate.dbl
;
; Description: Adds new instructions to the replication servers instruction file.
;
; Author: Steve Ives, Synergex Professional Services Group
;
;*****************************************************************************
;
; Copyright (c) 2009, Synergex International, Inc.
; All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; * Redistributions of source code must retain the above copyright notice,
; this list of conditions and the following disclaimer.
;
; * Redistributions in binary form must reproduce the above copyright notice,
; this list of conditions and the following disclaimer in the documentation
; and/or other materials provided with the distribution.
;
; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
; POSSIBILITY OF SUCH DAMAGE.
;
;*****************************************************************************
import ReplicationLibrary
.include "REPLICATION_INSTRUCTION" repository, enum, end
subroutine Replicate
required in aInstanceName, string
required in aAction, REPLICATION_INSTRUCTION
optional in aTableName, a
optional in aRecord, a
.ifdef D_VMS
.include "REPLICATION_VMS" repository, stack record="instruction", end
.else
.include "REPLICATION" repository, stack record="instruction", end
.endc
static record
instances, @StringDictionary
endrecord
stack record
instanceName, string
instanceObj, @object
instanceData, @InstanceInfo
endrecord
proc
instanceName = aInstanceName
;-----------------------------------------------------------------------------------------------------------------------
; Make sure we have the queue file open for the current instance
;;Do we need to create the StringDictionary?
if (instances == ^null)
begin
instances = new StringDictionary()
end
;Are we already tracking this instance?
if (instances.TryGet(instanceName,instanceObj)) then
begin
;Yes, record the additional channel associated with the instance.
instanceData = (@InstanceInfo)instanceObj
instanceData.ReferenceCount += 1
end
else
begin
;Not currently tracking this instance
data instanceQueueFile, string, "REPLICATOR_DATA:REPLICATION_" + instanceName + ".ISM"
data instanceChannel, int
data errorMessage, string
;Open the instance queue file
if (!%OpenOrCreateQueueFile(instanceQueueFile,instanceChannel,errorMessage))
begin
throw new ApplicationException("Failed to open or create replication queue file " + instanceQueueFile + ". Error was " + errorMessage)
end
;Create and track the instance data
instanceData = new InstanceInfo() { QueueFile=instanceQueueFile, Channel=instanceChannel, ReferenceCount=1 }
instances.Add(instanceName,instanceData)
end
;;-----------------------------------------------------------------------------------------------------------------------
using aAction select
(REPLICATION_INSTRUCTION.OPEN_FILE),
begin
;Here we used to have the code that is now above, to open and track the instance queue file,
;but there are some scenarios (in replicator menu for example) where other instructions can
;be written BEFORE the OPEN_FILE operation (e.g. STOP commands).
end
(REPLICATION_INSTRUCTION.CLOSE_FILE),
begin
;Get the instance data
instanceData = (@InstanceInfo)(instances.Get(instanceName))
;Record one less channel associated with the instance.
instanceData.ReferenceCount -= 1
;If there are no more channels associated with the instance, remove the instance data.
if (instanceData.ReferenceCount == 0)
begin
;Close the instances queue file
if (instanceData.Channel && %chopen(instanceData.Channel))
begin
close instanceData.Channel
instanceData.Channel = 0
end
instances.Remove(instanceName)
instanceData = ^null
end
;If we are no longer tracking any instances, remove the StringDictionary
if (instances.Items().Length == 0)
begin
instances = ^null
end
end
(REPLICATION_INSTRUCTION.DELETE_FIRST_INSTRUCTION),
begin
;Get the instance data
instanceData = (@InstanceInfo)(instances.Get(instanceName))
;Delete first pending instruction only
try
begin
read(instanceData.Channel,instruction,^FIRST)
delete(instanceData.Channel)
end
catch (ex, @EndOfFileException)
begin
nop
end
catch (ex, @Exception)
begin
sleep 0.0001
end
endtry
end
(REPLICATION_INSTRUCTION.DELETE_ALL_INSTRUCTIONS),
begin
;Get the instance data
instanceData = (@InstanceInfo)(instances.Get(instanceName))
;Delete pending instructions
try
begin
data sts, d1
close instanceData.Channel
;This seems really strange, but it is a work-around for a bug in ISCLR in All
;versions prior to 10.3.3e that would cause any subsequent OPEN(CHN=0 to fail
;following a failed XCALL ISCLR until a successful XCALL ISCLR had taken place.
;The workaround is to open the file for exclusive access, and if that fails,
;don't try to do the XCALL ISCLR
open(instanceData.Channel=0,"U:I",instanceData.QueueFile,SHARE:Q_EXCL_RW)
close instanceData.Channel
xcall isclr(instanceData.QueueFile,sts)
open(instanceData.Channel=0,"U:I",instanceData.QueueFile)
end
catch (ex, @FileInUseException)
begin
open(instanceData.Channel=0,"U:I",instanceData.QueueFile)
repeat
begin
try
begin
read(instanceData.Channel,instruction,^FIRST)
delete(instanceData.Channel)
end
catch (ex1, @EndOfFileException)
begin
exitloop
end
catch (ex1, @Exception)
begin
sleep 0.01
end
endtry
end
end
endtry
end
(),
begin
;Get the instance data
instanceData = (@InstanceInfo)(instances.Get(instanceName))
;Configure the new instruction
init instruction
instruction.action = (i)aAction
if (^passed(aTableName) && aTableName)
begin
instruction.structure_name = aTableName
end
if (^passed(aRecord) && aRecord)
begin
instruction.record = aRecord
end
;And add it to the queue
.ifdef OS_VMS
;On VMS we don't have auto sequence keys so we need to allocate a %DATETIME value as the
;transaction ID and be prepared to retry if we get a duplicate key error.
instruction.transaction_id = %datetime
repeat
begin
store(instanceData.Channel,instruction) [$ERR_NODUPS=dupkey]
if (false)
begin
dupkey, instruction.transaction_id = ^a(^d(instruction.transaction_id)+1)
nextloop
end
exitloop
end
.else
;On other platforms we can just store the transaction
store(instanceData.Channel,instruction)
.endc
end
endusing
xreturn
endsubroutine