Annotation of loncom/interface/loncoursedata.pm, revision 1.149
1.1 stredwic 1: # The LearningOnline Network with CAPA
2: #
1.149 ! albertel 3: # $Id: loncoursedata.pm,v 1.148 2005/04/19 15:44:40 matthew Exp $
1.1 stredwic 4: #
5: # Copyright Michigan State University Board of Trustees
6: #
7: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
8: #
9: # LON-CAPA is free software; you can redistribute it and/or modify
10: # it under the terms of the GNU General Public License as published by
11: # the Free Software Foundation; either version 2 of the License, or
12: # (at your option) any later version.
13: #
14: # LON-CAPA is distributed in the hope that it will be useful,
15: # but WITHOUT ANY WARRANTY; without even the implied warranty of
16: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17: # GNU General Public License for more details.
18: #
19: # You should have received a copy of the GNU General Public License
20: # along with LON-CAPA; if not, write to the Free Software
21: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22: #
23: # /home/httpd/html/adm/gpl.txt
24: #
25: # http://www.lon-capa.org/
26: #
27: ###
28:
29: =pod
30:
31: =head1 NAME
32:
33: loncoursedata
34:
35: =head1 SYNOPSIS
36:
1.22 stredwic 37: Set of functions that download and process student and course information.
1.1 stredwic 38:
39: =head1 PACKAGES USED
40:
41: Apache::Constants qw(:common :http)
42: Apache::lonnet()
1.22 stredwic 43: Apache::lonhtmlcommon
1.1 stredwic 44: HTML::TokeParser
45: GDBM_File
46:
47: =cut
48:
49: package Apache::loncoursedata;
50:
51: use strict;
52: use Apache::Constants qw(:common :http);
1.146 albertel 53: use Apache::lonnet;
1.13 stredwic 54: use Apache::lonhtmlcommon;
1.57 matthew 55: use Time::HiRes;
56: use Apache::lonmysql;
1.1 stredwic 57: use HTML::TokeParser;
58: use GDBM_File;
59:
60: =pod
61:
62: =head1 DOWNLOAD INFORMATION
63:
1.22 stredwic 64: This section contains all the functions that get data from other servers
65: and/or itself.
1.1 stredwic 66:
67: =cut
68:
1.4 stredwic 69: sub LoadDiscussion {
1.13 stredwic 70: my ($courseID)=@_;
1.5 minaeibi 71: my %Discuss=();
72: my %contrib=&Apache::lonnet::dump(
73: $courseID,
1.146 albertel 74: $env{'course.'.$courseID.'.domain'},
75: $env{'course.'.$courseID.'.num'});
1.5 minaeibi 76:
77: #my %contrib=&DownloadCourseInformation($name, $courseID, 0);
78:
1.4 stredwic 79: foreach my $temp(keys %contrib) {
80: if ($temp=~/^version/) {
81: my $ver=$contrib{$temp};
82: my ($dummy,$prb)=split(':',$temp);
83: for (my $idx=1; $idx<=$ver; $idx++ ) {
84: my $name=$contrib{"$idx:$prb:sendername"};
1.5 minaeibi 85: $Discuss{"$name:$prb"}=$idx;
1.4 stredwic 86: }
87: }
88: }
1.5 minaeibi 89:
90: return \%Discuss;
1.1 stredwic 91: }
92:
1.71 matthew 93: ################################################
94: ################################################
95:
96: =pod
97:
1.47 matthew 98: =item &make_into_hash($values);
99:
100: Returns a reference to a hash as described by $values. $values is
101: assumed to be the result of
1.57 matthew 102: join(':',map {&Apache::lonnet::escape($_)} %orighash);
1.47 matthew 103:
104: This is a helper function for get_current_state.
105:
106: =cut
107:
108: ################################################
109: ################################################
110: sub make_into_hash {
111: my $values = shift;
112: my %tmp = map { &Apache::lonnet::unescape($_); }
113: split(':',$values);
114: return \%tmp;
115: }
116:
117:
118: ################################################
119: ################################################
120:
121: =pod
122:
1.57 matthew 123: =head1 LOCAL DATA CACHING SUBROUTINES
124:
125: The local caching is done using MySQL. There is no fall-back implementation
126: if MySQL is not running.
127:
128: The programmers interface is to call &get_current_state() or some other
129: primary interface subroutine (described below). The internals of this
130: storage system are documented here.
131:
132: There are six tables used to store student performance data (the results of
133: a dumpcurrent). Each of these tables is created in MySQL with a name of
134: $courseid_*****, where ***** is 'symb', 'part', or whatever is appropriate
135: for the table. The tables and their purposes are described below.
136:
137: Some notes before we get started.
138:
139: Each table must have a PRIMARY KEY, which is a column or set of columns which
140: will serve to uniquely identify a row of data. NULL is not allowed!
141:
142: INDEXes work best on integer data.
143:
144: JOIN is used to combine data from many tables into one output.
145:
146: lonmysql.pm is used for some of the interface, specifically the table creation
147: calls. The inserts are done in bulk by directly calling the database handler.
148: The SELECT ... JOIN statement used to retrieve the data does not have an
149: interface in lonmysql.pm and I shudder at the thought of writing one.
150:
151: =head3 Table Descriptions
152:
153: =over 4
154:
1.89 matthew 155: =item Tables used to store meta information
156:
157: The following tables hold data required to keep track of the current status
158: of a students data in the tables or to look up the students data in the tables.
159:
160: =over 4
161:
1.57 matthew 162: =item $symb_table
163:
164: The symb_table has two columns. The first is a 'symb_id' and the second
165: is the text name for the 'symb' (limited to 64k). The 'symb_id' is generated
166: automatically by MySQL so inserts should be done on this table with an
167: empty first element. This table has its PRIMARY KEY on the 'symb_id'.
168:
169: =item $part_table
170:
171: The part_table has two columns. The first is a 'part_id' and the second
172: is the text name for the 'part' (limited to 100 characters). The 'part_id' is
173: generated automatically by MySQL so inserts should be done on this table with
174: an empty first element. This table has its PRIMARY KEY on the 'part' (100
175: characters) and a KEY on 'part_id'.
176:
177: =item $student_table
178:
1.113 matthew 179: The student_table has 7 columns. The first is a 'student_id' assigned by
180: MySQL. The second is 'student' which is username:domain. The third through
181: fifth are 'section', 'status' (enrollment status), and 'classification'
182: (to be used in the future). The sixth and seventh ('updatetime' and
183: 'fullupdatetime') contain the time of last update and full update of student
184: data. This table has its PRIMARY KEY on the 'student_id' column and is indexed
185: on 'student', 'section', and 'status'.
1.89 matthew 186:
187: =back
188:
189: =item Tables used to store current status data
190:
191: The following tables store data only about the students current status on
192: a problem, meaning only the data related to the last attempt on a problem.
193:
194: =over 4
1.57 matthew 195:
196: =item $performance_table
197:
198: The performance_table has 9 columns. The first three are 'symb_id',
199: 'student_id', and 'part_id'. These comprise the PRIMARY KEY for this table
200: and are directly related to the $symb_table, $student_table, and $part_table
201: described above. MySQL does better indexing on numeric items than text,
202: so we use these three "index tables". The remaining columns are
203: 'solved', 'tries', 'awarded', 'award', 'awarddetail', and 'timestamp'.
204: These are either the MySQL type TINYTEXT or various integers ('tries' and
205: 'timestamp'). This table has KEYs of 'student_id' and 'symb_id'.
206: For use of this table, see the functions described below.
207:
208: =item $parameters_table
209:
210: The parameters_table holds the data that does not fit neatly into the
211: performance_table. The parameters table has four columns: 'symb_id',
212: 'student_id', 'parameter', and 'value'. 'symb_id', 'student_id', and
213: 'parameter' comprise the PRIMARY KEY for this table. 'parameter' is
214: limited to 255 characters. 'value' is limited to 64k characters.
215:
216: =back
217:
1.89 matthew 218: =item Tables used for storing historic data
219:
220: The following tables are used to store almost all of the transactions a student
221: has made on a homework problem. See loncapa/docs/homework/datastorage for
222: specific information about each of the parameters stored.
223:
224: =over 4
225:
226: =item $fulldump_response_table
227:
228: The response table holds data (documented in loncapa/docs/homework/datastorage)
229: associated with a particular response id which is stored when a student
230: attempts a problem. The following are the columns of the table, in order:
231: 'symb_id','part_id','response_id','student_id','transaction','tries',
1.93 matthew 232: 'awarddetail', 'response_specific' (data particular to the response
1.89 matthew 233: type), 'response_specific_value', and 'submission (the text of the students
234: submission). The primary key is based on the first five columns listed above.
235:
236: =item $fulldump_part_table
237:
238: The part table holds data (documented in loncapa/docs/homework/datastorage)
239: associated with a particular part id which is stored when a student attempts
240: a problem. The following are the columns of the table, in order:
241: 'symb_id','part_id','student_id','transaction','tries','award','awarded',
242: and 'previous'. The primary key is based on the first five columns listed
243: above.
244:
245: =item $fulldump_timestamp_table
246:
247: The timestamp table holds the timestamps of the transactions which are
248: stored in $fulldump_response_table and $fulldump_part_table. This data is
249: about both the response and part data. Columns: 'symb_id','student_id',
250: 'transaction', and 'timestamp'.
251: The primary key is based on the first 3 columns.
252:
1.127 matthew 253: =item $weight_table
254:
255: The weight table holds the weight for the problems used in the class.
256: Whereas the weight of a problem can vary by section and student the data
257: here is applied to the class as a whole.
258: Columns: 'symb_id','part_id','response_id','weight'.
259:
1.89 matthew 260: =back
261:
262: =back
263:
1.57 matthew 264: =head3 Important Subroutines
265:
266: Here is a brief overview of the subroutines which are likely to be of
267: interest:
268:
269: =over 4
270:
271: =item &get_current_state(): programmers interface.
272:
273: =item &init_dbs(): table creation
274:
275: =item &update_student_data(): data storage calls
276:
277: =item &get_student_data_from_performance_cache(): data retrieval
278:
279: =back
280:
281: =head3 Main Documentation
282:
283: =over 4
284:
285: =cut
286:
287: ################################################
288: ################################################
289:
290: ################################################
291: ################################################
1.89 matthew 292: { # Begin scope of table identifiers
1.57 matthew 293:
294: my $current_course ='';
295: my $symb_table;
296: my $part_table;
297: my $student_table;
298: my $performance_table;
299: my $parameters_table;
1.89 matthew 300: my $fulldump_response_table;
301: my $fulldump_part_table;
302: my $fulldump_timestamp_table;
1.127 matthew 303: my $weight_table;
1.57 matthew 304:
1.89 matthew 305: my @Tables;
1.57 matthew 306: ################################################
307: ################################################
308:
309: =pod
310:
311: =item &init_dbs()
312:
313: Input: course id
314:
315: Output: 0 on success, positive integer on error
316:
317: This routine issues the calls to lonmysql to create the tables used to
318: store student data.
319:
320: =cut
321:
322: ################################################
323: ################################################
324: sub init_dbs {
1.134 matthew 325: my ($courseid,$drop) = @_;
1.57 matthew 326: &setup_table_names($courseid);
327: #
1.73 matthew 328: # Drop any of the existing tables
1.134 matthew 329: if ($drop) {
330: foreach my $table (@Tables) {
331: &Apache::lonmysql::drop_table($table);
332: }
1.73 matthew 333: }
334: #
1.57 matthew 335: # Note - changes to this table must be reflected in the code that
336: # stores the data (calls &Apache::lonmysql::store_row with this table
337: # id
338: my $symb_table_def = {
339: id => $symb_table,
340: permanent => 'no',
341: columns => [{ name => 'symb_id',
342: type => 'MEDIUMINT UNSIGNED',
343: restrictions => 'NOT NULL',
344: auto_inc => 'yes', },
345: { name => 'symb',
346: type => 'MEDIUMTEXT',
347: restrictions => 'NOT NULL'},
348: ],
349: 'PRIMARY KEY' => ['symb_id'],
350: };
351: #
352: my $part_table_def = {
353: id => $part_table,
354: permanent => 'no',
355: columns => [{ name => 'part_id',
356: type => 'MEDIUMINT UNSIGNED',
357: restrictions => 'NOT NULL',
358: auto_inc => 'yes', },
359: { name => 'part',
1.132 matthew 360: type => 'VARCHAR(100) BINARY',
1.57 matthew 361: restrictions => 'NOT NULL'},
362: ],
363: 'PRIMARY KEY' => ['part (100)'],
364: 'KEY' => [{ columns => ['part_id']},],
365: };
366: #
367: my $student_table_def = {
368: id => $student_table,
369: permanent => 'no',
370: columns => [{ name => 'student_id',
371: type => 'MEDIUMINT UNSIGNED',
372: restrictions => 'NOT NULL',
373: auto_inc => 'yes', },
374: { name => 'student',
1.132 matthew 375: type => 'VARCHAR(100) BINARY',
1.113 matthew 376: restrictions => 'NOT NULL UNIQUE'},
377: { name => 'section',
1.132 matthew 378: type => 'VARCHAR(100) BINARY',
1.113 matthew 379: restrictions => 'NOT NULL'},
380: { name => 'status',
1.132 matthew 381: type => 'VARCHAR(15) BINARY',
1.57 matthew 382: restrictions => 'NOT NULL'},
1.85 matthew 383: { name => 'classification',
1.132 matthew 384: type => 'VARCHAR(100) BINARY', },
1.57 matthew 385: { name => 'updatetime',
1.89 matthew 386: type => 'INT UNSIGNED'},
387: { name => 'fullupdatetime',
388: type => 'INT UNSIGNED'},
1.57 matthew 389: ],
1.87 matthew 390: 'PRIMARY KEY' => ['student_id'],
1.113 matthew 391: 'KEY' => [{ columns => ['student (100)',
392: 'section (100)',
393: 'status (15)',]},],
1.57 matthew 394: };
395: #
396: my $performance_table_def = {
397: id => $performance_table,
398: permanent => 'no',
399: columns => [{ name => 'symb_id',
400: type => 'MEDIUMINT UNSIGNED',
401: restrictions => 'NOT NULL' },
402: { name => 'student_id',
403: type => 'MEDIUMINT UNSIGNED',
404: restrictions => 'NOT NULL' },
405: { name => 'part_id',
406: type => 'MEDIUMINT UNSIGNED',
407: restrictions => 'NOT NULL' },
1.73 matthew 408: { name => 'part',
1.132 matthew 409: type => 'VARCHAR(100) BINARY',
1.73 matthew 410: restrictions => 'NOT NULL'},
1.57 matthew 411: { name => 'solved',
412: type => 'TINYTEXT' },
413: { name => 'tries',
414: type => 'SMALLINT UNSIGNED' },
415: { name => 'awarded',
1.127 matthew 416: type => 'REAL' },
1.57 matthew 417: { name => 'award',
418: type => 'TINYTEXT' },
419: { name => 'awarddetail',
420: type => 'TINYTEXT' },
421: { name => 'timestamp',
422: type => 'INT UNSIGNED'},
423: ],
424: 'PRIMARY KEY' => ['symb_id','student_id','part_id'],
425: 'KEY' => [{ columns=>['student_id'] },
426: { columns=>['symb_id'] },],
427: };
428: #
1.89 matthew 429: my $fulldump_part_table_def = {
430: id => $fulldump_part_table,
431: permanent => 'no',
432: columns => [
433: { name => 'symb_id',
434: type => 'MEDIUMINT UNSIGNED',
435: restrictions => 'NOT NULL' },
436: { name => 'part_id',
437: type => 'MEDIUMINT UNSIGNED',
438: restrictions => 'NOT NULL' },
439: { name => 'student_id',
440: type => 'MEDIUMINT UNSIGNED',
441: restrictions => 'NOT NULL' },
442: { name => 'transaction',
443: type => 'MEDIUMINT UNSIGNED',
444: restrictions => 'NOT NULL' },
445: { name => 'tries',
446: type => 'SMALLINT UNSIGNED',
447: restrictions => 'NOT NULL' },
448: { name => 'award',
449: type => 'TINYTEXT' },
450: { name => 'awarded',
1.127 matthew 451: type => 'REAL' },
1.89 matthew 452: { name => 'previous',
453: type => 'SMALLINT UNSIGNED' },
454: # { name => 'regrader',
455: # type => 'TINYTEXT' },
456: # { name => 'afterduedate',
457: # type => 'TINYTEXT' },
458: ],
459: 'PRIMARY KEY' => ['symb_id','part_id','student_id','transaction'],
460: 'KEY' => [
461: { columns=>['symb_id'] },
462: { columns=>['part_id'] },
463: { columns=>['student_id'] },
464: ],
465: };
466: #
467: my $fulldump_response_table_def = {
468: id => $fulldump_response_table,
469: permanent => 'no',
470: columns => [
471: { name => 'symb_id',
472: type => 'MEDIUMINT UNSIGNED',
473: restrictions => 'NOT NULL' },
474: { name => 'part_id',
475: type => 'MEDIUMINT UNSIGNED',
476: restrictions => 'NOT NULL' },
477: { name => 'response_id',
478: type => 'MEDIUMINT UNSIGNED',
479: restrictions => 'NOT NULL' },
480: { name => 'student_id',
481: type => 'MEDIUMINT UNSIGNED',
482: restrictions => 'NOT NULL' },
483: { name => 'transaction',
484: type => 'MEDIUMINT UNSIGNED',
485: restrictions => 'NOT NULL' },
486: { name => 'awarddetail',
487: type => 'TINYTEXT' },
488: # { name => 'message',
1.132 matthew 489: # type => 'CHAR BINARY'},
1.89 matthew 490: { name => 'response_specific',
491: type => 'TINYTEXT' },
492: { name => 'response_specific_value',
493: type => 'TINYTEXT' },
494: { name => 'submission',
495: type => 'TEXT'},
496: ],
497: 'PRIMARY KEY' => ['symb_id','part_id','response_id','student_id',
498: 'transaction'],
499: 'KEY' => [
500: { columns=>['symb_id'] },
501: { columns=>['part_id','response_id'] },
502: { columns=>['student_id'] },
503: ],
504: };
505: my $fulldump_timestamp_table_def = {
506: id => $fulldump_timestamp_table,
507: permanent => 'no',
508: columns => [
509: { name => 'symb_id',
510: type => 'MEDIUMINT UNSIGNED',
511: restrictions => 'NOT NULL' },
512: { name => 'student_id',
513: type => 'MEDIUMINT UNSIGNED',
514: restrictions => 'NOT NULL' },
515: { name => 'transaction',
516: type => 'MEDIUMINT UNSIGNED',
517: restrictions => 'NOT NULL' },
518: { name => 'timestamp',
519: type => 'INT UNSIGNED'},
520: ],
521: 'PRIMARY KEY' => ['symb_id','student_id','transaction'],
522: 'KEY' => [
523: { columns=>['symb_id'] },
524: { columns=>['student_id'] },
525: { columns=>['transaction'] },
526: ],
527: };
528: #
1.57 matthew 529: my $parameters_table_def = {
530: id => $parameters_table,
531: permanent => 'no',
532: columns => [{ name => 'symb_id',
533: type => 'MEDIUMINT UNSIGNED',
534: restrictions => 'NOT NULL' },
535: { name => 'student_id',
536: type => 'MEDIUMINT UNSIGNED',
537: restrictions => 'NOT NULL' },
538: { name => 'parameter',
539: type => 'TINYTEXT',
540: restrictions => 'NOT NULL' },
541: { name => 'value',
542: type => 'MEDIUMTEXT' },
543: ],
544: 'PRIMARY KEY' => ['symb_id','student_id','parameter (255)'],
545: };
546: #
1.127 matthew 547: my $weight_table_def = {
548: id => $weight_table,
549: permanent => 'no',
550: columns => [{ name => 'symb_id',
551: type => 'MEDIUMINT UNSIGNED',
552: restrictions => 'NOT NULL' },
553: { name => 'part_id',
554: type => 'MEDIUMINT UNSIGNED',
555: restrictions => 'NOT NULL' },
556: { name => 'weight',
557: type => 'REAL',
558: restrictions => 'NOT NULL' },
559: ],
560: 'PRIMARY KEY' => ['symb_id','part_id'],
561: };
562: #
1.57 matthew 563: # Create the tables
564: my $tableid;
565: $tableid = &Apache::lonmysql::create_table($symb_table_def);
566: if (! defined($tableid)) {
567: &Apache::lonnet::logthis("error creating symb_table: ".
568: &Apache::lonmysql::get_error());
569: return 1;
570: }
571: #
572: $tableid = &Apache::lonmysql::create_table($part_table_def);
573: if (! defined($tableid)) {
574: &Apache::lonnet::logthis("error creating part_table: ".
575: &Apache::lonmysql::get_error());
576: return 2;
577: }
578: #
579: $tableid = &Apache::lonmysql::create_table($student_table_def);
580: if (! defined($tableid)) {
581: &Apache::lonnet::logthis("error creating student_table: ".
582: &Apache::lonmysql::get_error());
583: return 3;
584: }
585: #
586: $tableid = &Apache::lonmysql::create_table($performance_table_def);
587: if (! defined($tableid)) {
588: &Apache::lonnet::logthis("error creating preformance_table: ".
589: &Apache::lonmysql::get_error());
590: return 5;
591: }
592: #
593: $tableid = &Apache::lonmysql::create_table($parameters_table_def);
594: if (! defined($tableid)) {
595: &Apache::lonnet::logthis("error creating parameters_table: ".
596: &Apache::lonmysql::get_error());
597: return 6;
598: }
1.89 matthew 599: #
600: $tableid = &Apache::lonmysql::create_table($fulldump_part_table_def);
601: if (! defined($tableid)) {
602: &Apache::lonnet::logthis("error creating fulldump_part_table: ".
603: &Apache::lonmysql::get_error());
604: return 7;
605: }
606: #
607: $tableid = &Apache::lonmysql::create_table($fulldump_response_table_def);
608: if (! defined($tableid)) {
609: &Apache::lonnet::logthis("error creating fulldump_response_table: ".
610: &Apache::lonmysql::get_error());
611: return 8;
612: }
613: $tableid = &Apache::lonmysql::create_table($fulldump_timestamp_table_def);
614: if (! defined($tableid)) {
615: &Apache::lonnet::logthis("error creating fulldump_timestamp_table: ".
616: &Apache::lonmysql::get_error());
617: return 9;
618: }
1.127 matthew 619: $tableid = &Apache::lonmysql::create_table($weight_table_def);
620: if (! defined($tableid)) {
621: &Apache::lonnet::logthis("error creating weight_table: ".
622: &Apache::lonmysql::get_error());
623: return 10;
624: }
1.57 matthew 625: return 0;
1.70 matthew 626: }
627:
628: ################################################
629: ################################################
630:
631: =pod
632:
633: =item &delete_caches()
634:
1.144 matthew 635: This routine drops all the tables associated with a course from the
636: MySQL database.
637:
638: Input: course id (optional, determined by environment if omitted)
639:
640: Returns: nothing
641:
1.70 matthew 642: =cut
643:
644: ################################################
645: ################################################
646: sub delete_caches {
647: my $courseid = shift;
1.146 albertel 648: $courseid = $env{'request.course.id'} if (! defined($courseid));
1.70 matthew 649: #
650: &setup_table_names($courseid);
651: #
652: my $dbh = &Apache::lonmysql::get_dbh();
1.89 matthew 653: foreach my $table (@Tables) {
1.70 matthew 654: my $command = 'DROP TABLE '.$table.';';
655: $dbh->do($command);
656: if ($dbh->err) {
657: &Apache::lonnet::logthis($command.' resulted in error: '.$dbh->errstr);
658: }
659: }
660: return;
1.57 matthew 661: }
662:
663: ################################################
664: ################################################
665:
666: =pod
667:
668: =item &get_part_id()
669:
670: Get the MySQL id of a problem part string.
671:
672: Input: $part
673:
674: Output: undef on error, integer $part_id on success.
675:
676: =item &get_part()
677:
678: Get the string describing a part from the MySQL id of the problem part.
679:
680: Input: $part_id
681:
682: Output: undef on error, $part string on success.
683:
684: =cut
685:
686: ################################################
687: ################################################
688:
1.61 matthew 689: my $have_read_part_table = 0;
1.57 matthew 690: my %ids_by_part;
691: my %parts_by_id;
692:
693: sub get_part_id {
694: my ($part) = @_;
1.61 matthew 695: $part = 0 if (! defined($part));
696: if (! $have_read_part_table) {
697: my @Result = &Apache::lonmysql::get_rows($part_table);
698: foreach (@Result) {
699: $ids_by_part{$_->[1]}=$_->[0];
700: }
701: $have_read_part_table = 1;
702: }
1.57 matthew 703: if (! exists($ids_by_part{$part})) {
704: &Apache::lonmysql::store_row($part_table,[undef,$part]);
705: undef(%ids_by_part);
706: my @Result = &Apache::lonmysql::get_rows($part_table);
707: foreach (@Result) {
708: $ids_by_part{$_->[1]}=$_->[0];
709: }
710: }
711: return $ids_by_part{$part} if (exists($ids_by_part{$part}));
712: return undef; # error
713: }
714:
715: sub get_part {
716: my ($part_id) = @_;
717: if (! exists($parts_by_id{$part_id}) ||
718: ! defined($parts_by_id{$part_id}) ||
719: $parts_by_id{$part_id} eq '') {
720: my @Result = &Apache::lonmysql::get_rows($part_table);
721: foreach (@Result) {
722: $parts_by_id{$_->[0]}=$_->[1];
723: }
724: }
725: return $parts_by_id{$part_id} if(exists($parts_by_id{$part_id}));
726: return undef; # error
727: }
728:
729: ################################################
730: ################################################
731:
732: =pod
733:
734: =item &get_symb_id()
735:
736: Get the MySQL id of a symb.
737:
738: Input: $symb
739:
740: Output: undef on error, integer $symb_id on success.
741:
742: =item &get_symb()
743:
744: Get the symb associated with a MySQL symb_id.
745:
746: Input: $symb_id
747:
748: Output: undef on error, $symb on success.
749:
750: =cut
751:
752: ################################################
753: ################################################
754:
1.61 matthew 755: my $have_read_symb_table = 0;
1.57 matthew 756: my %ids_by_symb;
757: my %symbs_by_id;
758:
759: sub get_symb_id {
760: my ($symb) = @_;
1.61 matthew 761: if (! $have_read_symb_table) {
762: my @Result = &Apache::lonmysql::get_rows($symb_table);
763: foreach (@Result) {
764: $ids_by_symb{$_->[1]}=$_->[0];
765: }
766: $have_read_symb_table = 1;
767: }
1.57 matthew 768: if (! exists($ids_by_symb{$symb})) {
769: &Apache::lonmysql::store_row($symb_table,[undef,$symb]);
770: undef(%ids_by_symb);
771: my @Result = &Apache::lonmysql::get_rows($symb_table);
772: foreach (@Result) {
773: $ids_by_symb{$_->[1]}=$_->[0];
774: }
775: }
776: return $ids_by_symb{$symb} if(exists( $ids_by_symb{$symb}));
777: return undef; # error
778: }
779:
780: sub get_symb {
781: my ($symb_id) = @_;
782: if (! exists($symbs_by_id{$symb_id}) ||
783: ! defined($symbs_by_id{$symb_id}) ||
784: $symbs_by_id{$symb_id} eq '') {
785: my @Result = &Apache::lonmysql::get_rows($symb_table);
786: foreach (@Result) {
787: $symbs_by_id{$_->[0]}=$_->[1];
788: }
789: }
790: return $symbs_by_id{$symb_id} if(exists( $symbs_by_id{$symb_id}));
791: return undef; # error
792: }
793:
794: ################################################
795: ################################################
796:
797: =pod
798:
799: =item &get_student_id()
800:
801: Get the MySQL id of a student.
802:
803: Input: $sname, $dom
804:
805: Output: undef on error, integer $student_id on success.
806:
807: =item &get_student()
808:
809: Get student username:domain associated with the MySQL student_id.
810:
811: Input: $student_id
812:
813: Output: undef on error, string $student (username:domain) on success.
814:
815: =cut
816:
817: ################################################
818: ################################################
819:
1.61 matthew 820: my $have_read_student_table = 0;
1.57 matthew 821: my %ids_by_student;
822: my %students_by_id;
823:
824: sub get_student_id {
825: my ($sname,$sdom) = @_;
826: my $student = $sname.':'.$sdom;
1.61 matthew 827: if (! $have_read_student_table) {
828: my @Result = &Apache::lonmysql::get_rows($student_table);
829: foreach (@Result) {
830: $ids_by_student{$_->[1]}=$_->[0];
831: }
832: $have_read_student_table = 1;
833: }
1.57 matthew 834: if (! exists($ids_by_student{$student})) {
1.113 matthew 835: &populate_student_table();
1.57 matthew 836: undef(%ids_by_student);
1.113 matthew 837: undef(%students_by_id);
1.57 matthew 838: my @Result = &Apache::lonmysql::get_rows($student_table);
839: foreach (@Result) {
840: $ids_by_student{$_->[1]}=$_->[0];
841: }
842: }
843: return $ids_by_student{$student} if(exists( $ids_by_student{$student}));
844: return undef; # error
845: }
846:
847: sub get_student {
848: my ($student_id) = @_;
849: if (! exists($students_by_id{$student_id}) ||
850: ! defined($students_by_id{$student_id}) ||
851: $students_by_id{$student_id} eq '') {
852: my @Result = &Apache::lonmysql::get_rows($student_table);
853: foreach (@Result) {
854: $students_by_id{$_->[0]}=$_->[1];
855: }
856: }
857: return $students_by_id{$student_id} if(exists($students_by_id{$student_id}));
858: return undef; # error
859: }
1.99 matthew 860:
1.113 matthew 861: sub populate_student_table {
862: my ($courseid) = @_;
863: if (! defined($courseid)) {
1.146 albertel 864: $courseid = $env{'request.course.id'};
1.113 matthew 865: }
866: #
867: &setup_table_names($courseid);
1.134 matthew 868: &init_dbs($courseid,0);
1.113 matthew 869: my $dbh = &Apache::lonmysql::get_dbh();
870: my $request = 'INSERT IGNORE INTO '.$student_table.
871: "(student,section,status) VALUES ";
872: my $classlist = &get_classlist($courseid);
873: my $student_count=0;
874: while (my ($student,$data) = each %$classlist) {
875: my ($section,$status) = ($data->[&CL_SECTION()],
876: $data->[&CL_STATUS()]);
877: if ($section eq '' || $section =~ /^\s*$/) {
878: $section = 'none';
879: }
880: $request .= "('".$student."','".$section."','".$status."'),";
881: $student_count++;
882: }
883: return if ($student_count == 0);
884: chop($request);
885: $dbh->do($request);
886: if ($dbh->err()) {
887: &Apache::lonnet::logthis("error ".$dbh->errstr().
888: " occured executing \n".
889: $request);
890: }
891: return;
892: }
893:
1.99 matthew 894: ################################################
895: ################################################
896:
897: =pod
898:
899: =item &clear_internal_caches()
900:
901: Causes the internal caches used in get_student_id, get_student,
902: get_symb_id, get_symb, get_part_id, and get_part to be undef'd.
903:
904: Needs to be called before the first operation with the MySQL database
905: for a given Apache request.
906:
907: =cut
908:
909: ################################################
910: ################################################
911: sub clear_internal_caches {
912: $have_read_part_table = 0;
913: undef(%ids_by_part);
914: undef(%parts_by_id);
915: $have_read_symb_table = 0;
916: undef(%ids_by_symb);
917: undef(%symbs_by_id);
918: $have_read_student_table = 0;
919: undef(%ids_by_student);
920: undef(%students_by_id);
921: }
922:
1.57 matthew 923: ################################################
924: ################################################
925:
926: =pod
927:
1.89 matthew 928: =item &update_full_student_data($sname,$sdom,$courseid)
929:
930: Does a lonnet::dump on a student to populate the courses tables.
931:
932: Input: $sname, $sdom, $courseid
933:
934: Output: $returnstatus
935:
936: $returnstatus is a string describing any errors that occured. 'okay' is the
937: default.
938:
939: This subroutine loads a students data using lonnet::dump and inserts
940: it into the MySQL database. The inserts are done on three tables,
941: $fulldump_response_table, $fulldump_part_table, and $fulldump_timestamp_table.
942: The INSERT calls are made directly by this subroutine, not through lonmysql
943: because we do a 'bulk'insert which takes advantage of MySQLs non-SQL
944: compliant INSERT command to insert multiple rows at a time.
945: If anything has gone wrong during this process, $returnstatus is updated with
946: a description of the error.
947:
948: Once the "fulldump" tables are updated, the tables used for chart and
949: spreadsheet (which hold only the current state of the student on their
950: homework, not historical data) are updated. If all updates have occured
1.113 matthew 951: successfully, $student_table is updated to reflect the time of the update.
1.89 matthew 952:
953: Notice we do not insert the data and immediately query it. This means it
954: is possible for there to be data returned this first time that is not
955: available the second time. CYA.
956:
957: =cut
958:
959: ################################################
960: ################################################
961: sub update_full_student_data {
962: my ($sname,$sdom,$courseid) = @_;
963: #
964: # Set up database names
965: &setup_table_names($courseid);
966: #
967: my $student_id = &get_student_id($sname,$sdom);
968: my $student = $sname.':'.$sdom;
969: #
970: my $returnstatus = 'okay';
971: #
972: # Download students data
973: my $time_of_retrieval = time;
974: my @tmp = &Apache::lonnet::dump($courseid,$sdom,$sname);
975: if (@tmp && $tmp[0] =~ /^error/) {
976: $returnstatus = 'error retrieving full student data';
977: return $returnstatus;
978: } elsif (! @tmp) {
979: $returnstatus = 'okay: no student data';
980: return $returnstatus;
981: }
982: my %studentdata = @tmp;
983: #
984: # Get database handle and clean out the tables
985: my $dbh = &Apache::lonmysql::get_dbh();
986: $dbh->do('DELETE FROM '.$fulldump_response_table.' WHERE student_id='.
987: $student_id);
988: $dbh->do('DELETE FROM '.$fulldump_part_table.' WHERE student_id='.
989: $student_id);
990: $dbh->do('DELETE FROM '.$fulldump_timestamp_table.' WHERE student_id='.
991: $student_id);
992: #
993: # Parse and store the data into a form we can handle
994: my $partdata;
995: my $respdata;
996: while (my ($key,$value) = each(%studentdata)) {
997: next if ($key =~ /^(\d+):(resource$|subnum$|keys:)/);
998: my ($transaction,$symb,$parameter) = split(':',$key);
999: my $symb_id = &get_symb_id($symb);
1000: if ($parameter eq 'timestamp') {
1001: # We can deal with 'timestamp' right away
1002: my @timestamp_storage = ($symb_id,$student_id,
1003: $transaction,$value);
1.98 matthew 1004: my $store_command = 'INSERT IGNORE INTO '.$fulldump_timestamp_table.
1.89 matthew 1005: " VALUES ('".join("','",@timestamp_storage)."');";
1006: $dbh->do($store_command);
1007: if ($dbh->err()) {
1008: &Apache::lonnet::logthis('unable to execute '.$store_command);
1009: &Apache::lonnet::logthis($dbh->errstr());
1010: }
1011: next;
1012: } elsif ($parameter eq 'version') {
1013: next;
1.90 matthew 1014: } elsif ($parameter =~ /^resource\.(.*)\.(tries|
1015: award|
1016: awarded|
1017: previous|
1018: solved|
1019: awarddetail|
1020: submission|
1021: submissiongrading|
1022: molecule)\s*$/x){
1.89 matthew 1023: # we do not have enough information to store an
1024: # entire row, so we save it up until later.
1025: my ($part_and_resp_id,$field) = ($1,$2);
1026: my ($part,$part_id,$resp,$resp_id);
1027: if ($part_and_resp_id =~ /\./) {
1028: ($part,$resp) = split(/\./,$part_and_resp_id);
1029: $part_id = &get_part_id($part);
1030: $resp_id = &get_part_id($resp);
1031: } else {
1032: $part_id = &get_part_id($part_and_resp_id);
1033: }
1.90 matthew 1034: # Deal with part specific data
1.89 matthew 1035: if ($field =~ /^(tries|award|awarded|previous)$/) {
1036: $partdata->{$symb_id}->{$part_id}->{$transaction}->{$field}=$value;
1037: }
1.90 matthew 1038: # deal with response specific data
1.89 matthew 1039: if (defined($resp_id) &&
1.100 matthew 1040: $field =~ /^(awarddetail|
1.90 matthew 1041: submission|
1042: submissiongrading|
1043: molecule)$/x) {
1.89 matthew 1044: if ($field eq 'submission') {
1045: # We have to be careful with user supplied input.
1046: # most of the time we are okay because it is escaped.
1047: # However, there is one wrinkle: submissions which end in
1048: # and odd number of '\' cause insert errors to occur.
1049: # Best trap this somehow...
1.116 matthew 1050: $value = $dbh->quote($value);
1.89 matthew 1051: }
1.90 matthew 1052: if ($field eq 'submissiongrading' ||
1053: $field eq 'molecule') {
1054: $respdata->{$symb_id}->{$part_id}->{$resp_id}->{$transaction}->{'response_specific'}=$field;
1055: $respdata->{$symb_id}->{$part_id}->{$resp_id}->{$transaction}->{'response_specific_value'}=$value;
1056: } else {
1057: $respdata->{$symb_id}->{$part_id}->{$resp_id}->{$transaction}->{$field}=$value;
1058: }
1.89 matthew 1059: }
1060: }
1061: }
1062: ##
1063: ## Store the part data
1.98 matthew 1064: my $store_command = 'INSERT IGNORE INTO '.$fulldump_part_table.
1.89 matthew 1065: ' VALUES '."\n";
1066: my $store_rows = 0;
1067: while (my ($symb_id,$hash1) = each (%$partdata)) {
1068: while (my ($part_id,$hash2) = each (%$hash1)) {
1069: while (my ($transaction,$data) = each (%$hash2)) {
1070: $store_command .= "('".join("','",$symb_id,$part_id,
1071: $student_id,
1072: $transaction,
1.101 matthew 1073: $data->{'tries'},
1.89 matthew 1074: $data->{'award'},
1075: $data->{'awarded'},
1076: $data->{'previous'})."'),";
1077: $store_rows++;
1078: }
1079: }
1080: }
1081: if ($store_rows) {
1082: chop($store_command);
1083: $dbh->do($store_command);
1084: if ($dbh->err) {
1085: $returnstatus = 'error storing part data';
1086: &Apache::lonnet::logthis('insert error '.$dbh->errstr());
1087: &Apache::lonnet::logthis("While attempting\n".$store_command);
1088: }
1089: }
1090: ##
1091: ## Store the response data
1.98 matthew 1092: $store_command = 'INSERT IGNORE INTO '.$fulldump_response_table.
1.89 matthew 1093: ' VALUES '."\n";
1094: $store_rows = 0;
1095: while (my ($symb_id,$hash1) = each (%$respdata)) {
1096: while (my ($part_id,$hash2) = each (%$hash1)) {
1097: while (my ($resp_id,$hash3) = each (%$hash2)) {
1098: while (my ($transaction,$data) = each (%$hash3)) {
1.112 matthew 1099: my $submission = $data->{'submission'};
1100: # We have to be careful with user supplied input.
1101: # most of the time we are okay because it is escaped.
1102: # However, there is one wrinkle: submissions which end in
1103: # and odd number of '\' cause insert errors to occur.
1104: # Best trap this somehow...
1105: $submission = $dbh->quote($submission);
1106: $store_command .= "('".
1107: join("','",$symb_id,$part_id,
1108: $resp_id,$student_id,
1109: $transaction,
1110: $data->{'awarddetail'},
1111: $data->{'response_specific'},
1112: $data->{'response_specific_value'}).
1113: "',".$submission."),";
1.89 matthew 1114: $store_rows++;
1115: }
1116: }
1117: }
1118: }
1119: if ($store_rows) {
1120: chop($store_command);
1121: $dbh->do($store_command);
1122: if ($dbh->err) {
1123: $returnstatus = 'error storing response data';
1124: &Apache::lonnet::logthis('insert error '.$dbh->errstr());
1125: &Apache::lonnet::logthis("While attempting\n".$store_command);
1126: }
1127: }
1128: ##
1129: ## Update the students "current" data in the performance
1130: ## and parameters tables.
1131: my ($status,undef) = &store_student_data
1132: ($sname,$sdom,$courseid,
1133: &Apache::lonnet::convert_dump_to_currentdump(\%studentdata));
1134: if ($returnstatus eq 'okay' && $status ne 'okay') {
1135: $returnstatus = 'error storing current data:'.$status;
1136: } elsif ($status ne 'okay') {
1137: $returnstatus .= ' error storing current data:'.$status;
1138: }
1139: ##
1140: ## Update the students time......
1141: if ($returnstatus eq 'okay') {
1.113 matthew 1142: &store_updatetime($student_id,$time_of_retrieval,$time_of_retrieval);
1143: if ($dbh->err) {
1144: if ($returnstatus eq 'okay') {
1145: $returnstatus = 'error updating student time';
1146: } else {
1147: $returnstatus = 'error updating student time';
1148: }
1149: }
1.89 matthew 1150: }
1151: return $returnstatus;
1152: }
1153:
1154: ################################################
1155: ################################################
1156:
1157: =pod
1158:
1.57 matthew 1159: =item &update_student_data()
1160:
1161: Input: $sname, $sdom, $courseid
1162:
1163: Output: $returnstatus, \%student_data
1164:
1165: $returnstatus is a string describing any errors that occured. 'okay' is the
1166: default.
1167: \%student_data is the data returned by a call to lonnet::currentdump.
1168:
1169: This subroutine loads a students data using lonnet::currentdump and inserts
1170: it into the MySQL database. The inserts are done on two tables,
1171: $performance_table and $parameters_table. $parameters_table holds the data
1172: that is not included in $performance_table. See the description of
1173: $performance_table elsewhere in this file. The INSERT calls are made
1174: directly by this subroutine, not through lonmysql because we do a 'bulk'
1175: insert which takes advantage of MySQLs non-SQL compliant INSERT command to
1176: insert multiple rows at a time. If anything has gone wrong during this
1177: process, $returnstatus is updated with a description of the error and
1178: \%student_data is returned.
1179:
1180: Notice we do not insert the data and immediately query it. This means it
1181: is possible for there to be data returned this first time that is not
1182: available the second time. CYA.
1183:
1184: =cut
1185:
1186: ################################################
1187: ################################################
1188: sub update_student_data {
1189: my ($sname,$sdom,$courseid) = @_;
1190: #
1.60 matthew 1191: # Set up database names
1192: &setup_table_names($courseid);
1193: #
1.57 matthew 1194: my $student_id = &get_student_id($sname,$sdom);
1195: my $student = $sname.':'.$sdom;
1196: #
1197: my $returnstatus = 'okay';
1198: #
1199: # Download students data
1200: my $time_of_retrieval = time;
1201: my @tmp = &Apache::lonnet::currentdump($courseid,$sdom,$sname);
1202: if ((scalar(@tmp) > 0) && ($tmp[0] =~ /^error:/)) {
1203: &Apache::lonnet::logthis('error getting data for '.
1204: $sname.':'.$sdom.' in course '.$courseid.
1205: ':'.$tmp[0]);
1206: $returnstatus = 'error getting data';
1.79 matthew 1207: return ($returnstatus,undef);
1.57 matthew 1208: }
1209: if (scalar(@tmp) < 1) {
1210: return ('no data',undef);
1211: }
1212: my %student_data = @tmp;
1.89 matthew 1213: my @Results = &store_student_data($sname,$sdom,$courseid,\%student_data);
1214: #
1215: # Set the students update time
1.96 matthew 1216: if ($Results[0] eq 'okay') {
1.148 matthew 1217: &store_updatetime($student_id,$time_of_retrieval);
1.95 matthew 1218: }
1.89 matthew 1219: #
1220: return @Results;
1221: }
1222:
1.113 matthew 1223: sub store_updatetime {
1224: my ($student_id,$updatetime,$fullupdatetime)=@_;
1225: my $values = '';
1226: if (defined($updatetime)) {
1227: $values = 'updatetime='.$updatetime.' ';
1228: }
1229: if (defined($fullupdatetime)) {
1230: if ($values ne '') {
1231: $values .= ',';
1232: }
1233: $values .= 'fullupdatetime='.$fullupdatetime.' ';
1234: }
1235: return if ($values eq '');
1236: my $dbh = &Apache::lonmysql::get_dbh();
1237: my $request = 'UPDATE '.$student_table.' SET '.$values.
1238: ' WHERE student_id='.$student_id.' LIMIT 1';
1239: $dbh->do($request);
1240: }
1241:
1.89 matthew 1242: sub store_student_data {
1243: my ($sname,$sdom,$courseid,$student_data) = @_;
1244: #
1245: my $student_id = &get_student_id($sname,$sdom);
1246: my $student = $sname.':'.$sdom;
1247: #
1248: my $returnstatus = 'okay';
1.57 matthew 1249: #
1250: # Remove all of the students data from the table
1.60 matthew 1251: my $dbh = &Apache::lonmysql::get_dbh();
1252: $dbh->do('DELETE FROM '.$performance_table.' WHERE student_id='.
1253: $student_id);
1254: $dbh->do('DELETE FROM '.$parameters_table.' WHERE student_id='.
1255: $student_id);
1.57 matthew 1256: #
1257: # Store away the data
1258: #
1259: my $starttime = Time::HiRes::time;
1260: my $elapsed = 0;
1261: my $rows_stored;
1.98 matthew 1262: my $store_parameters_command = 'INSERT IGNORE INTO '.$parameters_table.
1.60 matthew 1263: ' VALUES '."\n";
1.61 matthew 1264: my $num_parameters = 0;
1.98 matthew 1265: my $store_performance_command = 'INSERT IGNORE INTO '.$performance_table.
1.60 matthew 1266: ' VALUES '."\n";
1.79 matthew 1267: return ('error',undef) if (! defined($dbh));
1.89 matthew 1268: while (my ($current_symb,$param_hash) = each(%{$student_data})) {
1.57 matthew 1269: #
1270: # make sure the symb is set up properly
1271: my $symb_id = &get_symb_id($current_symb);
1272: #
1.147 matthew 1273: # Parameters
1.63 matthew 1274: while (my ($parameter,$value) = each(%$param_hash)) {
1275: if ($parameter !~ /(timestamp|resource\.(.*)\.(solved|tries|awarded|award|awarddetail|previous))/) {
1.147 matthew 1276: my $sql_parameter = "('".join("','",
1277: $symb_id,$student_id,
1278: $parameter)."',".
1279: $dbh->quote($value)."),\n";
1.61 matthew 1280: $num_parameters ++;
1.147 matthew 1281: if ($sql_parameter !~ /''/) {
1282: $store_parameters_command .= $sql_parameter;
1.149 ! albertel 1283: #$rows_stored++;
1.57 matthew 1284: }
1285: }
1.147 matthew 1286: }
1287: # Performance
1288: my %stored;
1289: while (my ($parameter,$value) = each(%$param_hash)) {
1290: next if ($parameter !~ /^resource\.(.*)\.(solved|awarded)$/);
1291: my $part = $1;
1292: next if (exists($stored{$part}));
1293: $stored{$part}++;
1.57 matthew 1294: #
1295: my $part_id = &get_part_id($part);
1296: next if (!defined($part_id));
1297: my $solved = $value;
1298: my $tries = $param_hash->{'resource.'.$part.'.tries'};
1299: my $awarded = $param_hash->{'resource.'.$part.'.awarded'};
1300: my $award = $param_hash->{'resource.'.$part.'.award'};
1301: my $awarddetail = $param_hash->{'resource.'.$part.'.awarddetail'};
1302: my $timestamp = $param_hash->{'timestamp'};
1.60 matthew 1303: #
1.74 matthew 1304: $solved = '' if (! defined($solved));
1.57 matthew 1305: $tries = '' if (! defined($tries));
1306: $awarded = '' if (! defined($awarded));
1307: $award = '' if (! defined($award));
1308: $awarddetail = '' if (! defined($awarddetail));
1.147 matthew 1309: my $sql_performance =
1310: "('".join("','",$symb_id,$student_id,$part_id,$part,
1311: $solved,$tries,$awarded,$award,
1312: $awarddetail,$timestamp)."'),\n";
1313: $store_performance_command .= $sql_performance;
1.57 matthew 1314: $rows_stored++;
1315: }
1316: }
1.149 ! albertel 1317: if (! $rows_stored) { return ($returnstatus, undef); }
1.147 matthew 1318: $store_parameters_command =~ s|,\n$||;
1319: $store_performance_command =~ s|,\n$||;
1.57 matthew 1320: my $start = Time::HiRes::time;
1.94 matthew 1321: $dbh->do($store_performance_command);
1322: if ($dbh->err()) {
1.147 matthew 1323: &Apache::lonnet::logthis('performance bigass insert error:'.
1324: $dbh->errstr());
1325: &Apache::lonnet::logthis('command = '.$/.$store_performance_command);
1.94 matthew 1326: $returnstatus = 'error: unable to insert performance into database';
1327: return ($returnstatus,$student_data);
1328: }
1.61 matthew 1329: $dbh->do($store_parameters_command) if ($num_parameters>0);
1.57 matthew 1330: if ($dbh->err()) {
1.147 matthew 1331: &Apache::lonnet::logthis('parameters bigass insert error:'.
1332: $dbh->errstr());
1333: &Apache::lonnet::logthis('command = '.$/.$store_parameters_command);
1.87 matthew 1334: &Apache::lonnet::logthis('rows_stored = '.$rows_stored);
1335: &Apache::lonnet::logthis('student_id = '.$student_id);
1.57 matthew 1336: $returnstatus = 'error: unable to insert parameters into database';
1.89 matthew 1337: return ($returnstatus,$student_data);
1.57 matthew 1338: }
1339: $elapsed += Time::HiRes::time - $start;
1.89 matthew 1340: return ($returnstatus,$student_data);
1.57 matthew 1341: }
1342:
1.89 matthew 1343: ######################################
1344: ######################################
1.57 matthew 1345:
1346: =pod
1347:
1.89 matthew 1348: =item &ensure_tables_are_set_up($courseid)
1.57 matthew 1349:
1.89 matthew 1350: Checks to be sure the MySQL tables for the given class are set up.
1351: If $courseid is omitted it will be obtained from the environment.
1.57 matthew 1352:
1.89 matthew 1353: Returns nothing on success and 'error' on failure
1.57 matthew 1354:
1355: =cut
1356:
1.89 matthew 1357: ######################################
1358: ######################################
1359: sub ensure_tables_are_set_up {
1360: my ($courseid) = @_;
1.146 albertel 1361: $courseid = $env{'request.course.id'} if (! defined($courseid));
1.61 matthew 1362: #
1363: # Clean out package variables
1.57 matthew 1364: &setup_table_names($courseid);
1365: #
1366: # if the tables do not exist, make them
1367: my @CurrentTable = &Apache::lonmysql::tables_in_db();
1.113 matthew 1368: my ($found_symb,$found_student,$found_part,
1.89 matthew 1369: $found_performance,$found_parameters,$found_fulldump_part,
1.127 matthew 1370: $found_fulldump_response,$found_fulldump_timestamp,
1371: $found_weight);
1.57 matthew 1372: foreach (@CurrentTable) {
1373: $found_symb = 1 if ($_ eq $symb_table);
1374: $found_student = 1 if ($_ eq $student_table);
1375: $found_part = 1 if ($_ eq $part_table);
1376: $found_performance = 1 if ($_ eq $performance_table);
1377: $found_parameters = 1 if ($_ eq $parameters_table);
1.89 matthew 1378: $found_fulldump_part = 1 if ($_ eq $fulldump_part_table);
1379: $found_fulldump_response = 1 if ($_ eq $fulldump_response_table);
1380: $found_fulldump_timestamp = 1 if ($_ eq $fulldump_timestamp_table);
1.127 matthew 1381: $found_weight = 1 if ($_ eq $weight_table);
1.57 matthew 1382: }
1.127 matthew 1383: if (!$found_symb ||
1384: !$found_student || !$found_part ||
1385: !$found_performance || !$found_parameters ||
1.89 matthew 1386: !$found_fulldump_part || !$found_fulldump_response ||
1.127 matthew 1387: !$found_fulldump_timestamp || !$found_weight ) {
1.134 matthew 1388: if (&init_dbs($courseid,1)) {
1.89 matthew 1389: return 'error';
1.57 matthew 1390: }
1391: }
1.89 matthew 1392: }
1393:
1394: ################################################
1395: ################################################
1396:
1397: =pod
1398:
1399: =item &ensure_current_data()
1400:
1401: Input: $sname, $sdom, $courseid
1402:
1403: Output: $status, $data
1404:
1405: This routine ensures the data for a given student is up to date.
1.113 matthew 1406: The $student_table is queried to determine the time of the last update.
1.89 matthew 1407: If the students data is out of date, &update_student_data() is called.
1408: The return values from the call to &update_student_data() are returned.
1409:
1410: =cut
1411:
1412: ################################################
1413: ################################################
1414: sub ensure_current_data {
1415: my ($sname,$sdom,$courseid) = @_;
1416: my $status = 'okay'; # return value
1417: #
1.146 albertel 1418: $courseid = $env{'request.course.id'} if (! defined($courseid));
1.89 matthew 1419: &ensure_tables_are_set_up($courseid);
1.57 matthew 1420: #
1421: # Get the update time for the user
1422: my $updatetime = 0;
1.60 matthew 1423: my $modifiedtime = &Apache::lonnet::GetFileTimestamp
1424: ($sdom,$sname,$courseid.'.db',
1425: $Apache::lonnet::perlvar{'lonUsersDir'});
1.57 matthew 1426: #
1.87 matthew 1427: my $student_id = &get_student_id($sname,$sdom);
1.113 matthew 1428: my @Result = &Apache::lonmysql::get_rows($student_table,
1.87 matthew 1429: "student_id ='$student_id'");
1.57 matthew 1430: my $data = undef;
1431: if (@Result) {
1.113 matthew 1432: $updatetime = $Result[0]->[5]; # Ack! This is dumb!
1.57 matthew 1433: }
1434: if ($modifiedtime > $updatetime) {
1435: ($status,$data) = &update_student_data($sname,$sdom,$courseid);
1436: }
1437: return ($status,$data);
1438: }
1439:
1440: ################################################
1441: ################################################
1442:
1443: =pod
1444:
1.89 matthew 1445: =item &ensure_current_full_data($sname,$sdom,$courseid)
1446:
1447: Input: $sname, $sdom, $courseid
1448:
1449: Output: $status
1450:
1451: This routine ensures the fulldata (the data from a lonnet::dump, not a
1452: lonnet::currentdump) for a given student is up to date.
1.113 matthew 1453: The $student_table is queried to determine the time of the last update.
1.89 matthew 1454: If the students fulldata is out of date, &update_full_student_data() is
1455: called.
1456:
1457: The return value from the call to &update_full_student_data() is returned.
1458:
1459: =cut
1460:
1461: ################################################
1462: ################################################
1463: sub ensure_current_full_data {
1464: my ($sname,$sdom,$courseid) = @_;
1465: my $status = 'okay'; # return value
1466: #
1.146 albertel 1467: $courseid = $env{'request.course.id'} if (! defined($courseid));
1.89 matthew 1468: &ensure_tables_are_set_up($courseid);
1469: #
1470: # Get the update time for the user
1471: my $modifiedtime = &Apache::lonnet::GetFileTimestamp
1472: ($sdom,$sname,$courseid.'.db',
1473: $Apache::lonnet::perlvar{'lonUsersDir'});
1474: #
1475: my $student_id = &get_student_id($sname,$sdom);
1.113 matthew 1476: my @Result = &Apache::lonmysql::get_rows($student_table,
1.89 matthew 1477: "student_id ='$student_id'");
1478: my $updatetime;
1479: if (@Result && ref($Result[0]) eq 'ARRAY') {
1.113 matthew 1480: $updatetime = $Result[0]->[6];
1.89 matthew 1481: }
1482: if (! defined($updatetime) || $modifiedtime > $updatetime) {
1483: $status = &update_full_student_data($sname,$sdom,$courseid);
1484: }
1485: return $status;
1486: }
1487:
1488: ################################################
1489: ################################################
1490:
1491: =pod
1492:
1.57 matthew 1493: =item &get_student_data_from_performance_cache()
1494:
1495: Input: $sname, $sdom, $symb, $courseid
1496:
1497: Output: hash reference containing the data for the given student.
1498: If $symb is undef, all the students data is returned.
1499:
1500: This routine is the heart of the local caching system. See the description
1501: of $performance_table, $symb_table, $student_table, and $part_table. The
1502: main task is building the MySQL request. The tables appear in the request
1503: in the order in which they should be parsed by MySQL. When searching
1504: on a student the $student_table is used to locate the 'student_id'. All
1505: rows in $performance_table which have a matching 'student_id' are returned,
1506: with data from $part_table and $symb_table which match the entries in
1507: $performance_table, 'part_id' and 'symb_id'. When searching on a symb,
1508: the $symb_table is processed first, with matching rows grabbed from
1509: $performance_table and filled in from $part_table and $student_table in
1510: that order.
1511:
1512: Running 'EXPLAIN ' on the 'SELECT' statements generated can be quite
1513: interesting, especially if you play with the order the tables are listed.
1514:
1515: =cut
1516:
1517: ################################################
1518: ################################################
1519: sub get_student_data_from_performance_cache {
1520: my ($sname,$sdom,$symb,$courseid)=@_;
1521: my $student = $sname.':'.$sdom if (defined($sname) && defined($sdom));
1.61 matthew 1522: &setup_table_names($courseid);
1.57 matthew 1523: #
1524: # Return hash
1525: my $studentdata;
1526: #
1527: my $dbh = &Apache::lonmysql::get_dbh();
1528: my $request = "SELECT ".
1.73 matthew 1529: "d.symb,a.part,a.solved,a.tries,a.awarded,a.award,a.awarddetail,".
1.63 matthew 1530: "a.timestamp ";
1.57 matthew 1531: if (defined($student)) {
1532: $request .= "FROM $student_table AS b ".
1533: "LEFT JOIN $performance_table AS a ON b.student_id=a.student_id ".
1.73 matthew 1534: # "LEFT JOIN $part_table AS c ON c.part_id = a.part_id ".
1.57 matthew 1535: "LEFT JOIN $symb_table AS d ON d.symb_id = a.symb_id ".
1536: "WHERE student='$student'";
1537: if (defined($symb) && $symb ne '') {
1.67 matthew 1538: $request .= " AND d.symb=".$dbh->quote($symb);
1.57 matthew 1539: }
1540: } elsif (defined($symb) && $symb ne '') {
1541: $request .= "FROM $symb_table as d ".
1542: "LEFT JOIN $performance_table AS a ON d.symb_id=a.symb_id ".
1.73 matthew 1543: # "LEFT JOIN $part_table AS c ON c.part_id = a.part_id ".
1.57 matthew 1544: "LEFT JOIN $student_table AS b ON b.student_id = a.student_id ".
1545: "WHERE symb='".$dbh->quote($symb)."'";
1546: }
1547: my $starttime = Time::HiRes::time;
1548: my $rows_retrieved = 0;
1549: my $sth = $dbh->prepare($request);
1550: $sth->execute();
1551: if ($sth->err()) {
1552: &Apache::lonnet::logthis("Unable to execute MySQL request:");
1553: &Apache::lonnet::logthis("\n".$request."\n");
1554: &Apache::lonnet::logthis("error is:".$sth->errstr());
1555: return undef;
1556: }
1557: foreach my $row (@{$sth->fetchall_arrayref}) {
1558: $rows_retrieved++;
1.63 matthew 1559: my ($symb,$part,$solved,$tries,$awarded,$award,$awarddetail,$time) =
1.57 matthew 1560: (@$row);
1561: my $base = 'resource.'.$part;
1562: $studentdata->{$symb}->{$base.'.solved'} = $solved;
1563: $studentdata->{$symb}->{$base.'.tries'} = $tries;
1564: $studentdata->{$symb}->{$base.'.awarded'} = $awarded;
1565: $studentdata->{$symb}->{$base.'.award'} = $award;
1566: $studentdata->{$symb}->{$base.'.awarddetail'} = $awarddetail;
1567: $studentdata->{$symb}->{'timestamp'} = $time if (defined($time) && $time ne '');
1.67 matthew 1568: }
1.97 matthew 1569: ## Get misc parameters
1570: $request = 'SELECT c.symb,a.parameter,a.value '.
1571: "FROM $student_table AS b ".
1572: "LEFT JOIN $parameters_table AS a ON b.student_id=a.student_id ".
1573: "LEFT JOIN $symb_table AS c ON c.symb_id = a.symb_id ".
1574: "WHERE student='$student'";
1575: if (defined($symb) && $symb ne '') {
1576: $request .= " AND c.symb=".$dbh->quote($symb);
1577: }
1578: $sth = $dbh->prepare($request);
1579: $sth->execute();
1580: if ($sth->err()) {
1581: &Apache::lonnet::logthis("Unable to execute MySQL request:");
1582: &Apache::lonnet::logthis("\n".$request."\n");
1583: &Apache::lonnet::logthis("error is:".$sth->errstr());
1584: if (defined($symb) && $symb ne '') {
1585: $studentdata = $studentdata->{$symb};
1586: }
1587: return $studentdata;
1588: }
1589: #
1590: foreach my $row (@{$sth->fetchall_arrayref}) {
1591: $rows_retrieved++;
1592: my ($symb,$parameter,$value) = (@$row);
1593: $studentdata->{$symb}->{$parameter} = $value;
1594: }
1595: #
1.67 matthew 1596: if (defined($symb) && $symb ne '') {
1597: $studentdata = $studentdata->{$symb};
1.57 matthew 1598: }
1599: return $studentdata;
1600: }
1601:
1602: ################################################
1603: ################################################
1604:
1605: =pod
1606:
1607: =item &get_current_state()
1608:
1609: Input: $sname,$sdom,$symb,$courseid
1610:
1611: Output: Described below
1.46 matthew 1612:
1.47 matthew 1613: Retrieve the current status of a students performance. $sname and
1.46 matthew 1614: $sdom are the only required parameters. If $symb is undef the results
1.47 matthew 1615: of an &Apache::lonnet::currentdump() will be returned.
1.46 matthew 1616: If $courseid is undef it will be retrieved from the environment.
1617:
1618: The return structure is based on &Apache::lonnet::currentdump. If
1619: $symb is unspecified, all the students data is returned in a hash of
1620: the form:
1621: (
1622: symb1 => { param1 => value1, param2 => value2 ... },
1623: symb2 => { param1 => value1, param2 => value2 ... },
1624: )
1625:
1626: If $symb is specified, a hash of
1627: (
1628: param1 => value1,
1629: param2 => value2,
1630: )
1631: is returned.
1632:
1.57 matthew 1633: If no data is found for $symb, or if the student has no performance data,
1.46 matthew 1634: an empty list is returned.
1635:
1636: =cut
1637:
1638: ################################################
1639: ################################################
1640: sub get_current_state {
1.47 matthew 1641: my ($sname,$sdom,$symb,$courseid,$forcedownload)=@_;
1642: #
1.146 albertel 1643: $courseid = $env{'request.course.id'} if (! defined($courseid));
1.47 matthew 1644: #
1.61 matthew 1645: return () if (! defined($sname) || ! defined($sdom));
1646: #
1.57 matthew 1647: my ($status,$data) = &ensure_current_data($sname,$sdom,$courseid);
1.77 matthew 1648: # &Apache::lonnet::logthis
1649: # ('sname = '.$sname.
1650: # ' domain = '.$sdom.
1651: # ' status = '.$status.
1652: # ' data is '.(defined($data)?'defined':'undefined'));
1.73 matthew 1653: # while (my ($symb,$hash) = each(%$data)) {
1654: # &Apache::lonnet::logthis($symb."\n----------------------------------");
1655: # while (my ($key,$value) = each (%$hash)) {
1656: # &Apache::lonnet::logthis(" ".$key." = ".$value);
1657: # }
1658: # }
1.47 matthew 1659: #
1.79 matthew 1660: if (defined($data) && defined($symb) && ref($data->{$symb})) {
1661: return %{$data->{$symb}};
1662: } elsif (defined($data) && ! defined($symb) && ref($data)) {
1663: return %$data;
1664: }
1665: if ($status eq 'no data') {
1.57 matthew 1666: return ();
1667: } else {
1668: if ($status ne 'okay' && $status ne '') {
1669: &Apache::lonnet::logthis('status = '.$status);
1.47 matthew 1670: return ();
1671: }
1.57 matthew 1672: my $returnhash = &get_student_data_from_performance_cache($sname,$sdom,
1673: $symb,$courseid);
1674: return %$returnhash if (defined($returnhash));
1.46 matthew 1675: }
1.57 matthew 1676: return ();
1.61 matthew 1677: }
1678:
1679: ################################################
1680: ################################################
1681:
1682: =pod
1683:
1684: =item &get_problem_statistics()
1685:
1686: Gather data on a given problem. The database is assumed to be
1687: populated and all local caching variables are assumed to be set
1688: properly. This means you need to call &ensure_current_data for
1689: the students you are concerned with prior to calling this routine.
1690:
1.124 matthew 1691: Inputs: $Sections, $status, $symb, $part, $courseid, $starttime, $endtime
1.61 matthew 1692:
1.64 matthew 1693: =over 4
1694:
1.124 matthew 1695: =item $Sections Array ref containing section names for students.
1696: 'all' is allowed to be the first (and only) item in the array.
1697:
1698: =item $status String describing the status of students
1.64 matthew 1699:
1700: =item $symb is the symb for the problem.
1701:
1702: =item $part is the part id you need statistics for
1703:
1704: =item $courseid is the course id, of course!
1705:
1.122 matthew 1706: =item $starttime and $endtime are unix times which to use to limit
1707: the statistical data.
1708:
1.64 matthew 1709: =back
1710:
1.66 matthew 1711: Outputs: See the code for up to date information. A hash reference is
1712: returned. The hash has the following keys defined:
1.64 matthew 1713:
1714: =over 4
1715:
1.66 matthew 1716: =item num_students The number of students attempting the problem
1717:
1718: =item tries The total number of tries for the students
1719:
1720: =item max_tries The maximum number of tries taken
1721:
1722: =item mean_tries The average number of tries
1723:
1724: =item num_solved The number of students able to solve the problem
1725:
1726: =item num_override The number of students whose answer is 'correct_by_override'
1727:
1728: =item deg_of_diff The degree of difficulty of the problem
1729:
1730: =item std_tries The standard deviation of the number of tries
1731:
1732: =item skew_tries The skew of the number of tries
1.64 matthew 1733:
1.66 matthew 1734: =item per_wrong The number of students attempting the problem who were not
1735: able to answer it correctly.
1.64 matthew 1736:
1737: =back
1738:
1.61 matthew 1739: =cut
1740:
1741: ################################################
1742: ################################################
1743: sub get_problem_statistics {
1.122 matthew 1744: my ($Sections,$status,$symb,$part,$courseid,$starttime,$endtime) = @_;
1.61 matthew 1745: return if (! defined($symb) || ! defined($part));
1.146 albertel 1746: $courseid = $env{'request.course.id'} if (! defined($courseid));
1.61 matthew 1747: #
1.100 matthew 1748: &setup_table_names($courseid);
1.61 matthew 1749: my $symb_id = &get_symb_id($symb);
1750: my $part_id = &get_part_id($part);
1751: my $stats_table = $courseid.'_problem_stats';
1752: #
1753: my $dbh = &Apache::lonmysql::get_dbh();
1754: return undef if (! defined($dbh));
1755: #
1.123 matthew 1756: # Clean out the table
1.61 matthew 1757: $dbh->do('DROP TABLE '.$stats_table); # May return an error
1758: my $request =
1.115 matthew 1759: 'CREATE TEMPORARY TABLE '.$stats_table.' '.
1760: 'SELECT a.student_id,a.solved,a.award,a.awarded,a.tries '.
1761: 'FROM '.$performance_table.' AS a ';
1.123 matthew 1762: #
1763: # See if we need to include some requirements on the students
1.115 matthew 1764: if ((defined($Sections) && lc($Sections->[0]) ne 'all') ||
1765: (defined($status) && lc($status) ne 'any')) {
1766: $request .= 'NATURAL LEFT JOIN '.$student_table.' AS b ';
1767: }
1768: $request .= ' WHERE a.symb_id='.$symb_id.' AND a.part_id='.$part_id;
1.123 matthew 1769: #
1770: # Limit the students included to those specified
1.115 matthew 1771: if (defined($Sections) && lc($Sections->[0]) ne 'all') {
1.64 matthew 1772: $request .= ' AND ('.
1.115 matthew 1773: join(' OR ', map { "b.section='".$_."'" } @$Sections
1.64 matthew 1774: ).')';
1775: }
1.115 matthew 1776: if (defined($status) && lc($status) ne 'any') {
1777: $request .= " AND b.status='".$status."'";
1.122 matthew 1778: }
1779: #
1.123 matthew 1780: # Limit by starttime and endtime
1.122 matthew 1781: my $time_requirements = undef;
1782: if (defined($starttime)) {
1783: $time_requirements .= 'a.timestamp>='.$starttime;
1784: if (defined($endtime)) {
1785: $time_requirements .= ' AND a.timestamp<='.$endtime;
1786: }
1787: } elsif (defined($endtime)) {
1788: $time_requirements .= 'a.timestamp<='.$endtime;
1789: }
1790: if (defined($time_requirements)) {
1791: $request .= ' AND '.$time_requirements;
1.115 matthew 1792: }
1.123 matthew 1793: #
1794: # Finally, execute the request to create the temporary table
1.61 matthew 1795: $dbh->do($request);
1.123 matthew 1796: #
1797: # Collect the first suite of statistics
1.128 matthew 1798: $request = 'SELECT COUNT(*),SUM(tries),'.
1799: 'AVG(tries),STD(tries) '.
1.109 matthew 1800: 'FROM '.$stats_table;
1.128 matthew 1801: my ($num,$tries,$mean,$STD) = &execute_SQL_request
1.109 matthew 1802: ($dbh,$request);
1.128 matthew 1803: #
1804: $request = 'SELECT MAX(tries),MIN(tries) FROM '.$stats_table.
1805: ' WHERE awarded>0';
1806: if (defined($time_requirements)) {
1807: $request .= ' AND '.$time_requirements;
1808: }
1809: my ($max,$min) = &execute_SQL_request($dbh,$request);
1810: #
1.109 matthew 1811: $request = 'SELECT SUM(awarded) FROM '.$stats_table;
1.128 matthew 1812: if (defined($time_requirements)) {
1813: $request .= ' AND '.$time_requirements;
1814: }
1.109 matthew 1815: my ($Solved) = &execute_SQL_request($dbh,$request);
1.128 matthew 1816: #
1.109 matthew 1817: $request = 'SELECT SUM(awarded) FROM '.$stats_table.
1818: " WHERE solved='correct_by_override'";
1.128 matthew 1819: if (defined($time_requirements)) {
1820: $request .= ' AND '.$time_requirements;
1821: }
1.109 matthew 1822: my ($solved) = &execute_SQL_request($dbh,$request);
1823: #
1.133 matthew 1824: $Solved -= $solved;
1825: #
1.61 matthew 1826: $num = 0 if (! defined($num));
1827: $tries = 0 if (! defined($tries));
1.128 matthew 1828: $max = 0 if (! defined($max));
1829: $min = 0 if (! defined($min));
1.61 matthew 1830: $STD = 0 if (! defined($STD));
1.133 matthew 1831: $Solved = 0 if (! defined($Solved) || $Solved < 0);
1.61 matthew 1832: $solved = 0 if (! defined($solved));
1833: #
1.123 matthew 1834: # Compute the more complicated statistics
1.61 matthew 1835: my $DegOfDiff = 'nan';
1.66 matthew 1836: $DegOfDiff = 1-($Solved)/$tries if ($tries>0);
1.123 matthew 1837: #
1.61 matthew 1838: my $SKEW = 'nan';
1.66 matthew 1839: my $wrongpercent = 0;
1.128 matthew 1840: my $numwrong = 'nan';
1.61 matthew 1841: if ($num > 0) {
1842: ($SKEW) = &execute_SQL_request($dbh,'SELECT SQRT(SUM('.
1843: 'POWER(tries - '.$STD.',3)'.
1844: '))/'.$num.' FROM '.$stats_table);
1.128 matthew 1845: $numwrong = $num-$Solved;
1846: $wrongpercent=int(10*100*$numwrong/$num)/10;
1.61 matthew 1847: }
1848: #
1.123 matthew 1849: # Drop the temporary table
1850: $dbh->do('DROP TABLE '.$stats_table); # May return an error
1.81 matthew 1851: #
1852: # Return result
1.66 matthew 1853: return { num_students => $num,
1854: tries => $tries,
1.128 matthew 1855: max_tries => $max,
1856: min_tries => $min,
1.66 matthew 1857: mean_tries => $mean,
1858: std_tries => $STD,
1859: skew_tries => $SKEW,
1860: num_solved => $Solved,
1861: num_override => $solved,
1.128 matthew 1862: num_wrong => $numwrong,
1.66 matthew 1863: per_wrong => $wrongpercent,
1.81 matthew 1864: deg_of_diff => $DegOfDiff };
1.61 matthew 1865: }
1866:
1.127 matthew 1867: ##
1868: ## This is a helper for get_statistics
1.61 matthew 1869: sub execute_SQL_request {
1870: my ($dbh,$request)=@_;
1871: # &Apache::lonnet::logthis($request);
1872: my $sth = $dbh->prepare($request);
1873: $sth->execute();
1874: my $row = $sth->fetchrow_arrayref();
1875: if (ref($row) eq 'ARRAY' && scalar(@$row)>0) {
1876: return @$row;
1877: }
1878: return ();
1879: }
1.123 matthew 1880:
1.127 matthew 1881: ######################################################
1882: ######################################################
1883:
1884: =pod
1885:
1886: =item &populate_weight_table
1887:
1888: =cut
1889:
1890: ######################################################
1891: ######################################################
1892: sub populate_weight_table {
1893: my ($courseid) = @_;
1894: if (! defined($courseid)) {
1.146 albertel 1895: $courseid = $env{'request.course.id'};
1.127 matthew 1896: }
1897: #
1898: &setup_table_names($courseid);
1.144 matthew 1899: my $navmap = Apache::lonnavmaps::navmap->new();
1900: if (!defined($navmap)) {
1901: &Apache::lonnet::logthis('loncoursedata::populate_weight_table:'.$/.
1902: ' unable to get navmaps resource'.$/.
1903: ' '.join(' ',(caller)));
1904: return;
1905: }
1906: my @sequences = $navmap->retrieveResources(undef,
1907: sub { shift->is_map(); },1,0,1);
1908: my @resources;
1909: foreach my $seq (@sequences) {
1910: push(@resources,$navmap->retrieveResources($seq,
1911: sub {shift->is_problem();},
1912: 0,0,0));
1913: }
1914: if (! scalar(@resources)) {
1915: &Apache::lonnet::logthis('loncoursedata::populate_weight_table:'.$/.
1916: ' no resources returned for '.$courseid);
1.127 matthew 1917: return;
1918: }
1919: # Since we use lonnet::EXT to retrieve problem weights,
1920: # to ensure current data we must clear the caches out.
1921: &Apache::lonnet::clear_EXT_cache_status();
1922: my $dbh = &Apache::lonmysql::get_dbh();
1923: my $request = 'INSERT IGNORE INTO '.$weight_table.
1924: "(symb_id,part_id,weight) VALUES ";
1925: my $weight;
1.144 matthew 1926: foreach my $res (@resources) {
1927: my $symb_id = &get_symb_id($res->symb);
1928: foreach my $part (@{$res->parts}) {
1.127 matthew 1929: my $part_id = &get_part_id($part);
1930: $weight = &Apache::lonnet::EXT('resource.'.$part.'.weight',
1.144 matthew 1931: $res->symb,
1.127 matthew 1932: undef,undef,undef);
1933: if (!defined($weight) || ($weight eq '')) {
1934: $weight=1;
1935: }
1936: $request .= "('".$symb_id."','".$part_id."','".$weight."'),";
1937: }
1938: }
1939: $request =~ s/(,)$//;
1940: # &Apache::lonnet::logthis('request = '.$/.$request);
1941: $dbh->do($request);
1942: if ($dbh->err()) {
1943: &Apache::lonnet::logthis("error ".$dbh->errstr().
1944: " occured executing \n".
1945: $request);
1946: }
1947: return;
1948: }
1949:
1950: ##########################################################
1951: ##########################################################
1.61 matthew 1952:
1.127 matthew 1953: =pod
1954:
1.129 matthew 1955: =item &limit_by_start_end_times
1956:
1957: Build SQL WHERE condition which limits the data collected by the start
1958: and end times provided
1959:
1960: Inputs: $starttime, $endtime, $table
1961:
1962: Returns: $time_limits
1963:
1964: =cut
1965:
1966: ##########################################################
1967: ##########################################################
1968: sub limit_by_start_end_time {
1969: my ($starttime,$endtime,$table) = @_;
1970: my $time_requirements = undef;
1971: if (defined($starttime)) {
1972: $time_requirements .= $table.".timestamp>='".$starttime."'";
1973: if (defined($endtime)) {
1974: $time_requirements .= " AND ".$table.".timestamp<='".$endtime."'";
1975: }
1976: } elsif (defined($endtime)) {
1977: $time_requirements .= $table.".timestamp<='".$endtime."'";
1978: }
1979: return $time_requirements;
1980: }
1981:
1982: ##########################################################
1983: ##########################################################
1984:
1985: =pod
1986:
1.127 matthew 1987: =item &limit_by_section_and_status
1988:
1989: Build SQL WHERE condition which limits the data collected by section and
1990: student status.
1991:
1992: Inputs: $Sections (array ref)
1993: $enrollment (string: 'any', 'expired', 'active')
1994: $tablename The name of the table that holds the student data
1995:
1996: Returns: $student_requirements,$enrollment_requirements
1997:
1998: =cut
1999:
2000: ##########################################################
2001: ##########################################################
2002: sub limit_by_section_and_status {
2003: my ($Sections,$enrollment,$tablename) = @_;
2004: my $student_requirements = undef;
2005: if ( (defined($Sections) && $Sections->[0] ne 'all')) {
2006: $student_requirements = '('.
2007: join(' OR ', map { $tablename.".section='".$_."'" } @$Sections
2008: ).')';
2009: }
2010: #
2011: my $enrollment_requirements=undef;
2012: if (defined($enrollment) && $enrollment ne 'Any') {
2013: $enrollment_requirements = $tablename.".status='".$enrollment."'";
2014: }
2015: return ($student_requirements,$enrollment_requirements);
2016: }
2017:
2018: ######################################################
2019: ######################################################
2020:
2021: =pod
2022:
2023: =item rank_students_by_scores_on_resources
2024:
2025: Inputs:
2026: $resources: array ref of hash ref. Each hash ref needs key 'symb'.
2027: $Sections: array ref of sections to include,
2028: $enrollment: string,
2029: $courseid (may be omitted)
2030:
2031: Returns; An array of arrays. The sub arrays contain a student name and
2032: their score on the resources.
2033:
2034: =cut
2035:
2036: ######################################################
2037: ######################################################
2038: sub RNK_student { return 0; };
2039: sub RNK_score { return 1; };
2040:
2041: sub rank_students_by_scores_on_resources {
1.130 matthew 2042: my ($resources,$Sections,$enrollment,$courseid,$starttime,$endtime) = @_;
1.127 matthew 2043: return if (! defined($resources) || ! ref($resources) eq 'ARRAY');
2044: if (! defined($courseid)) {
1.146 albertel 2045: $courseid = $env{'request.course.id'};
1.127 matthew 2046: }
2047: #
2048: &setup_table_names($courseid);
2049: my $dbh = &Apache::lonmysql::get_dbh();
2050: my ($section_limits,$enrollment_limits)=
2051: &limit_by_section_and_status($Sections,$enrollment,'b');
2052: my $symb_limits = '('.join(' OR ',map {'a.symb_id='.&get_symb_id($_);
2053: } @$resources
2054: ).')';
1.130 matthew 2055: my $time_limits = &limit_by_start_end_time($starttime,$endtime,'a');
1.127 matthew 2056: my $request = 'SELECT b.student,SUM(a.awarded*w.weight) AS score FROM '.
2057: $performance_table.' AS a '.
2058: 'NATURAL LEFT JOIN '.$weight_table.' AS w '.
2059: 'LEFT JOIN '.$student_table.' AS b ON a.student_id=b.student_id '.
2060: 'WHERE ';
2061: if (defined($section_limits)) {
2062: $request .= $section_limits.' AND ';
2063: }
2064: if (defined($enrollment_limits)) {
2065: $request .= $enrollment_limits.' AND ';
2066: }
1.130 matthew 2067: if (defined($time_limits)) {
2068: $request .= $time_limits.' AND ';
2069: }
1.127 matthew 2070: if ($symb_limits ne '()') {
2071: $request .= $symb_limits.' AND ';
2072: }
2073: $request =~ s/( AND )$//; # Remove extra conjunction
2074: $request =~ s/( WHERE )$//; # In case there were no limits placed on it
2075: $request .= ' GROUP BY a.student_id ORDER BY score';
2076: #&Apache::lonnet::logthis('request = '.$/.$request);
2077: my $sth = $dbh->prepare($request);
2078: $sth->execute();
2079: my $rows = $sth->fetchall_arrayref();
2080: return ($rows);
2081: }
2082:
2083: ########################################################
2084: ########################################################
2085:
2086: =pod
2087:
2088: =item &get_sum_of_scores
2089:
2090: Inputs: $resource (hash ref, needs {'symb'} key),
2091: $part, (the part id),
2092: $students (array ref, contents of array are scalars holding 'sname:sdom'),
2093: $courseid
2094:
2095: Returns: the sum of the score on the problem part over the students and the
2096: maximum possible value for the sum (taken from the weight table).
2097:
2098: =cut
2099:
2100: ########################################################
2101: ########################################################
2102: sub get_sum_of_scores {
1.143 matthew 2103: my ($symb,$part,$students,$courseid,$starttime,$endtime) = @_;
1.127 matthew 2104: if (! defined($courseid)) {
1.146 albertel 2105: $courseid = $env{'request.course.id'};
1.127 matthew 2106: }
1.138 matthew 2107: if (defined($students) &&
2108: ((@$students == 0) ||
2109: (@$students == 1 && (! defined($students->[0]) ||
2110: $students->[0] eq ''))
2111: )
2112: ){
2113: undef($students);
2114: }
1.127 matthew 2115: #
2116: &setup_table_names($courseid);
2117: my $dbh = &Apache::lonmysql::get_dbh();
1.130 matthew 2118: my $time_limits = &limit_by_start_end_time($starttime,$endtime,'a');
1.127 matthew 2119: my $request = 'SELECT SUM(a.awarded*w.weight),SUM(w.weight) FROM '.
2120: $performance_table.' AS a '.
2121: 'NATURAL LEFT JOIN '.$weight_table.' AS w ';
1.143 matthew 2122: $request .= 'WHERE a.symb_id='.&get_symb_id($symb).
1.127 matthew 2123: ' AND a.part_id='.&get_part_id($part);
1.130 matthew 2124: if (defined($time_limits)) {
2125: $request .= ' AND '.$time_limits;
2126: }
1.127 matthew 2127: if (defined($students)) {
2128: $request .= ' AND ('.
2129: join(' OR ',map {'a.student_id='.&get_student_id(split(':',$_));
2130: } @$students).
2131: ')';
2132: }
2133: my $sth = $dbh->prepare($request);
2134: $sth->execute();
2135: my $rows = $sth->fetchrow_arrayref();
2136: if ($dbh->err) {
1.138 matthew 2137: &Apache::lonnet::logthis('error 1 = '.$dbh->errstr());
2138: &Apache::lonnet::logthis('prepared then executed, fetchrow_arrayrefed'.
2139: $/.$request);
1.127 matthew 2140: return (undef,undef);
2141: }
2142: return ($rows->[0],$rows->[1]);
2143: }
2144:
1.129 matthew 2145: ########################################################
2146: ########################################################
2147:
2148: =pod
2149:
2150: =item &score_stats
2151:
2152: Inputs: $Sections, $enrollment, $symbs, $starttime,
2153: $endtime, $courseid
2154:
2155: $Sections, $enrollment, $starttime, $endtime, and $courseid are the same as
2156: elsewhere in this module.
2157: $symbs is an array ref of symbs
2158:
2159: Returns: minimum, maximum, mean, s.d., number of students, and maximum
2160: possible of student scores on the given resources
2161:
2162: =cut
2163:
2164: ########################################################
2165: ########################################################
2166: sub score_stats {
2167: my ($Sections,$enrollment,$symbs,$starttime,$endtime,$courseid)=@_;
2168: if (! defined($courseid)) {
1.146 albertel 2169: $courseid = $env{'request.course.id'};
1.129 matthew 2170: }
2171: #
2172: &setup_table_names($courseid);
2173: my $dbh = &Apache::lonmysql::get_dbh();
2174: #
2175: my ($section_limits,$enrollment_limits)=
2176: &limit_by_section_and_status($Sections,$enrollment,'b');
2177: my $time_limits = &limit_by_start_end_time($starttime,$endtime,'a');
2178: my @Symbids = map { &get_symb_id($_); } @{$symbs};
2179: #
2180: my $stats_table = $courseid.'_problem_stats';
2181: my $symb_restriction = join(' OR ',map {'a.symb_id='.$_;} @Symbids);
2182: my $request = 'DROP TABLE '.$stats_table;
2183: $dbh->do($request);
2184: $request =
2185: 'CREATE TEMPORARY TABLE '.$stats_table.' '.
2186: 'SELECT a.student_id,'.
2187: 'SUM(a.awarded*w.weight) AS score FROM '.
2188: $performance_table.' AS a '.
2189: 'NATURAL LEFT JOIN '.$weight_table.' AS w '.
2190: 'LEFT JOIN '.$student_table.' AS b ON a.student_id=b.student_id '.
2191: 'WHERE ('.$symb_restriction.')';
2192: if ($time_limits) {
2193: $request .= ' AND '.$time_limits;
2194: }
2195: if ($section_limits) {
2196: $request .= ' AND '.$section_limits;
2197: }
2198: if ($enrollment_limits) {
2199: $request .= ' AND '.$enrollment_limits;
2200: }
2201: $request .= ' GROUP BY a.student_id';
2202: # &Apache::lonnet::logthis('request = '.$/.$request);
2203: my $sth = $dbh->prepare($request);
2204: $sth->execute();
2205: $request =
2206: 'SELECT AVG(score),STD(score),MAX(score),MIN(score),COUNT(score) '.
2207: 'FROM '.$stats_table;
2208: my ($ave,$std,$max,$min,$count) = &execute_SQL_request($dbh,$request);
2209: # &Apache::lonnet::logthis('request = '.$/.$request);
2210:
2211: $request = 'SELECT SUM(weight) FROM '.$weight_table.
2212: ' WHERE ('.$symb_restriction.')';
2213: my ($max_possible) = &execute_SQL_request($dbh,$request);
2214: # &Apache::lonnet::logthis('request = '.$/.$request);
2215: return($min,$max,$ave,$std,$count,$max_possible);
2216: }
2217:
2218:
2219: ########################################################
2220: ########################################################
2221:
2222: =pod
2223:
2224: =item &count_stats
2225:
2226: Inputs: $Sections, $enrollment, $symbs, $starttime,
2227: $endtime, $courseid
2228:
2229: $Sections, $enrollment, $starttime, $endtime, and $courseid are the same as
2230: elsewhere in this module.
2231: $symbs is an array ref of symbs
2232:
2233: Returns: minimum, maximum, mean, s.d., and number of students
2234: of the number of items correct on the given resources
2235:
2236: =cut
2237:
2238: ########################################################
2239: ########################################################
2240: sub count_stats {
2241: my ($Sections,$enrollment,$symbs,$starttime,$endtime,$courseid)=@_;
2242: if (! defined($courseid)) {
1.146 albertel 2243: $courseid = $env{'request.course.id'};
1.129 matthew 2244: }
2245: #
2246: &setup_table_names($courseid);
2247: my $dbh = &Apache::lonmysql::get_dbh();
2248: #
2249: my ($section_limits,$enrollment_limits)=
2250: &limit_by_section_and_status($Sections,$enrollment,'b');
2251: my $time_limits = &limit_by_start_end_time($starttime,$endtime,'a');
2252: my @Symbids = map { &get_symb_id($_); } @{$symbs};
2253: #
2254: my $stats_table = $courseid.'_problem_stats';
2255: my $symb_restriction = join(' OR ',map {'a.symb_id='.$_;} @Symbids);
2256: my $request = 'DROP TABLE '.$stats_table;
2257: $dbh->do($request);
2258: $request =
2259: 'CREATE TEMPORARY TABLE '.$stats_table.' '.
2260: 'SELECT a.student_id,'.
2261: 'COUNT(a.award) AS count FROM '.
2262: $performance_table.' AS a '.
2263: 'LEFT JOIN '.$student_table.' AS b ON a.student_id=b.student_id '.
2264: 'WHERE ('.$symb_restriction.')'.
2265: " AND a.award!='INCORRECT_ATTEMPTED'";
2266: if ($time_limits) {
2267: $request .= ' AND '.$time_limits;
2268: }
2269: if ($section_limits) {
2270: $request .= ' AND '.$section_limits;
2271: }
2272: if ($enrollment_limits) {
2273: $request .= ' AND '.$enrollment_limits;
2274: }
2275: $request .= ' GROUP BY a.student_id';
1.131 matthew 2276: # &Apache::lonnet::logthis('request = '.$/.$request);
1.129 matthew 2277: my $sth = $dbh->prepare($request);
2278: $sth->execute();
2279: $request =
2280: 'SELECT AVG(count),STD(count),MAX(count),MIN(count),COUNT(count) '.
2281: 'FROM '.$stats_table;
2282: my ($ave,$std,$max,$min,$count) = &execute_SQL_request($dbh,$request);
1.131 matthew 2283: # &Apache::lonnet::logthis('request = '.$/.$request);
1.129 matthew 2284: return($min,$max,$ave,$std,$count);
2285: }
1.127 matthew 2286:
2287: ######################################################
2288: ######################################################
2289:
2290: =pod
2291:
2292: =item get_student_data
2293:
2294: =cut
2295:
2296: ######################################################
2297: ######################################################
1.105 matthew 2298: sub get_student_data {
2299: my ($students,$courseid) = @_;
1.146 albertel 2300: $courseid = $env{'request.course.id'} if (! defined($courseid));
1.105 matthew 2301: &setup_table_names($courseid);
2302: my $dbh = &Apache::lonmysql::get_dbh();
2303: return undef if (! defined($dbh));
2304: my $request = 'SELECT '.
2305: 'student_id, student '.
2306: 'FROM '.$student_table;
2307: if (defined($students)) {
2308: $request .= ' WHERE ('.
2309: join(' OR ', map {'student_id='.
2310: &get_student_id($_->{'username'},
2311: $_->{'domain'})
2312: } @$students
2313: ).')';
2314: }
2315: $request.= ' ORDER BY student_id';
2316: my $sth = $dbh->prepare($request);
2317: $sth->execute();
2318: if ($dbh->err) {
1.138 matthew 2319: &Apache::lonnet::logthis('error 2 = '.$dbh->errstr());
2320: &Apache::lonnet::logthis('prepared then executed '.$/.$request);
1.105 matthew 2321: return undef;
2322: }
2323: my $dataset = $sth->fetchall_arrayref();
2324: if (ref($dataset) eq 'ARRAY' && scalar(@$dataset)>0) {
2325: return $dataset;
2326: }
2327: }
2328:
1.108 matthew 2329: sub RD_student_id { return 0; }
2330: sub RD_awarddetail { return 1; }
2331: sub RD_response_eval { return 2; }
2332: sub RD_submission { return 3; }
2333: sub RD_timestamp { return 4; }
2334: sub RD_tries { return 5; }
2335: sub RD_sname { return 6; }
2336:
2337: sub get_response_data {
1.126 matthew 2338: my ($Sections,$enrollment,$symb,$response,$courseid) = @_;
1.103 matthew 2339: return undef if (! defined($symb) ||
1.100 matthew 2340: ! defined($response));
1.146 albertel 2341: $courseid = $env{'request.course.id'} if (! defined($courseid));
1.100 matthew 2342: #
2343: &setup_table_names($courseid);
2344: my $symb_id = &get_symb_id($symb);
1.137 matthew 2345: if (! defined($symb_id)) {
2346: &Apache::lonnet::logthis('Unable to find symb for '.$symb.' in '.$courseid);
2347: return undef;
2348: }
1.100 matthew 2349: my $response_id = &get_part_id($response);
1.137 matthew 2350: if (! defined($response_id)) {
2351: &Apache::lonnet::logthis('Unable to find id for '.$response.' in '.$courseid);
2352: return undef;
2353: }
1.100 matthew 2354: #
2355: my $dbh = &Apache::lonmysql::get_dbh();
2356: return undef if (! defined($dbh));
1.126 matthew 2357: #
1.127 matthew 2358: my ($student_requirements,$enrollment_requirements) =
2359: &limit_by_section_and_status($Sections,$enrollment,'d');
1.100 matthew 2360: my $request = 'SELECT '.
1.105 matthew 2361: 'a.student_id, a.awarddetail, a.response_specific_value, '.
1.108 matthew 2362: 'a.submission, b.timestamp, c.tries, d.student '.
1.100 matthew 2363: 'FROM '.$fulldump_response_table.' AS a '.
2364: 'LEFT JOIN '.$fulldump_timestamp_table.' AS b '.
2365: 'ON a.symb_id=b.symb_id AND a.student_id=b.student_id AND '.
2366: 'a.transaction = b.transaction '.
2367: 'LEFT JOIN '.$fulldump_part_table.' AS c '.
2368: 'ON a.symb_id=c.symb_id AND a.student_id=c.student_id AND '.
2369: 'a.part_id=c.part_id AND a.transaction = c.transaction '.
1.108 matthew 2370: 'LEFT JOIN '.$student_table.' AS d '.
2371: 'ON a.student_id=d.student_id '.
1.100 matthew 2372: 'WHERE '.
2373: 'a.symb_id='.$symb_id.' AND a.response_id='.$response_id;
1.126 matthew 2374: if (defined($student_requirements) || defined($enrollment_requirements)) {
2375: $request .= ' AND ';
2376: if (defined($student_requirements)) {
2377: $request .= $student_requirements.' AND ';
2378: }
2379: if (defined($enrollment_requirements)) {
2380: $request .= $enrollment_requirements.' AND ';
2381: }
2382: $request =~ s/( AND )$//;
1.100 matthew 2383: }
2384: $request .= ' ORDER BY b.timestamp';
1.103 matthew 2385: # &Apache::lonnet::logthis("request =\n".$request);
1.100 matthew 2386: my $sth = $dbh->prepare($request);
2387: $sth->execute();
1.105 matthew 2388: if ($dbh->err) {
1.138 matthew 2389: &Apache::lonnet::logthis('error 3 = '.$dbh->errstr());
2390: &Apache::lonnet::logthis('prepared then executed '.$/.$request);
1.105 matthew 2391: return undef;
2392: }
1.100 matthew 2393: my $dataset = $sth->fetchall_arrayref();
2394: if (ref($dataset) eq 'ARRAY' && scalar(@$dataset)>0) {
1.117 matthew 2395: # Clear the \'s from around the submission
2396: for (my $i =0;$i<scalar(@$dataset);$i++) {
2397: $dataset->[$i]->[3] =~ s/(\'$|^\')//g;
2398: }
1.103 matthew 2399: return $dataset;
1.100 matthew 2400: }
1.118 matthew 2401: }
2402:
2403:
2404: sub RDs_awarddetail { return 3; }
2405: sub RDs_submission { return 2; }
2406: sub RDs_timestamp { return 1; }
2407: sub RDs_tries { return 0; }
1.119 matthew 2408: sub RDs_awarded { return 4; }
1.118 matthew 2409:
2410: sub get_response_data_by_student {
2411: my ($student,$symb,$response,$courseid) = @_;
2412: return undef if (! defined($symb) ||
2413: ! defined($response));
1.146 albertel 2414: $courseid = $env{'request.course.id'} if (! defined($courseid));
1.118 matthew 2415: #
2416: &setup_table_names($courseid);
2417: my $symb_id = &get_symb_id($symb);
2418: my $response_id = &get_part_id($response);
2419: #
2420: my $student_id = &get_student_id($student->{'username'},
2421: $student->{'domain'});
2422: #
2423: my $dbh = &Apache::lonmysql::get_dbh();
2424: return undef if (! defined($dbh));
2425: my $request = 'SELECT '.
1.119 matthew 2426: 'c.tries, b.timestamp, a.submission, a.awarddetail, e.awarded '.
1.118 matthew 2427: 'FROM '.$fulldump_response_table.' AS a '.
2428: 'LEFT JOIN '.$fulldump_timestamp_table.' AS b '.
2429: 'ON a.symb_id=b.symb_id AND a.student_id=b.student_id AND '.
2430: 'a.transaction = b.transaction '.
2431: 'LEFT JOIN '.$fulldump_part_table.' AS c '.
2432: 'ON a.symb_id=c.symb_id AND a.student_id=c.student_id AND '.
2433: 'a.part_id=c.part_id AND a.transaction = c.transaction '.
2434: 'LEFT JOIN '.$student_table.' AS d '.
2435: 'ON a.student_id=d.student_id '.
1.119 matthew 2436: 'LEFT JOIN '.$performance_table.' AS e '.
2437: 'ON a.symb_id=e.symb_id AND a.part_id=e.part_id AND '.
2438: 'a.student_id=e.student_id AND c.tries=e.tries '.
1.118 matthew 2439: 'WHERE '.
2440: 'a.symb_id='.$symb_id.' AND a.response_id='.$response_id.
2441: ' AND a.student_id='.$student_id.' ORDER BY b.timestamp';
1.125 matthew 2442: # &Apache::lonnet::logthis("request =\n".$request);
1.118 matthew 2443: my $sth = $dbh->prepare($request);
2444: $sth->execute();
2445: if ($dbh->err) {
1.138 matthew 2446: &Apache::lonnet::logthis('error 4 = '.$dbh->errstr());
2447: &Apache::lonnet::logthis('prepared then executed '.$/.$request);
1.118 matthew 2448: return undef;
2449: }
2450: my $dataset = $sth->fetchall_arrayref();
2451: if (ref($dataset) eq 'ARRAY' && scalar(@$dataset)>0) {
2452: # Clear the \'s from around the submission
2453: for (my $i =0;$i<scalar(@$dataset);$i++) {
2454: $dataset->[$i]->[2] =~ s/(\'$|^\')//g;
2455: }
2456: return $dataset;
2457: }
2458: return undef; # error occurred
1.106 matthew 2459: }
1.108 matthew 2460:
2461: sub RT_student_id { return 0; }
2462: sub RT_awarded { return 1; }
2463: sub RT_tries { return 2; }
2464: sub RT_timestamp { return 3; }
1.106 matthew 2465:
2466: sub get_response_time_data {
1.142 matthew 2467: my ($sections,$enrollment,$symb,$part,$courseid) = @_;
1.106 matthew 2468: return undef if (! defined($symb) ||
1.107 matthew 2469: ! defined($part));
1.146 albertel 2470: $courseid = $env{'request.course.id'} if (! defined($courseid));
1.106 matthew 2471: #
2472: &setup_table_names($courseid);
2473: my $symb_id = &get_symb_id($symb);
1.142 matthew 2474: if (! defined($symb_id)) {
2475: &Apache::lonnet::logthis('Unable to find symb for '.$symb.' in '.$courseid);
2476: return undef;
2477: }
1.107 matthew 2478: my $part_id = &get_part_id($part);
1.142 matthew 2479: if (! defined($part_id)) {
2480: &Apache::lonnet::logthis('Unable to find id for '.$part.' in '.$courseid);
2481: return undef;
2482: }
1.106 matthew 2483: #
2484: my $dbh = &Apache::lonmysql::get_dbh();
2485: return undef if (! defined($dbh));
1.142 matthew 2486: my ($student_requirements,$enrollment_requirements) =
2487: &limit_by_section_and_status($sections,$enrollment,'d');
1.106 matthew 2488: my $request = 'SELECT '.
1.107 matthew 2489: 'a.student_id, a.awarded, a.tries, b.timestamp '.
2490: 'FROM '.$fulldump_part_table.' AS a '.
1.142 matthew 2491: 'LEFT JOIN '.$fulldump_timestamp_table.' AS b '.
2492: 'ON a.symb_id=b.symb_id AND a.student_id=b.student_id AND '.
2493: 'a.transaction = b.transaction '.
2494: 'LEFT JOIN '.$student_table.' as d '.
2495: 'ON a.student_id=d.student_id '.
1.106 matthew 2496: 'WHERE '.
1.107 matthew 2497: 'a.symb_id='.$symb_id.' AND a.part_id='.$part_id;
1.142 matthew 2498: if (defined($student_requirements) || defined($enrollment_requirements)) {
2499: $request .= ' AND ';
2500: if (defined($student_requirements)) {
2501: $request .= $student_requirements.' AND ';
2502: }
2503: if (defined($enrollment_requirements)) {
2504: $request .= $enrollment_requirements.' AND ';
2505: }
2506: $request =~ s/( AND )$//;
1.106 matthew 2507: }
2508: $request .= ' ORDER BY b.timestamp';
2509: # &Apache::lonnet::logthis("request =\n".$request);
2510: my $sth = $dbh->prepare($request);
2511: $sth->execute();
2512: if ($dbh->err) {
1.138 matthew 2513: &Apache::lonnet::logthis('error 5 = '.$dbh->errstr());
2514: &Apache::lonnet::logthis('prepared then executed '.$/.$request);
1.106 matthew 2515: return undef;
2516: }
2517: my $dataset = $sth->fetchall_arrayref();
2518: if (ref($dataset) eq 'ARRAY' && scalar(@$dataset)>0) {
2519: return $dataset;
2520: }
2521:
1.100 matthew 2522: }
1.61 matthew 2523:
2524: ################################################
2525: ################################################
2526:
2527: =pod
2528:
1.116 matthew 2529: =item &get_student_scores($Sections,$Symbs,$enrollment,$courseid)
1.113 matthew 2530:
2531: =cut
2532:
2533: ################################################
2534: ################################################
2535: sub get_student_scores {
1.145 matthew 2536: my ($sections,$Symbs,$enrollment,$courseid,$starttime,$endtime) = @_;
1.146 albertel 2537: $courseid = $env{'request.course.id'} if (! defined($courseid));
1.113 matthew 2538: &setup_table_names($courseid);
2539: my $dbh = &Apache::lonmysql::get_dbh();
2540: return (undef) if (! defined($dbh));
2541: my $tmptable = $courseid.'_temp_'.time;
1.145 matthew 2542: my $request = 'DROP TABLE IF EXISTS '.$tmptable;
2543: # &Apache::lonnet::logthis('request = '.$/.$request);
2544: $dbh->do($request);
1.114 matthew 2545: #
2546: my $symb_requirements;
1.113 matthew 2547: if (defined($Symbs) && @$Symbs) {
2548: $symb_requirements = '('.
1.114 matthew 2549: join(' OR ', map{ "(a.symb_id='".&get_symb_id($_->{'symb'}).
1.121 matthew 2550: "' AND a.part_id='".&get_part_id($_->{'part'}).
2551: "')"
1.113 matthew 2552: } @$Symbs).')';
2553: }
1.114 matthew 2554: #
1.145 matthew 2555: my ($student_requirements,$enrollment_requirements) =
2556: &limit_by_section_and_status($sections,$enrollment,'b');
1.114 matthew 2557: #
1.145 matthew 2558: my $time_requirements = &limit_by_start_end_time($starttime,$endtime,'a');
1.114 matthew 2559: ##
1.145 matthew 2560: $request = 'CREATE TEMPORARY TABLE IF NOT EXISTS '.$tmptable.
2561: ' SELECT a.student_id,SUM(a.awarded*c.weight) AS score FROM '.
1.114 matthew 2562: $performance_table.' AS a ';
1.145 matthew 2563: $request .= "LEFT JOIN ".$weight_table.' AS c ON a.symb_id=c.symb_id AND a.part_id=c.part_id ';
1.114 matthew 2564: if (defined($student_requirements) || defined($enrollment_requirements)) {
1.145 matthew 2565: $request .= ' LEFT JOIN '.$student_table.' AS b ON a.student_id=b.student_id';
1.114 matthew 2566: }
2567: if (defined($symb_requirements) ||
2568: defined($student_requirements) ||
2569: defined($enrollment_requirements) ) {
1.113 matthew 2570: $request .= ' WHERE ';
2571: }
1.114 matthew 2572: if (defined($symb_requirements)) {
2573: $request .= $symb_requirements.' AND ';
2574: }
2575: if (defined($student_requirements)) {
2576: $request .= $student_requirements.' AND ';
2577: }
2578: if (defined($enrollment_requirements)) {
2579: $request .= $enrollment_requirements.' AND ';
2580: }
1.121 matthew 2581: if (defined($time_requirements)) {
2582: $request .= $time_requirements.' AND ';
2583: }
2584: $request =~ s/ AND $//; # Strip of the trailing ' AND '.
1.114 matthew 2585: $request .= ' GROUP BY a.student_id';
2586: # &Apache::lonnet::logthis("request = \n".$request);
1.113 matthew 2587: my $sth = $dbh->prepare($request);
2588: $sth->execute();
2589: if ($dbh->err) {
1.138 matthew 2590: &Apache::lonnet::logthis('error 6 = '.$dbh->errstr());
2591: &Apache::lonnet::logthis('prepared then executed '.$/.$request);
1.113 matthew 2592: return undef;
2593: }
2594: $request = 'SELECT score,COUNT(*) FROM '.$tmptable.' GROUP BY score';
2595: # &Apache::lonnet::logthis("request = \n".$request);
2596: $sth = $dbh->prepare($request);
2597: $sth->execute();
2598: if ($dbh->err) {
1.138 matthew 2599: &Apache::lonnet::logthis('error 7 = '.$dbh->errstr());
2600: &Apache::lonnet::logthis('prepared then executed '.$/.$request);
1.113 matthew 2601: return undef;
2602: }
2603: my $dataset = $sth->fetchall_arrayref();
2604: return $dataset;
2605: }
2606:
2607: ################################################
2608: ################################################
2609:
2610: =pod
2611:
1.61 matthew 2612: =item &setup_table_names()
2613:
2614: input: course id
2615:
2616: output: none
2617:
2618: Cleans up the package variables for local caching.
2619:
2620: =cut
2621:
2622: ################################################
2623: ################################################
2624: sub setup_table_names {
2625: my ($courseid) = @_;
2626: if (! defined($courseid)) {
1.146 albertel 2627: $courseid = $env{'request.course.id'};
1.61 matthew 2628: }
2629: #
2630: if (! defined($current_course) || $current_course ne $courseid) {
2631: # Clear out variables
2632: $have_read_part_table = 0;
2633: undef(%ids_by_part);
2634: undef(%parts_by_id);
2635: $have_read_symb_table = 0;
2636: undef(%ids_by_symb);
2637: undef(%symbs_by_id);
2638: $have_read_student_table = 0;
2639: undef(%ids_by_student);
2640: undef(%students_by_id);
2641: #
2642: $current_course = $courseid;
2643: }
2644: #
2645: # Set up database names
2646: my $base_id = $courseid;
2647: $symb_table = $base_id.'_'.'symb';
2648: $part_table = $base_id.'_'.'part';
2649: $student_table = $base_id.'_'.'student';
2650: $performance_table = $base_id.'_'.'performance';
2651: $parameters_table = $base_id.'_'.'parameters';
1.89 matthew 2652: $fulldump_part_table = $base_id.'_'.'partdata';
2653: $fulldump_response_table = $base_id.'_'.'responsedata';
2654: $fulldump_timestamp_table = $base_id.'_'.'timestampdata';
1.127 matthew 2655: $weight_table = $base_id.'_'.'weight';
1.89 matthew 2656: #
2657: @Tables = (
2658: $symb_table,
2659: $part_table,
2660: $student_table,
2661: $performance_table,
2662: $parameters_table,
2663: $fulldump_part_table,
2664: $fulldump_response_table,
2665: $fulldump_timestamp_table,
1.127 matthew 2666: $weight_table,
1.89 matthew 2667: );
1.61 matthew 2668: return;
1.3 stredwic 2669: }
1.1 stredwic 2670:
1.35 matthew 2671: ################################################
2672: ################################################
2673:
2674: =pod
2675:
1.57 matthew 2676: =back
2677:
2678: =item End of Local Data Caching Subroutines
2679:
2680: =cut
2681:
2682: ################################################
2683: ################################################
2684:
1.89 matthew 2685: } # End scope of table identifiers
1.57 matthew 2686:
2687: ################################################
2688: ################################################
2689:
2690: =pod
2691:
2692: =head3 Classlist Subroutines
2693:
1.35 matthew 2694: =item &get_classlist();
2695:
2696: Retrieve the classist of a given class or of the current class. Student
2697: information is returned from the classlist.db file and, if needed,
2698: from the students environment.
2699:
2700: Optional arguments are $cid, $cdom, and $cnum (course id, course domain,
2701: and course number, respectively). Any omitted arguments will be taken
1.146 albertel 2702: from the current environment ($env{'request.course.id'},
2703: $env{'course.'.$cid.'.domain'}, and $env{'course.'.$cid.'.num'}).
1.35 matthew 2704:
2705: Returns a reference to a hash which contains:
2706: keys '$sname:$sdom'
1.136 raeburn 2707: values [$sdom,$sname,$end,$start,$id,$section,$fullname,$status,$type,$lockedtype]
1.54 bowersj2 2708:
2709: The constant values CL_SDOM, CL_SNAME, CL_END, etc. can be used
2710: as indices into the returned list to future-proof clients against
2711: changes in the list order.
1.35 matthew 2712:
2713: =cut
2714:
2715: ################################################
2716: ################################################
1.54 bowersj2 2717:
2718: sub CL_SDOM { return 0; }
2719: sub CL_SNAME { return 1; }
2720: sub CL_END { return 2; }
2721: sub CL_START { return 3; }
2722: sub CL_ID { return 4; }
2723: sub CL_SECTION { return 5; }
2724: sub CL_FULLNAME { return 6; }
2725: sub CL_STATUS { return 7; }
1.111 raeburn 2726: sub CL_TYPE { return 8; }
1.136 raeburn 2727: sub CL_LOCKEDTYPE { return 9; }
1.35 matthew 2728:
2729: sub get_classlist {
2730: my ($cid,$cdom,$cnum) = @_;
1.146 albertel 2731: $cid = $cid || $env{'request.course.id'};
2732: $cdom = $cdom || $env{'course.'.$cid.'.domain'};
2733: $cnum = $cnum || $env{'course.'.$cid.'.num'};
1.57 matthew 2734: my $now = time;
1.35 matthew 2735: #
2736: my %classlist=&Apache::lonnet::dump('classlist',$cdom,$cnum);
2737: while (my ($student,$info) = each(%classlist)) {
1.60 matthew 2738: if ($student =~ /^(con_lost|error|no_such_host)/i) {
2739: &Apache::lonnet::logthis('get_classlist error for '.$cid.':'.$student);
2740: return undef;
2741: }
1.35 matthew 2742: my ($sname,$sdom) = split(/:/,$student);
2743: my @Values = split(/:/,$info);
1.136 raeburn 2744: my ($end,$start,$id,$section,$fullname,$type,$lockedtype);
1.35 matthew 2745: if (@Values > 2) {
1.136 raeburn 2746: ($end,$start,$id,$section,$fullname,$type,$lockedtype) = @Values;
1.35 matthew 2747: } else { # We have to get the data ourselves
2748: ($end,$start) = @Values;
1.37 matthew 2749: $section = &Apache::lonnet::getsection($sdom,$sname,$cid);
1.35 matthew 2750: my %info=&Apache::lonnet::get('environment',
2751: ['firstname','middlename',
2752: 'lastname','generation','id'],
2753: $sdom, $sname);
2754: my ($tmp) = keys(%info);
2755: if ($tmp =~/^(con_lost|error|no_such_host)/i) {
2756: $fullname = 'not available';
2757: $id = 'not available';
1.38 matthew 2758: &Apache::lonnet::logthis('unable to retrieve environment '.
2759: 'for '.$sname.':'.$sdom);
1.35 matthew 2760: } else {
1.141 albertel 2761: $fullname = &Apache::lonnet::format_name(@info{qw/firstname middlename lastname generation/},'lastname');
1.35 matthew 2762: $id = $info{'id'};
2763: }
1.36 matthew 2764: # Update the classlist with this students information
2765: if ($fullname ne 'not available') {
1.141 albertel 2766: my $enrolldata = join(':',$end,$start,$id,$section,$fullname);
2767: my $reply=&Apache::lonnet::cput('classlist',
1.36 matthew 2768: {$student => $enrolldata},
2769: $cdom,$cnum);
2770: if ($reply !~ /^(ok|delayed)/) {
2771: &Apache::lonnet::logthis('Unable to update classlist for '.
2772: 'student '.$sname.':'.$sdom.
2773: ' error:'.$reply);
2774: }
2775: }
1.35 matthew 2776: }
2777: my $status='Expired';
2778: if(((!$end) || $now < $end) && ((!$start) || ($now > $start))) {
2779: $status='Active';
2780: }
2781: $classlist{$student} =
1.136 raeburn 2782: [$sdom,$sname,$end,$start,$id,$section,$fullname,$status,$type,$lockedtype];
1.35 matthew 2783: }
2784: if (wantarray()) {
2785: return (\%classlist,['domain','username','end','start','id',
1.136 raeburn 2786: 'section','fullname','status','type','lockedtype']);
1.35 matthew 2787: } else {
2788: return \%classlist;
2789: }
2790: }
2791:
1.1 stredwic 2792: # ----- END HELPER FUNCTIONS --------------------------------------------
2793:
2794: 1;
2795: __END__
1.36 matthew 2796:
1.35 matthew 2797:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>