~ubuntu-branches/ubuntu/oneiric/weave/oneiric

« back to all changes in this revision

Viewing changes to services/sync/modules/base_records/collection.js

  • Committer: Bazaar Package Importer
  • Author(s): Micah Gersten
  • Date: 2010-08-11 00:35:15 UTC
  • mfrom: (3.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100811003515-o3jbh826bnd1syjv
Tags: 1.4.3-1ubuntu1
* Add -fshort-wchar to CXXFLAGS to fix FTBFS in Ubuntu
  - update debian/rules 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ***** BEGIN LICENSE BLOCK *****
 
2
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
 
3
 *
 
4
 * The contents of this file are subject to the Mozilla Public License Version
 
5
 * 1.1 (the "License"); you may not use this file except in compliance with
 
6
 * the License. You may obtain a copy of the License at
 
7
 * http://www.mozilla.org/MPL/
 
8
 *
 
9
 * Software distributed under the License is distributed on an "AS IS" basis,
 
10
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
11
 * for the specific language governing rights and limitations under the
 
12
 * License.
 
13
 *
 
14
 * The Original Code is Weave.
 
15
 *
 
16
 * The Initial Developer of the Original Code is Mozilla.
 
17
 * Portions created by the Initial Developer are Copyright (C) 2008
 
18
 * the Initial Developer. All Rights Reserved.
 
19
 *
 
20
 * Contributor(s):
 
21
 *  Dan Mills <thunder@mozilla.com>
 
22
 *
 
23
 * Alternatively, the contents of this file may be used under the terms of
 
24
 * either the GNU General Public License Version 2 or later (the "GPL"), or
 
25
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
26
 * in which case the provisions of the GPL or the LGPL are applicable instead
 
27
 * of those above. If you wish to allow use of your version of this file only
 
28
 * under the terms of either the GPL or the LGPL, and not to allow others to
 
29
 * use your version of this file under the terms of the MPL, indicate your
 
30
 * decision by deleting the provisions above and replace them with the notice
 
31
 * and other provisions required by the GPL or the LGPL. If you do not delete
 
32
 * the provisions above, a recipient may use your version of this file under
 
33
 * the terms of any one of the MPL, the GPL or the LGPL.
 
34
 *
 
35
 * ***** END LICENSE BLOCK ***** */
 
36
 
 
37
const EXPORTED_SYMBOLS = ['Collection'];
 
38
 
 
39
const Cc = Components.classes;
 
40
const Ci = Components.interfaces;
 
41
const Cr = Components.results;
 
42
const Cu = Components.utils;
 
43
 
 
44
Cu.import("resource://services-sync/resource.js");
 
45
Cu.import("resource://services-sync/util.js");
 
46
 
 
47
function Collection(uri, recordObj) {
 
48
  Resource.call(this, uri);
 
49
  this._recordObj = recordObj;
 
50
 
 
51
  this._full = false;
 
52
  this._ids = null;
 
53
  this._limit = 0;
 
54
  this._older = 0;
 
55
  this._newer = 0;
 
56
  this._data = [];
 
57
}
 
58
Collection.prototype = {
 
59
  __proto__: Resource.prototype,
 
60
  _logName: "Collection",
 
61
 
 
62
  _rebuildURL: function Coll__rebuildURL() {
 
63
    // XXX should consider what happens if it's not a URL...
 
64
    this.uri.QueryInterface(Ci.nsIURL);
 
65
 
 
66
    let args = [];
 
67
    if (this.older)
 
68
      args.push('older=' + this.older);
 
69
    else if (this.newer) {
 
70
      args.push('newer=' + this.newer);
 
71
    }
 
72
    if (this.full)
 
73
      args.push('full=1');
 
74
    if (this.sort)
 
75
      args.push('sort=' + this.sort);
 
76
    if (this.ids != null)
 
77
      args.push("ids=" + this.ids);
 
78
    if (this.limit > 0 && this.limit != Infinity)
 
79
      args.push("limit=" + this.limit);
 
80
 
 
81
    this.uri.query = (args.length > 0)? '?' + args.join('&') : '';
 
82
  },
 
83
 
 
84
  // get full items
 
85
  get full() { return this._full; },
 
86
  set full(value) {
 
87
    this._full = value;
 
88
    this._rebuildURL();
 
89
  },
 
90
 
 
91
  // Apply the action to a certain set of ids
 
92
  get ids() this._ids,
 
93
  set ids(value) {
 
94
    this._ids = value;
 
95
    this._rebuildURL();
 
96
  },
 
97
 
 
98
  // Limit how many records to get
 
99
  get limit() this._limit,
 
100
  set limit(value) {
 
101
    this._limit = value;
 
102
    this._rebuildURL();
 
103
  },
 
104
 
 
105
  // get only items modified before some date
 
106
  get older() { return this._older; },
 
107
  set older(value) {
 
108
    this._older = value;
 
109
    this._rebuildURL();
 
110
  },
 
111
 
 
112
  // get only items modified since some date
 
113
  get newer() { return this._newer; },
 
114
  set newer(value) {
 
115
    this._newer = value;
 
116
    this._rebuildURL();
 
117
  },
 
118
 
 
119
  // get items sorted by some criteria. valid values:
 
120
  // oldest (oldest first)
 
121
  // newest (newest first)
 
122
  // index
 
123
  get sort() { return this._sort; },
 
124
  set sort(value) {
 
125
    this._sort = value;
 
126
    this._rebuildURL();
 
127
  },
 
128
 
 
129
  pushData: function Coll_pushData(data) {
 
130
    this._data.push(data);
 
131
  },
 
132
 
 
133
  clearRecords: function Coll_clearRecords() {
 
134
    this._data = [];
 
135
  },
 
136
 
 
137
  set recordHandler(onRecord) {
 
138
    // Save this because onProgress is called with this as the ChannelListener
 
139
    let coll = this;
 
140
 
 
141
    // Switch to newline separated records for incremental parsing
 
142
    coll.setHeader("Accept", "application/newlines");
 
143
 
 
144
    this._onProgress = function() {
 
145
      let newline;
 
146
      while ((newline = this._data.indexOf("\n")) > 0) {
 
147
        // Split the json record from the rest of the data
 
148
        let json = this._data.slice(0, newline);
 
149
        this._data = this._data.slice(newline + 1);
 
150
 
 
151
        // Deserialize a record from json and give it to the callback
 
152
        let record = new coll._recordObj();
 
153
        record.deserialize(json);
 
154
        record.baseUri = coll.uri;
 
155
        onRecord(record);
 
156
      }
 
157
    };
 
158
  }
 
159
};