File: loader.h

package info (click to toggle)
kcachegrind 4%3A4.14.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,800 kB
  • ctags: 3,227
  • sloc: cpp: 28,409; perl: 325; python: 235; sh: 5; makefile: 1
file content (94 lines) | stat: -rw-r--r-- 2,742 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/* This file is part of KCachegrind.
   Copyright (C) 2002 - 2010 Josef Weidendorfer <Josef.Weidendorfer@gmx.de>

   KCachegrind is free software; you can redistribute it and/or
   modify it under the terms of the GNU General Public
   License as published by the Free Software Foundation, version 2.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; see the file COPYING.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
   Boston, MA 02110-1301, USA.
*/

/*
 * Base class for loaders of profiling data.
 */

#ifndef LOADER_H
#define LOADER_H

#include <QList>
#include <QString>

class QIODevice;
class TraceData;
class Loader;
class Logger;

/**
 * To implement a new loader, inherit from the Loader class and
 * and reimplement canLoad() and load().
 *
 * For registration, put into the static initLoaders() function
 * of this base class a _loaderList.append(new MyLoader()).
 *
 * matchingLoader() returns the first loader able to load a file.
 *
 * To show progress and warnings while loading,
 *   loadStatus(), loadError() and loadWarning() should be called.
 * These are just shown as status, warnings or errors to the
 * user, but do not show real failure, as even errors can be
 * recoverable. For unablility to load a file, return 0 in
 * load().
 */

class Loader
{
public:
  Loader(const QString& name, const QString& desc);
  virtual ~Loader();

  // reimplement for a specific Loader
  virtual bool canLoad(QIODevice* file);
  /* load a profile data file.
   * for every section (time span covered by profile), create a TracePart
   * return the number of sections loaded (0 on error)
   */
  virtual int load(TraceData*, QIODevice* file, const QString& filename);

  static Loader* matchingLoader(QIODevice* file);
  static Loader* loader(const QString& name);
  static void initLoaders();
  static void deleteLoaders();

  QString name() const { return _name; }
  QString description() const { return _description; }

  // consumer for notifications
  void setLogger(Logger*);

protected:
  // notifications for the user
  void loadStart(const QString& filename);
  void loadProgress(int progress); // 0 - 100
  void loadError(int line, const QString& msg);
  void loadWarning(int line, const QString& msg);
  void loadFinished(const QString &msg = QString::null);

protected:
  Logger* _logger;

private:
  QString _name, _description;

  static QList<Loader*> _loaderList;
};


#endif