1 | /* $Id: VBoxHostVersion.cpp 62522 2016-07-22 19:17:25Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBoxHostVersion - Checks the host's VirtualBox version and notifies
|
---|
4 | * the user in case of an update.
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | * Copyright (C) 2010-2016 Oracle Corporation
|
---|
9 | *
|
---|
10 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | * available from http://www.virtualbox.org. This file is free software;
|
---|
12 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | * General Public License (GPL) as published by the Free Software
|
---|
14 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | */
|
---|
18 |
|
---|
19 | #include "VBoxHostVersion.h"
|
---|
20 | #include "VBoxTray.h"
|
---|
21 | #include "VBoxHelpers.h"
|
---|
22 |
|
---|
23 | #include <VBox/VBoxGuestLib.h>
|
---|
24 |
|
---|
25 | #ifdef DEBUG
|
---|
26 | # define LOG_ENABLED
|
---|
27 | # define LOG_GROUP LOG_GROUP_DEFAULT
|
---|
28 | #endif
|
---|
29 | #include <VBox/log.h>
|
---|
30 |
|
---|
31 |
|
---|
32 |
|
---|
33 | /** @todo Move this part in VbglR3 and just provide a callback for the platform-specific
|
---|
34 | notification stuff, since this is very similar to the VBoxClient code. */
|
---|
35 | int VBoxCheckHostVersion(void)
|
---|
36 | {
|
---|
37 | int rc;
|
---|
38 | uint32_t uGuestPropSvcClientID;
|
---|
39 |
|
---|
40 | rc = VbglR3GuestPropConnect(&uGuestPropSvcClientID);
|
---|
41 | if (RT_SUCCESS(rc))
|
---|
42 | {
|
---|
43 | char *pszHostVersion;
|
---|
44 | char *pszGuestVersion;
|
---|
45 | bool bUpdate;
|
---|
46 | rc = VbglR3HostVersionCheckForUpdate(uGuestPropSvcClientID, &bUpdate, &pszHostVersion, &pszGuestVersion);
|
---|
47 | if (RT_SUCCESS(rc))
|
---|
48 | {
|
---|
49 | if (bUpdate)
|
---|
50 | {
|
---|
51 | char szMsg[256]; /* Sizes according to MSDN. */
|
---|
52 | char szTitle[64];
|
---|
53 |
|
---|
54 | /** @todo Add some translation macros here. */
|
---|
55 | _snprintf(szTitle, sizeof(szTitle), "VirtualBox Guest Additions update available!");
|
---|
56 | _snprintf(szMsg, sizeof(szMsg), "Your guest is currently running the Guest Additions version %s. "
|
---|
57 | "We recommend updating to the latest version (%s) by choosing the "
|
---|
58 | "install option from the Devices menu.", pszGuestVersion, pszHostVersion);
|
---|
59 |
|
---|
60 | rc = hlpShowBalloonTip(g_hInstance, g_hwndToolWindow, ID_TRAYICON,
|
---|
61 | szMsg, szTitle,
|
---|
62 | 5000 /* Time to display in msec */, NIIF_INFO);
|
---|
63 | if (RT_FAILURE(rc))
|
---|
64 | LogFlowFunc(("Guest Additions update found; however: could not show version notifier balloon tooltip, rc=%Rrc\n", rc));
|
---|
65 | }
|
---|
66 |
|
---|
67 | /* Store host version to not notify again. */
|
---|
68 | rc = VbglR3HostVersionLastCheckedStore(uGuestPropSvcClientID, pszHostVersion);
|
---|
69 |
|
---|
70 | VbglR3GuestPropReadValueFree(pszHostVersion);
|
---|
71 | VbglR3GuestPropReadValueFree(pszGuestVersion);
|
---|
72 | }
|
---|
73 | VbglR3GuestPropDisconnect(uGuestPropSvcClientID);
|
---|
74 | }
|
---|
75 | return rc;
|
---|
76 | }
|
---|
77 |
|
---|