QTfrontend/SparkleAutoUpdater.mm
author unc0rr
Thu, 01 Nov 2012 14:31:53 +0400
branch0.9.18
changeset 7916 be11c26a3a0b
parent 6952 7f70f37bbf08
child 7933 223b3a195474
permissions -rw-r--r--
Fix 0.9.18 desync: CreateNetGame() slot creates signal-slot connections from hwnet to hwgame. The problem is that this slot is called asynchronously using queued connection, and hwnet could send some signals to hwgame before hwgame object is created and connected. Changed this to direct connection. Also changed connections to hwgame object to queued, but this is unrelated. Sorry, it is frontend patch. Maybe a little delay on server side could help, but not much, as tcp packets could get glued on client's side, and that greately depends on pc and internet connection performance. Frontend should be reworked to be safe for queued connections, as it is extemely dangerous to have a mix of queued/direct connections.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
     1
/*
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
     2
 * Hedgewars, a free turn based strategy game
6952
7f70f37bbf08 license header year range adjustments
sheepluva
parents: 5095
diff changeset
     3
 * Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com>
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
     4
 *
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
     8
 *
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    12
 * GNU General Public License for more details.
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    13
 *
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    14
 * You should have received a copy of the GNU General Public License
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    15
 * along with this program; if not, write to the Free Software
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    17
 */
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    18
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    19
// see original example here http://el-tramo.be/blog/mixing-cocoa-and-qt
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    20
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    21
#include "SparkleAutoUpdater.h"
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    22
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    23
#include <Cocoa/Cocoa.h>
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    24
#include <Sparkle/Sparkle.h>
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    25
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    26
class SparkleAutoUpdater::Private
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    27
{
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    28
    public:
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    29
        SUUpdater* updater;
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    30
};
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    31
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    32
SparkleAutoUpdater::SparkleAutoUpdater(const QString& aUrl)
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    33
{
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    34
    d = new Private;
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    35
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    36
    d->updater = [SUUpdater sharedUpdater];
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    37
    [d->updater retain];
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    38
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    39
    NSURL* url = [NSURL URLWithString:[NSString stringWithUTF8String:aUrl.toUtf8().data()]];
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    40
    [d->updater setFeedURL:url];
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    41
}
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    42
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    43
SparkleAutoUpdater::~SparkleAutoUpdater()
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    44
{
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    45
    [d->updater release];
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    46
    delete d;
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    47
}
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    48
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    49
void SparkleAutoUpdater::checkForUpdates()
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    50
{
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    51
    [d->updater checkForUpdatesInBackground];
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    52
}