This file is indexed.

/usr/include/mamda/MamdaNewsManager.h is in libmamda-dev 2.2.2.1-11ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/* $Id$
 *
 * OpenMAMA: The open middleware agnostic messaging API
 * Copyright (C) 2011 NYSE Technologies, Inc.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301 USA
 */

#ifndef MamdaNewsManagerH
#define MamdaNewsManagerH

#include <mamda/MamdaOptionalConfig.h>
#include <mamda/MamdaErrorListener.h>
#include <mamda/MamdaQualityListener.h>
#include <mamda/MamdaNewsHeadline.h>
#include <mamda/MamdaNewsHeadlineHandler.h>
#include <mamda/MamdaNewsStory.h>
#include <mamda/MamdaNewsStoryHandler.h>
#include <mamda/MamdaNewsQueryHandler.h>
#include <mamda/MamdaNewsQuery.h>

namespace Wombat
{

    /**
     * MamdaNewsManager provides a class for managing access to streaming
     * news headlines, headline queries, individual story queries, etc.
     * Like the MAMDA "listener" classes, such as MamdaQuoteListener and
     * MamdaTradeListener, the MamdaNewsManager cache certain information
     * about the news service.  Unlike those MAMDA "listener" classes, the
     * MamdaNewsManager is also responsible for creating and managing its
     * own subscriptions.
     */

    class MAMDAOPTExpDLL MamdaNewsManager
    {
    public:
        MamdaNewsManager ();
        virtual ~MamdaNewsManager();

        /**
         * Add a broadcast headline source to the news manager.  Headline
         * updates will be passed to the handler(s) registered by
         * addBroadcastHeadlineHandler().
         */
        void    addBroadcastHeadlineSource (MamaQueue*      queue,
                                            MamaSource*     source,
                                            const char*     symbol,
                                            void*           closure);
        /**
         * Remove all broadcast headline sources from the news manager.
         */
        void    clearBroadcastHeadlineSources ();

        /**
         * Add a broadcast story source to the news manager.  Stories will
         * be passed to the handler(s) registered by
         * addBroadcastStoryHandler().
         */
        void    addBroadcastStorySource    (MamaQueue*      queue,
                                            MamaSource*     source,
                                            const char*     symbol,
                                            void*           closure);

        /**
         * Remove all broadcast story sources from the news manager.
         */
        void    clearBroadcastStorySources ();

        /**
         * Add a headline handler for broadcast headlines.
         */
        void    addBroadcastHeadlineHandler (MamdaNewsHeadlineHandler*  handler);

        /**
         * Add a story handler for broadcast stories.
         */
        void    addBroadcastStoryHandler (MamdaNewsStoryHandler*  handler);

        /**
         * Add a quality data handler.
         */
        void    addQualityHandler (MamdaQualityListener*  handler);

        /**
         * Add an error handler.
         */
        void    addErrorHandler (MamdaErrorListener*  handler);

        
        void clearQuerySources ();
        
        /**
         * Request a story (by headline), invoking the given story handler
         * when the story arrives (or not).
         */
        void executeQuery (
                    MamaQueue*                queue,
                    MamaSource*               source,
                    MamdaQuery*               newsQuery,
                    MamdaNewsQueryType        queryType,
                    MamdaNewsQueryHandler*    handler,
                    void*                     closure);
                              
        void removeQuery (MamdaQuery*             newsQuery);
        
        /**
         * Request a story (by headline), invoking the given story handler
         * when the story arrives (or not).
         */
        void    requestStory (const MamdaNewsHeadline&  headline,
                              MamdaNewsStoryHandler*    handler,
                              void*                     closure);

        /**
         * Request a story (by explicit headline ID, source and queue),
         * invoking the given story handler when the story arrives (or
         * not).  The source and queue are the same parameters that
         * correspond to the headline source (see addHeadlineSource()).
         */
        void    requestStory (MamaQueue*                queue,
                              MamaSource*               source,
                              MamdaNewsStoryId          storyId,
                              MamdaNewsStoryHandler*    handler,
                              void*                     closure);

        /**
         * Request a story (by headline) after some delay, invoking the
         * given story handler when the story arrives (or not).
         */
        void    requestStoryLater (const MamdaNewsHeadline&  headline,
                                   MamdaNewsStoryHandler*    handler,
                                   double                    secondsLater,
                                   void*                     closure);

        /**
         * Request a story (by existing or partial story) after some
         * delay, invoking the given story handler when the story arrives
         * (or not).
         */
        void    requestStoryLater (const MamdaNewsStory&     story,
                                   MamdaNewsStoryHandler*    handler,
                                   double                    secondsLater,
                                   void*                     closure);

        /**
         * Request a story (by headline) after some delay, invoking the
         * given story handler when the story arrives (or not).
         */
        void    requestStoryLater (MamaQueue*                queue,
                                   MamaSource*               source,
                                   MamdaNewsStoryId          storyId,
                                   MamdaNewsStoryHandler*    handler,
                                   double                    secondsLater,
                                   void*                     closure);

        struct MamdaNewsManagerImpl;
        MamdaNewsManagerImpl& mImpl;
    };

} // namespace

#endif // MamdaNewsManagerH