VirtualBox

source: vbox/trunk/src/VBox/Main/include/AutostartDb.h@ 73768

Last change on this file since 73768 was 69500, checked in by vboxsync, 7 years ago

*: scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
Line 
1/* $Id: AutostartDb.h 69500 2017-10-28 15:14:05Z vboxsync $ */
2/** @file
3 * Main - Autostart database Interfaces.
4 */
5
6/*
7 * Copyright (C) 2012-2017 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef ___autostart_h
19#define ___autostart_h
20
21#include <iprt/cdefs.h>
22#include <iprt/types.h>
23#include <iprt/critsect.h>
24
25class AutostartDb
26{
27 public:
28
29 AutostartDb();
30 ~AutostartDb();
31
32 /**
33 * Sets the path to the autostart database.
34 *
35 * @returns VBox status code.
36 * @param pszAutostartDbPathNew Path to the autostart database.
37 */
38 int setAutostartDbPath(const char *pszAutostartDbPathNew);
39
40 /**
41 * Add a autostart VM to the global database.
42 *
43 * @returns VBox status code.
44 * @retval VERR_PATH_NOT_FOUND if the autostart database directory is not set.
45 * @param pszVMId ID of the VM to add.
46 */
47 int addAutostartVM(const char *pszVMId);
48
49 /**
50 * Remove a autostart VM from the global database.
51 *
52 * @returns VBox status code.
53 * @retval VERR_PATH_NOT_FOUND if the autostart database directory is not set.
54 * @param pszVMId ID of the VM to remove.
55 */
56 int removeAutostartVM(const char *pszVMId);
57
58 /**
59 * Add a autostop VM to the global database.
60 *
61 * @returns VBox status code.
62 * @retval VERR_PATH_NOT_FOUND if the autostart database directory is not set.
63 * @param pszVMId ID of the VM to add.
64 */
65 int addAutostopVM(const char *pszVMId);
66
67 /**
68 * Remove a autostop VM from the global database.
69 *
70 * @returns VBox status code.
71 * @retval VERR_PATH_NOT_FOUND if the autostart database directory is not set.
72 * @param pszVMId ID of the VM to remove.
73 */
74 int removeAutostopVM(const char *pszVMId);
75
76 private:
77
78#ifdef RT_OS_LINUX
79 /** Critical section protecting the database against concurrent access. */
80 RTCRITSECT CritSect;
81 /** Path to the autostart database. */
82 char *m_pszAutostartDbPath;
83
84 /**
85 * Autostart database modification worker.
86 *
87 * @returns VBox status code.
88 * @param fAutostart Flag whether the autostart or autostop database is modified.
89 * @param fAddVM Flag whether a VM is added or removed from the database.
90 */
91 int autostartModifyDb(bool fAutostart, bool fAddVM);
92#endif
93};
94
95#endif /* !___autostart_h */
96
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use