This file is indexed.

/usr/include/kolabxml/kolabcontainers.h is in libkolabxml-dev 1.1.6-2ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
/*
 * Copyright (C) 2011  Christian Mollekopf <mollekopf@kolabsys.com>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#ifndef KOLAB_CONTAINERS_H
#define KOLAB_CONTAINERS_H
#include <string>
#include <vector>
#include <boost/scoped_ptr.hpp>

namespace Kolab {

/**
* - months: 1-12
* - days: 1-31
* - hour: 0-23
* - minute: 0-59
* - second: 0-59
*/
class cDateTime {
public:
    cDateTime();
    cDateTime(int year, int month, int day, int hour, int minute, int second, bool isUtc=false);
    cDateTime(const std::string &timezone, int year, int month, int day, int hour, int minute, int second);
    cDateTime(int year, int month, int day);
    ~cDateTime();
    cDateTime(const cDateTime &);
    void operator=(const cDateTime &);
    bool operator==(const cDateTime &) const;
   
    
    void setDate(int year, int month, int day);
    int year() const;
    int month() const;
    int day() const;
    
    bool isDateOnly() const;
    
    void setTime(int hour, int minute, int second);
    int hour() const;
    int minute() const;
    int second() const;
    
    void setUTC(bool);
    bool isUTC() const;
    void setTimezone(const std::string &);
    std::string timezone() const;
    
    bool isValid() const;
private:
    struct Private;
    boost::scoped_ptr<Private> d;
};

enum Classification {
    ClassPublic,
    ClassPrivate,
    ClassConfidential
};

enum Status {
    StatusUndefined,
    StatusNeedsAction,
    StatusCompleted,
    StatusInProcess,
    StatusCancelled,
    StatusTentative,
    StatusConfirmed,
    StatusDraft,
    StatusFinal
};

enum Weekday {
    Monday,
    Tuesday,
    Wednesday,
    Thursday,
    Friday,
    Saturday,
    Sunday
};

struct DayPos {
    DayPos(): mIsValid(false){};
    DayPos(int occurrence, Weekday weekday): mOccurrence(occurrence), mWeekday(weekday), mIsValid(true){};
    bool operator==(const DayPos &other) const { return mOccurrence == other.mOccurrence && mWeekday == other.mWeekday; };
    int occurence() const { return mOccurrence; };
    Weekday weekday() const { return mWeekday; };
    bool isValid() { return mIsValid; };
private:
    int mOccurrence;
    Weekday mWeekday;
    bool mIsValid;
};

class Attachment {
public:
    Attachment();
    Attachment(const Kolab::Attachment &);
    ~Attachment();

    void operator=(const Attachment &);
    bool operator==(const Attachment &) const;

    void setUri(const std::string &uri, const std::string &mimetype);
    std::string uri() const;

     ///Un-encoded binary content, Implies embedded, will be encoded
     void setData(const std::string &, const std::string &mimetype);
     ///Decoded binary content.
     std::string data() const;
     //TODO add possibility to set already encoded data and uri to be embedded as performance/convenience improvement?
//     ///Base64 encoded binary content, Implies embedded
//      void setEncodedData(const std::string &, const std::string &mimetype);

    std::string mimetype() const;

    ///User visible label
    void setLabel(const std::string &);
    std::string label() const;
    
    bool isValid() const;
private:
    struct Private;
    boost::scoped_ptr<Private> d;
};

enum Relative {
    Start,
    End
};

struct Duration {
    Duration():mWeeks(0), mDays(0), mHours(0), mMinutes(0), mSeconds(0), mNegative(false), valid(false){};
    Duration(int weeks, bool negative = false): mWeeks(weeks), mDays(0), mHours(0), mMinutes(0), mSeconds(0), mNegative(negative), valid(true){};
    Duration(int days, int hours, int minutes, int seconds, bool negative = false): mWeeks(0), mDays(days), mHours(hours), mMinutes(minutes), mSeconds(seconds), mNegative(negative), valid(true){};
    bool operator==(const Duration &other) const{ return (/*mWeeks == other.mWeeks && 
                                                            mDays == other.mDays &&
                                                            mHours == other.mHours &&
                                                            mMinutes == other.mMinutes &&
                                                            mSeconds == other.mSeconds &&
                                                            mNegative == other.mNegative &&*/
                                                            ( ((((mWeeks * 7 + mDays) * 24 + mHours) * 60 + mMinutes) * 60 + mSeconds) ==
                                                              ((((other.mWeeks * 7 + other.mDays) * 24 + other.mHours) * 60 + other.mMinutes) * 60 + other.mSeconds) ) &&
                                                            valid == other.valid );};
    int weeks() const { return mWeeks; };
    int days() const { return mDays; };
    int hours() const { return mHours; };
    int minutes() const { return mMinutes; };
    int seconds() const { return mSeconds; };

    bool isNegative() const { return mNegative; };
    bool isValid() const { return valid; };
private:
    int mWeeks;
    int mDays;
    int mHours;
    int mMinutes;
    int mSeconds;
    bool mNegative;
    bool valid;
};

