]> git.ipfire.org Git - thirdparty/squid.git/blob - src/acl/AnnotationData.cc
Fix and improve annotation reporting (#1516)
[thirdparty/squid.git] / src / acl / AnnotationData.cc
1 /*
2 * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9 #include "squid.h"
10 #include "acl/Acl.h"
11 #include "acl/AnnotationData.h"
12 #include "acl/Checklist.h"
13 #include "cache_cf.h"
14 #include "ConfigParser.h"
15 #include "debug/Stream.h"
16 #include "format/Format.h"
17 #include "sbuf/Algorithms.h"
18 #include "sbuf/Stream.h"
19
20 ACLAnnotationData::ACLAnnotationData()
21 : notes(new Notes("annotation_data")) {}
22
23 SBufList
24 ACLAnnotationData::dump() const
25 {
26 if (notes->empty())
27 return SBufList();
28
29 SBufStream os;
30 notes->printAsAnnotationAclParameters(os);
31 return SBufList{os.buf()};
32 }
33
34 void
35 ACLAnnotationData::parse()
36 {
37 notes->parseKvPair();
38 if (char *t = ConfigParser::PeekAtToken()) {
39 debugs(29, DBG_CRITICAL, "FATAL: Unexpected argument '" << t << "' after annotation specification");
40 self_destruct();
41 return;
42 }
43 }
44
45 void
46 ACLAnnotationData::annotate(NotePairs::Pointer pairs, const CharacterSet *delimiters, const AccessLogEntry::Pointer &al)
47 {
48 notes->updateNotePairs(pairs, delimiters, al);
49 }
50