This file is indexed.

/usr/include/swami/libswami/SwamiPropTree.h is in libswami-dev 2.0.0+svn389-1.

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
/*
 * SwamiPropTree.h - Header for property tree system
 * A tree of objects with inheritable active values.
 *
 * Swami
 * Copyright (C) 1999-2010 Joshua "Element" Green <jgreen@users.sourceforge.net>
 *
 * 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; version 2
 * of the License only.
 *
 * 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., 59 Temple Place - Suite 330, Boston, MA
 * 02111-1307, USA or point your web browser to http://www.gnu.org.
 */
#ifndef __SWAMI_PROP_TREE_H__
#define __SWAMI_PROP_TREE_H__

#include <glib.h>
#include <glib-object.h>

#include <libinstpatch/libinstpatch.h>

#include <libswami/SwamiControl.h>
#include <libswami/SwamiLock.h>

typedef struct _SwamiPropTree SwamiPropTree;
typedef struct _SwamiPropTreeClass SwamiPropTreeClass;
typedef struct _SwamiPropTreeNode SwamiPropTreeNode;
typedef struct _SwamiPropTreeValue SwamiPropTreeValue;

#define SWAMI_TYPE_PROP_TREE   (swami_prop_tree_get_type ())
#define SWAMI_PROP_TREE(obj) \
  (G_TYPE_CHECK_INSTANCE_CAST ((obj), SWAMI_TYPE_PROP_TREE, SwamiPropTree))
#define SWAMI_PROP_TREE_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_CAST ((klass), SWAMI_TYPE_PROP_TREE, SwamiPropTreeClass))
#define SWAMI_IS_PROP_TREE(obj) \
  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SWAMI_TYPE_PROP_TREE))
#define SWAMI_IS_PROP_TREE_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_TYPE ((klass), SWAMI_TYPE_PROP_TREE))

/* Swami property tree */
struct _SwamiPropTree
{
  SwamiLock parent_instance;	/* derived from SwamiLock */
  GNode *tree;		    /* tree of SwamiPropTreeNode structures */
  GHashTable *object_hash;	/* object->node hash */
};

struct _SwamiPropTreeClass
{
  SwamiLockClass parent_class;
};

/* defines a node of a property tree - an object with a list of node
   property values and cached object property values */
struct _SwamiPropTreeNode
{
  GObject *object;	  /* pointer to the object the node manages */
  GSList *values;	/* list of SwamiPropTreeValue for this node */
  GSList *cache; /* cached values for object (struct in SwamiPropTree.c) */
  guint16 flags;
  guint16 reserved;
};

/* defines an active value in a property tree */
struct _SwamiPropTreeValue
{
  GType prop_type; /* instance type owning property to match (0 = wildcard) */
  char *prop_name;		/* name of property to match */
  SwamiControl *control; /* source value control (defines the value) */
};

GType swami_prop_tree_get_type (void);
SwamiPropTree *swami_prop_tree_new (void);

void swami_prop_tree_set_root (SwamiPropTree *proptree, GObject *root);
void swami_prop_tree_prepend (SwamiPropTree *proptree, GObject *parent,
			      GObject *obj);
#define swami_prop_tree_append(proptree, parent, obj) \
  swami_prop_tree_insert_before (proptree, parent, NULL, obj)
void swami_prop_tree_insert_before (SwamiPropTree *proptree, GObject *parent,
				    GObject *sibling, GObject *obj);
void swami_prop_tree_remove (SwamiPropTree *proptree, GObject *obj);
void swami_prop_tree_remove_recursive (SwamiPropTree *proptree, GObject *obj);
void swami_prop_tree_replace (SwamiPropTree *proptree, GObject *old,
			      GObject *new);
IpatchList *swami_prop_tree_get_children (SwamiPropTree *proptree,
					  GObject *obj);
GNode *swami_prop_tree_object_get_node (SwamiPropTree *proptree, GObject *obj);

void swami_prop_tree_add_value (SwamiPropTree *proptree, GObject *obj,
				GType prop_type, const char *prop_name,
				SwamiControl *control);
void swami_prop_tree_remove_value (SwamiPropTree *proptree, GObject *obj,
				   GType prop_type, const char *prop_name);
#endif