]> git.ipfire.org Git - thirdparty/squid.git/blob - src/acl/AnnotationData.cc
4cec359ba111d72d1733455eced0a212eec761dc
[thirdparty/squid.git] / src / acl / AnnotationData.cc
1 /*
2 * Copyright (C) 1996-2022 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
19 ACLAnnotationData::ACLAnnotationData()
20 : notes(new Notes("annotation_data")) {}
21
22 SBufList
23 ACLAnnotationData::dump() const
24 {
25 SBufList sl;
26 if (const char *strNotes = notes->toString())
27 sl.push_back(SBuf(strNotes));
28 return sl;
29 }
30
31 void
32 ACLAnnotationData::parse()
33 {
34 notes->parseKvPair();
35 if (char *t = ConfigParser::PeekAtToken()) {
36 debugs(29, DBG_CRITICAL, "FATAL: Unexpected argument '" << t << "' after annotation specification");
37 self_destruct();
38 return;
39 }
40 }
41
42 void
43 ACLAnnotationData::annotate(NotePairs::Pointer pairs, const CharacterSet *delimiters, const AccessLogEntry::Pointer &al)
44 {
45 notes->updateNotePairs(pairs, delimiters, al);
46 }
47