KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pns_logger.h
Go to the documentation of this file.
1/*
2 * KiRouter - a push-and-(sometimes-)shove PCB router
3 *
4 * Copyright (C) 2013-2014 CERN
5 * Copyright (C) 2016-2023 KiCad Developers, see AUTHORS.txt for contributors.
6 * Author: Tomasz Wlostowski <[email protected]>
7 *
8 * This program is free software: you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation, either version 3 of the License, or (at your
11 * option) any later version.
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 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#ifndef __PNS_LOGGER_H
23#define __PNS_LOGGER_H
24
25#include <cstdio>
26#include <vector>
27#include <string>
28#include <sstream>
29
30#include <math/vector2d.h>
31#include <kiid.h>
32
33#include "pns_sizes_settings.h"
34
36class SHAPE;
37
38namespace PNS {
39
40class ITEM;
41
42class LOGGER
43{
44public:
45
54 };
55
56 struct EVENT_ENTRY {
61
63
64 EVENT_ENTRY( const EVENT_ENTRY& aE ) :
65 p( aE.p ), type( aE.type ), uuid( aE.uuid ), sizes( aE.sizes )
66 {
67 }
68 };
69
70 LOGGER();
71 ~LOGGER();
72
73 void Clear();
74
75 void Log( EVENT_TYPE evt, const VECTOR2I& pos = VECTOR2I(), const ITEM* item = nullptr,
76 const SIZES_SETTINGS* sizes = nullptr );
77
78 const std::vector<EVENT_ENTRY>& GetEvents()
79 {
80 return m_events;
81 }
82
83 static wxString FormatLogFileAsString( int aMode,
84 const std::vector<ITEM*>& aAddedItems,
85 const std::set<KIID>& aRemovedItems,
86 const std::vector<ITEM*>& aHeads,
87 const std::vector<EVENT_ENTRY>& aEvents );
88
89 static wxString FormatEvent( const EVENT_ENTRY& aEvent );
90
91 static EVENT_ENTRY ParseEvent( const wxString& aLine );
92
93private:
94 std::vector<EVENT_ENTRY> m_events;
95};
96
97}
98
99#endif
Definition: kiid.h:49
Base class for PNS router board items.
Definition: pns_item.h:97
static wxString FormatLogFileAsString(int aMode, const std::vector< ITEM * > &aAddedItems, const std::set< KIID > &aRemovedItems, const std::vector< ITEM * > &aHeads, const std::vector< EVENT_ENTRY > &aEvents)
Definition: pns_logger.cpp:67
const std::vector< EVENT_ENTRY > & GetEvents()
Definition: pns_logger.h:78
void Clear()
Definition: pns_logger.cpp:40
static wxString FormatEvent(const EVENT_ENTRY &aEvent)
Definition: pns_logger.cpp:91
@ EVT_START_ROUTE
Definition: pns_logger.h:47
@ EVT_START_DRAG
Definition: pns_logger.h:48
@ EVT_TOGGLE_VIA
Definition: pns_logger.h:52
std::vector< EVENT_ENTRY > m_events
Definition: pns_logger.h:94
void Log(EVENT_TYPE evt, const VECTOR2I &pos=VECTOR2I(), const ITEM *item=nullptr, const SIZES_SETTINGS *sizes=nullptr)
Definition: pns_logger.cpp:46
static EVENT_ENTRY ParseEvent(const wxString &aLine)
Definition: pns_logger.cpp:103
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
An abstract shape on 2D plane.
Definition: shape.h:126
Push and Shove diff pair dimensions (gap) settings dialog.
Definition: pns_logger.h:56
SIZES_SETTINGS sizes
Definition: pns_logger.h:60
EVENT_ENTRY(const EVENT_ENTRY &aE)
Definition: pns_logger.h:64
KIID uuid
Definition: pns_logger.h:59
EVENT_ENTRY()
Definition: pns_logger.h:62
EVENT_TYPE type
Definition: pns_logger.h:58
VECTOR2I p
Definition: pns_logger.h:57
VECTOR2< int > VECTOR2I
Definition: vector2d.h:588