struct ContactReference {
    enum ReferenceType {
        Invalid,
        EmailReference,
        UidReference,
        EmailAndUidReference
    };
    ContactReference(): mType(Invalid) {};
    ///For xCal
    ContactReference(const std::string &email, const std::string &name = std::string(), const std::string &uid = std::string()): mType(EmailAndUidReference), mEmail(email), mUid(uid), mName(name) {};
    ///For xCard
    ContactReference(ReferenceType type, const std::string &emailOrUID, const std::string &name = std::string()): mType(type), mName(name) { 
        if (type == EmailReference) {
            mEmail = emailOrUID;
        } else {
            mUid = emailOrUID;
        }
    };
    bool operator==(const ContactReference &other) const { return mEmail == other.mEmail &&
                                                        mName == other.mName &&
                                                        mUid == other.mUid;
    };

    bool isValid() const { return mType != Invalid; };

    void setName(const std::string &name) { mName = name; };

    std::string email() const { return mEmail; };
    std::string uid() const { return mUid; };
    std::string name() const { return mName; };

    ReferenceType type() const { return mType; };

private:
    ReferenceType mType;
    std::string mEmail;
    std::string mUid;
    std::string mName;
};

class Alarm {
public:
    enum Type {
        InvalidAlarm,
        EMailAlarm,
        DisplayAlarm,
        AudioAlarm
    };
    
    Alarm();
    Alarm(Type);
    Alarm(const Alarm &);
    ~Alarm();

    void operator=(const Alarm &);
    bool operator==(const Alarm &other) const;

    ///EMail Alarm, @param attendees accepts only email + name and no uid
    Alarm(const std::string &summary, const std::string &description, const std::vector<ContactReference> attendees);
    std::string summary() const;
    std::string description() const;
    std::vector<ContactReference> attendees() const;

    ///Display Alarm
    Alarm(const std::string &text);
    std::string text() const;

    ///Audio Alarm
    Alarm(const Attachment &audio);
    Attachment audioFile() const;
    
    void setRelativeStart(const Duration &, Relative);
    Duration relativeStart() const;
    Relative relativeTo() const;
    
    void setStart(const cDateTime &);
    cDateTime start() const;

    void setDuration(const Duration &, int numrepeat);
    Duration duration() const;
    int numrepeat() const;
    
    Type type() const;

private:
    struct Private;
    boost::scoped_ptr<Private> d;
};


class RecurrenceRule {
public:
    
    RecurrenceRule();
    RecurrenceRule(const RecurrenceRule &);
    ~RecurrenceRule();

    void operator=(const RecurrenceRule &);
    bool operator==(const RecurrenceRule &other) const;
    
    enum Frequency {
        FreqNone,
        Yearly,
        Monthly,
        Weekly,
        Daily,
        Hourly,
        Minutely,
        Secondly
    };
    
    void setFrequency(Frequency);
    Frequency frequency() const;
    
    void setWeekStart(Weekday);
    Weekday weekStart() const;
    
    void setEnd(const cDateTime &);
    cDateTime end() const;
    
    void setCount(int count);
    int count() const;
    
    void setInterval(int);
    int interval() const;
    
    void setBysecond(const std::vector<int> &);
    std::vector<int> bysecond() const;
    
    void setByminute(const std::vector<int> &);
    std::vector<int> byminute() const;
    
    void setByhour(const std::vector<int> &);
    std::vector<int> byhour() const;
    
    void setByday(const std::vector<DayPos> &);
    std::vector<DayPos> byday() const;
    
    void setBymonthday(const std::vector<int> &);
    std::vector<int> bymonthday() const;
    
    void setByyearday(const std::vector<int> &);
    std::vector<int> byyearday() const;
    
    void setByweekno(const std::vector<int> &);
    std::vector<int> byweekno() const;
    
    void setBymonth(const std::vector<int> &);
    std::vector<int> bymonth() const;
    
    bool isValid() const;
    
private:
    struct Private;
    boost::scoped_ptr<Private> d;
};


enum PartStatus {
    PartNeedsAction,
    PartAccepted,
    PartDeclined,
    PartTentative,
    PartDelegated,
    PartInProcess,
    PartCompleted
};

enum Role {
    Required,
    Chair,
    Optional,
    NonParticipant
};

enum Cutype {
    CutypeUnknown,
    CutypeGroup,
    CutypeIndividual,
    CutypeResource,
    CutypeRoom
};

class Attendee {
public:
    Attendee();
    Attendee(const ContactReference &contact);
    Attendee(const Attendee &);
    ~Attendee();

    void operator=(const Attendee &);
    bool operator==(const Attendee &) const;

    bool isValid() const;

    void setContact(const ContactReference &);
    ContactReference contact() const;

    void setPartStat(PartStatus);
    PartStatus partStat() const;

    void setRole(Role);
    Role role() const;

    void setRSVP(bool);
    bool rsvp() const;

    void setDelegatedTo(const std::vector<ContactReference> &);
    std::vector<ContactReference> delegatedTo() const;

    void setDelegatedFrom(const std::vector<ContactReference> &);
    std::vector<ContactReference> delegatedFrom() const;

    void setCutype(Cutype);
    Cutype cutype() const;
private:
    struct Private;
    boost::scoped_ptr<Private> d;
};

struct CustomProperty {
    CustomProperty(){};
    CustomProperty(const std::string &i, const std::string &v)
    : identifier(i), value(v) {};

    bool operator==(const CustomProperty &other) const{ return (identifier == other.identifier && value == other.value);};
    std::string identifier;
    std::string value;
};

//WARNING this function copies the vector and does not modify it
template <typename T>
std::vector<T> operator<< ( std::vector<T> v, const T &s)
{
    v.push_back(s);
    return v;
}

    
}

#endif