summaryrefslogtreecommitdiff
path: root/qpid/dotnet/Qpid.Common/Framing/BasicContentHeaderProperties.cs
blob: 47db7b08873cf3607dac8c3634832a4326c54258 (plain)
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
/*
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 *
 */
using System;
using log4net;
using Apache.Qpid.Buffer;
using Apache.Qpid.Messaging;

namespace Apache.Qpid.Framing
{
   public class BasicContentHeaderProperties : IContentHeaderProperties
   {
      private static readonly ILog _log = LogManager.GetLogger(typeof(BasicContentHeaderProperties));

      private string _contentType;
      private string _encoding;
      private FieldTable _headers;
      private byte _deliveryMode;
      private byte _priority;
      private string _correlationId;
      private long _expiration;
      private string _replyTo;
      private string _messageId;
      private ulong _timestamp;
      private string _type;
      private string _userId;
      private string _appId;
      private string _clusterId;


      #region Properties
      //
      // Properties
      //

      /// <summary>
      /// The MIME Content Type
      /// </summary>
      public string ContentType
      {
         get { return _contentType; }
         set { _contentType = value; }
      }

      /// <summary>
      /// The MIME Content Encoding
      /// </summary>
      public string Encoding
      {
         get { return _encoding; }
         set { _encoding = value; }
      }

      /// <summary>
      /// Message headers
      /// </summary>
      public FieldTable Headers
      {
         get { return _headers; }
         set { _headers = value; }
      }

      /// <summary>
      /// Non-persistent (1) or persistent (2)
      /// </summary>
      public byte DeliveryMode
      {
         get { return _deliveryMode; }
         set { _deliveryMode = value; }
      }

      /// <summary>
      /// The message priority, 0 to 9
      /// </summary>
      public byte Priority
      {
         get { return _priority; }
         set { _priority = value; }
      }

      /// <summary>
      /// The application correlation identifier
      /// </summary>
      public string CorrelationId
      {
         get { return _correlationId; }
         set { _correlationId = value; }
      }

      /// <summary>
      /// Message expiration specification
      /// </summary>
      // TODO: Should be string according to spec
      public long Expiration
      {
         get { return _expiration; }
         set { _expiration = value; }
      }

      /// <summary>
      /// The destination to reply to
      /// </summary>
      public string ReplyTo
      {
         get { return _replyTo; }
         set { _replyTo = value; }
      }

      /// <summary>
      /// The application message identifier
      /// </summary>
      public string MessageId
      {
         get { return _messageId; }
         set { _messageId = value; }
      }

      /// <summary>
      /// The message timestamp
      /// </summary>
      public ulong Timestamp
      {
         get { return _timestamp; }
         set { _timestamp = value; }
      }

      /// <summary>
      /// The message type name
      /// </summary>
      public string Type
      {
         get { return _type; }
         set { _type = value; }
      }

      /// <summary>
      /// The creating user id
      /// </summary>
      public string UserId
      {
         get { return _userId; }
         set { _userId = value; }
      }

      /// <summary>
      /// The creating application id
      /// </summary>
      public string AppId
      {
         get { return _appId; }
         set { _appId = value; }
      }

      /// <summary>
      /// Intra-cluster routing identifier
      /// </summary>
      public string ClusterId
      {
         get { return _clusterId; }
         set { _clusterId = value; }
      }

      #endregion // Properties


      public BasicContentHeaderProperties()
      {
      }

      public uint PropertyListSize
      {
         get
         {
            return (uint)(EncodingUtils.EncodedShortStringLength(ContentType) +
                   EncodingUtils.EncodedShortStringLength(Encoding) +
                   EncodingUtils.EncodedFieldTableLength(Headers) +
                   1 + 1 +
                   EncodingUtils.EncodedShortStringLength(CorrelationId) +
                   EncodingUtils.EncodedShortStringLength(ReplyTo) +
                   EncodingUtils.EncodedShortStringLength(String.Format("{0:D}", Expiration)) +
                   EncodingUtils.EncodedShortStringLength(MessageId) +
                   8 +
                   EncodingUtils.EncodedShortStringLength(Type) +
                   EncodingUtils.EncodedShortStringLength(UserId) +
                   EncodingUtils.EncodedShortStringLength(AppId) +
                   EncodingUtils.EncodedShortStringLength(ClusterId));

         }
      }

