This file is indexed.

/usr/share/Ice-3.4.2/php/lib/IceGrid/Query.php is in php-zeroc-ice 3.4.2-4ubuntu1.

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
<?php
// **********************************************************************
//
// Copyright (c) 2003-2011 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
//
// Ice version 3.4.2
//
// <auto-generated>
//
// Generated from file `Query.ice'
//
// Warning: do not edit this file.
//
// </auto-generated>
//

require_once 'Ice/Identity.php';
require_once 'Ice/BuiltinSequences.php';
require_once 'IceGrid/Exception.php';

if(!class_exists('IceGrid_LoadSample'))
{
    class IceGrid_LoadSample
    {
        const LoadSample1 = 0;
        const LoadSample5 = 1;
        const LoadSample15 = 2;
    }

    $IceGrid__t_LoadSample = IcePHP_defineEnum('::IceGrid::LoadSample', array('LoadSample1', 'LoadSample5', 'LoadSample15'));
}

if(!interface_exists('IceGrid_Query'))
{
    interface IceGrid_Query
    {
        public function findObjectById($id);
        public function findObjectByType($type);
        public function findObjectByTypeOnLeastLoadedNode($type, $sample);
        public function findAllObjectsByType($type);
        public function findAllReplicas($proxy);
    }

    class IceGrid_QueryPrxHelper
    {
        public static function checkedCast($proxy, $facetOrCtx=null, $ctx=null)
        {
            return $proxy->ice_checkedCast('::IceGrid::Query', $facetOrCtx, $ctx);
        }

        public static function uncheckedCast($proxy, $facet=null)
        {
            return $proxy->ice_uncheckedCast('::IceGrid::Query', $facet);
        }
    }

    $IceGrid__t_Query = IcePHP_defineClass('::IceGrid::Query', 'IceGrid_Query', true, $Ice__t_Object, null, null);

    $IceGrid__t_QueryPrx = IcePHP_defineProxy($IceGrid__t_Query);

    IcePHP_defineOperation($IceGrid__t_Query, 'findObjectById', 2, 1, array($Ice__t_Identity), null, $Ice__t_ObjectPrx, null);
    IcePHP_defineOperation($IceGrid__t_Query, 'findObjectByType', 2, 1, array($IcePHP__t_string), null, $Ice__t_ObjectPrx, null);
    IcePHP_defineOperation($IceGrid__t_Query, 'findObjectByTypeOnLeastLoadedNode', 2, 1, array($IcePHP__t_string, $IceGrid__t_LoadSample), null, $Ice__t_ObjectPrx, null);
    IcePHP_defineOperation($IceGrid__t_Query, 'findAllObjectsByType', 2, 1, array($IcePHP__t_string), null, $Ice__t_ObjectProxySeq, null);
    IcePHP_defineOperation($IceGrid__t_Query, 'findAllReplicas', 2, 2, array($Ice__t_ObjectPrx), null, $Ice__t_ObjectProxySeq, null);
}
?>