This file is indexed.

/usr/include/pdp/pdp_dpd_base.h is in pd-pdp 1:0.14.1-3build1.

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
/*
 *   Pure Data Packet header file. DPD base class
 *   Copyright (c) by Tom Schouten <tom@zwizwa.be>
 *
 *   This program 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; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *   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; if not, write to the Free Software
 *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 */


/* dpd base class for context based processors (for pd-fying standard stack based serial languages)
   not all of pdp is used here, but the class is derived from the pdp base class to enable mixing
   standard pdp (data flow packet processing) and dpd (context based serial languages)
   
   dpd is short for "upside down pdp". the name stems from the observation
   of opengl code in pd (like in gem) having an upside down feel when looking
   through dataflow eyes. i.e.: the target (window context) is on top, while
   the objects (geos) are at the bottom connected by a chain of geometric transforms

   the principles of dpd are simple:

   * there is only one main packet, received on the left inlet.
   * this packet is called the "context" and is produced by and returned to a top context source/sink
   * additional pd messages and pdp packets can be received on the cold inlets
   * as opposed to pdp, no copies are made of this context packet, all operations on it are accumulative.
   * the protocol is different because fanout is prohibited (so no ro/rw registering)
   * the only exception for fanout are inspectors, which have precedence over normal processors
   * all processors and inspectors for a single context type must use the pdp thread, to preserve execution order
   

*/



#include "pdp_base.h"

#define PDP_DPD_MAX_CONTEXT_OUTLETS 4

typedef struct pdp_dpd_base_struct
{
    t_pdp_base b_base; /* pdp base class */

    int b_nb_context_outlets;
    t_outlet *b_context_outlet[PDP_DPD_MAX_CONTEXT_OUTLETS];  /* dpd outlets */
    int b_outlet_enable[PDP_DPD_MAX_CONTEXT_OUTLETS];  /* dpd outlets */
    t_pdp_method b_accum_method[PDP_DPD_MAX_CONTEXT_OUTLETS]; /* accumulation methods for each outlet */
    t_pdp_method b_accum_callback[PDP_DPD_MAX_CONTEXT_OUTLETS]; /* pd callback methods for each outlet */
    //int b_accum_queue_id[PDP_DPD_MAX_CONTEXT_OUTLETS];        /* accumulator queue id's */

    t_pdp_method b_inspector_method;         /* pdp thread inspector callback */
    t_pdp_method b_inspector_callback;       /* main thread inspector callback */
    //int b_inspector_queue_id;
    
    t_pdp_method b_cleanup_method;         /* queued after propagation is done  */
    t_pdp_method b_cleanup_callback;       /* queued after propagation is done  */
    //int b_cleanup_queue_id;

    t_pdp_method b_complete_notify;         /* method called after packet output is done */
    t_pdp_newmethod b_command_factory_method;      /* command factory method */


    int b_context_packet; /* the current context packet */

    int b_dpd_active_inlet_disabled;


} t_pdp_dpd_base;

#ifdef __cplusplus
extern "C"
{
#endif

/* bang method (propagate context to outlets & register callbacks)
   mainly for context source/sinks
   it is not registered as a pd message by default ! */
void pdp_dpd_base_bang(void *x);

/* get/set the context packet */
int pdp_dpd_base_get_context_packet(void *x);
void pdp_dpd_base_set_context_packet(void *x, int p);
int pdp_dpd_base_move_context_packet(void *x);

/* add a context outlet and it's corresponding accumulation (process) and callback method */
t_outlet *pdp_dpd_base_add_outlet(void *x, t_pdp_method accum_method, t_pdp_method accum_callback);

/* add a cleanup callback (called after all propagation is finished) for sources/sinks */
void pdp_dpd_base_add_cleanup(void *x, t_pdp_method cleanup_method, t_pdp_method accum_callback);

/* add an inspector callback */
void pdp_dpd_base_add_inspector(void *x, t_pdp_method inspector_method);


/* destructor */
void pdp_dpd_base_free(void *x);

/* init method */
void pdp_dpd_base_init(void *x);

/* disable dpd active inlet */
void pdp_dpd_base_disable_active_inlet(void *x);

/* enable/disable outlet */
void pdp_dpd_base_enable_outlet(void *x, int outlet, int toggle);

/* register notify method (called from the end of pdp_dpd_base_bang) */
void pdp_dpd_base_register_complete_notify(void *x, t_pdp_method method);

/* register a command init (factory) method 
   this method should return a command object to place in the queue */
void pdp_dpd_base_register_command_factory_method(void *x, t_pdp_newmethod command_factory_method);

/* class setup method */
void pdp_dpd_base_setup(t_class *class);

/* add a command to the process queue */
void pdp_dpd_base_queue_command(void *x, void *c, t_pdp_method process, 
				t_pdp_method callback, int *id);


/* get/set the queue instance (thread) used for scheduling */
#define pdp_dpd_base_set_queue   pdp_base_set_queue
#define pdp_dpd_base_get_queue   pdp_base_get_queue
#define pdp_dpd_base_queue_wait  pdp_base_queue_wait



#ifdef __cplusplus
}
#endif