annotate changeset.h @ 106:729438d70af8

* Retrieve and store current branch and heads; some refactoring
author Chris Cannam
date Thu, 25 Nov 2010 17:54:35 +0000
parents f583e44d9d31
children 8ae3b44c0073
rev   line source
Chris@57 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@57 2
Chris@57 3 /*
Chris@57 4 EasyMercurial
Chris@57 5
Chris@57 6 Based on HgExplorer by Jari Korhonen
Chris@57 7 Copyright (c) 2010 Jari Korhonen
Chris@57 8 Copyright (c) 2010 Chris Cannam
Chris@57 9 Copyright (c) 2010 Queen Mary, University of London
Chris@57 10
Chris@57 11 This program is free software; you can redistribute it and/or
Chris@57 12 modify it under the terms of the GNU General Public License as
Chris@57 13 published by the Free Software Foundation; either version 2 of the
Chris@57 14 License, or (at your option) any later version. See the file
Chris@57 15 COPYING included with this distribution for more information.
Chris@57 16 */
Chris@57 17
Chris@43 18 #ifndef CHANGESET_H
Chris@43 19 #define CHANGESET_H
Chris@43 20
Chris@43 21 #include <QObject>
Chris@43 22 #include <QString>
Chris@43 23 #include <QStringList>
Chris@43 24 #include <QList>
Chris@106 25 #include <QSharedPointer>
Chris@106 26
Chris@106 27 #include "logparser.h"
Chris@43 28
Chris@43 29 class Changeset : public QObject
Chris@43 30 {
Chris@43 31 Q_OBJECT
Chris@43 32
Chris@43 33 Q_PROPERTY(QString id READ id WRITE setId NOTIFY idChanged STORED true);
Chris@43 34 Q_PROPERTY(QString author READ author WRITE setAuthor NOTIFY authorChanged STORED true);
Chris@43 35 Q_PROPERTY(QString branch READ branch WRITE setBranch NOTIFY branchChanged STORED true);
Chris@44 36 Q_PROPERTY(QString tag READ tag WRITE setTag NOTIFY tagChanged STORED true);
Chris@52 37 Q_PROPERTY(QString datetime READ datetime WRITE setDatetime NOTIFY datetimeChanged STORED true);
Chris@52 38 Q_PROPERTY(qulonglong timestamp READ timestamp WRITE setTimestamp NOTIFY timestampChanged STORED true);
Chris@43 39 Q_PROPERTY(QString age READ age WRITE setAge NOTIFY ageChanged STORED true);
Chris@43 40 Q_PROPERTY(QStringList parents READ parents WRITE setParents NOTIFY parentsChanged STORED true);
Chris@47 41 Q_PROPERTY(QStringList children READ children WRITE setChildren NOTIFY childrenChanged STORED true);
Chris@43 42 Q_PROPERTY(QString comment READ comment WRITE setComment NOTIFY commentChanged STORED true);
Chris@43 43
Chris@43 44 public:
Chris@43 45 Changeset() : QObject() { }
Chris@106 46 explicit Changeset(const LogEntry &e);
Chris@43 47
Chris@43 48 QString id() const { return m_id; }
Chris@43 49 QString author() const { return m_author; }
Chris@43 50 QString branch() const { return m_branch; }
Chris@44 51 QString tag() const { return m_tag; }
Chris@51 52 QString datetime() const { return m_datetime; }
Chris@52 53 qulonglong timestamp() const { return m_timestamp; }
Chris@43 54 QString age() const { return m_age; }
Chris@43 55 QStringList parents() const { return m_parents; }
Chris@47 56 QStringList children() const { return m_children; }
Chris@43 57 QString comment() const { return m_comment; }
Chris@43 58
Chris@43 59 int number() const {
Chris@43 60 return id().split(':')[0].toInt();
Chris@43 61 }
Chris@43 62
Chris@44 63 QString authorName() const {
Chris@44 64 QString a = author();
Chris@44 65 return a.replace(QRegExp("\\s*<[^>]*>"), "");
Chris@44 66 }
Chris@44 67
Chris@51 68 QString date() const {
Chris@51 69 return datetime().split(' ')[0];
Chris@51 70 }
Chris@51 71
Chris@43 72 signals:
Chris@43 73 void idChanged(QString id);
Chris@43 74 void authorChanged(QString author);
Chris@43 75 void branchChanged(QString branch);
Chris@44 76 void tagChanged(QString tag);
Chris@51 77 void datetimeChanged(QString datetime);
Chris@52 78 void timestampChanged(qulonglong timestamp);
Chris@43 79 void ageChanged(QString age);
Chris@43 80 void parentsChanged(QStringList parents);
Chris@47 81 void childrenChanged(QStringList children);
Chris@43 82 void commentChanged(QString comment);
Chris@43 83
Chris@43 84 public slots:
Chris@43 85 void setId(QString id) { m_id = id; emit idChanged(id); }
Chris@43 86 void setAuthor(QString author) { m_author = author; emit authorChanged(author); }
Chris@43 87 void setBranch(QString branch) { m_branch = branch; emit branchChanged(branch); }
Chris@44 88 void setTag(QString tag) { m_tag = tag; emit tagChanged(tag); }
Chris@52 89 void setDatetime(QString datetime) { m_datetime = datetime; emit datetimeChanged(datetime); }
Chris@52 90 void setTimestamp(qulonglong timestamp) { m_timestamp = timestamp; emit timestampChanged(timestamp); }
Chris@43 91 void setAge(QString age) { m_age = age; emit ageChanged(age); }
Chris@43 92 void setParents(QStringList parents) { m_parents = parents; emit parentsChanged(parents); }
Chris@47 93 void setChildren(QStringList children) { m_children = children; emit childrenChanged(m_children); }
Chris@47 94 void addChild(QString child) { m_children.push_back(child); emit childrenChanged(m_children); }
Chris@43 95 void setComment(QString comment) { m_comment = comment; emit commentChanged(comment); }
Chris@43 96
Chris@43 97 private:
Chris@43 98 QString m_id;
Chris@43 99 QString m_author;
Chris@43 100 QString m_branch;
Chris@44 101 QString m_tag;
Chris@51 102 QString m_datetime;
Chris@52 103 qulonglong m_timestamp;
Chris@43 104 QString m_age;
Chris@43 105 QStringList m_parents;
Chris@47 106 QStringList m_children;
Chris@43 107 QString m_comment;
Chris@43 108 };
Chris@43 109
Chris@43 110 typedef QList<Changeset *> Changesets;
Chris@43 111
Chris@43 112 #endif // CHANGESET_H