1 /*
2    BAREOS® - Backup Archiving REcovery Open Sourced
3 
4    Copyright (C) 2000-2012 Free Software Foundation Europe e.V.
5    Copyright (C) 2011-2012 Planets Communications B.V.
6    Copyright (C) 2013-2016 Bareos GmbH & Co. KG
7 
8    This program is Free Software; you can redistribute it and/or
9    modify it under the terms of version three of the GNU Affero General Public
10    License as published by the Free Software Foundation and included
11    in the file LICENSE.
12 
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16    Affero General Public License for more details.
17 
18    You should have received a copy of the GNU Affero General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22 */
23 
24 #ifndef BAREOS_STORED_READ_CTX_H_
25 #define BAREOS_STORED_READ_CTX_H_ 1
26 
27 #include "stored/record.h"
28 
29 namespace storagedaemon {
30 
31 struct DeviceRecord;
32 
33 /* clang-format off */
34 struct Read_Context {
35   DeviceRecord* rec = nullptr;    /**< Record currently being processed */
36   dlist* recs = nullptr;          /**< Linked list of record packets open */
37   Session_Label sessrec;          /**< Start Of Session record info */
38   uint32_t records_processed = 0; /**< Number of records processed from this block */
39   int32_t lastFileIndex = 0;      /**< Last File Index processed */
40 };
41 /* clang-format on */
42 
43 typedef struct Read_Context READ_CTX;
44 
45 } /* namespace storagedaemon  */
46 
47 #endif /* BAREOS_STORED_READ_CTX_H_ */
48