      public ushort PropertyFlags
      {
         get
         {
            int value = 0;

            // for now we just blast in all properties
            for ( int i = 0; i < 14; i++ )
            {
               value += (1 << (15 - i));
            }
            return (ushort)value;
         }
      }

      public void WritePropertyListPayload(ByteBuffer buffer)
      {
         EncodingUtils.WriteShortStringBytes(buffer, ContentType);
         EncodingUtils.WriteShortStringBytes(buffer, Encoding);
         EncodingUtils.WriteFieldTableBytes(buffer, Headers);
         buffer.Put(DeliveryMode);
         buffer.Put(Priority);
         EncodingUtils.WriteShortStringBytes(buffer, CorrelationId);
         EncodingUtils.WriteShortStringBytes(buffer, ReplyTo);
         EncodingUtils.WriteShortStringBytes(buffer, String.Format("{0:D}", Expiration));
         EncodingUtils.WriteShortStringBytes(buffer, MessageId);
         buffer.Put(Timestamp);
         EncodingUtils.WriteShortStringBytes(buffer, Type);
         EncodingUtils.WriteShortStringBytes(buffer, UserId);
         EncodingUtils.WriteShortStringBytes(buffer, AppId);
         EncodingUtils.WriteShortStringBytes(buffer, ClusterId);
      }

      public void PopulatePropertiesFromBuffer(ByteBuffer buffer, ushort propertyFlags)
      {
         _log.Debug("Property flags: " + propertyFlags);
         if ( (propertyFlags & (1 << 15)) > 0 )
            ContentType = EncodingUtils.ReadShortString(buffer);
         if ( (propertyFlags & (1 << 14)) > 0 )
            Encoding = EncodingUtils.ReadShortString(buffer);
         if ( (propertyFlags & (1 << 13)) > 0 )
            Headers = EncodingUtils.ReadFieldTable(buffer);
         if ( (propertyFlags & (1 << 12)) > 0 )
            DeliveryMode = buffer.GetByte();
         if ( (propertyFlags & (1 << 11)) > 0 )
            Priority = buffer.GetByte();
         if ( (propertyFlags & (1 << 10)) > 0 )
            CorrelationId = EncodingUtils.ReadShortString(buffer);
         if ( (propertyFlags & (1 << 9)) > 0 )
            ReplyTo = EncodingUtils.ReadShortString(buffer);
         if ( (propertyFlags & (1 << 8)) > 0 )
            Expiration = EncodingUtils.ReadLongAsShortString(buffer);
         if ( (propertyFlags & (1 << 7)) > 0 )
            MessageId = EncodingUtils.ReadShortString(buffer);
         if ( (propertyFlags & (1 << 6)) > 0 )
            Timestamp = buffer.GetUInt64();
         if ( (propertyFlags & (1 << 5)) > 0 )
            Type = EncodingUtils.ReadShortString(buffer);
         if ( (propertyFlags & (1 << 4)) > 0 )
            UserId = EncodingUtils.ReadShortString(buffer);
         if ( (propertyFlags & (1 << 3)) > 0 )
            AppId = EncodingUtils.ReadShortString(buffer);
         if ( (propertyFlags & (1 << 2)) > 0 )
            ClusterId = EncodingUtils.ReadShortString(buffer);
      }

      public void SetDeliveryMode(DeliveryMode deliveryMode)
      {
         if ( deliveryMode == Messaging.DeliveryMode.NonPersistent )
         {
            DeliveryMode = 1;
         } else
         {
            DeliveryMode = 2;
         }
      }

      public override string ToString()
      {
         return "Properties: " + ContentType + " " + Encoding + " " + Timestamp + " " + Type;
      }
   }
}