File: sort.sidl

package info (click to toggle)
babel 0.10.2-1
  • links: PTS
  • area: contrib
  • in suites: sarge
  • size: 43,932 kB
  • ctags: 29,707
  • sloc: java: 74,695; ansic: 73,142; cpp: 40,649; sh: 18,411; f90: 10,062; fortran: 6,727; python: 6,406; makefile: 3,866; xml: 118; perl: 48
file content (229 lines) | stat: -rw-r--r-- 5,392 bytes parent folder | download
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
// Copyright (c) 2001, The Regents of the University of Calfornia.
// Produced at the Lawrence Livermore National Laboratory.
// Written by the Components Team <components@llnl.gov>
// UCRL-CODE-2002-054
// All rights reserved.
// 
// This file is part of Babel. For more information, see
// http://www.llnl.gov/CASC/components/. Please read the COPYRIGHT file
// for Our Notice and the LICENSE file for the GNU Lesser General Public
// License.
// 
// This program 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) version 2.1 dated February 1999.
// 
// 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 terms and
// conditions of the GNU Lesser General Public License for more details.
// 
// You should have recieved a copy of the GNU Lesser 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
/*
 * File:	sort.sidl
 * Copyright:	(c) 2002 The Regents of the University of California
 * Revision:    @(#) $Revision: 4434 $
 * Date:        $Date: 2005-03-17 09:05:29 -0800 (Thu, 17 Mar 2005) $
 * Description: A regression test for abstract classes and interfaces
 */

import sidl;

/**
 * The sort package provides a regression test for abstract classes
 * and interfaces as arguments. It is not intended for use in real
 * applications as it is designed primarily to exercise features
 * in BABEL.
 *
 */
package sort version 0.1 {

  /**
   * This is a simple counter interface.  You can read the count and
   * reset it to zero.
   */
  interface Counter {
    /**
     * Set the count to zero.
     */
    void reset();

    /**
     * Return the current count.
     */
    int getCount();

    /**
     * Increment the count (i.e. add one).
     */
    int inc();
  };

  /**
   * A Comparator provides an ordering for a type of objects.
   */
  interface Comparator {
    /**
     * This method is used to define an ordering of objects.  This method
     * will return -1 if i1 < i2, 0 if i1 = i2; and 1 if i1 > i2.
     */
    int compare(in BaseInterface i1, in BaseInterface i2);
  };
  
  /**
   * A container for elements of the same type.
   */
  interface Container {
     /**
      * Return the number of elements in the container.
      */
     int getLength();

     /**
      * Return -1 if element i is less than element j, 0 if element i
      * is equal to element j, or otherwise 1.
      */
     int compare(in int i, in int j, in Comparator comp);

     /**
      * Swap elements i and j.
      */
     void swap(in int i, in int j);

     /**
      * Print elements s through e-1
      */
     void output(in int s, in int e);
  };

  /**
   * An abstract sorting algorithm.
   */
  abstract class SortingAlgorithm {

    /**
     * Return the comparison counter.
     */
    Counter getCompareCounter();

    /**
     * Return the swap counter.
     */
    Counter getSwapCounter();

    /**
     * Reset the comparison and swap counter.
     */
    void reset();

    /**
     * Sort elems according to the ordering implied by comp.
     */
    abstract void sort(in Container  elems,
                       in Comparator comp);

    /**
     * Return the name of the sorting algorithm.
     */
    abstract string getName();
  };

  /**
   * Quick sort
   */
  class QuickSort extends SortingAlgorithm {
    /**
     * Sort elements using Quick Sort.
     */
    void sort(in Container elems, in Comparator comp);

    /**
     * Return quick sort.
     */
    string getName();
  }

  /**
   * Heap sort
   */
  class HeapSort extends SortingAlgorithm {
    /**
     * Sort elements using Heap Sort.
     */
    void sort(in Container elems, in Comparator comp);

    /**
     * Return heap sort.
     */
    string getName();
  }

  /**
   * Merge sort
   */
  class MergeSort extends SortingAlgorithm {
    /**
     * Sort elements using Merge Sort.
     */
    void sort(in Container elems, in Comparator comp);

    /**
     * Return merge sort.
     */
    string getName();
  }

  /**
   * Run a bunch of sorts through a stress test.
   */
  class SortTest {
    /**
     * Perform the array stress test.
     * 
     * Return true if all the algorithms work okay.
     */
    static bool stressTest(in array<SortingAlgorithm> algs);
  }

  /**
   * An object to hold a simple integer.
   */
  class Integer {
     int getValue();

     void setValue(in int value);
  }

  /**
   * Integer container.
   */
  class IntegerContainer implements-all Container {

    /**
     * This sets the container length and pseudo-randomly orders the
     * Integer elements contained.
     */
    void setLength(in int len);
  }

  /**
   * Compare two Integer's.  By default, this will sort in increasing order.
   */
  class CompInt implements-all Comparator {
     
     /**
      * If increasing is true, this will cause the comparator to
      * report a normal definition of less than; otherwise, it will
      * reverse the normal ordering.
      */
     void setSortIncreasing(in bool increasing);
  }

  /**
   * Simple counter
   */
  class SimpleCounter implements-all Counter {
  }
}