KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > derby > impl > sql > execute > rts > RealMaterializedResultSetStatistics


1 /*
2
3    Derby - Class org.apache.derby.impl.sql.execute.rts.RealMaterializedResultSetStatistics
4
5    Licensed to the Apache Software Foundation (ASF) under one or more
6    contributor license agreements. See the NOTICE file distributed with
7    this work for additional information regarding copyright ownership.
8    The ASF licenses this file to you under the Apache License, Version 2.0
9    (the "License"); you may not use this file except in compliance with
10    the License. You may obtain a copy of the License at
11
12       http://www.apache.org/licenses/LICENSE-2.0
13
14    Unless required by applicable law or agreed to in writing, software
15    distributed under the License is distributed on an "AS IS" BASIS,
16    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17    See the License for the specific language governing permissions and
18    limitations under the License.
19
20  */

21
22 package org.apache.derby.impl.sql.execute.rts;
23
24 import org.apache.derby.iapi.services.io.StoredFormatIds;
25
26 import org.apache.derby.iapi.services.i18n.MessageService;
27 import org.apache.derby.iapi.reference.SQLState;
28
29 import org.apache.derby.iapi.services.io.FormatableHashtable;
30
31 import java.io.ObjectOutput JavaDoc;
32 import java.io.ObjectInput JavaDoc;
33 import java.io.IOException JavaDoc;
34
35 /**
36   ResultSetStatistics implemenation for MaterializedResultSet.
37
38   @author jerry
39
40 */

41 public class RealMaterializedResultSetStatistics
42     extends RealNoPutResultSetStatistics
43 {
44
45
46     /* Leave these fields public for object inspectors */
47     public ResultSetStatistics childResultSetStatistics;
48     public long createTCTime;
49     public long fetchTCTime;
50
51     // CONSTRUCTORS
52
/**
53      *
54      *
55      */

56     public RealMaterializedResultSetStatistics(
57                                 int numOpens,
58                                 int rowsSeen,
59                                 int rowsFiltered,
60                                 long constructorTime,
61                                 long openTime,
62                                 long nextTime,
63                                 long closeTime,
64                                 long createTCTime,
65                                 long fetchTCTime,
66                                 int resultSetNumber,
67                                 double optimizerEstimatedRowCount,
68                                 double optimizerEstimatedCost,
69                                 ResultSetStatistics childResultSetStatistics
70                                 )
71     {
72         super(
73             numOpens,
74             rowsSeen,
75             rowsFiltered,
76             constructorTime,
77             openTime,
78             nextTime,
79             closeTime,
80             resultSetNumber,
81             optimizerEstimatedRowCount,
82             optimizerEstimatedCost
83             );
84         this.createTCTime = createTCTime;
85         this.fetchTCTime = fetchTCTime;
86         this.childResultSetStatistics = childResultSetStatistics;
87     }
88
89     // ResultSetStatistics methods
90

91     /**
92      * Return the statement execution plan as a String.
93      *
94      * @param depth Indentation level.
95      *
96      * @return String The statement execution plan as a String.
97      */

98     public String JavaDoc getStatementExecutionPlanText(int depth)
99     {
100         initFormatInfo(depth);
101
102         return
103             indent + MessageService.getTextMessage(
104                                                 SQLState.RTS_MATERIALIZED_RS) +
105                     ":\n" +
106             indent + MessageService.getTextMessage(SQLState.RTS_NUM_OPENS) +
107                     " = " + numOpens + "\n" +
108             indent + MessageService.getTextMessage(SQLState.RTS_ROWS_SEEN) +
109                     " = " + rowsSeen + "\n" +
110             dumpTimeStats(indent, subIndent) + "\n" +
111             dumpEstimatedCosts(subIndent) + "\n" +
112             subIndent + MessageService.getTextMessage(
113                                         SQLState.RTS_TEMP_CONGLOM_CREATE_TIME) +
114                     " = " + createTCTime + "\n" +
115             subIndent + MessageService.getTextMessage(
116                                         SQLState.RTS_TEMP_CONGLOM_FETCH_TIME) +
117                     " = " + fetchTCTime + "\n" +
118             indent + MessageService.getTextMessage(SQLState.RTS_SOURCE_RS) +
119                     ":\n" +
120             childResultSetStatistics.getStatementExecutionPlanText(sourceDepth) + "\n";
121     }
122
123     /**
124      * Return information on the scan nodes from the statement execution
125      * plan as a String.
126      *
127      * @param depth Indentation level.
128      * @param tableName if not NULL then print information for this table only
129      *
130      * @return String The information on the scan nodes from the
131      * statement execution plan as a String.
132      */

133     public String JavaDoc getScanStatisticsText(String JavaDoc tableName, int depth)
134     {
135         return childResultSetStatistics.getScanStatisticsText(tableName, depth);
136     }
137  
138     // Class implementation
139

140     public String JavaDoc toString()
141     {
142         return getStatementExecutionPlanText(0);
143     }
144   public java.util.Vector JavaDoc getChildren(){
145     java.util.Vector JavaDoc children = new java.util.Vector JavaDoc();
146     children.addElement(childResultSetStatistics);
147     return children;
148   }
149     /**
150    * Format for display, a name for this node.
151      *
152      */

153   public String JavaDoc getNodeName(){
154     return MessageService.getTextMessage(SQLState.RTS_MATERIALIZED_RS);
155   }
156 }
157
Popular Tags