// swad_statistic.c: statistics /* SWAD (Shared Workspace At a Distance), is a web platform developed at the University of Granada (Spain), and used to support university teaching. This file is part of SWAD core. Copyright (C) 1999-2019 Antonio Caņas Vargas This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . */ /*****************************************************************************/ /********************************* Headers ***********************************/ /*****************************************************************************/ #define _GNU_SOURCE // For asprintf #include // For PATH_MAX #include // For NULL #include // For log10, floor, ceil, modf, sqrt... #include // For asprintf #include // For system, getenv, etc. #include // For string functions #include // For the macro WEXITSTATUS #include // For unlink #include "swad_action.h" #include "swad_box.h" #include "swad_config.h" #include "swad_course.h" #include "swad_database.h" #include "swad_file_browser.h" #include "swad_follow.h" #include "swad_form.h" #include "swad_forum.h" #include "swad_game.h" #include "swad_global.h" #include "swad_ID.h" #include "swad_logo.h" #include "swad_network.h" #include "swad_notice.h" #include "swad_notification.h" #include "swad_parameter.h" #include "swad_profile.h" #include "swad_project.h" #include "swad_social.h" #include "swad_statistic.h" #include "swad_tab.h" #include "swad_table.h" #include "swad_web_service.h" /*****************************************************************************/ /************** External global variables from others modules ****************/ /*****************************************************************************/ extern struct Globals Gbl; /*****************************************************************************/ /***************************** Private constants *****************************/ /*****************************************************************************/ #define Sta_SECONDS_IN_RECENT_LOG ((time_t) (Cfg_DAYS_IN_RECENT_LOG * 24UL * 60UL * 60UL)) // Remove entries in recent log oldest than this time const unsigned Sta_CellPadding[Sta_NUM_CLICKS_GROUPED_BY] = { 2, // Sta_CLICKS_CRS_DETAILED_LIST 1, // Sta_CLICKS_CRS_PER_USR 1, // Sta_CLICKS_CRS_PER_DAY 0, // Sta_CLICKS_CRS_PER_DAY_AND_HOUR 1, // Sta_CLICKS_CRS_PER_WEEK 1, // Sta_CLICKS_CRS_PER_MONTH 1, // Sta_CLICKS_CRS_PER_YEAR 1, // Sta_CLICKS_CRS_PER_HOUR 0, // Sta_CLICKS_CRS_PER_MINUTE 1, // Sta_CLICKS_CRS_PER_ACTION 1, // Sta_CLICKS_GBL_PER_DAY 0, // Sta_CLICKS_GBL_PER_DAY_AND_HOUR 1, // Sta_CLICKS_GBL_PER_WEEK 1, // Sta_CLICKS_GBL_PER_MONTH 1, // Sta_CLICKS_GBL_PER_YEAR 1, // Sta_CLICKS_GBL_PER_HOUR 0, // Sta_CLICKS_GBL_PER_MINUTE 1, // Sta_CLICKS_GBL_PER_ACTION 1, // Sta_CLICKS_GBL_PER_PLUGIN 1, // Sta_CLICKS_GBL_PER_API_FUNCTION 1, // Sta_CLICKS_GBL_PER_BANNER 1, // Sta_CLICKS_GBL_PER_COUNTRY 1, // Sta_CLICKS_GBL_PER_INSTITUTION 1, // Sta_CLICKS_GBL_PER_CENTRE 1, // Sta_CLICKS_GBL_PER_DEGREE 1, // Sta_CLICKS_GBL_PER_COURSE }; #define Sta_STAT_RESULTS_SECTION_ID "stat_results" /*****************************************************************************/ /******************************* Private types *******************************/ /*****************************************************************************/ struct Sta_SizeOfFileZones { int NumCrss; // -1 stands for not aplicable int NumGrps; // -1 stands for not aplicable int NumUsrs; // -1 stands for not aplicable unsigned MaxLevels; unsigned long NumFolders; unsigned long NumFiles; unsigned long long int Size; // Total size in bytes }; struct Sta_StatsForum { unsigned NumForums; unsigned NumThreads; unsigned NumPosts; unsigned NumUsrsToBeNotifiedByEMail; }; typedef enum { Sta_SHOW_GLOBAL_ACCESSES, Sta_SHOW_COURSE_ACCESSES, } Sta_GlobalOrCourseAccesses_t; /*****************************************************************************/ /***************************** Internal prototypes ***************************/ /*****************************************************************************/ static void Sta_WriteSelectorCountType (void); static void Sta_WriteSelectorAction (void); static void Sta_ShowHits (Sta_GlobalOrCourseAccesses_t GlobalOrCourse); static void Sta_ShowDetailedAccessesList (unsigned long NumRows,MYSQL_RES *mysql_res); static void Sta_WriteLogComments (long LogCod); static void Sta_ShowNumHitsPerUsr (unsigned long NumRows,MYSQL_RES *mysql_res); static void Sta_ShowNumHitsPerDay (unsigned long NumRows,MYSQL_RES *mysql_res); static void Sta_ShowDistrAccessesPerDayAndHour (unsigned long NumRows,MYSQL_RES *mysql_res); static Sta_ColorType_t Sta_GetStatColorType (void); static void Sta_DrawBarColors (Sta_ColorType_t ColorType,float HitsMax); static void Sta_DrawAccessesPerHourForADay (Sta_ColorType_t ColorType,float HitsNum[24],float HitsMax); static void Sta_SetColor (Sta_ColorType_t ColorType,float HitsNum,float HitsMax, unsigned *R,unsigned *G,unsigned *B); static void Sta_ShowNumHitsPerWeek (unsigned long NumRows, MYSQL_RES *mysql_res); static void Sta_ShowNumHitsPerMonth (unsigned long NumRows, MYSQL_RES *mysql_res); static void Sta_ShowNumHitsPerYear (unsigned long NumRows, MYSQL_RES *mysql_res); static void Sta_ShowNumHitsPerHour (unsigned long NumRows, MYSQL_RES *mysql_res); static void Sta_WriteAccessHour (unsigned Hour,struct Sta_Hits *Hits,unsigned ColumnWidth); static void Sta_ShowAverageAccessesPerMinute (unsigned long NumRows,MYSQL_RES *mysql_res); static void Sta_WriteLabelsXAxisAccMin (float IncX,const char *Format); static void Sta_WriteAccessMinute (unsigned Minute,float HitsNum,float MaxX); static void Sta_ShowNumHitsPerAction (unsigned long NumRows, MYSQL_RES *mysql_res); static void Sta_ShowNumHitsPerPlugin (unsigned long NumRows, MYSQL_RES *mysql_res); static void Sta_ShowNumHitsPerWSFunction (unsigned long NumRows, MYSQL_RES *mysql_res); static void Sta_ShowNumHitsPerBanner (unsigned long NumRows, MYSQL_RES *mysql_res); static void Sta_ShowNumHitsPerCountry (unsigned long NumRows, MYSQL_RES *mysql_res); static void Sta_WriteCountry (long CtyCod); static void Sta_ShowNumHitsPerInstitution (unsigned long NumRows, MYSQL_RES *mysql_res); static void Sta_WriteInstitution (long InsCod); static void Sta_ShowNumHitsPerCentre (unsigned long NumRows, MYSQL_RES *mysql_res); static void Sta_WriteCentre (long CtrCod); static void Sta_ShowNumHitsPerDegree (unsigned long NumRows, MYSQL_RES *mysql_res); static void Sta_WriteDegree (long DegCod); static void Sta_ShowNumHitsPerCourse (unsigned long NumRows, MYSQL_RES *mysql_res); static void Sta_DrawBarNumHits (char Color, float HitsNum,float HitsMax,float HitsTotal, unsigned MaxBarWidth); static void Sta_PutParamsToShowFigure (void); static void Sta_PutHiddenParamFigureType (void); static void Sta_PutHiddenParamScopeSta (void); static void Sta_GetAndShowHierarchyStats (void); static void Sta_WriteHeadDegsCrssInSWAD (void); static void Sta_GetAndShowNumCtysInSWAD (void); static void Sta_GetAndShowNumInssInSWAD (void); static void Sta_GetAndShowNumCtrsInSWAD (void); static void Sta_GetAndShowNumDegsInSWAD (void); static void Sta_GetAndShowNumCrssInSWAD (void); static void Sta_GetAndShowInstitutionsStats (void); static void Sta_GetAndShowInssOrderedByNumCtrs (void); static void Sta_GetAndShowInssOrderedByNumDegs (void); static void Sta_GetAndShowInssOrderedByNumCrss (void); static void Sta_GetAndShowInssOrderedByNumUsrsInCrss (void); static void Sta_GetAndShowInssOrderedByNumUsrsWhoClaimToBelongToThem (void); static void Sta_ShowInss (MYSQL_RES **mysql_res,unsigned NumInss, const char *TxtFigure); static unsigned Sta_GetInsAndStat (struct Instit *Ins,MYSQL_RES *mysql_res); static void Sta_GetAndShowDegreeTypesStats (void); static void Sta_GetAndShowUsersStats (void); static void Sta_GetAndShowNumUsrsInCrss (Rol_Role_t Role); static void Sta_GetAndShowNumUsrsNotBelongingToAnyCrs (void); static void Sta_GetAndShowUsersRanking (void); static void Sta_GetAndShowFileBrowsersStats (void); static void Sta_WriteStatsExpTreesTableHead (void); static void Sta_WriteRowStatsFileBrowsers (Brw_FileBrowser_t FileZone,const char *NameOfFileZones); static void Sta_GetSizeOfFileZoneFromDB (Sco_Scope_t Scope, Brw_FileBrowser_t FileBrowser, struct Sta_SizeOfFileZones *SizeOfFileZones); static void Sta_GetAndShowOERsStats (void); static void Sta_GetNumberOfOERsFromDB (Sco_Scope_t Scope,Brw_License_t License,unsigned long NumFiles[2]); static void Sta_GetAndShowAssignmentsStats (void); static void Sta_GetAndShowProjectsStats (void); static void Sta_GetAndShowTestsStats (void); static void Sta_GetAndShowGamesStats (void); static void Sta_GetAndShowSocialActivityStats (void); static void Sta_GetAndShowFollowStats (void); static void Sta_GetAndShowForumStats (void); static void Sta_ShowStatOfAForumType (For_ForumType_t ForumType, long CtyCod,long InsCod,long CtrCod,long DegCod,long CrsCod, struct Sta_StatsForum *StatsForum); static void Sta_WriteForumTitleAndStats (For_ForumType_t ForumType, long CtyCod,long InsCod,long CtrCod,long DegCod,long CrsCod, const char *Icon,struct Sta_StatsForum *StatsForum, const char *ForumName1,const char *ForumName2); static void Sta_WriteForumTotalStats (struct Sta_StatsForum *StatsForum); static void Sta_GetAndShowNumUsrsPerNotifyEvent (void); static void Sta_GetAndShowNoticesStats (void); static void Sta_GetAndShowMsgsStats (void); static void Sta_GetAndShowSurveysStats (void); static void Sta_GetAndShowNumUsrsPerPrivacy (void); static void Sta_GetAndShowNumUsrsPerPrivacyForAnObject (const char *TxtObject,const char *FieldName); static void Sta_GetAndShowNumUsrsPerLanguage (void); static void Sta_GetAndShowNumUsrsPerFirstDayOfWeek (void); static void Sta_GetAndShowNumUsrsPerDateFormat (void); static void Sta_GetAndShowNumUsrsPerIconSet (void); static void Sta_GetAndShowNumUsrsPerMenu (void); static void Sta_GetAndShowNumUsrsPerTheme (void); static void Sta_GetAndShowNumUsrsPerSideColumns (void); unsigned Sta_GetNumUsrsWhoChoseAnOption (const char *SubQuery); /*****************************************************************************/ /*************** Read CGI environment variable REMOTE_ADDR *******************/ /*****************************************************************************/ /* CGI Environment Variables: REMOTE_ADDR The IP address of the remote host making the request. */ void Sta_GetRemoteAddr (void) { if (getenv ("REMOTE_ADDR")) Str_Copy (Gbl.IP,getenv ("REMOTE_ADDR"), Cns_MAX_BYTES_IP); else Gbl.IP[0] = '\0'; } /*****************************************************************************/ /**************************** Log access in database *************************/ /*****************************************************************************/ void Sta_LogAccess (const char *Comments) { long LogCod; long ActCod = Act_GetActCod (Gbl.Action.Act); Rol_Role_t RoleToStore = (Gbl.Action.Act == ActLogOut) ? Gbl.Usrs.Me.Role.LoggedBeforeCloseSession : Gbl.Usrs.Me.Role.Logged; /***** Insert access into database *****/ /* Log access in historical log (log_full) */ LogCod = DB_QueryINSERTandReturnCode ("can not log access (full)", "INSERT INTO log_full " "(ActCod,CtyCod,InsCod,CtrCod,DegCod,CrsCod,UsrCod," "Role,ClickTime,TimeToGenerate,TimeToSend,IP)" " VALUES " "(%ld,%ld,%ld,%ld,%ld,%ld,%ld," "%u,NOW(),%ld,%ld,'%s')", ActCod, Gbl.CurrentCty.Cty.CtyCod, Gbl.CurrentIns.Ins.InsCod, Gbl.CurrentCtr.Ctr.CtrCod, Gbl.CurrentDeg.Deg.DegCod, Gbl.CurrentCrs.Crs.CrsCod, Gbl.Usrs.Me.UsrDat.UsrCod, (unsigned) RoleToStore, Gbl.TimeGenerationInMicroseconds, Gbl.TimeSendInMicroseconds, Gbl.IP); /* Log access in recent log (log_recent) */ DB_QueryINSERT ("can not log access (recent)", "INSERT INTO log_recent " "(LogCod,ActCod,CtyCod,InsCod,CtrCod,DegCod,CrsCod,UsrCod," "Role,ClickTime,TimeToGenerate,TimeToSend,IP)" " VALUES " "(%ld,%ld,%ld,%ld,%ld,%ld,%ld,%ld," "%u,NOW(),%ld,%ld,'%s')", LogCod,ActCod, Gbl.CurrentCty.Cty.CtyCod, Gbl.CurrentIns.Ins.InsCod, Gbl.CurrentCtr.Ctr.CtrCod, Gbl.CurrentDeg.Deg.DegCod, Gbl.CurrentCrs.Crs.CrsCod, Gbl.Usrs.Me.UsrDat.UsrCod, (unsigned) RoleToStore, Gbl.TimeGenerationInMicroseconds, Gbl.TimeSendInMicroseconds, Gbl.IP); /* Log comments */ if (Comments) DB_QueryINSERT ("can not log access (comments)", "INSERT INTO log_comments" " (LogCod,Comments)" " VALUES" " (%ld,'%s')", LogCod,Comments); /* Log search string */ if (Gbl.Search.LogSearch && Gbl.Search.Str[0]) DB_QueryINSERT ("can not log access (search)", "INSERT INTO log_search" " (LogCod,SearchStr)" " VALUES" " (%ld,'%s')", LogCod,Gbl.Search.Str); if (Gbl.WebService.IsWebService) /* Log web service plugin and function */ DB_QueryINSERT ("can not log access (comments)", "INSERT INTO log_ws" " (LogCod,PlgCod,FunCod)" " VALUES" " (%ld,%ld,%u)", LogCod,Gbl.WebService.PlgCod, (unsigned) Gbl.WebService.Function); else if (Gbl.Banners.BanCodClicked > 0) /* Log banner clicked */ DB_QueryINSERT ("can not log banner clicked", "INSERT INTO log_banners" " (LogCod,BanCod)" " VALUES" " (%ld,%ld)", LogCod,Gbl.Banners.BanCodClicked); /***** Increment my number of clicks *****/ if (Gbl.Usrs.Me.Logged) Prf_IncrementNumClicksUsr (Gbl.Usrs.Me.UsrDat.UsrCod); } /*****************************************************************************/ /************ Sometimes, we delete old entries in recent log table ***********/ /*****************************************************************************/ void Sta_RemoveOldEntriesRecentLog (void) { /***** Remove all expired clipboards *****/ DB_QueryDELETE ("can not remove old entries from recent log", "DELETE LOW_PRIORITY FROM log_recent" " WHERE ClickTime" "%s:" "" "" "", The_ClassForm[Gbl.Prefs.Theme],Txt_Users, The_ClassForm[Gbl.Prefs.Theme]); Usr_ListUsersToSelect (Rol_TCH); Usr_ListUsersToSelect (Rol_NET); Usr_ListUsersToSelect (Rol_STD); fprintf (Gbl.F.Out,"
" "" ""); /***** Initial and final dates of the search *****/ Dat_PutFormStartEndClientLocalDateTimesWithYesterdayToday (Gbl.Action.Act == ActReqAccCrs); /***** Selection of action *****/ Sta_WriteSelectorAction (); /***** Option a) Listing of clicks distributed by some metric *****/ fprintf (Gbl.F.Out,"" "%s:" "", The_ClassForm[Gbl.Prefs.Theme],Txt_Show); if ((Gbl.Stat.ClicksGroupedBy < Sta_CLICKS_CRS_PER_USR || Gbl.Stat.ClicksGroupedBy > Sta_CLICKS_CRS_PER_ACTION) && Gbl.Stat.ClicksGroupedBy != Sta_CLICKS_CRS_DETAILED_LIST) Gbl.Stat.ClicksGroupedBy = Sta_CLICKS_GROUPED_BY_DEFAULT; fprintf (Gbl.F.Out,""); /* Selection of count type (number of pages generated, accesses per user, etc.) */ Sta_WriteSelectorCountType (); fprintf (Gbl.F.Out,"
"); /***** Option b) Listing of detailed clicks to this course *****/ fprintf (Gbl.F.Out,"", Txt_STAT_CLICKS_GROUPED_BY[Sta_CLICKS_CRS_DETAILED_LIST]); /* Number of rows per page */ // To use getElementById in Firefox, it's necessary to have the id attribute fprintf (Gbl.F.Out," " "" "" ""); Tbl_EndTable (); /***** Hidden param used to get client time zone *****/ Dat_PutHiddenParBrowserTZDiff (); /***** Send button *****/ Btn_PutConfirmButton (Txt_Show_hits); /***** End form *****/ Frm_EndForm (); } } else // No teachers nor students found Ale_ShowAlert (Ale_WARNING,Txt_No_teachers_or_students_found); /***** End section with user list *****/ Lay_EndSection (); /***** End box *****/ Box_EndBox (); /***** Free memory used by the lists *****/ Usr_FreeUsrsList (Rol_TCH); Usr_FreeUsrsList (Rol_NET); Usr_FreeUsrsList (Rol_STD); /***** Free memory for list of selected groups *****/ Grp_FreeListCodSelectedGrps (); } /*****************************************************************************/ /********** Show a form to select the type of global stat of clics ***********/ /*****************************************************************************/ void Sta_AskShowGblHits (void) { extern const char *Hlp_ANALYTICS_Visits_global_visits; extern const char *The_ClassForm[The_NUM_THEMES]; extern const char *Txt_Visits_to_course; extern const char *Txt_Statistics_of_all_visits; extern const char *Txt_Users; extern const char *Txt_ROLE_STATS[Sta_NUM_ROLES_STAT]; extern const char *Txt_Scope; extern const char *Txt_Show; extern const char *Txt_distributed_by; extern const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY]; extern const char *Txt_Show_hits; Sta_Role_t RoleStat; Sta_ClicksGroupedBy_t ClicksGroupedBy; /***** Contextual links *****/ fprintf (Gbl.F.Out,"
"); /* Put form to go to test edition and configuration */ if (Gbl.CurrentCrs.Crs.CrsCod > 0) // Course selected switch (Gbl.Usrs.Me.Role.Logged) { case Rol_NET: case Rol_TCH: case Rol_SYS_ADM: Lay_PutContextualLink (ActReqAccCrs,NULL,NULL, "stats64x64.gif", Txt_Visits_to_course,Txt_Visits_to_course, NULL); break; default: break; } /* Link to show last clicks in real time */ Con_PutLinkToLastClicks (); fprintf (Gbl.F.Out,"
"); /***** Start form *****/ Frm_StartFormAnchor (ActSeeAccGbl,Sta_STAT_RESULTS_SECTION_ID); /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_Statistics_of_all_visits,NULL, Hlp_ANALYTICS_Visits_global_visits,Box_NOT_CLOSABLE,2); /***** Start and end dates for the search *****/ Dat_PutFormStartEndClientLocalDateTimesWithYesterdayToday (Gbl.Action.Act == ActReqAccGbl); /***** Users' roles whose accesses we want to see *****/ fprintf (Gbl.F.Out,"" "" "" "" "" "" "" ""); /***** Selection of action *****/ Sta_WriteSelectorAction (); /***** Clicks made from anywhere, current centre, current degree or current course *****/ fprintf (Gbl.F.Out,"" "" "" "" "", The_ClassForm[Gbl.Prefs.Theme],Txt_Scope); Gbl.Scope.Allowed = 1 << Sco_SCOPE_SYS | 1 << Sco_SCOPE_CTY | 1 << Sco_SCOPE_INS | 1 << Sco_SCOPE_CTR | 1 << Sco_SCOPE_DEG | 1 << Sco_SCOPE_CRS; Gbl.Scope.Default = Sco_SCOPE_SYS; Sco_GetScope ("ScopeSta"); Sco_PutSelectorScope ("ScopeSta",false); fprintf (Gbl.F.Out,"" ""); /***** Count type for the statistic *****/ fprintf (Gbl.F.Out,"" "" "" "" "", The_ClassForm[Gbl.Prefs.Theme],Txt_Show); Sta_WriteSelectorCountType (); /***** Type of statistic *****/ fprintf (Gbl.F.Out,"" "" ""); /***** End table *****/ Tbl_EndTable (); /***** Hidden param used to get client time zone *****/ Dat_PutHiddenParBrowserTZDiff (); /***** Send button and end box *****/ Box_EndBoxWithButton (Btn_CONFIRM_BUTTON,Txt_Show_hits); /***** End form *****/ Frm_EndForm (); } /*****************************************************************************/ /****** Put selectors for type of access count and for degree or course ******/ /*****************************************************************************/ static void Sta_WriteSelectorCountType (void) { extern const char *Txt_STAT_TYPE_COUNT_SMALL[Sta_NUM_COUNT_TYPES]; Sta_CountType_t StatCountType; /**** Count type *****/ fprintf (Gbl.F.Out,""); } /*****************************************************************************/ /****** Put selectors for type of access count and for degree or course ******/ /*****************************************************************************/ static void Sta_WriteSelectorAction (void) { extern const char *The_ClassForm[The_NUM_THEMES]; extern const char *Txt_Action; extern const char *Txt_TABS_TXT[Tab_NUM_TABS]; Act_Action_t Action; Tab_Tab_t Tab; char ActTxt[Act_MAX_BYTES_ACTION_TXT + 1]; fprintf (Gbl.F.Out,"" "" "" "" "" "" "" ""); } /*****************************************************************************/ /************ Set end date to current date ************/ /************ and set initial date to end date minus several days ************/ /*****************************************************************************/ void Sta_SetIniEndDates (void) { Gbl.DateRange.TimeUTC[0] = Gbl.StartExecutionTimeUTC - ((Cfg_DAYS_IN_RECENT_LOG - 1) * 24 * 60 * 60); Gbl.DateRange.TimeUTC[1] = Gbl.StartExecutionTimeUTC; } /*****************************************************************************/ /******************** Compute and show access statistics *********************/ /*****************************************************************************/ void Sta_SeeGblAccesses (void) { Sta_ShowHits (Sta_SHOW_GLOBAL_ACCESSES); } void Sta_SeeCrsAccesses (void) { Sta_ShowHits (Sta_SHOW_COURSE_ACCESSES); } /*****************************************************************************/ /******************** Compute and show access statistics ********************/ /*****************************************************************************/ #define Sta_MAX_BYTES_QUERY_ACCESS (1024 + (10 + ID_MAX_BYTES_USR_ID) * 5000 - 1) #define Sta_MAX_BYTES_COUNT_TYPE (256 - 1) static void Sta_ShowHits (Sta_GlobalOrCourseAccesses_t GlobalOrCourse) { extern const char *Txt_You_must_select_one_ore_more_users; extern const char *Txt_There_is_no_knowing_how_many_users_not_logged_have_accessed; extern const char *Txt_The_date_range_must_be_less_than_or_equal_to_X_days; extern const char *Txt_There_are_no_accesses_with_the_selected_search_criteria; extern const char *Txt_List_of_detailed_clicks; extern const char *Txt_STAT_TYPE_COUNT_CAPS[Sta_NUM_COUNT_TYPES]; extern const char *Txt_Time_zone_used_in_the_calculation_of_these_statistics; char *Query = NULL; char QueryAux[512]; long LengthQuery; MYSQL_RES *mysql_res; unsigned long NumRows; const char *LogTable; Sta_ClicksDetailedOrGrouped_t DetailedOrGrouped = Sta_CLICKS_GROUPED; struct UsrData UsrDat; char BrowserTimeZone[Dat_MAX_BYTES_TIME_ZONE + 1]; unsigned NumUsr = 0; const char *Ptr; char StrRole[256]; char StrQueryCountType[Sta_MAX_BYTES_COUNT_TYPE + 1]; unsigned NumDays; bool ICanQueryWholeRange; /***** Get initial and ending dates *****/ Dat_GetIniEndDatesFromForm (); /***** Get client time zone *****/ Dat_GetBrowserTimeZone (BrowserTimeZone); /***** Set table where to find depending on initial date *****/ /* If initial day is older than current day minus Cfg_DAYS_IN_RECENT_LOG, then use recent log table, else use historic log table */ LogTable = (Dat_GetNumDaysBetweenDates (&Gbl.DateRange.DateIni.Date,&Gbl.Now.Date) <= Cfg_DAYS_IN_RECENT_LOG) ? "log_recent" : "log_full"; /***** Get the type of stat of clicks ******/ DetailedOrGrouped = (Sta_ClicksDetailedOrGrouped_t) Par_GetParToUnsignedLong ("GroupedOrDetailed", 0, Sta_NUM_CLICKS_DETAILED_OR_GROUPED - 1, (unsigned long) Sta_CLICKS_DETAILED_OR_GROUPED_DEFAULT); if (DetailedOrGrouped == Sta_CLICKS_DETAILED) Gbl.Stat.ClicksGroupedBy = Sta_CLICKS_CRS_DETAILED_LIST; else // DetailedOrGrouped == Sta_CLICKS_GROUPED Gbl.Stat.ClicksGroupedBy = (Sta_ClicksGroupedBy_t) Par_GetParToUnsignedLong ("GroupedBy", 0, Sta_NUM_CLICKS_GROUPED_BY - 1, (unsigned long) Sta_CLICKS_GROUPED_BY_DEFAULT); /***** Get the type of count of clicks *****/ if (Gbl.Stat.ClicksGroupedBy != Sta_CLICKS_CRS_DETAILED_LIST) Gbl.Stat.CountType = (Sta_CountType_t) Par_GetParToUnsignedLong ("CountType", 0, Sta_NUM_COUNT_TYPES - 1, (unsigned long) Sta_COUNT_TYPE_DEFAULT); /***** Get action *****/ Gbl.Stat.NumAction = (Act_Action_t) Par_GetParToUnsignedLong ("StatAct", 0, Act_NUM_ACTIONS - 1, (unsigned long) Sta_NUM_ACTION_DEFAULT); switch (GlobalOrCourse) { case Sta_SHOW_GLOBAL_ACCESSES: /***** Get the type of user of clicks *****/ Gbl.Stat.Role = (Sta_Role_t) Par_GetParToUnsignedLong ("Role", 0, Sta_NUM_ROLES_STAT - 1, (unsigned long) Sta_ROLE_DEFAULT); /***** Get users range for access statistics *****/ Gbl.Scope.Allowed = 1 << Sco_SCOPE_SYS | 1 << Sco_SCOPE_CTY | 1 << Sco_SCOPE_INS | 1 << Sco_SCOPE_CTR | 1 << Sco_SCOPE_DEG | 1 << Sco_SCOPE_CRS; Gbl.Scope.Default = Sco_SCOPE_SYS; Sco_GetScope ("ScopeSta"); /***** Show form again *****/ Sta_AskShowGblHits (); /***** Start results section *****/ Lay_StartSection (Sta_STAT_RESULTS_SECTION_ID); /***** Check selection *****/ if ((Gbl.Stat.Role == Sta_ROLE_ALL_USRS || Gbl.Stat.Role == Sta_ROLE_UNKNOWN_USRS) && (Gbl.Stat.CountType == Sta_DISTINCT_USRS || Gbl.Stat.CountType == Sta_CLICKS_PER_USR)) // These types of query will never give a valid result { /* Write warning message and abort */ Ale_ShowAlert (Ale_WARNING,Txt_There_is_no_knowing_how_many_users_not_logged_have_accessed); return; } break; case Sta_SHOW_COURSE_ACCESSES: if (Gbl.Stat.ClicksGroupedBy == Sta_CLICKS_CRS_DETAILED_LIST) { /****** Get the number of the first row to show ******/ Gbl.Stat.FirstRow = Par_GetParToUnsignedLong ("FirstRow", 1, ULONG_MAX, 0); /****** Get the number of the last row to show ******/ Gbl.Stat.LastRow = Par_GetParToUnsignedLong ("LastRow", 1, ULONG_MAX, 0); /****** Get the number of rows per page ******/ Gbl.Stat.RowsPerPage = Par_GetParToUnsignedLong ("RowsPage", Sta_MIN_ROWS_PER_PAGE, Sta_MAX_ROWS_PER_PAGE, Sta_DEF_ROWS_PER_PAGE); } /****** Get lists of selected users ******/ Usr_GetListsSelectedUsrsCods (); /***** Show the form again *****/ Sta_AskShowCrsHits (); /***** Start results section *****/ Lay_StartSection (Sta_STAT_RESULTS_SECTION_ID); /***** Check selection *****/ if (!Usr_CountNumUsrsInListOfSelectedUsrs ()) // Error: there are no users selected { /* Write warning message, clean and abort */ Ale_ShowAlert (Ale_WARNING,Txt_You_must_select_one_ore_more_users); Usr_FreeListsSelectedUsrsCods (); return; } break; } /***** Check if range of dates is forbidden for me *****/ NumDays = Dat_GetNumDaysBetweenDates (&Gbl.DateRange.DateIni.Date,&Gbl.DateRange.DateEnd.Date); ICanQueryWholeRange = (Gbl.Usrs.Me.Role.Logged >= Rol_TCH && GlobalOrCourse == Sta_SHOW_COURSE_ACCESSES) || (Gbl.Usrs.Me.Role.Logged == Rol_TCH && Gbl.Scope.Current == Sco_SCOPE_CRS) || (Gbl.Usrs.Me.Role.Logged == Rol_DEG_ADM && (Gbl.Scope.Current == Sco_SCOPE_DEG || Gbl.Scope.Current == Sco_SCOPE_CRS)) || (Gbl.Usrs.Me.Role.Logged == Rol_CTR_ADM && (Gbl.Scope.Current == Sco_SCOPE_CTR || Gbl.Scope.Current == Sco_SCOPE_DEG || Gbl.Scope.Current == Sco_SCOPE_CRS)) || (Gbl.Usrs.Me.Role.Logged == Rol_INS_ADM && (Gbl.Scope.Current == Sco_SCOPE_INS || Gbl.Scope.Current == Sco_SCOPE_CTR || Gbl.Scope.Current == Sco_SCOPE_DEG || Gbl.Scope.Current == Sco_SCOPE_CRS)) || Gbl.Usrs.Me.Role.Logged == Rol_SYS_ADM; if (!ICanQueryWholeRange && NumDays > Cfg_DAYS_IN_RECENT_LOG) { snprintf (Gbl.Alert.Txt,sizeof (Gbl.Alert.Txt), Txt_The_date_range_must_be_less_than_or_equal_to_X_days, Cfg_DAYS_IN_RECENT_LOG); Ale_ShowAlert (Ale_WARNING,Gbl.Alert.Txt); // ...write warning message and show the form again return; } /***** Query depending on the type of count *****/ switch (Gbl.Stat.CountType) { case Sta_TOTAL_CLICKS: Str_Copy (StrQueryCountType,"COUNT(*)", Sta_MAX_BYTES_COUNT_TYPE); break; case Sta_DISTINCT_USRS: sprintf (StrQueryCountType,"COUNT(DISTINCT(%s.UsrCod))",LogTable); break; case Sta_CLICKS_PER_USR: sprintf (StrQueryCountType,"COUNT(*)/GREATEST(COUNT(DISTINCT(%s.UsrCod)),1)+0.000000",LogTable); break; case Sta_GENERATION_TIME: sprintf (StrQueryCountType,"(AVG(%s.TimeToGenerate)/1E6)+0.000000",LogTable); break; case Sta_SEND_TIME: sprintf (StrQueryCountType,"(AVG(%s.TimeToSend)/1E6)+0.000000",LogTable); break; } /***** Select clicks from the table of log *****/ /* Allocate memory for the query */ if ((Query = (char *) malloc (Sta_MAX_BYTES_QUERY_ACCESS + 1)) == NULL) Lay_NotEnoughMemoryExit (); /* Start the query */ switch (Gbl.Stat.ClicksGroupedBy) { case Sta_CLICKS_CRS_DETAILED_LIST: snprintf (Query,Sta_MAX_BYTES_QUERY_ACCESS + 1, "SELECT SQL_NO_CACHE LogCod,UsrCod,Role," "UNIX_TIMESTAMP(ClickTime) AS F,ActCod FROM %s", LogTable); break; case Sta_CLICKS_CRS_PER_USR: snprintf (Query,Sta_MAX_BYTES_QUERY_ACCESS + 1, "SELECT SQL_NO_CACHE UsrCod,%s AS Num FROM %s", StrQueryCountType,LogTable); break; case Sta_CLICKS_CRS_PER_DAY: case Sta_CLICKS_GBL_PER_DAY: snprintf (Query,Sta_MAX_BYTES_QUERY_ACCESS + 1, "SELECT SQL_NO_CACHE " "DATE_FORMAT(CONVERT_TZ(ClickTime,@@session.time_zone,'%s'),'%%Y%%m%%d') AS Day," "%s FROM %s", BrowserTimeZone, StrQueryCountType,LogTable); break; case Sta_CLICKS_CRS_PER_DAY_AND_HOUR: case Sta_CLICKS_GBL_PER_DAY_AND_HOUR: snprintf (Query,Sta_MAX_BYTES_QUERY_ACCESS + 1, "SELECT SQL_NO_CACHE " "DATE_FORMAT(CONVERT_TZ(ClickTime,@@session.time_zone,'%s'),'%%Y%%m%%d') AS Day," "DATE_FORMAT(CONVERT_TZ(ClickTime,@@session.time_zone,'%s'),'%%H') AS Hour," "%s FROM %s", BrowserTimeZone, BrowserTimeZone, StrQueryCountType,LogTable); break; case Sta_CLICKS_CRS_PER_WEEK: case Sta_CLICKS_GBL_PER_WEEK: /* With %x%v the weeks are counted from monday to sunday. With %X%V the weeks are counted from sunday to saturday. */ snprintf (Query,Sta_MAX_BYTES_QUERY_ACCESS + 1, (Gbl.Prefs.FirstDayOfWeek == 0) ? "SELECT SQL_NO_CACHE " // Weeks start on monday "DATE_FORMAT(CONVERT_TZ(ClickTime,@@session.time_zone,'%s'),'%%x%%v') AS Week," "%s FROM %s" : "SELECT SQL_NO_CACHE " // Weeks start on sunday "DATE_FORMAT(CONVERT_TZ(ClickTime,@@session.time_zone,'%s'),'%%X%%V') AS Week," "%s FROM %s", BrowserTimeZone, StrQueryCountType,LogTable); break; case Sta_CLICKS_CRS_PER_MONTH: case Sta_CLICKS_GBL_PER_MONTH: snprintf (Query,Sta_MAX_BYTES_QUERY_ACCESS + 1, "SELECT SQL_NO_CACHE " "DATE_FORMAT(CONVERT_TZ(ClickTime,@@session.time_zone,'%s'),'%%Y%%m') AS Month," "%s FROM %s", BrowserTimeZone, StrQueryCountType,LogTable); break; case Sta_CLICKS_CRS_PER_YEAR: case Sta_CLICKS_GBL_PER_YEAR: snprintf (Query,Sta_MAX_BYTES_QUERY_ACCESS + 1, "SELECT SQL_NO_CACHE " "DATE_FORMAT(CONVERT_TZ(ClickTime,@@session.time_zone,'%s'),'%%Y') AS Year," "%s FROM %s", BrowserTimeZone, StrQueryCountType,LogTable); break; case Sta_CLICKS_CRS_PER_HOUR: case Sta_CLICKS_GBL_PER_HOUR: snprintf (Query,Sta_MAX_BYTES_QUERY_ACCESS + 1, "SELECT SQL_NO_CACHE " "DATE_FORMAT(CONVERT_TZ(ClickTime,@@session.time_zone,'%s'),'%%H') AS Hour," "%s FROM %s", BrowserTimeZone, StrQueryCountType,LogTable); break; case Sta_CLICKS_CRS_PER_MINUTE: case Sta_CLICKS_GBL_PER_MINUTE: snprintf (Query,Sta_MAX_BYTES_QUERY_ACCESS + 1, "SELECT SQL_NO_CACHE " "DATE_FORMAT(CONVERT_TZ(ClickTime,@@session.time_zone,'%s'),'%%H%%i') AS Minute," "%s FROM %s", BrowserTimeZone, StrQueryCountType,LogTable); break; case Sta_CLICKS_CRS_PER_ACTION: case Sta_CLICKS_GBL_PER_ACTION: snprintf (Query,Sta_MAX_BYTES_QUERY_ACCESS + 1, "SELECT SQL_NO_CACHE ActCod,%s AS Num FROM %s", StrQueryCountType,LogTable); break; case Sta_CLICKS_GBL_PER_PLUGIN: snprintf (Query,Sta_MAX_BYTES_QUERY_ACCESS + 1, "SELECT SQL_NO_CACHE log_ws.PlgCod,%s AS Num FROM %s,log_ws", StrQueryCountType,LogTable); break; case Sta_CLICKS_GBL_PER_API_FUNCTION: snprintf (Query,Sta_MAX_BYTES_QUERY_ACCESS + 1, "SELECT SQL_NO_CACHE log_ws.FunCod,%s AS Num FROM %s,log_ws", StrQueryCountType,LogTable); break; case Sta_CLICKS_GBL_PER_BANNER: snprintf (Query,Sta_MAX_BYTES_QUERY_ACCESS + 1, "SELECT SQL_NO_CACHE log_banners.BanCod,%s AS Num FROM %s,log_banners", StrQueryCountType,LogTable); break; case Sta_CLICKS_GBL_PER_COUNTRY: snprintf (Query,Sta_MAX_BYTES_QUERY_ACCESS + 1, "SELECT SQL_NO_CACHE CtyCod,%s AS Num FROM %s", StrQueryCountType,LogTable); break; case Sta_CLICKS_GBL_PER_INSTITUTION: snprintf (Query,Sta_MAX_BYTES_QUERY_ACCESS + 1, "SELECT SQL_NO_CACHE InsCod,%s AS Num FROM %s", StrQueryCountType,LogTable); break; case Sta_CLICKS_GBL_PER_CENTRE: snprintf (Query,Sta_MAX_BYTES_QUERY_ACCESS + 1, "SELECT SQL_NO_CACHE CtrCod,%s AS Num FROM %s", StrQueryCountType,LogTable); break; case Sta_CLICKS_GBL_PER_DEGREE: snprintf (Query,Sta_MAX_BYTES_QUERY_ACCESS + 1, "SELECT SQL_NO_CACHE DegCod,%s AS Num FROM %s", StrQueryCountType,LogTable); break; case Sta_CLICKS_GBL_PER_COURSE: snprintf (Query,Sta_MAX_BYTES_QUERY_ACCESS + 1, "SELECT SQL_NO_CACHE CrsCod,%s AS Num FROM %s", StrQueryCountType,LogTable); break; } sprintf (QueryAux," WHERE %s.ClickTime" " BETWEEN FROM_UNIXTIME(%ld) AND FROM_UNIXTIME(%ld)", LogTable, (long) Gbl.DateRange.TimeUTC[0], (long) Gbl.DateRange.TimeUTC[1]); Str_Concat (Query,QueryAux, Sta_MAX_BYTES_QUERY_ACCESS); switch (GlobalOrCourse) { case Sta_SHOW_GLOBAL_ACCESSES: /* Scope */ switch (Gbl.Scope.Current) { case Sco_SCOPE_UNK: case Sco_SCOPE_SYS: break; case Sco_SCOPE_CTY: if (Gbl.CurrentCty.Cty.CtyCod > 0) { sprintf (QueryAux," AND %s.CtyCod=%ld", LogTable,Gbl.CurrentCty.Cty.CtyCod); Str_Concat (Query,QueryAux, Sta_MAX_BYTES_QUERY_ACCESS); } break; case Sco_SCOPE_INS: if (Gbl.CurrentIns.Ins.InsCod > 0) { sprintf (QueryAux," AND %s.InsCod=%ld", LogTable,Gbl.CurrentIns.Ins.InsCod); Str_Concat (Query,QueryAux, Sta_MAX_BYTES_QUERY_ACCESS); } break; case Sco_SCOPE_CTR: if (Gbl.CurrentCtr.Ctr.CtrCod > 0) { sprintf (QueryAux," AND %s.CtrCod=%ld", LogTable,Gbl.CurrentCtr.Ctr.CtrCod); Str_Concat (Query,QueryAux, Sta_MAX_BYTES_QUERY_ACCESS); } break; case Sco_SCOPE_DEG: if (Gbl.CurrentDeg.Deg.DegCod > 0) { sprintf (QueryAux," AND %s.DegCod=%ld", LogTable,Gbl.CurrentDeg.Deg.DegCod); Str_Concat (Query,QueryAux, Sta_MAX_BYTES_QUERY_ACCESS); } break; case Sco_SCOPE_CRS: if (Gbl.CurrentCrs.Crs.CrsCod > 0) { sprintf (QueryAux," AND %s.CrsCod=%ld", LogTable,Gbl.CurrentCrs.Crs.CrsCod); Str_Concat (Query,QueryAux, Sta_MAX_BYTES_QUERY_ACCESS); } break; } /* Type of users */ switch (Gbl.Stat.Role) { case Sta_ROLE_IDENTIFIED_USRS: sprintf (StrRole," AND %s.Role<>%u", LogTable,(unsigned) Rol_UNK); break; case Sta_ROLE_ALL_USRS: switch (Gbl.Stat.CountType) { case Sta_TOTAL_CLICKS: case Sta_GENERATION_TIME: case Sta_SEND_TIME: StrRole[0] = '\0'; break; case Sta_DISTINCT_USRS: case Sta_CLICKS_PER_USR: sprintf (StrRole," AND %s.Role<>%u", LogTable,(unsigned) Rol_UNK); break; } break; case Sta_ROLE_INS_ADMINS: sprintf (StrRole," AND %s.Role=%u", LogTable,(unsigned) Rol_INS_ADM); break; case Sta_ROLE_CTR_ADMINS: sprintf (StrRole," AND %s.Role=%u", LogTable,(unsigned) Rol_CTR_ADM); break; case Sta_ROLE_DEG_ADMINS: sprintf (StrRole," AND %s.Role=%u", LogTable,(unsigned) Rol_DEG_ADM); break; case Sta_ROLE_TEACHERS: sprintf (StrRole," AND %s.Role=%u", LogTable,(unsigned) Rol_TCH); break; case Sta_ROLE_NON_EDITING_TEACHERS: sprintf (StrRole," AND %s.Role=%u", LogTable,(unsigned) Rol_NET); break; case Sta_ROLE_STUDENTS: sprintf (StrRole," AND %s.Role=%u", LogTable,(unsigned) Rol_STD); break; case Sta_ROLE_USERS: sprintf (StrRole," AND %s.Role=%u", LogTable,(unsigned) Rol_USR); break; case Sta_ROLE_GUESTS: sprintf (StrRole," AND %s.Role=%u", LogTable,(unsigned) Rol_GST); break; case Sta_ROLE_UNKNOWN_USRS: sprintf (StrRole," AND %s.Role=%u", LogTable,(unsigned) Rol_UNK); break; case Sta_ROLE_ME: sprintf (StrRole," AND %s.UsrCod=%ld", LogTable,Gbl.Usrs.Me.UsrDat.UsrCod); break; } Str_Concat (Query,StrRole, Sta_MAX_BYTES_QUERY_ACCESS); switch (Gbl.Stat.ClicksGroupedBy) { case Sta_CLICKS_GBL_PER_PLUGIN: case Sta_CLICKS_GBL_PER_API_FUNCTION: sprintf (QueryAux," AND %s.LogCod=log_ws.LogCod", LogTable); Str_Concat (Query,QueryAux, Sta_MAX_BYTES_QUERY_ACCESS); break; case Sta_CLICKS_GBL_PER_BANNER: sprintf (QueryAux," AND %s.LogCod=log_banners.LogCod", LogTable); Str_Concat (Query,QueryAux, Sta_MAX_BYTES_QUERY_ACCESS); break; default: break; } break; case Sta_SHOW_COURSE_ACCESSES: sprintf (QueryAux," AND %s.CrsCod=%ld", LogTable,Gbl.CurrentCrs.Crs.CrsCod); Str_Concat (Query,QueryAux, Sta_MAX_BYTES_QUERY_ACCESS); /***** Initialize data structure of the user *****/ Usr_UsrDataConstructor (&UsrDat); LengthQuery = strlen (Query); NumUsr = 0; Ptr = Gbl.Usrs.Select[Rol_UNK]; while (*Ptr) { Par_GetNextStrUntilSeparParamMult (&Ptr,UsrDat.EncryptedUsrCod, Cry_BYTES_ENCRYPTED_STR_SHA256_BASE64); Usr_GetUsrCodFromEncryptedUsrCod (&UsrDat); if (UsrDat.UsrCod > 0) { LengthQuery = LengthQuery + 25 + 10 + 1; if (LengthQuery > Sta_MAX_BYTES_QUERY_ACCESS - 128) Lay_ShowErrorAndExit ("Query is too large."); sprintf (QueryAux, NumUsr ? " OR %s.UsrCod=%ld" : " AND (%s.UsrCod=%ld", LogTable,UsrDat.UsrCod); Str_Concat (Query,QueryAux, Sta_MAX_BYTES_QUERY_ACCESS); NumUsr++; } } Str_Concat (Query,")", Sta_MAX_BYTES_QUERY_ACCESS); /***** Free memory used by the data of the user *****/ Usr_UsrDataDestructor (&UsrDat); break; } /* Select action */ if (Gbl.Stat.NumAction != ActAll) { sprintf (QueryAux," AND %s.ActCod=%ld", LogTable,Act_GetActCod (Gbl.Stat.NumAction)); Str_Concat (Query,QueryAux, Sta_MAX_BYTES_QUERY_ACCESS); } /* End the query */ switch (Gbl.Stat.ClicksGroupedBy) { case Sta_CLICKS_CRS_DETAILED_LIST: Str_Concat (Query," ORDER BY F", Sta_MAX_BYTES_QUERY_ACCESS); break; case Sta_CLICKS_CRS_PER_USR: sprintf (QueryAux," GROUP BY %s.UsrCod ORDER BY Num DESC",LogTable); Str_Concat (Query,QueryAux, Sta_MAX_BYTES_QUERY_ACCESS); break; case Sta_CLICKS_CRS_PER_DAY: case Sta_CLICKS_GBL_PER_DAY: Str_Concat (Query," GROUP BY Day DESC", Sta_MAX_BYTES_QUERY_ACCESS); break; case Sta_CLICKS_CRS_PER_DAY_AND_HOUR: case Sta_CLICKS_GBL_PER_DAY_AND_HOUR: Str_Concat (Query," GROUP BY Day DESC,Hour", Sta_MAX_BYTES_QUERY_ACCESS); break; case Sta_CLICKS_CRS_PER_WEEK: case Sta_CLICKS_GBL_PER_WEEK: Str_Concat (Query," GROUP BY Week DESC", Sta_MAX_BYTES_QUERY_ACCESS); break; case Sta_CLICKS_CRS_PER_MONTH: case Sta_CLICKS_GBL_PER_MONTH: Str_Concat (Query," GROUP BY Month DESC", Sta_MAX_BYTES_QUERY_ACCESS); break; case Sta_CLICKS_CRS_PER_YEAR: case Sta_CLICKS_GBL_PER_YEAR: Str_Concat (Query," GROUP BY Year DESC", Sta_MAX_BYTES_QUERY_ACCESS); break; case Sta_CLICKS_CRS_PER_HOUR: case Sta_CLICKS_GBL_PER_HOUR: Str_Concat (Query," GROUP BY Hour", Sta_MAX_BYTES_QUERY_ACCESS); break; case Sta_CLICKS_CRS_PER_MINUTE: case Sta_CLICKS_GBL_PER_MINUTE: Str_Concat (Query," GROUP BY Minute", Sta_MAX_BYTES_QUERY_ACCESS); break; case Sta_CLICKS_CRS_PER_ACTION: case Sta_CLICKS_GBL_PER_ACTION: sprintf (QueryAux," GROUP BY %s.ActCod ORDER BY Num DESC",LogTable); Str_Concat (Query,QueryAux, Sta_MAX_BYTES_QUERY_ACCESS); break; case Sta_CLICKS_GBL_PER_PLUGIN: Str_Concat (Query," GROUP BY log_ws.PlgCod ORDER BY Num DESC", Sta_MAX_BYTES_QUERY_ACCESS); break; case Sta_CLICKS_GBL_PER_API_FUNCTION: Str_Concat (Query," GROUP BY log_ws.FunCod ORDER BY Num DESC", Sta_MAX_BYTES_QUERY_ACCESS); break; case Sta_CLICKS_GBL_PER_BANNER: Str_Concat (Query," GROUP BY log_banners.BanCod ORDER BY Num DESC", Sta_MAX_BYTES_QUERY_ACCESS); break; case Sta_CLICKS_GBL_PER_COUNTRY: sprintf (QueryAux," GROUP BY %s.CtyCod ORDER BY Num DESC",LogTable); Str_Concat (Query,QueryAux, Sta_MAX_BYTES_QUERY_ACCESS); break; case Sta_CLICKS_GBL_PER_INSTITUTION: sprintf (QueryAux," GROUP BY %s.InsCod ORDER BY Num DESC",LogTable); Str_Concat (Query,QueryAux, Sta_MAX_BYTES_QUERY_ACCESS); break; case Sta_CLICKS_GBL_PER_CENTRE: sprintf (QueryAux," GROUP BY %s.CtrCod ORDER BY Num DESC",LogTable); Str_Concat (Query,QueryAux, Sta_MAX_BYTES_QUERY_ACCESS); break; case Sta_CLICKS_GBL_PER_DEGREE: sprintf (QueryAux," GROUP BY %s.DegCod ORDER BY Num DESC",LogTable); Str_Concat (Query,QueryAux, Sta_MAX_BYTES_QUERY_ACCESS); break; case Sta_CLICKS_GBL_PER_COURSE: sprintf (QueryAux," GROUP BY %s.CrsCod ORDER BY Num DESC",LogTable); Str_Concat (Query,QueryAux, Sta_MAX_BYTES_QUERY_ACCESS); break; } /***** Write query for debug *****/ /* if (Gbl.Usrs.Me.Role.Logged == Rol_SYS_ADM) Ale_ShowAlert (Ale_INFO,Query); */ /***** Make the query *****/ NumRows = DB_QuerySELECT (&mysql_res,"can not get clicks", "%s", Query); /***** Count the number of rows in result *****/ if (NumRows == 0) Ale_ShowAlert (Ale_INFO,Txt_There_are_no_accesses_with_the_selected_search_criteria); else { /***** Put the table with the clicks *****/ if (Gbl.Stat.ClicksGroupedBy == Sta_CLICKS_CRS_DETAILED_LIST) Box_StartBox ("100%",Txt_List_of_detailed_clicks,NULL, NULL,Box_NOT_CLOSABLE); else Box_StartBox (NULL,Txt_STAT_TYPE_COUNT_CAPS[Gbl.Stat.CountType],NULL, NULL,Box_NOT_CLOSABLE); fprintf (Gbl.F.Out,""); switch (Gbl.Stat.ClicksGroupedBy) { case Sta_CLICKS_CRS_DETAILED_LIST: Sta_ShowDetailedAccessesList (NumRows,mysql_res); break; case Sta_CLICKS_CRS_PER_USR: Sta_ShowNumHitsPerUsr (NumRows,mysql_res); break; case Sta_CLICKS_CRS_PER_DAY: case Sta_CLICKS_GBL_PER_DAY: Sta_ShowNumHitsPerDay (NumRows,mysql_res); break; case Sta_CLICKS_CRS_PER_DAY_AND_HOUR: case Sta_CLICKS_GBL_PER_DAY_AND_HOUR: Sta_ShowDistrAccessesPerDayAndHour (NumRows,mysql_res); break; case Sta_CLICKS_CRS_PER_WEEK: case Sta_CLICKS_GBL_PER_WEEK: Sta_ShowNumHitsPerWeek (NumRows,mysql_res); break; case Sta_CLICKS_CRS_PER_MONTH: case Sta_CLICKS_GBL_PER_MONTH: Sta_ShowNumHitsPerMonth (NumRows,mysql_res); break; case Sta_CLICKS_CRS_PER_YEAR: case Sta_CLICKS_GBL_PER_YEAR: Sta_ShowNumHitsPerYear (NumRows,mysql_res); break; case Sta_CLICKS_CRS_PER_HOUR: case Sta_CLICKS_GBL_PER_HOUR: Sta_ShowNumHitsPerHour (NumRows,mysql_res); break; case Sta_CLICKS_CRS_PER_MINUTE: case Sta_CLICKS_GBL_PER_MINUTE: Sta_ShowAverageAccessesPerMinute (NumRows,mysql_res); break; case Sta_CLICKS_CRS_PER_ACTION: case Sta_CLICKS_GBL_PER_ACTION: Sta_ShowNumHitsPerAction (NumRows,mysql_res); break; case Sta_CLICKS_GBL_PER_PLUGIN: Sta_ShowNumHitsPerPlugin (NumRows,mysql_res); break; case Sta_CLICKS_GBL_PER_API_FUNCTION: Sta_ShowNumHitsPerWSFunction (NumRows,mysql_res); break; case Sta_CLICKS_GBL_PER_BANNER: Sta_ShowNumHitsPerBanner (NumRows,mysql_res); break; case Sta_CLICKS_GBL_PER_COUNTRY: Sta_ShowNumHitsPerCountry (NumRows,mysql_res); break; case Sta_CLICKS_GBL_PER_INSTITUTION: Sta_ShowNumHitsPerInstitution (NumRows,mysql_res); break; case Sta_CLICKS_GBL_PER_CENTRE: Sta_ShowNumHitsPerCentre (NumRows,mysql_res); break; case Sta_CLICKS_GBL_PER_DEGREE: Sta_ShowNumHitsPerDegree (NumRows,mysql_res); break; case Sta_CLICKS_GBL_PER_COURSE: Sta_ShowNumHitsPerCourse (NumRows,mysql_res); break; } fprintf (Gbl.F.Out,""); /* End box and section */ Box_EndBox (); Lay_EndSection (); } /***** Free structure that stores the query result *****/ DB_FreeMySQLResult (&mysql_res); /***** Free memory used by list of selected users' codes *****/ if (Gbl.Action.Act == ActSeeAccCrs) Usr_FreeListsSelectedUsrsCods (); /***** Write time zone used in the calculation of these statistics *****/ switch (Gbl.Stat.ClicksGroupedBy) { case Sta_CLICKS_CRS_PER_DAY: case Sta_CLICKS_GBL_PER_DAY: case Sta_CLICKS_CRS_PER_DAY_AND_HOUR: case Sta_CLICKS_GBL_PER_DAY_AND_HOUR: case Sta_CLICKS_CRS_PER_WEEK: case Sta_CLICKS_GBL_PER_WEEK: case Sta_CLICKS_CRS_PER_MONTH: case Sta_CLICKS_GBL_PER_MONTH: case Sta_CLICKS_CRS_PER_YEAR: case Sta_CLICKS_GBL_PER_YEAR: case Sta_CLICKS_CRS_PER_HOUR: case Sta_CLICKS_GBL_PER_HOUR: case Sta_CLICKS_CRS_PER_MINUTE: case Sta_CLICKS_GBL_PER_MINUTE: fprintf (Gbl.F.Out,"

%s: %s

", Txt_Time_zone_used_in_the_calculation_of_these_statistics, BrowserTimeZone); break; default: break; } } /*****************************************************************************/ /******************* Show a listing of detailed clicks ***********************/ /*****************************************************************************/ static void Sta_ShowDetailedAccessesList (unsigned long NumRows,MYSQL_RES *mysql_res) { extern const char *Txt_Show_previous_X_clicks; extern const char *Txt_PAGES_Previous; extern const char *Txt_Clicks; extern const char *Txt_of_PART_OF_A_TOTAL; extern const char *Txt_page; extern const char *Txt_Show_next_X_clicks; extern const char *Txt_PAGES_Next; extern const char *Txt_No_INDEX; extern const char *Txt_User_ID; extern const char *Txt_Name; extern const char *Txt_Type; extern const char *Txt_Date; extern const char *Txt_Action; extern const char *Txt_LOG_More_info; extern const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS]; extern const char *Txt_Today; unsigned long NumRow; unsigned long FirstRow; // First row to show unsigned long LastRow; // Last rows to show unsigned long NumPagesBefore; unsigned long NumPagesAfter; unsigned long NumPagsTotal; struct UsrData UsrDat; MYSQL_ROW row; long LogCod; Rol_Role_t RoleFromLog; unsigned UniqueId; long ActCod; char ActTxt[Act_MAX_BYTES_ACTION_TXT + 1]; /***** Initialize estructura of data of the user *****/ Usr_UsrDataConstructor (&UsrDat); /***** Compute the first and the last row to show *****/ FirstRow = Gbl.Stat.FirstRow; LastRow = Gbl.Stat.LastRow; if (FirstRow == 0 && LastRow == 0) // Call from main form { // Show last clicks FirstRow = (NumRows / Gbl.Stat.RowsPerPage - 1) * Gbl.Stat.RowsPerPage + 1; if ((FirstRow + Gbl.Stat.RowsPerPage - 1) < NumRows) FirstRow += Gbl.Stat.RowsPerPage; LastRow = NumRows; } if (FirstRow < 1) // For security reasons; really it should never be less than 1 FirstRow = 1; if (LastRow > NumRows) LastRow = NumRows; if ((LastRow - FirstRow) >= Gbl.Stat.RowsPerPage) // For if there have been clicks that have increased the number of rows LastRow = FirstRow + Gbl.Stat.RowsPerPage - 1; /***** Compute the number total of pages *****/ /* Number of pages before the current one */ NumPagesBefore = (FirstRow-1) / Gbl.Stat.RowsPerPage; if (NumPagesBefore * Gbl.Stat.RowsPerPage < (FirstRow-1)) NumPagesBefore++; /* Number of pages after the current one */ NumPagesAfter = (NumRows - LastRow) / Gbl.Stat.RowsPerPage; if (NumPagesAfter * Gbl.Stat.RowsPerPage < (NumRows - LastRow)) NumPagesAfter++; /* Count the total number of pages */ NumPagsTotal = NumPagesBefore + 1 + NumPagesAfter; /***** Put heading with backward and forward buttons *****/ fprintf (Gbl.F.Out,"" ""); Tbl_StartTableWide (2); fprintf (Gbl.F.Out,""); /* Put link to jump to previous page (older clicks) */ if (FirstRow > 1) { Frm_StartFormAnchor (ActSeeAccCrs,Sta_STAT_RESULTS_SECTION_ID); Sta_WriteParamsDatesSeeAccesses (); Par_PutHiddenParamUnsigned ("GroupedBy",(unsigned) Sta_CLICKS_CRS_DETAILED_LIST); Par_PutHiddenParamUnsigned ("StatAct" ,(unsigned) Gbl.Stat.NumAction); Par_PutHiddenParamLong ("FirstRow",FirstRow - Gbl.Stat.RowsPerPage); Par_PutHiddenParamLong ("LastRow" ,FirstRow - 1); Par_PutHiddenParamLong ("RowsPage",Gbl.Stat.RowsPerPage); Usr_PutHiddenParUsrCodAll (ActSeeAccCrs,Gbl.Usrs.Select[Rol_UNK]); } fprintf (Gbl.F.Out,""); if (FirstRow > 1) { snprintf (Gbl.Title,sizeof (Gbl.Title), Txt_Show_previous_X_clicks, Gbl.Stat.RowsPerPage); Frm_LinkFormSubmit (Gbl.Title,"TIT_TBL",NULL); fprintf (Gbl.F.Out,"<%s", Txt_PAGES_Previous); } fprintf (Gbl.F.Out,""); if (FirstRow > 1) Frm_EndForm (); /* Write number of current page */ fprintf (Gbl.F.Out,"" "" "%s %lu-%lu %s %lu (%s %ld %s %lu)" "" "", Txt_Clicks, FirstRow,LastRow,Txt_of_PART_OF_A_TOTAL,NumRows, Txt_page,NumPagesBefore + 1,Txt_of_PART_OF_A_TOTAL,NumPagsTotal); /* Put link to jump to next page (more recent clicks) */ if (LastRow < NumRows) { Frm_StartFormAnchor (ActSeeAccCrs,Sta_STAT_RESULTS_SECTION_ID); Sta_WriteParamsDatesSeeAccesses (); Par_PutHiddenParamUnsigned ("GroupedBy",(unsigned) Sta_CLICKS_CRS_DETAILED_LIST); Par_PutHiddenParamUnsigned ("StatAct" ,(unsigned) Gbl.Stat.NumAction); Par_PutHiddenParamUnsigned ("FirstRow" ,(unsigned) (LastRow + 1)); Par_PutHiddenParamUnsigned ("LastRow" ,(unsigned) (LastRow + Gbl.Stat.RowsPerPage)); Par_PutHiddenParamUnsigned ("RowsPage" ,(unsigned) Gbl.Stat.RowsPerPage); Usr_PutHiddenParUsrCodAll (ActSeeAccCrs,Gbl.Usrs.Select[Rol_UNK]); } fprintf (Gbl.F.Out,""); if (LastRow < NumRows) { snprintf (Gbl.Title,sizeof (Gbl.Title), Txt_Show_next_X_clicks, Gbl.Stat.RowsPerPage); Frm_LinkFormSubmit (Gbl.Title,"TIT_TBL",NULL); fprintf (Gbl.F.Out,"%s>" "", Txt_PAGES_Next); } fprintf (Gbl.F.Out,""); if (LastRow < NumRows) Frm_EndForm (); fprintf (Gbl.F.Out,""); Tbl_EndTable (); fprintf (Gbl.F.Out,"" ""); /***** Write heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_No_INDEX, Txt_User_ID, Txt_Name, Txt_Type, Txt_Date, Txt_Action, Txt_LOG_More_info); /***** Write rows back *****/ for (NumRow = LastRow, UniqueId = 1, Gbl.RowEvenOdd = 0; NumRow >= FirstRow; NumRow--, UniqueId++, Gbl.RowEvenOdd = 1 - Gbl.RowEvenOdd) { mysql_data_seek (mysql_res,(my_ulonglong) (NumRow - 1)); row = mysql_fetch_row (mysql_res); /* Get log code */ LogCod = Str_ConvertStrCodToLongCod (row[0]); /* Get user's data of the database */ UsrDat.UsrCod = Str_ConvertStrCodToLongCod (row[1]); Usr_ChkUsrCodAndGetAllUsrDataFromUsrCod (&UsrDat); /* Get logged role */ if (sscanf (row[2],"%u",&RoleFromLog) != 1) Lay_ShowErrorAndExit ("Wrong role."); /* Write the number of row */ fprintf (Gbl.F.Out,"" "" "%ld " "", Gbl.RowEvenOdd,NumRow); /* Write the user's ID if user is a student */ fprintf (Gbl.F.Out,"", Gbl.RowEvenOdd); ID_WriteUsrIDs (&UsrDat,NULL); fprintf (Gbl.F.Out," "); /* Write the first name and the surnames */ fprintf (Gbl.F.Out,"" "%s " "", Gbl.RowEvenOdd,UsrDat.FullName); /* Write the user's role */ fprintf (Gbl.F.Out,"" "%s " "", Gbl.RowEvenOdd, RoleFromLog < Rol_NUM_ROLES ? Txt_ROLES_SINGUL_Abc[RoleFromLog][UsrDat.Sex] : "?"); /* Write the date-time (row[3]) */ fprintf (Gbl.F.Out,"" "" "", UniqueId,Gbl.RowEvenOdd, UniqueId,(long) Dat_GetUNIXTimeFromStr (row[3]), (unsigned) Gbl.Prefs.DateFormat,Txt_Today); /* Write the action */ if (sscanf (row[4],"%ld",&ActCod) != 1) Lay_ShowErrorAndExit ("Wrong action code."); if (ActCod >= 0) fprintf (Gbl.F.Out,"" "%s " "", Gbl.RowEvenOdd, Act_GetActionTextFromDB (ActCod,ActTxt)); else fprintf (Gbl.F.Out,"" "? " "", Gbl.RowEvenOdd); /* Write the comments of the access */ fprintf (Gbl.F.Out,"", Gbl.RowEvenOdd); Sta_WriteLogComments (LogCod); fprintf (Gbl.F.Out,"" ""); } /***** Free memory used by the data of the user *****/ Usr_UsrDataDestructor (&UsrDat); } /*****************************************************************************/ /******** Show a listing of with the number of clicks of each user ***********/ /*****************************************************************************/ static void Sta_WriteLogComments (long LogCod) { MYSQL_RES *mysql_res; MYSQL_ROW row; /***** Get log comments from database *****/ if (DB_QuerySELECT (&mysql_res,"can not get log comments", "SELECT Comments FROM log_comments WHERE LogCod=%ld", LogCod)) { /***** Get and write comments *****/ row = mysql_fetch_row (mysql_res); fprintf (Gbl.F.Out,"%s",row[0]); } /***** Free structure that stores the query result *****/ DB_FreeMySQLResult (&mysql_res); } /*****************************************************************************/ /********* Show a listing of with the number of clicks of each user **********/ /*****************************************************************************/ static void Sta_ShowNumHitsPerUsr (unsigned long NumRows,MYSQL_RES *mysql_res) { extern const char *Txt_No_INDEX; extern const char *Txt_Photo; extern const char *Txt_ID; extern const char *Txt_Name; extern const char *Txt_Type; extern const char *Txt_STAT_TYPE_COUNT_CAPS[Sta_NUM_COUNT_TYPES]; extern const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS]; MYSQL_ROW row; unsigned long NumRow; struct Sta_Hits Hits; unsigned BarWidth; struct UsrData UsrDat; char PhotoURL[PATH_MAX + 1]; bool ShowPhoto; /***** Initialize user's data *****/ Usr_UsrDataConstructor (&UsrDat); /***** Write heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_No_INDEX, Txt_Photo, Txt_ID, Txt_Name, Txt_Type, Txt_STAT_TYPE_COUNT_CAPS[Gbl.Stat.CountType]); /***** Write rows *****/ for (NumRow = 1, Hits.Max = 0.0, Gbl.RowEvenOdd = 0; NumRow <= NumRows; NumRow++, Gbl.RowEvenOdd = 1 - Gbl.RowEvenOdd) { row = mysql_fetch_row (mysql_res); /* Get user's data from the database */ UsrDat.UsrCod = Str_ConvertStrCodToLongCod (row[0]); Usr_ChkUsrCodAndGetAllUsrDataFromUsrCod (&UsrDat); // Get the data of the user from the database /* Write the number of row */ fprintf (Gbl.F.Out,"" "" "%ld " "", Gbl.RowEvenOdd,NumRow); /* Show the photo */ fprintf (Gbl.F.Out,"", Gbl.RowEvenOdd); ShowPhoto = Pho_ShowingUsrPhotoIsAllowed (&UsrDat,PhotoURL); Pho_ShowUsrPhoto (&UsrDat,ShowPhoto ? PhotoURL : NULL, "PHOTO15x20",Pho_ZOOM,false); fprintf (Gbl.F.Out,""); /* Write the user's ID if user is a student in current course */ fprintf (Gbl.F.Out,"", Gbl.RowEvenOdd); ID_WriteUsrIDs (&UsrDat,NULL); fprintf (Gbl.F.Out," "); /* Write the name and the surnames */ fprintf (Gbl.F.Out,"" "%s " "", Gbl.RowEvenOdd,UsrDat.FullName); /* Write user's role */ fprintf (Gbl.F.Out,"" "%s " "", Gbl.RowEvenOdd, Txt_ROLES_SINGUL_Abc[UsrDat.Roles.InCurrentCrs.Role][UsrDat.Sex]); /* Write the number of clicks */ Hits.Num = Str_GetFloatNumFromStr (row[1]); if (NumRow == 1) Hits.Max = Hits.Num; if (Hits.Max > 0.0) { BarWidth = (unsigned) (((Hits.Num * 375.0) / Hits.Max) + 0.5); if (BarWidth == 0) BarWidth = 1; } else BarWidth = 0; fprintf (Gbl.F.Out,"", Gbl.RowEvenOdd); if (BarWidth) fprintf (Gbl.F.Out,"\"\"" " ", Gbl.Prefs.URLIcons, UsrDat.Roles.InCurrentCrs.Role == Rol_STD ? 'o' : // Student 'r', // Non-editing teacher or teacher BarWidth); Str_WriteFloatNum (Gbl.F.Out,Hits.Num); fprintf (Gbl.F.Out," " ""); } /***** Free memory used by the data of the user *****/ Usr_UsrDataDestructor (&UsrDat); } /*****************************************************************************/ /********** Show a listing of with the number of clicks in each date *********/ /*****************************************************************************/ static void Sta_ShowNumHitsPerDay (unsigned long NumRows,MYSQL_RES *mysql_res) { extern const char *Txt_Date; extern const char *Txt_Day; extern const char *Txt_STAT_TYPE_COUNT_CAPS[Sta_NUM_COUNT_TYPES]; extern const char *Txt_DAYS_SMALL[7]; unsigned long NumRow; struct Date ReadDate; struct Date LastDate; struct Date Date; unsigned D; unsigned NumDaysFromLastDateToCurrDate; int NumDayWeek; struct Sta_Hits Hits; MYSQL_ROW row; char StrDate[Cns_MAX_BYTES_DATE + 1]; /***** Initialize LastDate *****/ Dat_AssignDate (&LastDate,&Gbl.DateRange.DateEnd.Date); /***** Write heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_Date, Txt_Day, Txt_STAT_TYPE_COUNT_CAPS[Gbl.Stat.CountType]); /***** Compute maximum number of pages generated per day *****/ Sta_ComputeMaxAndTotalHits (&Hits,NumRows,mysql_res,1,1); /***** Write rows beginning by the most recent day and ending by the oldest *****/ mysql_data_seek (mysql_res,0); for (NumRow = 1; NumRow <= NumRows; NumRow++) { row = mysql_fetch_row (mysql_res); /* Get year, month and day (row[0] holds the date in YYYYMMDD format) */ if (!(Dat_GetDateFromYYYYMMDD (&ReadDate,row[0]))) Lay_ShowErrorAndExit ("Wrong date."); /* Get number of pages generated (in row[1]) */ Hits.Num = Str_GetFloatNumFromStr (row[1]); Dat_AssignDate (&Date,&LastDate); NumDaysFromLastDateToCurrDate = Dat_GetNumDaysBetweenDates (&ReadDate,&LastDate); /* In the next loop (NumDaysFromLastDateToCurrDate-1) días (the more recent) with 0 clicks are shown and a last day (the oldest) with Hits.Num */ for (D = 1; D <= NumDaysFromLastDateToCurrDate; D++) { NumDayWeek = Dat_GetDayOfWeek (Date.Year,Date.Month,Date.Day); /* Write the date */ Dat_ConvDateToDateStr (&Date,StrDate); fprintf (Gbl.F.Out,"" "" "%s " "", NumDayWeek == 6 ? "LOG_R" : "LOG", StrDate); /* Write the day of the week */ fprintf (Gbl.F.Out,"" "%s " "", NumDayWeek == 6 ? "LOG_R" : "LOG", Txt_DAYS_SMALL[NumDayWeek]); /* Draw bar proportional to number of hits */ Sta_DrawBarNumHits (NumDayWeek == 6 ? 'r' : // red background 'o', // orange background D == NumDaysFromLastDateToCurrDate ? Hits.Num : 0.0, Hits.Max,Hits.Total,500); /* Decrease day */ Dat_GetDateBefore (&Date,&Date); } Dat_AssignDate (&LastDate,&Date); } NumDaysFromLastDateToCurrDate = Dat_GetNumDaysBetweenDates (&Gbl.DateRange.DateIni.Date,&LastDate); /***** Finally NumDaysFromLastDateToCurrDate days are shown with 0 clicks (the oldest days from the requested initial day until the first with clicks) *****/ for (D = 1; D <= NumDaysFromLastDateToCurrDate; D++) { NumDayWeek = Dat_GetDayOfWeek (Date.Year,Date.Month,Date.Day); /* Write the date */ Dat_ConvDateToDateStr (&Date,StrDate); fprintf (Gbl.F.Out,"" "" "%s " "", NumDayWeek == 6 ? "LOG_R" : "LOG", StrDate); /* Write the day of the week */ fprintf (Gbl.F.Out,"" "%s " "", NumDayWeek == 6 ? "LOG_R" : "LOG", Txt_DAYS_SMALL[NumDayWeek]); /* Draw bar proportional to number of hits */ Sta_DrawBarNumHits (NumDayWeek == 6 ? 'r' : // red background 'o', // orange background 0.0,Hits.Max,Hits.Total,500); /* Decrease day */ Dat_GetDateBefore (&Date,&Date); } } /*****************************************************************************/ /************ Show graphic of number of pages generated per hour *************/ /*****************************************************************************/ #define GRAPH_DISTRIBUTION_PER_HOUR_HOUR_WIDTH 25 #define GRAPH_DISTRIBUTION_PER_HOUR_TOTAL_WIDTH (GRAPH_DISTRIBUTION_PER_HOUR_HOUR_WIDTH * 24) static void Sta_ShowDistrAccessesPerDayAndHour (unsigned long NumRows,MYSQL_RES *mysql_res) { extern const char *The_ClassForm[The_NUM_THEMES]; extern const char *Txt_Color_of_the_graphic; extern const char *Txt_STAT_COLOR_TYPES[Sta_NUM_COLOR_TYPES]; extern const char *Txt_Date; extern const char *Txt_Day; extern const char *Txt_STAT_TYPE_COUNT_CAPS[Sta_NUM_COUNT_TYPES]; extern const char *Txt_DAYS_SMALL[7]; Sta_ColorType_t ColorType; Sta_ColorType_t SelectedColorType; unsigned long NumRow; struct Date PreviousReadDate; struct Date CurrentReadDate; struct Date LastDate; struct Date Date; unsigned D; unsigned NumDaysFromLastDateToCurrDate = 1; unsigned NumDayWeek; unsigned Hour; unsigned ReadHour = 0; struct Sta_Hits Hits; float NumAccPerHour[24]; float NumAccPerHourZero[24]; MYSQL_ROW row; char StrDate[Cns_MAX_BYTES_DATE + 1]; /***** Get selected color type *****/ SelectedColorType = Sta_GetStatColorType (); /***** Put a selector for the type of color *****/ fprintf (Gbl.F.Out,"" ""); Frm_StartFormAnchor (Gbl.Action.Act,Sta_STAT_RESULTS_SECTION_ID); Sta_WriteParamsDatesSeeAccesses (); Par_PutHiddenParamUnsigned ("GroupedBy",(unsigned) Gbl.Stat.ClicksGroupedBy); Par_PutHiddenParamUnsigned ("CountType",(unsigned) Gbl.Stat.CountType); Par_PutHiddenParamUnsigned ("StatAct" ,(unsigned) Gbl.Stat.NumAction); if (Gbl.Action.Act == ActSeeAccCrs) Usr_PutHiddenParUsrCodAll (ActSeeAccCrs,Gbl.Usrs.Select[Rol_UNK]); else // Gbl.Action.Act == ActSeeAccGbl { Par_PutHiddenParamUnsigned ("Role",(unsigned) Gbl.Stat.Role); Sta_PutHiddenParamScopeSta (); } fprintf (Gbl.F.Out,""); Frm_EndForm (); fprintf (Gbl.F.Out,"" ""); /***** Compute maximum number of pages generated per day-hour *****/ Sta_ComputeMaxAndTotalHits (&Hits,NumRows,mysql_res,2,1); /***** Initialize LastDate *****/ Dat_AssignDate (&LastDate,&Gbl.DateRange.DateEnd.Date); /***** Reset number of pages generated per hour *****/ for (Hour = 0; Hour < 24; Hour++) NumAccPerHour[Hour] = NumAccPerHourZero[Hour] = 0.0; /***** Write heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_Date, Txt_Day, GRAPH_DISTRIBUTION_PER_HOUR_TOTAL_WIDTH, Txt_STAT_TYPE_COUNT_CAPS[Gbl.Stat.CountType]); fprintf (Gbl.F.Out,"" "", GRAPH_DISTRIBUTION_PER_HOUR_TOTAL_WIDTH); Sta_DrawBarColors (SelectedColorType,Hits.Max); fprintf (Gbl.F.Out,"" "" ""); for (Hour = 0; Hour < 24; Hour++) fprintf (Gbl.F.Out,"" "%02uh" "", GRAPH_DISTRIBUTION_PER_HOUR_HOUR_WIDTH,Hour); fprintf (Gbl.F.Out,""); /***** Write rows beginning by the most recent day and ending by the oldest one *****/ mysql_data_seek (mysql_res,0); for (NumRow = 1; NumRow <= NumRows; NumRow++) { row = mysql_fetch_row (mysql_res); /* Get year, month and day (row[0] holds the date in YYYYMMDD format) */ if (!(Dat_GetDateFromYYYYMMDD (&CurrentReadDate,row[0]))) Lay_ShowErrorAndExit ("Wrong date."); /* Get the hour (in row[1] is the hour in formato HH) */ if (sscanf (row[1],"%02u",&ReadHour) != 1) Lay_ShowErrorAndExit ("Wrong hour."); /* Get number of pages generated (in row[2]) */ Hits.Num = Str_GetFloatNumFromStr (row[2]); /* If this is the first read date, initialize PreviousReadDate */ if (NumRow == 1) Dat_AssignDate (&PreviousReadDate,&CurrentReadDate); /* Update number of hits per hour */ if (PreviousReadDate.Year != CurrentReadDate.Year || PreviousReadDate.Month != CurrentReadDate.Month || PreviousReadDate.Day != CurrentReadDate.Day) // Current read date (CurrentReadDate) is older than previous read date (PreviousReadDate) */ { /* In the next loop we show (NumDaysFromLastDateToCurrDate-1) days with 0 clicks and a last day (older) with Hits.Num */ Dat_AssignDate (&Date,&LastDate); NumDaysFromLastDateToCurrDate = Dat_GetNumDaysBetweenDates (&PreviousReadDate,&LastDate); for (D = 1; D <= NumDaysFromLastDateToCurrDate; D++) { NumDayWeek = Dat_GetDayOfWeek (Date.Year,Date.Month,Date.Day); /* Write the date */ Dat_ConvDateToDateStr (&Date,StrDate); fprintf (Gbl.F.Out,"" "" "%s " "", NumDayWeek == 6 ? "LOG_R" : "LOG", StrDate); /* Write the day of the week */ fprintf (Gbl.F.Out,"" "%s " "", NumDayWeek == 6 ? "LOG_R" : "LOG", Txt_DAYS_SMALL[NumDayWeek]); /* Draw a cell with the color proportional to the number of clicks */ if (D == NumDaysFromLastDateToCurrDate) Sta_DrawAccessesPerHourForADay (SelectedColorType,NumAccPerHour,Hits.Max); else // D < NumDaysFromLastDateToCurrDate Sta_DrawAccessesPerHourForADay (SelectedColorType,NumAccPerHourZero,Hits.Max); fprintf (Gbl.F.Out,""); /* Decrease day */ Dat_GetDateBefore (&Date,&Date); } Dat_AssignDate (&LastDate,&Date); Dat_AssignDate (&PreviousReadDate,&CurrentReadDate); /* Reset number of pages generated per hour */ for (Hour = 0; Hour < 24; Hour++) NumAccPerHour[Hour] = 0.0; } NumAccPerHour[ReadHour] = Hits.Num; } /***** Show the clicks of the oldest day with clicks *****/ /* In the next loop we show (NumDaysFromLastDateToCurrDate-1) days (more recent) with 0 clicks and a last day (older) with Hits.Num clicks */ Dat_AssignDate (&Date,&LastDate); NumDaysFromLastDateToCurrDate = Dat_GetNumDaysBetweenDates (&PreviousReadDate,&LastDate); for (D = 1; D <= NumDaysFromLastDateToCurrDate; D++) { NumDayWeek = Dat_GetDayOfWeek (Date.Year,Date.Month,Date.Day); /* Write the date */ Dat_ConvDateToDateStr (&Date,StrDate); fprintf (Gbl.F.Out,"" "" "%s " "", NumDayWeek == 6 ? "LOG_R" : "LOG", StrDate); /* Write the day of the week */ fprintf (Gbl.F.Out,"" "%s " "", NumDayWeek == 6 ? "LOG_R" : "LOG", Txt_DAYS_SMALL[NumDayWeek]); /* Draw the color proporcional al number of clicks */ if (D == NumDaysFromLastDateToCurrDate) Sta_DrawAccessesPerHourForADay (SelectedColorType,NumAccPerHour,Hits.Max); else // D < NumDaysFromLastDateToCurrDate Sta_DrawAccessesPerHourForADay (SelectedColorType,NumAccPerHourZero,Hits.Max); fprintf (Gbl.F.Out,""); /* Decrease day */ Dat_GetDateBefore (&Date,&Date); } /***** Finally NumDaysFromLastDateToCurrDate days are shown with 0 clicks (the oldest days since the initial day requested by the user until the first with clicks) *****/ Dat_AssignDate (&LastDate,&Date); NumDaysFromLastDateToCurrDate = Dat_GetNumDaysBetweenDates (&Gbl.DateRange.DateIni.Date,&LastDate); for (D = 1; D <= NumDaysFromLastDateToCurrDate; D++) { NumDayWeek = Dat_GetDayOfWeek (Date.Year,Date.Month,Date.Day); /* Write the date */ Dat_ConvDateToDateStr (&Date,StrDate); fprintf (Gbl.F.Out,"" "" "%s " "", NumDayWeek == 6 ? "LOG_R" : "LOG", StrDate); /* Write the day of the week */ fprintf (Gbl.F.Out,"" "%s " "", NumDayWeek == 6 ? "LOG_R" : "LOG", Txt_DAYS_SMALL[NumDayWeek]); /* Draw the color proportional to number of clicks */ Sta_DrawAccessesPerHourForADay (SelectedColorType,NumAccPerHourZero,Hits.Max); fprintf (Gbl.F.Out,""); /* Decrease day */ Dat_GetDateBefore (&Date,&Date); } } /*****************************************************************************/ /********************** Get type of color for statistics *********************/ /*****************************************************************************/ static Sta_ColorType_t Sta_GetStatColorType (void) { return (Sta_ColorType_t) Par_GetParToUnsignedLong ("ColorType", 0, Sta_NUM_COLOR_TYPES - 1, (unsigned long) Sta_COLOR_TYPE_DEF); } /*****************************************************************************/ /************************* Draw a bar with colors ****************************/ /*****************************************************************************/ static void Sta_DrawBarColors (Sta_ColorType_t ColorType,float HitsMax) { unsigned Interval; unsigned NumColor; unsigned R; unsigned G; unsigned B; /***** Write numbers from 0 to Hits.Max *****/ Tbl_StartTableWide (0); fprintf (Gbl.F.Out,"" "" "0" "", (GRAPH_DISTRIBUTION_PER_HOUR_TOTAL_WIDTH/5)/2, (GRAPH_DISTRIBUTION_PER_HOUR_TOTAL_WIDTH/5)/2); for (Interval = 1; Interval <= 4; Interval++) { fprintf (Gbl.F.Out,"", GRAPH_DISTRIBUTION_PER_HOUR_TOTAL_WIDTH/5, GRAPH_DISTRIBUTION_PER_HOUR_TOTAL_WIDTH/5); Str_WriteFloatNum (Gbl.F.Out,(float) Interval * HitsMax / 5.0); fprintf (Gbl.F.Out,""); } fprintf (Gbl.F.Out,"", (GRAPH_DISTRIBUTION_PER_HOUR_TOTAL_WIDTH/5)/2, (GRAPH_DISTRIBUTION_PER_HOUR_TOTAL_WIDTH/5)/2); Str_WriteFloatNum (Gbl.F.Out,HitsMax); fprintf (Gbl.F.Out,"" "" ""); /***** Draw colors *****/ for (NumColor = 0; NumColor < GRAPH_DISTRIBUTION_PER_HOUR_TOTAL_WIDTH; NumColor++) { Sta_SetColor (ColorType,(float) NumColor,(float) GRAPH_DISTRIBUTION_PER_HOUR_TOTAL_WIDTH,&R,&G,&B); fprintf (Gbl.F.Out,"" "\"\"" "", R,G,B,Gbl.Prefs.URLIcons); } fprintf (Gbl.F.Out,""); Tbl_EndTable (); } /*****************************************************************************/ /********************* Draw accesses per hour for a day **********************/ /*****************************************************************************/ static void Sta_DrawAccessesPerHourForADay (Sta_ColorType_t ColorType,float HitsNum[24],float HitsMax) { unsigned Hour; unsigned R; unsigned G; unsigned B; for (Hour = 0; Hour < 24; Hour++) { Sta_SetColor (ColorType,HitsNum[Hour],HitsMax,&R,&G,&B); fprintf (Gbl.F.Out,"" "", GRAPH_DISTRIBUTION_PER_HOUR_HOUR_WIDTH,R,G,B); } } /*****************************************************************************/ /************************* Set color depending on ratio **********************/ /*****************************************************************************/ // Hits.Max must be > 0 /* Black Blue Cyan Green Yellow Red +------------+------------+------------+------------+------------+ | 0.2 | 0.2 | 0.2 | 0.2 | 0.2 | +------------+------------+------------+------------+------------+ 0.0 0.2 0.4 0.6 0.8 1.0 */ static void Sta_SetColor (Sta_ColorType_t ColorType,float HitsNum,float HitsMax, unsigned *R,unsigned *G,unsigned *B) { float Result = (HitsNum / HitsMax); switch (ColorType) { case Sta_COLOR: if (Result < 0.2) // Black -> Blue { *R = 0; *G = 0; *B = (unsigned) (Result * 256.0 / 0.2 + 0.5); if (*B == 256) *B = 255; } else if (Result < 0.4) // Blue -> Cyan { *R = 0; *G = (unsigned) ((Result-0.2) * 256.0 / 0.2 + 0.5); if (*G == 256) *G = 255; *B = 255; } else if (Result < 0.6) // Cyan -> Green { *R = 0; *G = 255; *B = 256 - (unsigned) ((Result-0.4) * 256.0 / 0.2 + 0.5); if (*B == 256) *B = 255; } else if (Result < 0.8) // Green -> Yellow { *R = (unsigned) ((Result-0.6) * 256.0 / 0.2 + 0.5); if (*R == 256) *R = 255; *G = 255; *B = 0; } else // Yellow -> Red { *R = 255; *G = 256 - (unsigned) ((Result-0.8) * 256.0 / 0.2 + 0.5); if (*G == 256) *G = 255; *B = 0; } break; case Sta_BLACK_TO_WHITE: *B = (unsigned) (Result * 256.0 + 0.5); if (*B == 256) *B = 255; *R = *G = *B; break; case Sta_WHITE_TO_BLACK: *B = 256 - (unsigned) (Result * 256.0 + 0.5); if (*B == 256) *B = 255; *R = *G = *B; break; } } /*****************************************************************************/ /********** Show listing with number of pages generated per week *************/ /*****************************************************************************/ static void Sta_ShowNumHitsPerWeek (unsigned long NumRows, MYSQL_RES *mysql_res) { extern const char *Txt_Week; extern const char *Txt_STAT_TYPE_COUNT_CAPS[Sta_NUM_COUNT_TYPES]; unsigned long NumRow; struct Date ReadDate; struct Date LastDate; struct Date Date; unsigned W; unsigned NumWeeksBetweenLastDateAndCurDate; struct Sta_Hits Hits; MYSQL_ROW row; /***** Initialize LastDate to avoid warning *****/ Dat_CalculateWeekOfYear (&Gbl.DateRange.DateEnd.Date); // Changes Week and Year Dat_AssignDate (&LastDate,&Gbl.DateRange.DateEnd.Date); /***** Write heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "", Txt_Week, Txt_STAT_TYPE_COUNT_CAPS[Gbl.Stat.CountType]); /***** Compute maximum number of pages generated per week *****/ Sta_ComputeMaxAndTotalHits (&Hits,NumRows,mysql_res,1,1); /***** Write rows *****/ mysql_data_seek (mysql_res,0); for (NumRow = 1; NumRow <= NumRows; NumRow++) { row = mysql_fetch_row (mysql_res); /* Get year and week (row[0] holds date in YYYYWW format) */ if (sscanf (row[0],"%04u%02u",&ReadDate.Year,&ReadDate.Week) != 2) Lay_ShowErrorAndExit ("Wrong date."); /* Get number of pages generated (in row[1]) */ Hits.Num = Str_GetFloatNumFromStr (row[1]); Dat_AssignDate (&Date,&LastDate); NumWeeksBetweenLastDateAndCurDate = Dat_GetNumWeeksBetweenDates (&ReadDate,&LastDate); for (W = 1; W <= NumWeeksBetweenLastDateAndCurDate; W++) { /* Write week */ fprintf (Gbl.F.Out,"" "" "%04u-%02u " "", Date.Year,Date.Week); /* Draw bar proportional to number of hits */ Sta_DrawBarNumHits ('o', // orange background W == NumWeeksBetweenLastDateAndCurDate ? Hits.Num : 0.0, Hits.Max,Hits.Total,500); /* Decrement week */ Dat_GetWeekBefore (&Date,&Date); } Dat_AssignDate (&LastDate,&Date); } /***** Finally, show the old weeks without pages generated *****/ Dat_CalculateWeekOfYear (&Gbl.DateRange.DateIni.Date); // Changes Week and Year NumWeeksBetweenLastDateAndCurDate = Dat_GetNumWeeksBetweenDates (&Gbl.DateRange.DateIni.Date, &LastDate); for (W = 1; W <= NumWeeksBetweenLastDateAndCurDate; W++) { /* Write week */ fprintf (Gbl.F.Out,"" "" "%04u-%02u " "", Date.Year,Date.Week); /* Draw bar proportional to number of hits */ Sta_DrawBarNumHits ('o', // orange background 0.0,Hits.Max,Hits.Total,500); /* Decrement week */ Dat_GetWeekBefore (&Date,&Date); } } /*****************************************************************************/ /********** Show a graph with the number of clicks in each month *************/ /*****************************************************************************/ static void Sta_ShowNumHitsPerMonth (unsigned long NumRows, MYSQL_RES *mysql_res) { extern const char *Txt_Month; extern const char *Txt_STAT_TYPE_COUNT_CAPS[Sta_NUM_COUNT_TYPES]; unsigned long NumRow; struct Date ReadDate; struct Date LastDate; struct Date Date; unsigned M; unsigned NumMonthsBetweenLastDateAndCurDate; struct Sta_Hits Hits; MYSQL_ROW row; /***** Initialize LastDate *****/ Dat_AssignDate (&LastDate,&Gbl.DateRange.DateEnd.Date); /***** Write heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "", Txt_Month, Txt_STAT_TYPE_COUNT_CAPS[Gbl.Stat.CountType]); /***** Compute maximum number of pages generated per month *****/ Sta_ComputeMaxAndTotalHits (&Hits,NumRows,mysql_res,1,1); /***** Write rows *****/ mysql_data_seek (mysql_res,0); for (NumRow = 1; NumRow <= NumRows; NumRow++) { row = mysql_fetch_row (mysql_res); /* Get the year and the month (in row[0] is the date in YYYYMM format) */ if (sscanf (row[0],"%04u%02u",&ReadDate.Year,&ReadDate.Month) != 2) Lay_ShowErrorAndExit ("Wrong date."); /* Get number of pages generated (in row[1]) */ Hits.Num = Str_GetFloatNumFromStr (row[1]); Dat_AssignDate (&Date,&LastDate); NumMonthsBetweenLastDateAndCurDate = Dat_GetNumMonthsBetweenDates (&ReadDate, &LastDate); for (M = 1; M <= NumMonthsBetweenLastDateAndCurDate; M++) { /* Write the month */ fprintf (Gbl.F.Out,"" "" "%04u-%02u " "", Date.Year,Date.Month); /* Draw bar proportional to number of hits */ Sta_DrawBarNumHits ('o', // orange background M == NumMonthsBetweenLastDateAndCurDate ? Hits.Num : 0.0, Hits.Max,Hits.Total,500); /* Decrease month */ Dat_GetMonthBefore (&Date,&Date); } Dat_AssignDate (&LastDate,&Date); } /***** Finally, show the oldest months without clicks *****/ NumMonthsBetweenLastDateAndCurDate = Dat_GetNumMonthsBetweenDates (&Gbl.DateRange.DateIni.Date, &LastDate); for (M = 1; M <= NumMonthsBetweenLastDateAndCurDate; M++) { /* Write the month */ fprintf (Gbl.F.Out,"" "" "%04u-%02u " "", Date.Year,Date.Month); /* Draw bar proportional to number of hits */ Sta_DrawBarNumHits ('o', // orange background 0.0,Hits.Max,Hits.Total,500); /* Decrease month */ Dat_GetMonthBefore (&Date,&Date); } } /*****************************************************************************/ /*********** Show a graph with the number of clicks in each year *************/ /*****************************************************************************/ static void Sta_ShowNumHitsPerYear (unsigned long NumRows, MYSQL_RES *mysql_res) { extern const char *Txt_Year; extern const char *Txt_STAT_TYPE_COUNT_CAPS[Sta_NUM_COUNT_TYPES]; unsigned long NumRow; struct Date ReadDate; struct Date LastDate; struct Date Date; unsigned Y; unsigned NumYearsBetweenLastDateAndCurDate; struct Sta_Hits Hits; MYSQL_ROW row; /***** Initialize LastDate *****/ Dat_AssignDate (&LastDate,&Gbl.DateRange.DateEnd.Date); /***** Write heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "", Txt_Year, Txt_STAT_TYPE_COUNT_CAPS[Gbl.Stat.CountType]); /***** Compute maximum number of pages generated per year *****/ Sta_ComputeMaxAndTotalHits (&Hits,NumRows,mysql_res,1,1); /***** Write rows *****/ mysql_data_seek (mysql_res,0); for (NumRow = 1; NumRow <= NumRows; NumRow++) { row = mysql_fetch_row (mysql_res); /* Get the year (in row[0] is the date in YYYY format) */ if (sscanf (row[0],"%04u",&ReadDate.Year) != 1) Lay_ShowErrorAndExit ("Wrong date."); /* Get number of pages generated (in row[1]) */ Hits.Num = Str_GetFloatNumFromStr (row[1]); Dat_AssignDate (&Date,&LastDate); NumYearsBetweenLastDateAndCurDate = Dat_GetNumYearsBetweenDates (&ReadDate, &LastDate); for (Y = 1; Y <= NumYearsBetweenLastDateAndCurDate; Y++) { /* Write the year */ fprintf (Gbl.F.Out,"" "" "%04u " "", Date.Year); /* Draw bar proportional to number of hits */ Sta_DrawBarNumHits ('o', // orange background Y == NumYearsBetweenLastDateAndCurDate ? Hits.Num : 0.0, Hits.Max,Hits.Total,500); /* Decrease year */ Dat_GetYearBefore (&Date,&Date); } Dat_AssignDate (&LastDate,&Date); } /***** Finally, show the oldest years without clicks *****/ NumYearsBetweenLastDateAndCurDate = Dat_GetNumYearsBetweenDates (&Gbl.DateRange.DateIni.Date, &LastDate); for (Y = 1; Y <= NumYearsBetweenLastDateAndCurDate; Y++) { /* Write the year */ fprintf (Gbl.F.Out,"" "" "%04u " "", Date.Year); /* Draw bar proportional to number of hits */ Sta_DrawBarNumHits ('o', // orange background 0.0,Hits.Max,Hits.Total,500); /* Decrease year */ Dat_GetYearBefore (&Date,&Date); } } /*****************************************************************************/ /**************** Show graphic of number of pages generated per hour ***************/ /*****************************************************************************/ #define DIGIT_WIDTH 6 static void Sta_ShowNumHitsPerHour (unsigned long NumRows, MYSQL_RES *mysql_res) { unsigned long NumRow; struct Sta_Hits Hits; unsigned NumDays; unsigned Hour = 0; unsigned ReadHour = 0; unsigned H; unsigned NumDigits; unsigned ColumnWidth; MYSQL_ROW row; if ((NumDays = Dat_GetNumDaysBetweenDates (&Gbl.DateRange.DateIni.Date,&Gbl.DateRange.DateEnd.Date))) { /***** Compute maximum number of pages generated per hour *****/ Sta_ComputeMaxAndTotalHits (&Hits,NumRows,mysql_res,1,NumDays); /***** Compute width of columns (one for each hour) *****/ /* Maximum number of dígits. If less than 4, set it to 4 to ensure a minimum width */ NumDigits = (Hits.Max >= 1000) ? (unsigned) floor (log10 ((double) Hits.Max)) + 1 : 4; ColumnWidth = NumDigits * DIGIT_WIDTH + 2; /***** Draw the graphic *****/ mysql_data_seek (mysql_res,0); NumRow = 1; fprintf (Gbl.F.Out,""); while (Hour < 24) { Hits.Num = 0.0; if (NumRow <= NumRows) // If not read yet all the results of the query { row = mysql_fetch_row (mysql_res); // Get next result NumRow++; if (sscanf (row[0],"%02u",&ReadHour) != 1) // In row[0] is the date in HH format Lay_ShowErrorAndExit ("Wrong hour."); for (H = Hour; H < ReadHour; H++, Hour++) Sta_WriteAccessHour (H,&Hits,ColumnWidth); Hits.Num = Str_GetFloatNumFromStr (row[1]) / (float) NumDays; Sta_WriteAccessHour (ReadHour,&Hits,ColumnWidth); Hour++; } else for (H = ReadHour + 1; H < 24; H++, Hour++) Sta_WriteAccessHour (H,&Hits,ColumnWidth); } fprintf (Gbl.F.Out,""); } } /*****************************************************************************/ /**** Write a column of the graphic of the number of clicks in each hour *****/ /*****************************************************************************/ static void Sta_WriteAccessHour (unsigned Hour,struct Sta_Hits *Hits,unsigned ColumnWidth) { unsigned BarHeight; fprintf (Gbl.F.Out,"", ColumnWidth); /* Draw bar with a height porportional to the number of clicks */ if (Hits->Num > 0.0) { fprintf (Gbl.F.Out,"%u%%
", (unsigned) (((Hits->Num * 100.0) / Hits->Total) + 0.5)); Str_WriteFloatNum (Gbl.F.Out,Hits->Num); fprintf (Gbl.F.Out,"
"); BarHeight = (unsigned) (((Hits->Num * 500.0) / Hits->Max) + 0.5); if (BarHeight == 0) BarHeight = 1; fprintf (Gbl.F.Out,"\"\"", Gbl.Prefs.URLIcons,BarHeight); } else fprintf (Gbl.F.Out,"0%%
0"); /* Write the hour */ fprintf (Gbl.F.Out,"
%uh",Hour); } /*****************************************************************************/ /**** Show a listing with the number of clicks in every minute of the day ***/ /*****************************************************************************/ #define Sta_NUM_MINUTES_PER_DAY (60 * 24) // 1440 minutes in a day #define Sta_WIDTH_SEMIDIVISION_GRAPHIC 30 #define Sta_NUM_DIVISIONS_X 10 static void Sta_ShowAverageAccessesPerMinute (unsigned long NumRows,MYSQL_RES *mysql_res) { unsigned long NumRow = 1; MYSQL_ROW row; unsigned NumDays; unsigned MinuteDay = 0; unsigned ReadHour; unsigned MinuteRead; unsigned MinuteDayRead = 0; unsigned i; struct Sta_Hits Hits; float NumClicksPerMin[Sta_NUM_MINUTES_PER_DAY]; float Power10LeastOrEqual; float MaxX; float IncX; char *Format; if ((NumDays = Dat_GetNumDaysBetweenDates (&Gbl.DateRange.DateIni.Date,&Gbl.DateRange.DateEnd.Date))) { /***** Compute number of clicks (and máximo) in every minute *****/ Hits.Max = 0.0; while (MinuteDay < Sta_NUM_MINUTES_PER_DAY) { if (NumRow <= NumRows) // If not all the result of the query are yet read { row = mysql_fetch_row (mysql_res); // Get next result NumRow++; if (sscanf (row[0],"%02u%02u",&ReadHour,&MinuteRead) != 2) // In row[0] is the date in formato HHMM Lay_ShowErrorAndExit ("Wrong hour-minute."); /* Get number of pages generated */ Hits.Num = Str_GetFloatNumFromStr (row[1]); MinuteDayRead = ReadHour * 60 + MinuteRead; for (i = MinuteDay; i < MinuteDayRead; i++, MinuteDay++) NumClicksPerMin[i] = 0.0; NumClicksPerMin[MinuteDayRead] = Hits.Num / (float) NumDays; if (NumClicksPerMin[MinuteDayRead] > Hits.Max) Hits.Max = NumClicksPerMin[MinuteDayRead]; MinuteDay++; } else for (i = MinuteDayRead + 1; i < Sta_NUM_MINUTES_PER_DAY; i++, MinuteDay++) NumClicksPerMin[i] = 0.0; } /***** Compute the maximum value of X and the increment of the X axis *****/ if (Hits.Max <= 0.000001) MaxX = 0.000001; else { Power10LeastOrEqual = (float) pow (10.0,floor (log10 ((double) Hits.Max))); MaxX = ceil (Hits.Max / Power10LeastOrEqual) * Power10LeastOrEqual; } IncX = MaxX / (float) Sta_NUM_DIVISIONS_X; if (IncX >= 1.0) Format = "%.0f"; else if (IncX >= 0.1) Format = "%.1f"; else if (IncX >= 0.01) Format = "%.2f"; else if (IncX >= 0.001) Format = "%.3f"; else Format = "%f"; /***** X axis tags *****/ Sta_WriteLabelsXAxisAccMin (IncX,Format); /***** Y axis and graphic *****/ for (i = 0; i < Sta_NUM_MINUTES_PER_DAY; i++) Sta_WriteAccessMinute (i,NumClicksPerMin[i],MaxX); /***** X axis *****/ /* First division (left) */ fprintf (Gbl.F.Out,"" "" "\"\"" "", Sta_WIDTH_SEMIDIVISION_GRAPHIC,Gbl.Prefs.URLIcons, Sta_WIDTH_SEMIDIVISION_GRAPHIC); /* All the intermediate divisions */ for (i = 0; i < Sta_NUM_DIVISIONS_X * 2; i++) fprintf (Gbl.F.Out,"" "\"\"" "", Sta_WIDTH_SEMIDIVISION_GRAPHIC,Gbl.Prefs.URLIcons, Sta_WIDTH_SEMIDIVISION_GRAPHIC); /* Last division (right) */ fprintf (Gbl.F.Out,"" "\"\"" "" "", Sta_WIDTH_SEMIDIVISION_GRAPHIC,Gbl.Prefs.URLIcons, Sta_WIDTH_SEMIDIVISION_GRAPHIC); /***** Write again the labels of the X axis *****/ Sta_WriteLabelsXAxisAccMin (IncX,Format); } } /*****************************************************************************/ /****** Write labels of the X axis in the graphic of clicks per minute *******/ /*****************************************************************************/ #define Sta_WIDTH_DIVISION_GRAPHIC (Sta_WIDTH_SEMIDIVISION_GRAPHIC * 2) // 60 static void Sta_WriteLabelsXAxisAccMin (float IncX,const char *Format) { unsigned i; float NumX; fprintf (Gbl.F.Out,""); for (i = 0, NumX = 0; i <= Sta_NUM_DIVISIONS_X; i++, NumX += IncX) { fprintf (Gbl.F.Out,"", Sta_WIDTH_DIVISION_GRAPHIC); fprintf (Gbl.F.Out,Format,NumX); fprintf (Gbl.F.Out,""); } fprintf (Gbl.F.Out,""); } /*****************************************************************************/ /***** Write a row of the graphic with number of clicks in every minute ******/ /*****************************************************************************/ #define Sta_WIDTH_GRAPHIC (Sta_WIDTH_DIVISION_GRAPHIC * Sta_NUM_DIVISIONS_X) // 60 * 10 = 600 static void Sta_WriteAccessMinute (unsigned Minute,float HitsNum,float MaxX) { unsigned BarWidth; /***** Start row *****/ fprintf (Gbl.F.Out,""); /***** Labels of the Y axis, and Y axis *****/ if (!Minute) // If minute 0 fprintf (Gbl.F.Out,"" "00h" "", Sta_WIDTH_SEMIDIVISION_GRAPHIC,Gbl.Prefs.URLIcons); else if (Minute == (Sta_NUM_MINUTES_PER_DAY - 30)) // If 23:30 fprintf (Gbl.F.Out,"" "24h" "", Sta_WIDTH_SEMIDIVISION_GRAPHIC,Gbl.Prefs.URLIcons); else if (!(Minute % 30) && (Minute % 60)) // If minute is multiple of 30 but not of 60 (i.e.: 30, 90, 150...) fprintf (Gbl.F.Out,"" "%02uh" "", Sta_WIDTH_SEMIDIVISION_GRAPHIC,Gbl.Prefs.URLIcons,(Minute + 30) / 60); /***** Start cell for the graphic *****/ fprintf (Gbl.F.Out,"", Sta_NUM_DIVISIONS_X * 2,Sta_WIDTH_GRAPHIC,Gbl.Prefs.URLIcons, (Minute % 60) == 0 ? 'v' : 'h'); /***** Draw bar with a width proportional to the number of hits *****/ if (HitsNum != 0.0) if ((BarWidth = (unsigned) (((HitsNum * (float) Sta_WIDTH_GRAPHIC / MaxX)) + 0.5)) != 0) fprintf (Gbl.F.Out,"\"\"", Gbl.Prefs.URLIcons, (Minute % 60) == 0 ? 'r' : // red background 'o', // orange background BarWidth); /***** End cell of graphic and end row *****/ fprintf (Gbl.F.Out,"" ""); } /*****************************************************************************/ /**** Show a listing of accesses with the number of clicks a each action *****/ /*****************************************************************************/ static void Sta_ShowNumHitsPerAction (unsigned long NumRows, MYSQL_RES *mysql_res) { extern const char *Txt_Action; extern const char *Txt_STAT_TYPE_COUNT_CAPS[Sta_NUM_COUNT_TYPES]; unsigned long NumRow; struct Sta_Hits Hits; MYSQL_ROW row; long ActCod; char ActTxt[Act_MAX_BYTES_ACTION_TXT + 1]; /***** Write heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "", Txt_Action, Txt_STAT_TYPE_COUNT_CAPS[Gbl.Stat.CountType]); /***** Compute maximum number of pages generated per day *****/ Sta_ComputeMaxAndTotalHits (&Hits,NumRows,mysql_res,1,1); /***** Write rows *****/ mysql_data_seek (mysql_res,0); for (NumRow = 1; NumRow <= NumRows; NumRow++) { row = mysql_fetch_row (mysql_res); /* Write the action */ ActCod = Str_ConvertStrCodToLongCod (row[0]); if (ActCod >= 0) fprintf (Gbl.F.Out,"" "" "%s " "", Act_GetActionTextFromDB (ActCod,ActTxt)); else fprintf (Gbl.F.Out,"" "" "? " ""); /* Draw bar proportional to number of hits */ Hits.Num = Str_GetFloatNumFromStr (row[1]); Sta_DrawBarNumHits ('o', // orange background Hits.Num,Hits.Max,Hits.Total,500); } } /*****************************************************************************/ /*************** Show number of clicks distributed by plugin *****************/ /*****************************************************************************/ static void Sta_ShowNumHitsPerPlugin (unsigned long NumRows, MYSQL_RES *mysql_res) { extern const char *Txt_Plugin; extern const char *Txt_STAT_TYPE_COUNT_CAPS[Sta_NUM_COUNT_TYPES]; unsigned long NumRow; struct Sta_Hits Hits; MYSQL_ROW row; struct Plugin Plg; /***** Write heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "", Txt_Plugin, Txt_STAT_TYPE_COUNT_CAPS[Gbl.Stat.CountType]); /***** Compute maximum number of pages generated per plugin *****/ Sta_ComputeMaxAndTotalHits (&Hits,NumRows,mysql_res,1,1); /***** Write rows *****/ mysql_data_seek (mysql_res,0); for (NumRow = 1; NumRow <= NumRows; NumRow++) { row = mysql_fetch_row (mysql_res); /* Write the plugin */ if (sscanf (row[0],"%ld",&Plg.PlgCod) != 1) Lay_ShowErrorAndExit ("Wrong plugin code."); fprintf (Gbl.F.Out,"" ""); if (Plg_GetDataOfPluginByCod (&Plg)) fprintf (Gbl.F.Out,"%s",Plg.Name); else fprintf (Gbl.F.Out,"?"); fprintf (Gbl.F.Out," "); /* Draw bar proportional to number of hits */ Hits.Num = Str_GetFloatNumFromStr (row[1]); Sta_DrawBarNumHits ('o', // orange background Hits.Num,Hits.Max,Hits.Total,500); } } /*****************************************************************************/ /******** Show number of clicks distributed by web service function **********/ /*****************************************************************************/ static void Sta_ShowNumHitsPerWSFunction (unsigned long NumRows, MYSQL_RES *mysql_res) { extern const char *Txt_Function; extern const char *Txt_STAT_TYPE_COUNT_CAPS[Sta_NUM_COUNT_TYPES]; unsigned long NumRow; struct Sta_Hits Hits; MYSQL_ROW row; long FunCod; /***** Write heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "", Txt_Function, Txt_STAT_TYPE_COUNT_CAPS[Gbl.Stat.CountType]); /***** Compute maximum number of pages generated per function *****/ Sta_ComputeMaxAndTotalHits (&Hits,NumRows,mysql_res,1,1); /***** Write rows *****/ mysql_data_seek (mysql_res,0); for (NumRow = 1; NumRow <= NumRows; NumRow++) { row = mysql_fetch_row (mysql_res); /* Write the plugin */ if (sscanf (row[0],"%ld",&FunCod) != 1) Lay_ShowErrorAndExit ("Wrong function code."); fprintf (Gbl.F.Out,"" "" "%s " "", Svc_GetFunctionNameFromFunCod (FunCod)); /* Draw bar proportional to number of hits */ Hits.Num = Str_GetFloatNumFromStr (row[1]); Sta_DrawBarNumHits ('o', // orange background Hits.Num,Hits.Max,Hits.Total,500); } } /*****************************************************************************/ /******** Show number of clicks distributed by web service function **********/ /*****************************************************************************/ static void Sta_ShowNumHitsPerBanner (unsigned long NumRows, MYSQL_RES *mysql_res) { extern const char *Txt_Banner; extern const char *Txt_STAT_TYPE_COUNT_CAPS[Sta_NUM_COUNT_TYPES]; unsigned long NumRow; float NumClicks; float MaxClicks = 0.0; float TotalClicks = 0.0; MYSQL_ROW row; struct Banner Ban; /***** Write heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "", Txt_Banner, Txt_STAT_TYPE_COUNT_CAPS[Gbl.Stat.CountType]); /***** Compute maximum number of clicks per banner *****/ for (NumRow = 1; NumRow <= NumRows; NumRow++) { row = mysql_fetch_row (mysql_res); /* Get number of pages generated */ NumClicks = Str_GetFloatNumFromStr (row[1]); if (NumRow == 1) MaxClicks = NumClicks; TotalClicks += NumClicks; } /***** Write rows *****/ mysql_data_seek (mysql_res,0); for (NumRow = 1; NumRow <= NumRows; NumRow++) { row = mysql_fetch_row (mysql_res); /* Write the banner */ if (sscanf (row[0],"%ld",&(Ban.BanCod)) != 1) Lay_ShowErrorAndExit ("Wrong banner code."); Ban_GetDataOfBannerByCod (&Ban); fprintf (Gbl.F.Out,"" "" "" "\"%s\"" "", Ban.WWW, Ban.FullName, Cfg_URL_SWAD_PUBLIC,Cfg_FOLDER_BANNER, Ban.Img, Ban.ShrtName, Ban.FullName); /* Draw bar proportional to number of clicks */ NumClicks = Str_GetFloatNumFromStr (row[1]); Sta_DrawBarNumHits ('o', // orange background NumClicks,MaxClicks,TotalClicks,500); } } /*****************************************************************************/ /******* Show a listing with the number of hits distributed by country *******/ /*****************************************************************************/ static void Sta_ShowNumHitsPerCountry (unsigned long NumRows, MYSQL_RES *mysql_res) { extern const char *Txt_No_INDEX; extern const char *Txt_Country; extern const char *Txt_STAT_TYPE_COUNT_CAPS[Sta_NUM_COUNT_TYPES]; unsigned long NumRow; unsigned long Ranking; struct Sta_Hits Hits; MYSQL_ROW row; long CtyCod; /***** Write heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_No_INDEX, Txt_Country, Txt_STAT_TYPE_COUNT_CAPS[Gbl.Stat.CountType]); /***** Compute maximum number of hits per country *****/ Sta_ComputeMaxAndTotalHits (&Hits,NumRows,mysql_res,1,1); /***** Write rows *****/ mysql_data_seek (mysql_res,0); for (NumRow = 1, Ranking = 0; NumRow <= NumRows; NumRow++) { /* Get country code */ row = mysql_fetch_row (mysql_res); CtyCod = Str_ConvertStrCodToLongCod (row[0]); /* Write ranking of this country */ fprintf (Gbl.F.Out,"" ""); if (CtyCod > 0) fprintf (Gbl.F.Out,"%lu",++Ranking); fprintf (Gbl.F.Out," " ""); /* Write country */ Sta_WriteCountry (CtyCod); /* Draw bar proportional to number of hits */ Hits.Num = Str_GetFloatNumFromStr (row[1]); Sta_DrawBarNumHits ('o', // orange background Hits.Num,Hits.Max,Hits.Total,375); } } /*****************************************************************************/ /************************ Write country with an icon *************************/ /*****************************************************************************/ static void Sta_WriteCountry (long CtyCod) { struct Country Cty; /***** Start cell *****/ fprintf (Gbl.F.Out,""); if (CtyCod > 0) // Hit with a country selected { /***** Get data of country *****/ Cty.CtyCod = CtyCod; Cty_GetDataOfCountryByCod (&Cty,Cty_GET_BASIC_DATA); /***** Form to go to country *****/ Cty_DrawCountryMapAndNameWithLink (&Cty,ActSeeCtyInf, "COUNTRY_TINY", "COUNTRY_MAP_TINY", "LOG"); } else // Hit with no country selected /***** No country selected *****/ fprintf (Gbl.F.Out," - "); /***** End cell *****/ fprintf (Gbl.F.Out,""); } /*****************************************************************************/ /***** Show a listing with the number of hits distributed by institution *****/ /*****************************************************************************/ static void Sta_ShowNumHitsPerInstitution (unsigned long NumRows, MYSQL_RES *mysql_res) { extern const char *Txt_No_INDEX; extern const char *Txt_Institution; extern const char *Txt_STAT_TYPE_COUNT_CAPS[Sta_NUM_COUNT_TYPES]; unsigned long NumRow; unsigned long Ranking; struct Sta_Hits Hits; MYSQL_ROW row; long InsCod; /***** Write heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_No_INDEX, Txt_Institution, Txt_STAT_TYPE_COUNT_CAPS[Gbl.Stat.CountType]); /***** Compute maximum number of hits per institution *****/ Sta_ComputeMaxAndTotalHits (&Hits,NumRows,mysql_res,1,1); /***** Write rows *****/ mysql_data_seek (mysql_res,0); for (NumRow = 1, Ranking = 0; NumRow <= NumRows; NumRow++) { /* Get institution code */ row = mysql_fetch_row (mysql_res); InsCod = Str_ConvertStrCodToLongCod (row[0]); /* Write ranking of this institution */ fprintf (Gbl.F.Out,"" ""); if (InsCod > 0) fprintf (Gbl.F.Out,"%lu",++Ranking); fprintf (Gbl.F.Out," " ""); /* Write institution */ Sta_WriteInstitution (InsCod); /* Draw bar proportional to number of hits */ Hits.Num = Str_GetFloatNumFromStr (row[1]); Sta_DrawBarNumHits ('o', // orange background Hits.Num,Hits.Max,Hits.Total,375); } } /*****************************************************************************/ /********************** Write institution with an icon ***********************/ /*****************************************************************************/ static void Sta_WriteInstitution (long InsCod) { struct Instit Ins; /***** Start cell *****/ fprintf (Gbl.F.Out," 0) // Hit with an institution selected { /***** Get data of institution *****/ Ins.InsCod = InsCod; Ins_GetDataOfInstitutionByCod (&Ins,Ins_GET_BASIC_DATA); /***** Title in cell *****/ fprintf (Gbl.F.Out,"title=\"%s\">", Ins.FullName); /***** Form to go to institution *****/ Ins_DrawInstitutionLogoAndNameWithLink (&Ins,ActSeeInsInf, "LOG","CENTER_TOP"); } else // Hit with no institution selected /***** No institution selected *****/ fprintf (Gbl.F.Out,"> - "); /***** End cell *****/ fprintf (Gbl.F.Out,""); } /*****************************************************************************/ /******* Show a listing with the number of hits distributed by centre ********/ /*****************************************************************************/ static void Sta_ShowNumHitsPerCentre (unsigned long NumRows, MYSQL_RES *mysql_res) { extern const char *Txt_No_INDEX; extern const char *Txt_Centre; extern const char *Txt_STAT_TYPE_COUNT_CAPS[Sta_NUM_COUNT_TYPES]; unsigned long NumRow; unsigned long Ranking; struct Sta_Hits Hits; MYSQL_ROW row; long CtrCod; /***** Write heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_No_INDEX, Txt_Centre, Txt_STAT_TYPE_COUNT_CAPS[Gbl.Stat.CountType]); /***** Compute maximum number of hits per centre *****/ Sta_ComputeMaxAndTotalHits (&Hits,NumRows,mysql_res,1,1); /***** Write rows *****/ mysql_data_seek (mysql_res,0); for (NumRow = 1, Ranking = 0; NumRow <= NumRows; NumRow++) { /* Get centre code */ row = mysql_fetch_row (mysql_res); CtrCod = Str_ConvertStrCodToLongCod (row[0]); /* Write ranking of this centre */ fprintf (Gbl.F.Out,"" ""); if (CtrCod > 0) fprintf (Gbl.F.Out,"%lu",++Ranking); fprintf (Gbl.F.Out," " ""); /* Write centre */ Sta_WriteCentre (CtrCod); /* Draw bar proportional to number of hits */ Hits.Num = Str_GetFloatNumFromStr (row[1]); Sta_DrawBarNumHits ('o', // orange background Hits.Num,Hits.Max,Hits.Total,375); } } /*****************************************************************************/ /************************* Write centre with an icon *************************/ /*****************************************************************************/ static void Sta_WriteCentre (long CtrCod) { struct Centre Ctr; /***** Start cell *****/ fprintf (Gbl.F.Out," 0) // Hit with a centre selected { /***** Get data of centre *****/ Ctr.CtrCod = CtrCod; Ctr_GetDataOfCentreByCod (&Ctr); /***** Title in cell *****/ fprintf (Gbl.F.Out,"title=\"%s\">", Ctr.FullName); /***** Form to go to centre *****/ Ctr_DrawCentreLogoAndNameWithLink (&Ctr,ActSeeCtrInf, "LOG","CENTER_TOP"); } else // Hit with no centre selected /***** No centre selected *****/ fprintf (Gbl.F.Out,"> - "); /***** End cell *****/ fprintf (Gbl.F.Out,""); } /*****************************************************************************/ /******* Show a listing with the number of hits distributed by degree ********/ /*****************************************************************************/ static void Sta_ShowNumHitsPerDegree (unsigned long NumRows, MYSQL_RES *mysql_res) { extern const char *Txt_No_INDEX; extern const char *Txt_Degree; extern const char *Txt_STAT_TYPE_COUNT_CAPS[Sta_NUM_COUNT_TYPES]; unsigned long NumRow; unsigned long Ranking; struct Sta_Hits Hits; MYSQL_ROW row; long DegCod; /***** Write heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_No_INDEX, Txt_Degree, Txt_STAT_TYPE_COUNT_CAPS[Gbl.Stat.CountType]); /***** Compute maximum number of hits per degree *****/ Sta_ComputeMaxAndTotalHits (&Hits,NumRows,mysql_res,1,1); /***** Write rows *****/ mysql_data_seek (mysql_res,0); for (NumRow = 1, Ranking = 0; NumRow <= NumRows; NumRow++) { /* Get degree code */ row = mysql_fetch_row (mysql_res); DegCod = Str_ConvertStrCodToLongCod (row[0]); /* Write ranking of this degree */ fprintf (Gbl.F.Out,"" ""); if (DegCod > 0) fprintf (Gbl.F.Out,"%lu",++Ranking); fprintf (Gbl.F.Out," " ""); /* Write degree */ Sta_WriteDegree (DegCod); /* Draw bar proportional to number of hits */ Hits.Num = Str_GetFloatNumFromStr (row[1]); Sta_DrawBarNumHits ('o', // orange background Hits.Num,Hits.Max,Hits.Total,375); } } /*****************************************************************************/ /************************* Write degree with an icon *************************/ /*****************************************************************************/ static void Sta_WriteDegree (long DegCod) { struct Degree Deg; /***** Start cell *****/ fprintf (Gbl.F.Out," 0) // Hit with a degree selected { /***** Get data of degree *****/ Deg.DegCod = DegCod; Deg_GetDataOfDegreeByCod (&Deg); /***** Title in cell *****/ fprintf (Gbl.F.Out,"title=\"%s\">", Deg.FullName); /***** Form to go to degree *****/ Deg_DrawDegreeLogoAndNameWithLink (&Deg,ActSeeDegInf, "LOG","CENTER_TOP"); } else // Hit with no degree selected /***** No degree selected *****/ fprintf (Gbl.F.Out,"> - "); /***** End cell *****/ fprintf (Gbl.F.Out,""); } /*****************************************************************************/ /********* Show a listing with the number of clicks to each course ***********/ /*****************************************************************************/ static void Sta_ShowNumHitsPerCourse (unsigned long NumRows, MYSQL_RES *mysql_res) { extern const char *Txt_No_INDEX; extern const char *Txt_Degree; extern const char *Txt_Year_OF_A_DEGREE; extern const char *Txt_Course; extern const char *Txt_STAT_TYPE_COUNT_CAPS[Sta_NUM_COUNT_TYPES]; extern const char *Txt_Go_to_X; extern const char *Txt_YEAR_OF_DEGREE[1 + Deg_MAX_YEARS_PER_DEGREE]; // Declaration in swad_degree.c unsigned long NumRow; unsigned long Ranking; struct Sta_Hits Hits; MYSQL_ROW row; bool CrsOK; struct Course Crs; /***** Write heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_No_INDEX, Txt_Degree, Txt_Year_OF_A_DEGREE, Txt_Course, Txt_STAT_TYPE_COUNT_CAPS[Gbl.Stat.CountType]); /***** Compute maximum number of pages generated per course *****/ Sta_ComputeMaxAndTotalHits (&Hits,NumRows,mysql_res,1,1); /***** Write rows *****/ mysql_data_seek (mysql_res,0); for (NumRow = 1, Ranking = 0; NumRow <= NumRows; NumRow++) { /* Get degree, the year and the course */ row = mysql_fetch_row (mysql_res); /* Get course code */ Crs.CrsCod = Str_ConvertStrCodToLongCod (row[0]); /* Get data of current degree */ CrsOK = Crs_GetDataOfCourseByCod (&Crs); /* Write ranking of this course */ fprintf (Gbl.F.Out,"" ""); if (CrsOK) fprintf (Gbl.F.Out,"%lu",++Ranking); fprintf (Gbl.F.Out," "); /* Write degree */ Sta_WriteDegree (Crs.DegCod); /* Write degree year */ fprintf (Gbl.F.Out,"" "%s " "", CrsOK ? Txt_YEAR_OF_DEGREE[Crs.Year] : "-"); /* Write course, including link */ fprintf (Gbl.F.Out,""); if (CrsOK) { Frm_StartFormGoTo (ActSeeCrsInf); Crs_PutParamCrsCod (Crs.CrsCod); snprintf (Gbl.Title,sizeof (Gbl.Title), Txt_Go_to_X, Crs.FullName); Frm_LinkFormSubmit (Gbl.Title,"LOG",NULL); fprintf (Gbl.F.Out,"%s" "", Crs.ShrtName); } else fprintf (Gbl.F.Out,"-"); fprintf (Gbl.F.Out," "); if (CrsOK) Frm_EndForm (); fprintf (Gbl.F.Out,""); /* Draw bar proportional to number of hits */ Hits.Num = Str_GetFloatNumFromStr (row[1]); Sta_DrawBarNumHits ('o', // orange background Hits.Num,Hits.Max,Hits.Total,375); } } /*****************************************************************************/ /*************** Compute maximum and total number of hits ********************/ /*****************************************************************************/ void Sta_ComputeMaxAndTotalHits (struct Sta_Hits *Hits, unsigned long NumRows, MYSQL_RES *mysql_res,unsigned Field, unsigned Divisor) { unsigned long NumRow; MYSQL_ROW row; /***** For each row... *****/ for (NumRow = 1, Hits->Max = Hits->Total = 0.0; NumRow <= NumRows; NumRow++) { /* Get row */ row = mysql_fetch_row (mysql_res); /* Get number of hits */ Hits->Num = Str_GetFloatNumFromStr (row[Field]); if (Divisor > 1) Hits->Num /= (float) Divisor; /* Update total hits */ Hits->Total += Hits->Num; /* Update maximum hits */ if (Hits->Num > Hits->Max) Hits->Max = Hits->Num; } } /*****************************************************************************/ /********************* Draw a bar with the number of hits ********************/ /*****************************************************************************/ static void Sta_DrawBarNumHits (char Color, float HitsNum,float HitsMax,float HitsTotal, unsigned MaxBarWidth) { unsigned BarWidth; fprintf (Gbl.F.Out,""); if (HitsNum != 0.0) { /***** Draw bar with a with proportional to the number of hits *****/ BarWidth = (unsigned) (((HitsNum * (float) MaxBarWidth) / HitsMax) + 0.5); if (BarWidth == 0) BarWidth = 1; fprintf (Gbl.F.Out,"\"\"" " ", Gbl.Prefs.URLIcons,Color,BarWidth); /***** Write the number of hits *****/ Str_WriteFloatNum (Gbl.F.Out,HitsNum); fprintf (Gbl.F.Out," (%u", (unsigned) (((HitsNum * 100.0) / HitsTotal) + 0.5)); } else /***** Write the number of clicks *****/ fprintf (Gbl.F.Out,"0 (0"); fprintf (Gbl.F.Out,"%%) " "" ""); } /*****************************************************************************/ /**** Write parameters of initial and final dates in the query of clicks *****/ /*****************************************************************************/ void Sta_WriteParamsDatesSeeAccesses (void) { Par_PutHiddenParamUnsigned ("StartTimeUTC",Gbl.DateRange.TimeUTC[0]); Par_PutHiddenParamUnsigned ("EndTimeUTC" ,Gbl.DateRange.TimeUTC[1]); } /*****************************************************************************/ /************************** Show use of the platform *************************/ /*****************************************************************************/ void Sta_ReqShowFigures (void) { extern const char *Hlp_ANALYTICS_Figures; extern const char *The_ClassForm[The_NUM_THEMES]; extern const char *Txt_Figures; extern const char *Txt_Scope; extern const char *Txt_Statistic; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; extern const char *Txt_Show_statistic; Sta_FigureType_t FigureType; /***** Form to show statistic *****/ Frm_StartForm (ActSeeUseGbl); /***** Start box *****/ Box_StartBox (NULL,Txt_Figures,NULL, Hlp_ANALYTICS_Figures,Box_NOT_CLOSABLE); /***** Compute stats for anywhere, degree or course? *****/ fprintf (Gbl.F.Out,"
"); /***** Type of statistic *****/ fprintf (Gbl.F.Out,""); /***** Send button and end box *****/ Box_EndBoxWithButton (Btn_CONFIRM_BUTTON,Txt_Show_statistic); /***** End form *****/ Frm_EndForm (); } /*****************************************************************************/ /************************* Put icon to show a figure *************************/ /*****************************************************************************/ // Gbl.Stat.FigureType must be set to the desired figure before calling this function void Sta_PutIconToShowFigure (void) { extern const char *Txt_Show_statistic; Lay_PutContextualLink (ActSeeUseGbl,NULL,Sta_PutParamsToShowFigure, "pie64x64.gif", Txt_Show_statistic,NULL, NULL); } /*****************************************************************************/ /************* Put hidden parameters for figures (statistics) ****************/ /*****************************************************************************/ // Gbl.Stat.FigureType must be set to the desired figure before calling this function static void Sta_PutParamsToShowFigure (void) { /***** Set default scope (used only if Gbl.Scope.Current is unknown) *****/ Gbl.Scope.Default = Sco_SCOPE_CRS; Sco_AdjustScope (); Sta_PutHiddenParamFigures (); } /*****************************************************************************/ /************* Put hidden parameters for figures (statistics) ****************/ /*****************************************************************************/ void Sta_PutHiddenParamFigures (void) { Sta_PutHiddenParamScopeSta (); Sta_PutHiddenParamFigureType (); } /*****************************************************************************/ /********* Put hidden parameter for the type of figure (statistic) ***********/ /*****************************************************************************/ static void Sta_PutHiddenParamFigureType (void) { Par_PutHiddenParamUnsigned ("FigureType",(unsigned) Gbl.Stat.FigureType); } /*****************************************************************************/ /********* Put hidden parameter for the type of figure (statistic) ***********/ /*****************************************************************************/ static void Sta_PutHiddenParamScopeSta (void) { Sco_PutParamScope ("ScopeSta",Gbl.Scope.Current); } /*****************************************************************************/ /************************** Show use of the platform *************************/ /*****************************************************************************/ void Sta_ShowFigures (void) { static void (*Sta_Function[Sta_NUM_FIGURES])(void) = // Array of pointers to functions { Sta_GetAndShowUsersStats, // Sta_USERS Sta_GetAndShowUsersRanking, // Sta_USERS_RANKING Sta_GetAndShowHierarchyStats, // Sta_HIERARCHY Sta_GetAndShowInstitutionsStats, // Sta_INSTITS Sta_GetAndShowDegreeTypesStats, // Sta_DEGREE_TYPES Sta_GetAndShowFileBrowsersStats, // Sta_FOLDERS_AND_FILES Sta_GetAndShowOERsStats, // Sta_OER Sta_GetAndShowAssignmentsStats, // Sta_ASSIGNMENTS Sta_GetAndShowProjectsStats, // Sta_PROJECTS Sta_GetAndShowTestsStats, // Sta_TESTS Sta_GetAndShowGamesStats, // Sta_GAMES Sta_GetAndShowSurveysStats, // Sta_SURVEYS Sta_GetAndShowSocialActivityStats, // Sta_SOCIAL_ACTIVITY Sta_GetAndShowFollowStats, // Sta_FOLLOW Sta_GetAndShowForumStats, // Sta_FORUMS Sta_GetAndShowNumUsrsPerNotifyEvent, // Sta_NOTIFY_EVENTS Sta_GetAndShowNoticesStats, // Sta_NOTICES Sta_GetAndShowMsgsStats, // Sta_MESSAGES Net_ShowWebAndSocialNetworksStats, // Sta_SOCIAL_NETWORKS Sta_GetAndShowNumUsrsPerLanguage, // Sta_LANGUAGES Sta_GetAndShowNumUsrsPerFirstDayOfWeek, // Sta_FIRST_DAY_OF_WEEK Sta_GetAndShowNumUsrsPerDateFormat, // Sta_DATE_FORMAT Sta_GetAndShowNumUsrsPerIconSet, // Sta_ICON_SETS Sta_GetAndShowNumUsrsPerMenu, // Sta_MENUS Sta_GetAndShowNumUsrsPerTheme, // Sta_THEMES Sta_GetAndShowNumUsrsPerSideColumns, // Sta_SIDE_COLUMNS Sta_GetAndShowNumUsrsPerPrivacy, // Sta_PRIVACY }; /***** Get the type of figure ******/ Gbl.Stat.FigureType = (Sta_FigureType_t) Par_GetParToUnsignedLong ("FigureType", 0, Sta_NUM_FIGURES - 1, (unsigned long) Sta_FIGURE_TYPE_DEF); /***** Show again the form to see use of the platform *****/ Sta_ReqShowFigures (); /***** Show the stat of use selected by user *****/ Sta_Function[Gbl.Stat.FigureType] (); } /*****************************************************************************/ /********************** Show stats about number of users *********************/ /*****************************************************************************/ static void Sta_GetAndShowUsersStats (void) { extern const char *Hlp_ANALYTICS_Figures_users; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; extern const char *Txt_Users; extern const char *Txt_No_of_users; extern const char *Txt_Average_number_of_courses_to_which_a_user_belongs; extern const char *Txt_Average_number_of_users_belonging_to_a_course; /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_USERS],NULL, Hlp_ANALYTICS_Figures_users,Box_NOT_CLOSABLE,2); /***** Write heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_Users, Txt_No_of_users, Txt_Average_number_of_courses_to_which_a_user_belongs, Txt_Average_number_of_users_belonging_to_a_course); Sta_GetAndShowNumUsrsInCrss (Rol_STD); // Students Sta_GetAndShowNumUsrsInCrss (Rol_NET); // Non-editing teachers Sta_GetAndShowNumUsrsInCrss (Rol_TCH); // Teachers Sta_GetAndShowNumUsrsInCrss (Rol_UNK); // Any user in courses fprintf (Gbl.F.Out,"" "" ""); Sta_GetAndShowNumUsrsNotBelongingToAnyCrs (); // Users not beloging to any course /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /**************** Get and show number of users in courses ********************/ /*****************************************************************************/ // Rol_UNK means any role in courses static void Sta_GetAndShowNumUsrsInCrss (Rol_Role_t Role) { extern const char *Txt_Total; extern const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS]; unsigned NumUsrs; float NumCrssPerUsr; float NumUsrsPerCrs; char *Class = (Role == Rol_UNK) ? "DAT_N_LINE_TOP RIGHT_BOTTOM" : "DAT RIGHT_BOTTOM"; unsigned Roles = (Role == Rol_UNK) ? ((1 << Rol_STD) | (1 << Rol_NET) | (1 << Rol_TCH)) : (1 << Role); /***** Get the number of users belonging to any course *****/ NumUsrs = Usr_GetTotalNumberOfUsersInCourses (Gbl.Scope.Current, Roles); /***** Get average number of courses per user *****/ NumCrssPerUsr = Usr_GetNumCrssPerUsr (Role); /***** Query the number of users per course *****/ NumUsrsPerCrs = Usr_GetNumUsrsPerCrs (Role); /***** Write the total number of users *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%u" "" "" "%.2f" "" "" "%.2f" "" "", Class,(Role == Rol_UNK) ? Txt_Total : Txt_ROLES_PLURAL_Abc[Role][Usr_SEX_UNKNOWN], Class,NumUsrs, Class,NumCrssPerUsr, Class,NumUsrsPerCrs); } /*****************************************************************************/ /**************** Get and show number of users in courses ********************/ /*****************************************************************************/ static void Sta_GetAndShowNumUsrsNotBelongingToAnyCrs (void) { extern const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS]; char *Class = "DAT RIGHT_BOTTOM"; /***** Write the total number of users not belonging to any course *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%u" "" "" "%.2f" "" "" "%.2f" "" "", Class,Txt_ROLES_PLURAL_Abc[Rol_GST][Usr_SEX_UNKNOWN], Class,Usr_GetNumUsrsNotBelongingToAnyCrs (), Class,0.0, Class,0.0); } /*****************************************************************************/ /****************************** Show users' ranking **************************/ /*****************************************************************************/ static void Sta_GetAndShowUsersRanking (void) { extern const char *Hlp_ANALYTICS_Figures_ranking; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; extern const char *Txt_Clicks; extern const char *Txt_Clicks_per_day; extern const char *Txt_Downloads; extern const char *Txt_Forums; extern const char *Txt_Messages; extern const char *Txt_Followers; /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_USERS_RANKING],NULL, Hlp_ANALYTICS_Figures_ranking,Box_NOT_CLOSABLE,2); /***** Write heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_Clicks, Txt_Clicks_per_day, Txt_Downloads, Txt_Forums, Txt_Messages, Txt_Followers); /***** Rankings *****/ fprintf (Gbl.F.Out,"" ""); Prf_GetAndShowRankingClicks (); fprintf (Gbl.F.Out,"" ""); Prf_GetAndShowRankingClicksPerDay (); fprintf (Gbl.F.Out,"" ""); Prf_GetAndShowRankingFileViews (); fprintf (Gbl.F.Out,"" ""); Prf_GetAndShowRankingForPst (); fprintf (Gbl.F.Out,"" ""); Prf_GetAndShowRankingMsgSnt (); fprintf (Gbl.F.Out,"" ""); Fol_GetAndShowRankingFollowers (); fprintf (Gbl.F.Out,"" ""); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /********* Get and show stats about hierarchy ***********/ /********* (countries, institutions, centres, degrees and courses) ***********/ /*****************************************************************************/ static void Sta_GetAndShowHierarchyStats (void) { extern const char *Hlp_ANALYTICS_Figures_hierarchy; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_HIERARCHY],NULL, Hlp_ANALYTICS_Figures_hierarchy,Box_NOT_CLOSABLE,2); Sta_WriteHeadDegsCrssInSWAD (); Sta_GetAndShowNumCtysInSWAD (); Sta_GetAndShowNumInssInSWAD (); Sta_GetAndShowNumCtrsInSWAD (); Sta_GetAndShowNumDegsInSWAD (); Sta_GetAndShowNumCrssInSWAD (); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /******************* Write head table degrees and courses ********************/ /*****************************************************************************/ static void Sta_WriteHeadDegsCrssInSWAD (void) { extern const char *Txt_Total; extern const char *Txt_With_institutions; extern const char *Txt_With_centres; extern const char *Txt_With_degrees; extern const char *Txt_With_courses; extern const char *Txt_With_teachers; extern const char *Txt_With_non_editing_teachers; extern const char *Txt_With_students; fprintf (Gbl.F.Out,"" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_Total, Txt_With_institutions, Txt_With_centres, Txt_With_degrees, Txt_With_courses, Txt_With_teachers, Txt_With_non_editing_teachers, Txt_With_students); } /*****************************************************************************/ /******************* Get and show total number of countries ******************/ /*****************************************************************************/ static void Sta_GetAndShowNumCtysInSWAD (void) { extern const char *Txt_Countries; char SubQuery[128]; unsigned NumCtysTotal = 0; unsigned NumCtysWithInss = 0; unsigned NumCtysWithCtrs = 0; unsigned NumCtysWithDegs = 0; unsigned NumCtysWithCrss = 0; unsigned NumCtysWithTchs = 0; unsigned NumCtysWithNETs = 0; unsigned NumCtysWithStds = 0; /***** Get number of countries *****/ switch (Gbl.Scope.Current) { case Sco_SCOPE_SYS: NumCtysTotal = Cty_GetNumCtysTotal (); NumCtysWithInss = Cty_GetNumCtysWithInss (""); NumCtysWithCtrs = Cty_GetNumCtysWithCtrs (""); NumCtysWithDegs = Cty_GetNumCtysWithDegs (""); NumCtysWithCrss = Cty_GetNumCtysWithCrss (""); NumCtysWithTchs = Cty_GetNumCtysWithUsrs (Rol_TCH,""); NumCtysWithNETs = Cty_GetNumCtysWithUsrs (Rol_NET,""); NumCtysWithStds = Cty_GetNumCtysWithUsrs (Rol_STD,""); SubQuery[0] = '\0'; break; case Sco_SCOPE_CTY: NumCtysTotal = 1; NumCtysWithInss = 1; sprintf (SubQuery,"institutions.CtyCod=%ld AND ", Gbl.CurrentCty.Cty.CtyCod); NumCtysWithCtrs = Cty_GetNumCtysWithCtrs (SubQuery); NumCtysWithDegs = Cty_GetNumCtysWithDegs (SubQuery); NumCtysWithCrss = Cty_GetNumCtysWithCrss (SubQuery); NumCtysWithTchs = Cty_GetNumCtysWithUsrs (Rol_TCH,SubQuery); NumCtysWithNETs = Cty_GetNumCtysWithUsrs (Rol_NET,SubQuery); NumCtysWithStds = Cty_GetNumCtysWithUsrs (Rol_STD,SubQuery); break; case Sco_SCOPE_INS: NumCtysTotal = 1; NumCtysWithInss = 1; sprintf (SubQuery,"centres.InsCod=%ld AND ", Gbl.CurrentIns.Ins.InsCod); NumCtysWithCtrs = Cty_GetNumCtysWithCtrs (SubQuery); NumCtysWithDegs = Cty_GetNumCtysWithDegs (SubQuery); NumCtysWithCrss = Cty_GetNumCtysWithCrss (SubQuery); NumCtysWithTchs = Cty_GetNumCtysWithUsrs (Rol_TCH,SubQuery); NumCtysWithNETs = Cty_GetNumCtysWithUsrs (Rol_NET,SubQuery); NumCtysWithStds = Cty_GetNumCtysWithUsrs (Rol_STD,SubQuery); break; case Sco_SCOPE_CTR: NumCtysTotal = 1; NumCtysWithInss = 1; NumCtysWithCtrs = 1; sprintf (SubQuery,"degrees.CtrCod=%ld AND ", Gbl.CurrentCtr.Ctr.CtrCod); NumCtysWithDegs = Cty_GetNumCtysWithDegs (SubQuery); NumCtysWithCrss = Cty_GetNumCtysWithCrss (SubQuery); NumCtysWithTchs = Cty_GetNumCtysWithUsrs (Rol_TCH,SubQuery); NumCtysWithNETs = Cty_GetNumCtysWithUsrs (Rol_NET,SubQuery); NumCtysWithStds = Cty_GetNumCtysWithUsrs (Rol_STD,SubQuery); break; case Sco_SCOPE_DEG: NumCtysTotal = 1; NumCtysWithInss = 1; NumCtysWithCtrs = 1; NumCtysWithDegs = 1; sprintf (SubQuery,"courses.DegCod=%ld AND ", Gbl.CurrentDeg.Deg.DegCod); NumCtysWithCrss = Cty_GetNumCtysWithCrss (SubQuery); NumCtysWithTchs = Cty_GetNumCtysWithUsrs (Rol_TCH,SubQuery); NumCtysWithNETs = Cty_GetNumCtysWithUsrs (Rol_NET,SubQuery); NumCtysWithStds = Cty_GetNumCtysWithUsrs (Rol_STD,SubQuery); break; case Sco_SCOPE_CRS: NumCtysTotal = 1; NumCtysWithInss = 1; NumCtysWithCtrs = 1; NumCtysWithDegs = 1; NumCtysWithCrss = 1; sprintf (SubQuery,"crs_usr.CrsCod=%ld AND ", Gbl.CurrentCrs.Crs.CrsCod); NumCtysWithTchs = Cty_GetNumCtysWithUsrs (Rol_TCH,SubQuery); NumCtysWithNETs = Cty_GetNumCtysWithUsrs (Rol_NET,SubQuery); NumCtysWithStds = Cty_GetNumCtysWithUsrs (Rol_STD,SubQuery); break; default: Lay_WrongScopeExit (); break; } /***** Write number of countries *****/ fprintf (Gbl.F.Out,"" "" "\"%s\"" " %s:" "" "" "%u" "" "" "%u" "" "" "%u" "" "" "%u" "" "" "%u" "" "" "%u" "" "" "%u" "" "" "%u" "" "", Gbl.Prefs.URLIcons, Txt_Countries, Txt_Countries, Txt_Countries, NumCtysTotal, NumCtysWithInss, NumCtysWithCtrs, NumCtysWithDegs, NumCtysWithCrss, NumCtysWithTchs, NumCtysWithNETs, NumCtysWithStds); } /*****************************************************************************/ /***************** Get and show total number of institutions *****************/ /*****************************************************************************/ static void Sta_GetAndShowNumInssInSWAD (void) { extern const char *Txt_Institutions; char SubQuery[128]; unsigned NumInssTotal = 0; unsigned NumInssWithCtrs = 0; unsigned NumInssWithDegs = 0; unsigned NumInssWithCrss = 0; unsigned NumInssWithTchs = 0; unsigned NumInssWithNETs = 0; unsigned NumInssWithStds = 0; /***** Get number of institutions *****/ switch (Gbl.Scope.Current) { case Sco_SCOPE_SYS: NumInssTotal = Ins_GetNumInssTotal (); NumInssWithCtrs = Ins_GetNumInssWithCtrs (""); NumInssWithDegs = Ins_GetNumInssWithDegs (""); NumInssWithCrss = Ins_GetNumInssWithCrss (""); NumInssWithTchs = Ins_GetNumInssWithUsrs (Rol_TCH,""); NumInssWithNETs = Ins_GetNumInssWithUsrs (Rol_NET,""); NumInssWithStds = Ins_GetNumInssWithUsrs (Rol_STD,""); SubQuery[0] = '\0'; break; case Sco_SCOPE_CTY: NumInssTotal = Ins_GetNumInssInCty (Gbl.CurrentCty.Cty.CtyCod); sprintf (SubQuery,"institutions.CtyCod=%ld AND ", Gbl.CurrentCty.Cty.CtyCod); NumInssWithCtrs = Ins_GetNumInssWithCtrs (SubQuery); NumInssWithDegs = Ins_GetNumInssWithDegs (SubQuery); NumInssWithCrss = Ins_GetNumInssWithCrss (SubQuery); NumInssWithTchs = Ins_GetNumInssWithUsrs (Rol_TCH,SubQuery); NumInssWithNETs = Ins_GetNumInssWithUsrs (Rol_NET,SubQuery); NumInssWithStds = Ins_GetNumInssWithUsrs (Rol_STD,SubQuery); break; case Sco_SCOPE_INS: NumInssTotal = 1; sprintf (SubQuery,"centres.InsCod=%ld AND ", Gbl.CurrentIns.Ins.InsCod); NumInssWithCtrs = Ins_GetNumInssWithCtrs (SubQuery); NumInssWithDegs = Ins_GetNumInssWithDegs (SubQuery); NumInssWithCrss = Ins_GetNumInssWithCrss (SubQuery); NumInssWithTchs = Ins_GetNumInssWithUsrs (Rol_TCH,SubQuery); NumInssWithNETs = Ins_GetNumInssWithUsrs (Rol_NET,SubQuery); NumInssWithStds = Ins_GetNumInssWithUsrs (Rol_STD,SubQuery); break; case Sco_SCOPE_CTR: NumInssTotal = 1; NumInssWithCtrs = 1; sprintf (SubQuery,"degrees.CtrCod=%ld AND ", Gbl.CurrentCtr.Ctr.CtrCod); NumInssWithDegs = Ins_GetNumInssWithDegs (SubQuery); NumInssWithCrss = Ins_GetNumInssWithCrss (SubQuery); NumInssWithTchs = Ins_GetNumInssWithUsrs (Rol_TCH,SubQuery); NumInssWithNETs = Ins_GetNumInssWithUsrs (Rol_NET,SubQuery); NumInssWithStds = Ins_GetNumInssWithUsrs (Rol_STD,SubQuery); break; case Sco_SCOPE_DEG: NumInssTotal = 1; NumInssWithCtrs = 1; NumInssWithDegs = 1; sprintf (SubQuery,"courses.DegCod=%ld AND ", Gbl.CurrentDeg.Deg.DegCod); NumInssWithCrss = Ins_GetNumInssWithCrss (SubQuery); NumInssWithTchs = Ins_GetNumInssWithUsrs (Rol_TCH,SubQuery); NumInssWithNETs = Ins_GetNumInssWithUsrs (Rol_NET,SubQuery); NumInssWithStds = Ins_GetNumInssWithUsrs (Rol_STD,SubQuery); break; case Sco_SCOPE_CRS: NumInssTotal = 1; NumInssWithCtrs = 1; NumInssWithDegs = 1; NumInssWithCrss = 1; sprintf (SubQuery,"crs_usr.CrsCod=%ld AND ", Gbl.CurrentCrs.Crs.CrsCod); NumInssWithTchs = Ins_GetNumInssWithUsrs (Rol_TCH,SubQuery); NumInssWithNETs = Ins_GetNumInssWithUsrs (Rol_NET,SubQuery); NumInssWithStds = Ins_GetNumInssWithUsrs (Rol_STD,SubQuery); break; default: Lay_WrongScopeExit (); break; } /***** Write number of institutions *****/ fprintf (Gbl.F.Out,"" "" "\"%s\"" " %s:" "" "" "%u" "" "" "" "%u" "" "" "%u" "" "" "%u" "" "" "%u" "" "" "%u" "" "" "%u" "" "", Gbl.Prefs.URLIcons, Txt_Institutions, Txt_Institutions, Txt_Institutions, NumInssTotal, NumInssWithCtrs, NumInssWithDegs, NumInssWithCrss, NumInssWithTchs, NumInssWithNETs, NumInssWithStds); } /*****************************************************************************/ /********************* Get and show total number of centres ******************/ /*****************************************************************************/ static void Sta_GetAndShowNumCtrsInSWAD (void) { extern const char *Txt_Centres; char SubQuery[128]; unsigned NumCtrsTotal = 0; unsigned NumCtrsWithDegs = 0; unsigned NumCtrsWithCrss = 0; unsigned NumCtrsWithTchs = 0; unsigned NumCtrsWithNETs = 0; unsigned NumCtrsWithStds = 0; /***** Get number of centres *****/ switch (Gbl.Scope.Current) { case Sco_SCOPE_SYS: NumCtrsTotal = Ctr_GetNumCtrsTotal (); NumCtrsWithDegs = Ctr_GetNumCtrsWithDegs (""); NumCtrsWithCrss = Ctr_GetNumCtrsWithCrss (""); NumCtrsWithTchs = Ctr_GetNumCtrsWithUsrs (Rol_TCH,""); NumCtrsWithNETs = Ctr_GetNumCtrsWithUsrs (Rol_NET,""); NumCtrsWithStds = Ctr_GetNumCtrsWithUsrs (Rol_STD,""); SubQuery[0] = '\0'; break; case Sco_SCOPE_CTY: NumCtrsTotal = Ctr_GetNumCtrsInCty (Gbl.CurrentCty.Cty.CtyCod); sprintf (SubQuery,"institutions.CtyCod=%ld AND ", Gbl.CurrentCty.Cty.CtyCod); NumCtrsWithDegs = Ctr_GetNumCtrsWithDegs (SubQuery); NumCtrsWithCrss = Ctr_GetNumCtrsWithCrss (SubQuery); NumCtrsWithTchs = Ctr_GetNumCtrsWithUsrs (Rol_TCH,SubQuery); NumCtrsWithNETs = Ctr_GetNumCtrsWithUsrs (Rol_NET,SubQuery); NumCtrsWithStds = Ctr_GetNumCtrsWithUsrs (Rol_STD,SubQuery); break; case Sco_SCOPE_INS: NumCtrsTotal = Ctr_GetNumCtrsInIns (Gbl.CurrentIns.Ins.InsCod); sprintf (SubQuery,"centres.InsCod=%ld AND ", Gbl.CurrentIns.Ins.InsCod); NumCtrsWithDegs = Ctr_GetNumCtrsWithDegs (SubQuery); NumCtrsWithCrss = Ctr_GetNumCtrsWithCrss (SubQuery); NumCtrsWithTchs = Ctr_GetNumCtrsWithUsrs (Rol_TCH,SubQuery); NumCtrsWithNETs = Ctr_GetNumCtrsWithUsrs (Rol_NET,SubQuery); NumCtrsWithStds = Ctr_GetNumCtrsWithUsrs (Rol_STD,SubQuery); break; case Sco_SCOPE_CTR: NumCtrsTotal = 1; sprintf (SubQuery,"degrees.CtrCod=%ld AND ", Gbl.CurrentCtr.Ctr.CtrCod); NumCtrsWithDegs = Ctr_GetNumCtrsWithDegs (SubQuery); NumCtrsWithCrss = Ctr_GetNumCtrsWithCrss (SubQuery); NumCtrsWithTchs = Ctr_GetNumCtrsWithUsrs (Rol_TCH,SubQuery); NumCtrsWithNETs = Ctr_GetNumCtrsWithUsrs (Rol_NET,SubQuery); NumCtrsWithStds = Ctr_GetNumCtrsWithUsrs (Rol_STD,SubQuery); break; case Sco_SCOPE_DEG: NumCtrsTotal = 1; NumCtrsWithDegs = 1; sprintf (SubQuery,"courses.DegCod=%ld AND ", Gbl.CurrentDeg.Deg.DegCod); NumCtrsWithCrss = Ctr_GetNumCtrsWithCrss (SubQuery); NumCtrsWithTchs = Ctr_GetNumCtrsWithUsrs (Rol_TCH,SubQuery); NumCtrsWithNETs = Ctr_GetNumCtrsWithUsrs (Rol_NET,SubQuery); NumCtrsWithStds = Ctr_GetNumCtrsWithUsrs (Rol_STD,SubQuery); break; case Sco_SCOPE_CRS: NumCtrsTotal = 1; NumCtrsWithDegs = 1; NumCtrsWithCrss = 1; sprintf (SubQuery,"crs_usr.CrsCod=%ld AND ", Gbl.CurrentCrs.Crs.CrsCod); NumCtrsWithTchs = Ctr_GetNumCtrsWithUsrs (Rol_TCH,SubQuery); NumCtrsWithNETs = Ctr_GetNumCtrsWithUsrs (Rol_NET,SubQuery); NumCtrsWithStds = Ctr_GetNumCtrsWithUsrs (Rol_STD,SubQuery); break; default: Lay_WrongScopeExit (); break; } /***** Write number of centres *****/ fprintf (Gbl.F.Out,"" "" "\"%s\"" " %s:" "" "" "%u" "" "" "" "" "%u" "" "" "%u" "" "" "%u" "" "" "%u" "" "" "%u" "" "", Gbl.Prefs.URLIcons, Txt_Centres, Txt_Centres, Txt_Centres, NumCtrsTotal, NumCtrsWithDegs, NumCtrsWithCrss, NumCtrsWithTchs, NumCtrsWithNETs, NumCtrsWithStds); } /*****************************************************************************/ /********************* Get and show total number of degrees ******************/ /*****************************************************************************/ static void Sta_GetAndShowNumDegsInSWAD (void) { extern const char *Txt_Degrees; char SubQuery[128]; unsigned NumDegsTotal = 0; unsigned NumDegsWithCrss = 0; unsigned NumDegsWithTchs = 0; unsigned NumDegsWithNETs = 0; unsigned NumDegsWithStds = 0; /***** Get number of degrees *****/ switch (Gbl.Scope.Current) { case Sco_SCOPE_SYS: NumDegsTotal = Deg_GetNumDegsTotal (); NumDegsWithCrss = Deg_GetNumDegsWithCrss (""); NumDegsWithTchs = Deg_GetNumDegsWithUsrs (Rol_TCH,""); NumDegsWithNETs = Deg_GetNumDegsWithUsrs (Rol_NET,""); NumDegsWithStds = Deg_GetNumDegsWithUsrs (Rol_STD,""); SubQuery[0] = '\0'; break; case Sco_SCOPE_CTY: NumDegsTotal = Deg_GetNumDegsInCty (Gbl.CurrentCty.Cty.CtyCod); sprintf (SubQuery,"institutions.CtyCod=%ld AND ", Gbl.CurrentCty.Cty.CtyCod); NumDegsWithCrss = Deg_GetNumDegsWithCrss (SubQuery); NumDegsWithTchs = Deg_GetNumDegsWithUsrs (Rol_TCH,SubQuery); NumDegsWithNETs = Deg_GetNumDegsWithUsrs (Rol_NET,SubQuery); NumDegsWithStds = Deg_GetNumDegsWithUsrs (Rol_STD,SubQuery); break; case Sco_SCOPE_INS: NumDegsTotal = Deg_GetNumDegsInIns (Gbl.CurrentIns.Ins.InsCod); sprintf (SubQuery,"centres.InsCod=%ld AND ", Gbl.CurrentIns.Ins.InsCod); NumDegsWithCrss = Deg_GetNumDegsWithCrss (SubQuery); NumDegsWithTchs = Deg_GetNumDegsWithUsrs (Rol_TCH,SubQuery); NumDegsWithNETs = Deg_GetNumDegsWithUsrs (Rol_NET,SubQuery); NumDegsWithStds = Deg_GetNumDegsWithUsrs (Rol_STD,SubQuery); break; case Sco_SCOPE_CTR: NumDegsTotal = Deg_GetNumDegsInCtr (Gbl.CurrentCtr.Ctr.CtrCod); sprintf (SubQuery,"degrees.CtrCod=%ld AND ", Gbl.CurrentCtr.Ctr.CtrCod); NumDegsWithCrss = Deg_GetNumDegsWithCrss (SubQuery); NumDegsWithTchs = Deg_GetNumDegsWithUsrs (Rol_TCH,SubQuery); NumDegsWithNETs = Deg_GetNumDegsWithUsrs (Rol_NET,SubQuery); NumDegsWithStds = Deg_GetNumDegsWithUsrs (Rol_STD,SubQuery); break; case Sco_SCOPE_DEG: NumDegsTotal = 1; sprintf (SubQuery,"courses.DegCod=%ld AND ", Gbl.CurrentDeg.Deg.DegCod); NumDegsWithCrss = Deg_GetNumDegsWithCrss (SubQuery); NumDegsWithTchs = Deg_GetNumDegsWithUsrs (Rol_TCH,SubQuery); NumDegsWithNETs = Deg_GetNumDegsWithUsrs (Rol_NET,SubQuery); NumDegsWithStds = Deg_GetNumDegsWithUsrs (Rol_STD,SubQuery); break; case Sco_SCOPE_CRS: NumDegsTotal = 1; NumDegsWithCrss = 1; sprintf (SubQuery,"crs_usr.CrsCod=%ld AND ", Gbl.CurrentCrs.Crs.CrsCod); NumDegsWithTchs = Deg_GetNumDegsWithUsrs (Rol_TCH,SubQuery); NumDegsWithNETs = Deg_GetNumDegsWithUsrs (Rol_NET,SubQuery); NumDegsWithStds = Deg_GetNumDegsWithUsrs (Rol_STD,SubQuery); break; default: Lay_WrongScopeExit (); break; } /***** Write number of degrees *****/ fprintf (Gbl.F.Out,"" "" "\"%s\"" " %s:" "" "" "%u" "" "" "" "" "" "%u" "" "" "%u" "" "" "%u" "" "" "%u" "" "", Gbl.Prefs.URLIcons, Txt_Degrees, Txt_Degrees, Txt_Degrees, NumDegsTotal, NumDegsWithCrss, NumDegsWithTchs, NumDegsWithNETs, NumDegsWithStds); } /*****************************************************************************/ /****************** Get and show total number of courses *********************/ /*****************************************************************************/ static void Sta_GetAndShowNumCrssInSWAD (void) { extern const char *Txt_Courses; char SubQuery[128]; unsigned NumCrssTotal = 0; unsigned NumCrssWithTchs = 0; unsigned NumCrssWithNETs = 0; unsigned NumCrssWithStds = 0; /***** Get number of courses *****/ switch (Gbl.Scope.Current) { case Sco_SCOPE_SYS: NumCrssTotal = Crs_GetNumCrssTotal (); NumCrssWithTchs = Crs_GetNumCrssWithUsrs (Rol_TCH,""); NumCrssWithNETs = Crs_GetNumCrssWithUsrs (Rol_NET,""); NumCrssWithStds = Crs_GetNumCrssWithUsrs (Rol_STD,""); SubQuery[0] = '\0'; break; case Sco_SCOPE_CTY: NumCrssTotal = Crs_GetNumCrssInCty (Gbl.CurrentCty.Cty.CtyCod); sprintf (SubQuery,"institutions.CtyCod=%ld AND ", Gbl.CurrentCty.Cty.CtyCod); NumCrssWithTchs = Crs_GetNumCrssWithUsrs (Rol_TCH,SubQuery); NumCrssWithNETs = Crs_GetNumCrssWithUsrs (Rol_NET,SubQuery); NumCrssWithStds = Crs_GetNumCrssWithUsrs (Rol_STD,SubQuery); break; case Sco_SCOPE_INS: NumCrssTotal = Crs_GetNumCrssInIns (Gbl.CurrentIns.Ins.InsCod); sprintf (SubQuery,"centres.InsCod=%ld AND ", Gbl.CurrentIns.Ins.InsCod); NumCrssWithTchs = Crs_GetNumCrssWithUsrs (Rol_TCH,SubQuery); NumCrssWithNETs = Crs_GetNumCrssWithUsrs (Rol_NET,SubQuery); NumCrssWithStds = Crs_GetNumCrssWithUsrs (Rol_STD,SubQuery); break; case Sco_SCOPE_CTR: NumCrssTotal = Crs_GetNumCrssInCtr (Gbl.CurrentCtr.Ctr.CtrCod); sprintf (SubQuery,"degrees.CtrCod=%ld AND ", Gbl.CurrentCtr.Ctr.CtrCod); NumCrssWithTchs = Crs_GetNumCrssWithUsrs (Rol_TCH,SubQuery); NumCrssWithNETs = Crs_GetNumCrssWithUsrs (Rol_NET,SubQuery); NumCrssWithStds = Crs_GetNumCrssWithUsrs (Rol_STD,SubQuery); break; case Sco_SCOPE_DEG: NumCrssTotal = Crs_GetNumCrssInDeg (Gbl.CurrentDeg.Deg.DegCod); sprintf (SubQuery,"courses.DegCod=%ld AND ", Gbl.CurrentDeg.Deg.DegCod); NumCrssWithTchs = Crs_GetNumCrssWithUsrs (Rol_TCH,SubQuery); NumCrssWithNETs = Crs_GetNumCrssWithUsrs (Rol_NET,SubQuery); NumCrssWithStds = Crs_GetNumCrssWithUsrs (Rol_STD,SubQuery); break; case Sco_SCOPE_CRS: NumCrssTotal = 1; sprintf (SubQuery,"crs_usr.CrsCod=%ld AND ", Gbl.CurrentCrs.Crs.CrsCod); NumCrssWithTchs = Crs_GetNumCrssWithUsrs (Rol_TCH,SubQuery); NumCrssWithNETs = Crs_GetNumCrssWithUsrs (Rol_NET,SubQuery); NumCrssWithStds = Crs_GetNumCrssWithUsrs (Rol_STD,SubQuery); break; default: Lay_WrongScopeExit (); break; } /***** Write number of courses *****/ fprintf (Gbl.F.Out,"" "" "\"%s\"" " %s:" "" "" "%u" "" "" "" "" "" "" "%u" "" "" "%u" "" "" "%u" "" "", Gbl.Prefs.URLIcons, Txt_Courses, Txt_Courses, Txt_Courses, NumCrssTotal, NumCrssWithTchs, NumCrssWithNETs, NumCrssWithStds); } /*****************************************************************************/ /****************** Get and show stats about institutions ********************/ /*****************************************************************************/ static void Sta_GetAndShowInstitutionsStats (void) { extern const char *Hlp_ANALYTICS_Figures_institutions; extern const char *Txt_Institutions; /***** Start box *****/ Box_StartBox (NULL,Txt_Institutions,NULL, Hlp_ANALYTICS_Figures_institutions,Box_NOT_CLOSABLE); /***** Form to select type of list used to display degree photos *****/ Usr_GetAndUpdatePrefsAboutUsrList (); Usr_ShowFormsToSelectUsrListType (ActSeeUseGbl); /***** Institutions ordered by number of centres *****/ Sta_GetAndShowInssOrderedByNumCtrs (); /***** Institutions ordered by number of degrees *****/ Sta_GetAndShowInssOrderedByNumDegs (); /***** Institutions ordered by number of courses *****/ Sta_GetAndShowInssOrderedByNumCrss (); /***** Institutions ordered by number of users in courses *****/ Sta_GetAndShowInssOrderedByNumUsrsInCrss (); /***** Institutions ordered by number of users who claim to belong to them *****/ Sta_GetAndShowInssOrderedByNumUsrsWhoClaimToBelongToThem (); /***** End box *****/ Box_EndBox (); } /*****************************************************************************/ /**** Get and show stats about institutions ordered by number of centres *****/ /*****************************************************************************/ static void Sta_GetAndShowInssOrderedByNumCtrs (void) { extern const char *Txt_Institutions_by_number_of_centres; extern const char *Txt_Centres; MYSQL_RES *mysql_res; unsigned NumInss = 0; /***** Start box and table *****/ Box_StartBoxTable ("100%",Txt_Institutions_by_number_of_centres,NULL, NULL,Box_NOT_CLOSABLE,2); /***** Get institutions ordered by number of centres *****/ switch (Gbl.Scope.Current) { case Sco_SCOPE_SYS: NumInss = (unsigned) DB_QuerySELECT (&mysql_res,"can not get institutions", "SELECT InsCod,COUNT(*) AS N" " FROM centres" " GROUP BY InsCod" " ORDER BY N DESC"); break; case Sco_SCOPE_CTY: NumInss = (unsigned) DB_QuerySELECT (&mysql_res,"can not get institutions", "SELECT centres.InsCod,COUNT(*) AS N" " FROM institutions,centres" " WHERE institutions.CtyCod=%ld" " AND institutions.InsCod=centres.InsCod" " GROUP BY centres.InsCod" " ORDER BY N DESC", Gbl.CurrentCty.Cty.CtyCod); break; case Sco_SCOPE_INS: case Sco_SCOPE_CTR: case Sco_SCOPE_DEG: case Sco_SCOPE_CRS: NumInss = (unsigned) DB_QuerySELECT (&mysql_res,"can not get institutions", "SELECT InsCod,COUNT(*) AS N" " FROM centres" " WHERE InsCod=%ld" " GROUP BY InsCod" " ORDER BY N DESC", Gbl.CurrentIns.Ins.InsCod); break; default: Lay_WrongScopeExit (); break; } /***** Show institutions *****/ Sta_ShowInss (&mysql_res,NumInss,Txt_Centres); /***** Free structure that stores the query result *****/ DB_FreeMySQLResult (&mysql_res); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /**** Get and show stats about institutions ordered by number of degrees *****/ /*****************************************************************************/ static void Sta_GetAndShowInssOrderedByNumDegs (void) { extern const char *Txt_Institutions_by_number_of_degrees; extern const char *Txt_Degrees; MYSQL_RES *mysql_res; unsigned NumInss = 0; /***** Start box and table *****/ Box_StartBoxTable ("100%",Txt_Institutions_by_number_of_degrees,NULL, NULL,Box_NOT_CLOSABLE,2); /***** Get institutions ordered by number of degrees *****/ switch (Gbl.Scope.Current) { case Sco_SCOPE_SYS: NumInss = (unsigned) DB_QuerySELECT (&mysql_res,"can not get institutions", "SELECT centres.InsCod,COUNT(*) AS N" " FROM centres,degrees" " WHERE centres.CtrCod=degrees.CtrCod" " GROUP BY InsCod" " ORDER BY N DESC"); break; case Sco_SCOPE_CTY: NumInss = (unsigned) DB_QuerySELECT (&mysql_res,"can not get institutions", "SELECT centres.InsCod,COUNT(*) AS N" " FROM institutions,centres,degrees" " WHERE institutions.CtyCod=%ld" " AND institutions.InsCod=centres.InsCod" " AND centres.CtrCod=degrees.CtrCod" " GROUP BY centres.InsCod" " ORDER BY N DESC", Gbl.CurrentCty.Cty.CtyCod); break; case Sco_SCOPE_INS: case Sco_SCOPE_CTR: case Sco_SCOPE_DEG: case Sco_SCOPE_CRS: NumInss = (unsigned) DB_QuerySELECT (&mysql_res,"can not get institutions", "SELECT centres.InsCod,COUNT(*) AS N" " FROM centres,degrees" " WHERE centres.InsCod=%ld" " AND centres.CtrCod=degrees.CtrCod" " GROUP BY centres.InsCod" " ORDER BY N DESC", Gbl.CurrentIns.Ins.InsCod); break; default: Lay_WrongScopeExit (); break; } /***** Show institutions *****/ Sta_ShowInss (&mysql_res,NumInss,Txt_Degrees); /***** Free structure that stores the query result *****/ DB_FreeMySQLResult (&mysql_res); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /**** Get and show stats about institutions ordered by number of courses *****/ /*****************************************************************************/ static void Sta_GetAndShowInssOrderedByNumCrss (void) { extern const char *Txt_Institutions_by_number_of_courses; extern const char *Txt_Courses; MYSQL_RES *mysql_res; unsigned NumInss = 0; /***** Start box and table *****/ Box_StartBoxTable ("100%",Txt_Institutions_by_number_of_courses,NULL, NULL,Box_NOT_CLOSABLE,2); /***** Get institutions ordered by number of courses *****/ switch (Gbl.Scope.Current) { case Sco_SCOPE_SYS: NumInss = (unsigned) DB_QuerySELECT (&mysql_res,"can not get institutions", "SELECT centres.InsCod,COUNT(*) AS N" " FROM centres,degrees,courses" " WHERE centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " GROUP BY InsCod" " ORDER BY N DESC"); break; case Sco_SCOPE_CTY: NumInss = (unsigned) DB_QuerySELECT (&mysql_res,"can not get institutions", "SELECT centres.InsCod,COUNT(*) AS N" " FROM institutions,centres,degrees,courses" " WHERE institutions.CtyCod=%ld" " AND institutions.InsCod=centres.InsCod" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " GROUP BY centres.InsCod" " ORDER BY N DESC", Gbl.CurrentCty.Cty.CtyCod); break; case Sco_SCOPE_INS: case Sco_SCOPE_CTR: case Sco_SCOPE_DEG: case Sco_SCOPE_CRS: NumInss = (unsigned) DB_QuerySELECT (&mysql_res,"can not get institutions", "SELECT centres.InsCod,COUNT(*) AS N" " FROM centres,degrees,courses" " WHERE centres.InsCod=%ld" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " GROUP BY centres.InsCod" " ORDER BY N DESC", Gbl.CurrentIns.Ins.InsCod); break; default: Lay_WrongScopeExit (); break; } /***** Show institutions *****/ Sta_ShowInss (&mysql_res,NumInss,Txt_Courses); /***** Free structure that stores the query result *****/ DB_FreeMySQLResult (&mysql_res); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /***** Get and show stats about institutions ordered by users in courses *****/ /*****************************************************************************/ static void Sta_GetAndShowInssOrderedByNumUsrsInCrss (void) { extern const char *Txt_Institutions_by_number_of_users_in_courses; extern const char *Txt_Users; MYSQL_RES *mysql_res; unsigned NumInss = 0; /***** Start box and table *****/ Box_StartBoxTable ("100%",Txt_Institutions_by_number_of_users_in_courses,NULL, NULL,Box_NOT_CLOSABLE,2); /***** Get institutions ordered by number of users in courses *****/ switch (Gbl.Scope.Current) { case Sco_SCOPE_SYS: NumInss = (unsigned) DB_QuerySELECT (&mysql_res,"can not get institutions", "SELECT centres.InsCod,COUNT(DISTINCT crs_usr.UsrCod) AS N" " FROM centres,degrees,courses,crs_usr" " WHERE centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_usr.CrsCod" " GROUP BY InsCod" " ORDER BY N DESC"); break; case Sco_SCOPE_CTY: NumInss = (unsigned) DB_QuerySELECT (&mysql_res,"can not get institutions", "SELECT centres.InsCod,COUNT(DISTINCT crs_usr.UsrCod) AS N" " FROM institutions,centres,degrees,courses,crs_usr" " WHERE institutions.CtyCod=%ld" " AND institutions.InsCod=centres.InsCod" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_usr.CrsCod" " GROUP BY centres.InsCod" " ORDER BY N DESC", Gbl.CurrentCty.Cty.CtyCod); break; case Sco_SCOPE_INS: case Sco_SCOPE_CTR: case Sco_SCOPE_DEG: case Sco_SCOPE_CRS: NumInss = (unsigned) DB_QuerySELECT (&mysql_res,"can not get institutions", "SELECT centres.InsCod,COUNT(DISTINCT crs_usr.UsrCod) AS N" " FROM centres,degrees,courses,crs_usr" " WHERE centres.InsCod=%ld" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_usr.CrsCod" " GROUP BY centres.InsCod" " ORDER BY N DESC", Gbl.CurrentIns.Ins.InsCod); break; default: Lay_WrongScopeExit (); break; } /***** Show institutions *****/ Sta_ShowInss (&mysql_res,NumInss,Txt_Users); /***** Free structure that stores the query result *****/ DB_FreeMySQLResult (&mysql_res); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /************* Get and show stats about institutions ordered by **************/ /************* number of users who claim to belong to them **************/ /*****************************************************************************/ static void Sta_GetAndShowInssOrderedByNumUsrsWhoClaimToBelongToThem (void) { extern const char *Txt_Institutions_by_number_of_users_who_claim_to_belong_to_them; extern const char *Txt_Users; MYSQL_RES *mysql_res; unsigned NumInss; /***** Start box and table *****/ Box_StartBoxTable ("100%",Txt_Institutions_by_number_of_users_who_claim_to_belong_to_them, NULL, NULL,Box_NOT_CLOSABLE,2); /***** Get institutions ordered by number of users who claim to belong to them *****/ switch (Gbl.Scope.Current) { case Sco_SCOPE_SYS: NumInss = (unsigned) DB_QuerySELECT (&mysql_res,"can not get institutions", "SELECT InsCod,COUNT(*) AS N" " FROM usr_data" " WHERE InsCod>0" " GROUP BY InsCod" " ORDER BY N DESC"); break; case Sco_SCOPE_CTY: NumInss = (unsigned) DB_QuerySELECT (&mysql_res,"can not get institutions", "SELECT usr_data.InsCod,COUNT(*) AS N" " FROM institutions,usr_data" " WHERE institutions.CtyCod=%ld" " AND institutions.InsCod=usr_data.InsCod" " GROUP BY usr_data.InsCod" " ORDER BY N DESC", Gbl.CurrentCty.Cty.CtyCod); break; case Sco_SCOPE_INS: case Sco_SCOPE_CTR: case Sco_SCOPE_DEG: case Sco_SCOPE_CRS: NumInss = (unsigned) DB_QuerySELECT (&mysql_res,"can not get institutions", "SELECT InsCod,COUNT(*) AS N" " FROM usr_data" " WHERE InsCod=%ld" " GROUP BY InsCod" " ORDER BY N DESC", Gbl.CurrentIns.Ins.InsCod); break; default: Lay_WrongScopeExit (); NumInss = 0; // Not reached. Initialized to avoid warning. break; } /***** Show institutions *****/ Sta_ShowInss (&mysql_res,NumInss,Txt_Users); /***** Free structure that stores the query result *****/ DB_FreeMySQLResult (&mysql_res); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /****************** Get and show stats about institutions ********************/ /*****************************************************************************/ static void Sta_ShowInss (MYSQL_RES **mysql_res,unsigned NumInss, const char *TxtFigure) { extern const char *The_ClassForm[The_NUM_THEMES]; extern const char *Txt_Institution; unsigned NumIns; unsigned NumOrder; unsigned NumberLastRow; unsigned NumberThisRow; struct Instit Ins; bool TRIsOpen = false; /***** Query database *****/ if (NumInss) { /* Draw the classphoto/list */ switch (Gbl.Usrs.Me.ListType) { case Usr_LIST_AS_CLASS_PHOTO: /***** Draw institutions as a class photo *****/ for (NumIns = 0; NumIns < NumInss;) { if ((NumIns % Gbl.Usrs.ClassPhoto.Cols) == 0) { fprintf (Gbl.F.Out,""); TRIsOpen = true; } /***** Get institution data and statistic *****/ NumberThisRow = Sta_GetInsAndStat (&Ins,*mysql_res); /***** Write link to institution *****/ fprintf (Gbl.F.Out,"", The_ClassForm[Gbl.Prefs.Theme]); Ins_DrawInstitutionLogoWithLink (&Ins,40); fprintf (Gbl.F.Out,"
%u", NumberThisRow); /***** End user's cell *****/ fprintf (Gbl.F.Out,""); if ((++NumIns % Gbl.Usrs.ClassPhoto.Cols) == 0) { fprintf (Gbl.F.Out,""); TRIsOpen = false; } } if (TRIsOpen) fprintf (Gbl.F.Out,""); break; case Usr_LIST_AS_LISTING: /***** Draw institutions as a list *****/ fprintf (Gbl.F.Out,"" "" "" "%s" "" "" "%s" "" "", Txt_Institution, TxtFigure); for (NumIns = 1, NumOrder = 1, NumberLastRow = 0; NumIns <= NumInss; NumIns++) { /***** Get institution data and statistic *****/ NumberThisRow = Sta_GetInsAndStat (&Ins,*mysql_res); /***** Number of order *****/ if (NumberThisRow != NumberLastRow) NumOrder = NumIns; fprintf (Gbl.F.Out,"" "" "%u" "", NumOrder); /***** Write link to institution *****/ fprintf (Gbl.F.Out,"", The_ClassForm[Gbl.Prefs.Theme]); /* Icon and name of this institution */ Frm_StartForm (ActSeeInsInf); Ins_PutParamInsCod (Ins.InsCod); Frm_LinkFormSubmit (Ins.ShrtName,The_ClassForm[Gbl.Prefs.Theme],NULL); if (Gbl.Usrs.Listing.WithPhotos) { Log_DrawLogo (Sco_SCOPE_INS,Ins.InsCod,Ins.ShrtName, 40,NULL,true); fprintf (Gbl.F.Out," "); } fprintf (Gbl.F.Out,"%s",Ins.FullName); Frm_EndForm (); fprintf (Gbl.F.Out,""); /***** Write statistic *****/ fprintf (Gbl.F.Out,"" "%u" "" "", NumberThisRow); NumberLastRow = NumberThisRow; } break; default: break; } } } /*****************************************************************************/ /******************** Get institution data and statistic *********************/ /*****************************************************************************/ static unsigned Sta_GetInsAndStat (struct Instit *Ins,MYSQL_RES *mysql_res) { MYSQL_ROW row; unsigned NumberThisRow; /***** Get next institution *****/ row = mysql_fetch_row (mysql_res); /***** Get data of this institution (row[0]) *****/ Ins->InsCod = Str_ConvertStrCodToLongCod (row[0]); if (!Ins_GetDataOfInstitutionByCod (Ins,Ins_GET_BASIC_DATA)) Lay_ShowErrorAndExit ("Institution not found."); /***** Get statistic (row[1]) *****/ if (sscanf (row[1],"%u",&NumberThisRow) != 1) Lay_ShowErrorAndExit ("Error in statistic"); return NumberThisRow; } /*****************************************************************************/ /****************** Get and show stats about institutions ********************/ /*****************************************************************************/ static void Sta_GetAndShowDegreeTypesStats (void) { /***** Show statistic about number of degrees in each type of degree *****/ DT_SeeDegreeTypesInStaTab (); } /*****************************************************************************/ /********************* Show stats about exploration trees ********************/ /*****************************************************************************/ // TODO: add links to statistic static void Sta_GetAndShowFileBrowsersStats (void) { extern const char *Hlp_ANALYTICS_Figures_folders_and_files; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; extern const char *Txt_STAT_COURSE_FILE_ZONES[]; extern const char *Txt_Briefcases; static const Brw_FileBrowser_t StatCrsFileZones[Sta_NUM_STAT_CRS_FILE_ZONES] = { Brw_ADMI_DOC_CRS, Brw_ADMI_DOC_GRP, Brw_ADMI_TCH_CRS, Brw_ADMI_TCH_GRP, Brw_ADMI_SHR_CRS, Brw_ADMI_SHR_GRP, Brw_ADMI_MRK_CRS, Brw_ADMI_MRK_GRP, Brw_ADMI_ASG_USR, Brw_ADMI_WRK_USR, Brw_UNKNOWN, }; unsigned NumStat; /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_FOLDERS_AND_FILES],NULL, Hlp_ANALYTICS_Figures_folders_and_files,Box_NOT_CLOSABLE,2); /***** Write table heading *****/ Sta_WriteStatsExpTreesTableHead (); /***** Write sizes of course file zones *****/ for (NumStat = 0; NumStat < Sta_NUM_STAT_CRS_FILE_ZONES; NumStat++) Sta_WriteRowStatsFileBrowsers (StatCrsFileZones[NumStat],Txt_STAT_COURSE_FILE_ZONES[NumStat]); /***** Write table heading *****/ Sta_WriteStatsExpTreesTableHead (); /***** Write size of briefcases *****/ Sta_WriteRowStatsFileBrowsers (Brw_ADMI_BRF_USR,Txt_Briefcases); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /*********** Write table heading for stats of exploration trees **************/ /*****************************************************************************/ static void Sta_WriteStatsExpTreesTableHead (void) { extern const char *Txt_File_zones; extern const char *Txt_Courses; extern const char *Txt_Groups; extern const char *Txt_Users; extern const char *Txt_Max_levels; extern const char *Txt_Folders; extern const char *Txt_Files; extern const char *Txt_Size; extern const char *Txt_STAT_COURSE_FILE_ZONES[]; extern const char *Txt_crs; extern const char *Txt_usr; fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s/
%s" "" "" "%s/
%s" "" "" "%s/
%s" "" "" "%s/
%s" "" "" "%s/
%s" "" "" "%s/
%s" "" "", Txt_File_zones, Txt_Courses, Txt_Groups, Txt_Users, Txt_Max_levels, Txt_Folders, Txt_Files, Txt_Size, Txt_Folders,Txt_crs, Txt_Files,Txt_crs, Txt_Size,Txt_crs, Txt_Folders,Txt_usr, Txt_Files,Txt_usr, Txt_Size,Txt_usr); } /*****************************************************************************/ /*************** Write a row of stats of exploration trees *******************/ /*****************************************************************************/ static void Sta_WriteRowStatsFileBrowsers (Brw_FileBrowser_t FileZone,const char *NameOfFileZones) { char StrNumCrss[10 + 1]; char StrNumGrps[10 + 1]; char StrNumUsrs[10 + 1]; char StrNumFoldersPerCrs[10 + 1]; char StrNumFoldersPerUsr[10 + 1]; char StrNumFilesPerCrs[10 + 1]; char StrNumFilesPerUsr[10 + 1]; struct Sta_SizeOfFileZones SizeOfFileZones; char FileSizeStr[Fil_MAX_BYTES_FILE_SIZE_STRING + 1]; char FileSizePerCrsStr[Fil_MAX_BYTES_FILE_SIZE_STRING + 1]; char FileSizePerUsrStr[Fil_MAX_BYTES_FILE_SIZE_STRING + 1]; char *Class = (FileZone == Brw_UNKNOWN) ? "DAT_N_LINE_TOP" : "DAT"; Sta_GetSizeOfFileZoneFromDB (Gbl.Scope.Current,FileZone,&SizeOfFileZones); Fil_WriteFileSizeFull ((double) SizeOfFileZones.Size,FileSizeStr); if (SizeOfFileZones.NumCrss == -1) { Str_Copy (StrNumCrss,"-", 10); Str_Copy (StrNumFoldersPerCrs,"-", 10); Str_Copy (StrNumFilesPerCrs,"-", 10); Str_Copy (FileSizePerCrsStr,"-", Fil_MAX_BYTES_FILE_SIZE_STRING); } else { snprintf (StrNumCrss,sizeof (StrNumCrss), "%d", SizeOfFileZones.NumCrss); snprintf (StrNumFoldersPerCrs,sizeof (StrNumFoldersPerCrs), "%.1f", SizeOfFileZones.NumCrss ? (double) SizeOfFileZones.NumFolders / (double) SizeOfFileZones.NumCrss : 0.0); snprintf (StrNumFilesPerCrs,sizeof (StrNumFilesPerCrs), "%.1f", SizeOfFileZones.NumCrss ? (double) SizeOfFileZones.NumFiles / (double) SizeOfFileZones.NumCrss : 0.0); Fil_WriteFileSizeFull (SizeOfFileZones.NumCrss ? (double) SizeOfFileZones.Size / (double) SizeOfFileZones.NumCrss : 0.0, FileSizePerCrsStr); } if (SizeOfFileZones.NumGrps == -1) Str_Copy (StrNumGrps,"-", 10); else snprintf (StrNumGrps,sizeof (StrNumGrps), "%d", SizeOfFileZones.NumGrps); if (SizeOfFileZones.NumUsrs == -1) { Str_Copy (StrNumUsrs,"-", 10); Str_Copy (StrNumFoldersPerUsr,"-", 10); Str_Copy (StrNumFilesPerUsr,"-", 10); Str_Copy (FileSizePerUsrStr,"-", Fil_MAX_BYTES_FILE_SIZE_STRING); } else { snprintf (StrNumUsrs,sizeof (StrNumUsrs), "%d", SizeOfFileZones.NumUsrs); snprintf (StrNumFoldersPerUsr,sizeof (StrNumFoldersPerUsr), "%.1f", SizeOfFileZones.NumUsrs ? (double) SizeOfFileZones.NumFolders / (double) SizeOfFileZones.NumUsrs : 0.0); snprintf (StrNumFilesPerUsr,sizeof (StrNumFilesPerUsr), "%.1f", SizeOfFileZones.NumUsrs ? (double) SizeOfFileZones.NumFiles / (double) SizeOfFileZones.NumUsrs : 0.0); Fil_WriteFileSizeFull (SizeOfFileZones.NumUsrs ? (double) SizeOfFileZones.Size / (double) SizeOfFileZones.NumUsrs : 0.0, FileSizePerUsrStr); } fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%u" "" "" "%lu" "" "" "%lu" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "", Class,NameOfFileZones, Class,StrNumCrss, Class,StrNumGrps, Class,StrNumUsrs, Class,SizeOfFileZones.MaxLevels, Class,SizeOfFileZones.NumFolders, Class,SizeOfFileZones.NumFiles, Class,FileSizeStr, Class,StrNumFoldersPerCrs, Class,StrNumFilesPerCrs, Class,FileSizePerCrsStr, Class,StrNumFoldersPerUsr, Class,StrNumFilesPerUsr, Class,FileSizePerUsrStr); } /*****************************************************************************/ /**************** Get the size of a file zone from database ******************/ /*****************************************************************************/ static void Sta_GetSizeOfFileZoneFromDB (Sco_Scope_t Scope, Brw_FileBrowser_t FileBrowser, struct Sta_SizeOfFileZones *SizeOfFileZones) { MYSQL_RES *mysql_res; MYSQL_ROW row; /***** Get the size of a file browser *****/ switch (Scope) { /* Scope = the whole platform */ case Sco_SCOPE_SYS: switch (FileBrowser) { case Brw_UNKNOWN: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT COUNT(DISTINCT CrsCod)," "COUNT(DISTINCT GrpCod)-1," "-1," "MAX(NumLevels)," "SUM(NumFolders)," "SUM(NumFiles)," "SUM(TotalSize)" " FROM " "(" "SELECT Cod AS CrsCod," "-1 AS GrpCod," "NumLevels," "NumFolders," "NumFiles," "TotalSize" " FROM file_browser_size" " WHERE FileBrowser IN (%u,%u,%u,%u,%u,%u)" " UNION " "SELECT crs_grp_types.CrsCod," "file_browser_size.Cod AS GrpCod," "file_browser_size.NumLevels," "file_browser_size.NumFolders," "file_browser_size.NumFiles," "file_browser_size.TotalSize" " FROM crs_grp_types,crs_grp,file_browser_size" " WHERE crs_grp_types.GrpTypCod=crs_grp.GrpTypCod" " AND crs_grp.GrpCod=file_browser_size.Cod" " AND file_browser_size.FileBrowser IN (%u,%u,%u,%u)" ") AS sizes", (unsigned) Brw_ADMI_DOC_CRS, (unsigned) Brw_ADMI_TCH_CRS, (unsigned) Brw_ADMI_SHR_CRS, (unsigned) Brw_ADMI_ASG_USR, (unsigned) Brw_ADMI_WRK_USR, (unsigned) Brw_ADMI_MRK_CRS, (unsigned) Brw_ADMI_DOC_GRP, (unsigned) Brw_ADMI_TCH_GRP, (unsigned) Brw_ADMI_SHR_GRP, (unsigned) Brw_ADMI_MRK_GRP); break; case Brw_ADMI_DOC_CRS: case Brw_ADMI_TCH_CRS: case Brw_ADMI_SHR_CRS: case Brw_ADMI_MRK_CRS: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT COUNT(DISTINCT Cod)," "-1," "-1," "MAX(NumLevels)," "SUM(NumFolders)," "SUM(NumFiles)," "SUM(TotalSize)" " FROM file_browser_size" " WHERE FileBrowser=%u", (unsigned) FileBrowser); break; case Brw_ADMI_DOC_GRP: case Brw_ADMI_TCH_GRP: case Brw_ADMI_SHR_GRP: case Brw_ADMI_MRK_GRP: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT COUNT(DISTINCT crs_grp_types.CrsCod)," "COUNT(DISTINCT file_browser_size.Cod)," "-1," "MAX(file_browser_size.NumLevels)," "SUM(file_browser_size.NumFolders)," "SUM(file_browser_size.NumFiles)," "SUM(file_browser_size.TotalSize)" " FROM crs_grp_types,crs_grp,file_browser_size" " WHERE crs_grp_types.GrpTypCod=crs_grp.GrpTypCod" " AND crs_grp.GrpCod=file_browser_size.Cod" " AND file_browser_size.FileBrowser=%u", (unsigned) FileBrowser); break; case Brw_ADMI_ASG_USR: case Brw_ADMI_WRK_USR: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT COUNT(DISTINCT Cod)," "-1," "COUNT(DISTINCT ZoneUsrCod)," "MAX(NumLevels)," "SUM(NumFolders)," "SUM(NumFiles)," "SUM(TotalSize)" " FROM file_browser_size" " WHERE FileBrowser=%u", (unsigned) FileBrowser); break; case Brw_ADMI_BRF_USR: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT -1," "-1," "COUNT(DISTINCT ZoneUsrCod)," "MAX(NumLevels)," "SUM(NumFolders)," "SUM(NumFiles)," "SUM(TotalSize)" " FROM file_browser_size" " WHERE FileBrowser=%u", (unsigned) FileBrowser); break; default: Lay_ShowErrorAndExit ("Wrong file browser."); break; } break; /* Scope = the current country */ case Sco_SCOPE_CTY: switch (FileBrowser) { case Brw_UNKNOWN: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT COUNT(DISTINCT CrsCod)," "COUNT(DISTINCT GrpCod)-1," "-1," "MAX(NumLevels)," "SUM(NumFolders)," "SUM(NumFiles)," "SUM(TotalSize)" " FROM " "(" "SELECT file_browser_size.Cod AS CrsCod," "-1 AS GrpCod," // Course zones "file_browser_size.NumLevels," "file_browser_size.NumFolders," "file_browser_size.NumFiles," "file_browser_size.TotalSize" " FROM institutions,centres,degrees,courses,file_browser_size" " WHERE institutions.CtyCod=%ld" " AND institutions.InsCod=centres.InsCod" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=file_browser_size.Cod" " AND file_browser_size.FileBrowser IN (%u,%u,%u,%u,%u,%u)" " UNION " "SELECT crs_grp_types.CrsCod," "file_browser_size.Cod AS GrpCod," // Group zones "file_browser_size.NumLevels," "file_browser_size.NumFolders," "file_browser_size.NumFiles," "file_browser_size.TotalSize" " FROM institutions,centres,degrees,courses,crs_grp_types,crs_grp,file_browser_size" " WHERE institutions.CtyCod=%ld" " AND institutions.InsCod=centres.InsCod" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_grp_types.CrsCod" " AND crs_grp_types.GrpTypCod=crs_grp.GrpTypCod" " AND crs_grp.GrpCod=file_browser_size.Cod" " AND file_browser_size.FileBrowser IN (%u,%u,%u,%u)" ") AS sizes", Gbl.CurrentCty.Cty.CtyCod, (unsigned) Brw_ADMI_DOC_CRS, (unsigned) Brw_ADMI_TCH_CRS, (unsigned) Brw_ADMI_SHR_CRS, (unsigned) Brw_ADMI_ASG_USR, (unsigned) Brw_ADMI_WRK_USR, (unsigned) Brw_ADMI_MRK_CRS, Gbl.CurrentCty.Cty.CtyCod, (unsigned) Brw_ADMI_DOC_GRP, (unsigned) Brw_ADMI_TCH_GRP, (unsigned) Brw_ADMI_SHR_GRP, (unsigned) Brw_ADMI_MRK_GRP); break; case Brw_ADMI_DOC_CRS: case Brw_ADMI_TCH_CRS: case Brw_ADMI_SHR_CRS: case Brw_ADMI_MRK_CRS: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT COUNT(DISTINCT file_browser_size.Cod)," "-1," "-1," "MAX(file_browser_size.NumLevels)," "SUM(file_browser_size.NumFolders)," "SUM(file_browser_size.NumFiles)," "SUM(file_browser_size.TotalSize)" " FROM institutions,centres,degrees,courses,file_browser_size" " WHERE institutions.CtyCod=%ld" " AND institutions.InsCod=centres.InsCod" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=file_browser_size.Cod" " and file_browser_size.FileBrowser=%u", Gbl.CurrentCty.Cty.CtyCod,(unsigned) FileBrowser); break; case Brw_ADMI_DOC_GRP: case Brw_ADMI_TCH_GRP: case Brw_ADMI_SHR_GRP: case Brw_ADMI_MRK_GRP: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT COUNT(DISTINCT crs_grp_types.CrsCod)," "COUNT(DISTINCT file_browser_size.Cod)," "-1," "MAX(file_browser_size.NumLevels)," "SUM(file_browser_size.NumFolders)," "SUM(file_browser_size.NumFiles)," "SUM(file_browser_size.TotalSize)" " FROM institutions,centres,degrees,courses,crs_grp_types,crs_grp,file_browser_size" " WHERE institutions.CtyCod=%ld" " AND institutions.InsCod=centres.InsCod" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_grp_types.CrsCod" " AND crs_grp_types.GrpTypCod=crs_grp.GrpTypCod" " AND crs_grp.GrpCod=file_browser_size.Cod" " AND file_browser_size.FileBrowser=%u", Gbl.CurrentCty.Cty.CtyCod,(unsigned) FileBrowser); break; case Brw_ADMI_ASG_USR: case Brw_ADMI_WRK_USR: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT COUNT(DISTINCT file_browser_size.Cod)," "-1," "COUNT(DISTINCT file_browser_size.ZoneUsrCod)," "MAX(file_browser_size.NumLevels)," "SUM(file_browser_size.NumFolders)," "SUM(file_browser_size.NumFiles)," "SUM(file_browser_size.TotalSize)" " FROM institutions,centres,degrees,courses,file_browser_size" " WHERE institutions.CtyCod=%ld" " AND institutions.InsCod=centres.InsCod" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=file_browser_size.Cod" " AND file_browser_size.FileBrowser=%u", Gbl.CurrentCty.Cty.CtyCod,(unsigned) FileBrowser); break; case Brw_ADMI_BRF_USR: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT -1," "-1," "COUNT(DISTINCT file_browser_size.ZoneUsrCod)," "MAX(file_browser_size.NumLevels)," "SUM(file_browser_size.NumFolders)," "SUM(file_browser_size.NumFiles)," "SUM(file_browser_size.TotalSize)" " FROM institutions,centres,degrees,courses,crs_usr,file_browser_size" " WHERE institutions.CtyCod=%ld" " AND institutions.InsCod=centres.InsCod" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=file_browser_size.ZoneUsrCod" " AND file_browser_size.FileBrowser=%u", Gbl.CurrentCty.Cty.CtyCod,(unsigned) FileBrowser); break; default: Lay_ShowErrorAndExit ("Wrong file browser."); break; } break; /* Scope = the current institution */ case Sco_SCOPE_INS: switch (FileBrowser) { case Brw_UNKNOWN: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT COUNT(DISTINCT CrsCod)," "COUNT(DISTINCT GrpCod)-1," "-1," "MAX(NumLevels)," "SUM(NumFolders)," "SUM(NumFiles)," "SUM(TotalSize)" " FROM " "(" "SELECT file_browser_size.Cod AS CrsCod," "-1 AS GrpCod," // Course zones "file_browser_size.NumLevels," "file_browser_size.NumFolders," "file_browser_size.NumFiles," "file_browser_size.TotalSize" " FROM centres,degrees,courses,file_browser_size" " WHERE centres.InsCod=%ld" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=file_browser_size.Cod" " AND file_browser_size.FileBrowser IN (%u,%u,%u,%u,%u,%u)" " UNION " "SELECT crs_grp_types.CrsCod," "file_browser_size.Cod AS GrpCod," // Group zones "file_browser_size.NumLevels," "file_browser_size.NumFolders," "file_browser_size.NumFiles," "file_browser_size.TotalSize" " FROM centres,degrees,courses,crs_grp_types,crs_grp,file_browser_size" " WHERE centres.InsCod=%ld" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_grp_types.CrsCod" " AND crs_grp_types.GrpTypCod=crs_grp.GrpTypCod" " AND crs_grp.GrpCod=file_browser_size.Cod" " AND file_browser_size.FileBrowser IN (%u,%u,%u,%u)" ") AS sizes", Gbl.CurrentIns.Ins.InsCod, (unsigned) Brw_ADMI_DOC_CRS, (unsigned) Brw_ADMI_TCH_CRS, (unsigned) Brw_ADMI_SHR_CRS, (unsigned) Brw_ADMI_ASG_USR, (unsigned) Brw_ADMI_WRK_USR, (unsigned) Brw_ADMI_MRK_CRS, Gbl.CurrentIns.Ins.InsCod, (unsigned) Brw_ADMI_DOC_GRP, (unsigned) Brw_ADMI_TCH_GRP, (unsigned) Brw_ADMI_SHR_GRP, (unsigned) Brw_ADMI_MRK_GRP); break; case Brw_ADMI_DOC_CRS: case Brw_ADMI_TCH_CRS: case Brw_ADMI_SHR_CRS: case Brw_ADMI_MRK_CRS: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT COUNT(DISTINCT file_browser_size.Cod)," "-1," "-1," "MAX(file_browser_size.NumLevels)," "SUM(file_browser_size.NumFolders)," "SUM(file_browser_size.NumFiles)," "SUM(file_browser_size.TotalSize)" " FROM centres,degrees,courses,file_browser_size" " WHERE centres.InsCod=%ld" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=file_browser_size.Cod" " and file_browser_size.FileBrowser=%u", Gbl.CurrentIns.Ins.InsCod,(unsigned) FileBrowser); break; case Brw_ADMI_DOC_GRP: case Brw_ADMI_TCH_GRP: case Brw_ADMI_SHR_GRP: case Brw_ADMI_MRK_GRP: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT COUNT(DISTINCT crs_grp_types.CrsCod)," "COUNT(DISTINCT file_browser_size.Cod)," "-1," "MAX(file_browser_size.NumLevels)," "SUM(file_browser_size.NumFolders)," "SUM(file_browser_size.NumFiles)," "SUM(file_browser_size.TotalSize)" " FROM centres,degrees,courses,crs_grp_types,crs_grp,file_browser_size" " WHERE centres.InsCod=%ld" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_grp_types.CrsCod" " AND crs_grp_types.GrpTypCod=crs_grp.GrpTypCod" " AND crs_grp.GrpCod=file_browser_size.Cod" " AND file_browser_size.FileBrowser=%u", Gbl.CurrentIns.Ins.InsCod,(unsigned) FileBrowser); break; case Brw_ADMI_ASG_USR: case Brw_ADMI_WRK_USR: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT COUNT(DISTINCT file_browser_size.Cod)," "-1," "COUNT(DISTINCT file_browser_size.ZoneUsrCod)," "MAX(file_browser_size.NumLevels)," "SUM(file_browser_size.NumFolders)," "SUM(file_browser_size.NumFiles)," "SUM(file_browser_size.TotalSize)" " FROM centres,degrees,courses,file_browser_size" " WHERE centres.InsCod=%ld" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=file_browser_size.Cod" " AND file_browser_size.FileBrowser=%u", Gbl.CurrentIns.Ins.InsCod,(unsigned) FileBrowser); break; case Brw_ADMI_BRF_USR: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT -1," "-1," "COUNT(DISTINCT file_browser_size.ZoneUsrCod)," "MAX(file_browser_size.NumLevels)," "SUM(file_browser_size.NumFolders)," "SUM(file_browser_size.NumFiles)," "SUM(file_browser_size.TotalSize)" " FROM centres,degrees,courses,crs_usr,file_browser_size" " WHERE centres.InsCod=%ld" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=file_browser_size.ZoneUsrCod" " AND file_browser_size.FileBrowser=%u", Gbl.CurrentIns.Ins.InsCod,(unsigned) FileBrowser); break; default: Lay_ShowErrorAndExit ("Wrong file browser."); break; } break; /* Scope = the current centre */ case Sco_SCOPE_CTR: switch (FileBrowser) { case Brw_UNKNOWN: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT COUNT(DISTINCT CrsCod)," "COUNT(DISTINCT GrpCod)-1," "-1," "MAX(NumLevels)," "SUM(NumFolders)," "SUM(NumFiles)," "SUM(TotalSize)" " FROM " "(" "SELECT file_browser_size.Cod AS CrsCod," "-1 AS GrpCod," // Course zones "file_browser_size.NumLevels," "file_browser_size.NumFolders," "file_browser_size.NumFiles," "file_browser_size.TotalSize" " FROM degrees,courses,file_browser_size" " WHERE degrees.CtrCod=%ld" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=file_browser_size.Cod" " AND file_browser_size.FileBrowser IN (%u,%u,%u,%u,%u,%u)" " UNION " "SELECT crs_grp_types.CrsCod," "file_browser_size.Cod AS GrpCod," // Group zones "file_browser_size.NumLevels," "file_browser_size.NumFolders," "file_browser_size.NumFiles," "file_browser_size.TotalSize" " FROM degrees,courses,crs_grp_types,crs_grp,file_browser_size" " WHERE degrees.CtrCod=%ld" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_grp_types.CrsCod" " AND crs_grp_types.GrpTypCod=crs_grp.GrpTypCod" " AND crs_grp.GrpCod=file_browser_size.Cod" " AND file_browser_size.FileBrowser IN (%u,%u,%u,%u)" ") AS sizes", Gbl.CurrentCtr.Ctr.CtrCod, (unsigned) Brw_ADMI_DOC_CRS, (unsigned) Brw_ADMI_TCH_CRS, (unsigned) Brw_ADMI_SHR_CRS, (unsigned) Brw_ADMI_ASG_USR, (unsigned) Brw_ADMI_WRK_USR, (unsigned) Brw_ADMI_MRK_CRS, Gbl.CurrentCtr.Ctr.CtrCod, (unsigned) Brw_ADMI_DOC_GRP, (unsigned) Brw_ADMI_TCH_GRP, (unsigned) Brw_ADMI_SHR_GRP, (unsigned) Brw_ADMI_MRK_GRP); break; case Brw_ADMI_DOC_CRS: case Brw_ADMI_TCH_CRS: case Brw_ADMI_SHR_CRS: case Brw_ADMI_MRK_CRS: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT COUNT(DISTINCT file_browser_size.Cod)," "-1," "-1," "MAX(file_browser_size.NumLevels)," "SUM(file_browser_size.NumFolders)," "SUM(file_browser_size.NumFiles)," "SUM(file_browser_size.TotalSize)" " FROM degrees,courses,file_browser_size" " WHERE degrees.CtrCod=%ld" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=file_browser_size.Cod" " AND file_browser_size.FileBrowser=%u", Gbl.CurrentCtr.Ctr.CtrCod,(unsigned) FileBrowser); break; case Brw_ADMI_DOC_GRP: case Brw_ADMI_TCH_GRP: case Brw_ADMI_SHR_GRP: case Brw_ADMI_MRK_GRP: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT COUNT(DISTINCT crs_grp_types.CrsCod)," "COUNT(DISTINCT file_browser_size.Cod)," "-1," "MAX(file_browser_size.NumLevels)," "SUM(file_browser_size.NumFolders)," "SUM(file_browser_size.NumFiles)," "SUM(file_browser_size.TotalSize)" " FROM degrees,courses,crs_grp_types,crs_grp,file_browser_size" " WHERE degrees.CtrCod=%ld" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_grp_types.CrsCod" " AND crs_grp_types.GrpTypCod=crs_grp.GrpTypCod" " AND crs_grp.GrpCod=file_browser_size.Cod" " AND file_browser_size.FileBrowser=%u", Gbl.CurrentCtr.Ctr.CtrCod,(unsigned) FileBrowser); break; case Brw_ADMI_ASG_USR: case Brw_ADMI_WRK_USR: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT COUNT(DISTINCT file_browser_size.Cod)," "-1," "COUNT(DISTINCT file_browser_size.ZoneUsrCod)," "MAX(file_browser_size.NumLevels)," "SUM(file_browser_size.NumFolders)," "SUM(file_browser_size.NumFiles)," "SUM(file_browser_size.TotalSize)" " FROM degrees,courses,file_browser_size" " WHERE degrees.CtrCod=%ld" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=file_browser_size.Cod" " AND file_browser_size.FileBrowser=%u", Gbl.CurrentCtr.Ctr.CtrCod,(unsigned) FileBrowser); break; case Brw_ADMI_BRF_USR: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT -1," "-1," "COUNT(DISTINCT file_browser_size.ZoneUsrCod)," "MAX(file_browser_size.NumLevels)," "SUM(file_browser_size.NumFolders)," "SUM(file_browser_size.NumFiles)," "SUM(file_browser_size.TotalSize)" " FROM degrees,courses,crs_usr,file_browser_size" " WHERE degrees.CtrCod=%ld" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=file_browser_size.ZoneUsrCod" " AND file_browser_size.FileBrowser=%u", Gbl.CurrentCtr.Ctr.CtrCod,(unsigned) FileBrowser); break; default: Lay_ShowErrorAndExit ("Wrong file browser."); break; } break; /* Scope = the current degree */ case Sco_SCOPE_DEG: switch (FileBrowser) { case Brw_UNKNOWN: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT COUNT(DISTINCT CrsCod)," "COUNT(DISTINCT GrpCod)-1," "-1," "MAX(NumLevels)," "SUM(NumFolders)," "SUM(NumFiles)," "SUM(TotalSize)" " FROM " "(" "SELECT file_browser_size.Cod AS CrsCod," "-1 AS GrpCod," // Course zones "file_browser_size.NumLevels," "file_browser_size.NumFolders," "file_browser_size.NumFiles," "file_browser_size.TotalSize" " FROM courses,file_browser_size" " WHERE courses.DegCod=%ld" " AND courses.CrsCod=file_browser_size.Cod" " AND file_browser_size.FileBrowser IN (%u,%u,%u,%u,%u,%u)" " UNION " "SELECT crs_grp_types.CrsCod," "file_browser_size.Cod AS GrpCod," // Group zones "file_browser_size.NumLevels," "file_browser_size.NumFolders," "file_browser_size.NumFiles," "file_browser_size.TotalSize" " FROM courses,crs_grp_types,crs_grp,file_browser_size" " WHERE courses.DegCod=%ld" " AND courses.CrsCod=crs_grp_types.CrsCod" " AND crs_grp_types.GrpTypCod=crs_grp.GrpTypCod" " AND crs_grp.GrpCod=file_browser_size.Cod" " AND file_browser_size.FileBrowser IN (%u,%u,%u,%u)" ") AS sizes", Gbl.CurrentDeg.Deg.DegCod, (unsigned) Brw_ADMI_DOC_CRS, (unsigned) Brw_ADMI_TCH_CRS, (unsigned) Brw_ADMI_SHR_CRS, (unsigned) Brw_ADMI_ASG_USR, (unsigned) Brw_ADMI_WRK_USR, (unsigned) Brw_ADMI_MRK_CRS, Gbl.CurrentDeg.Deg.DegCod, (unsigned) Brw_ADMI_DOC_GRP, (unsigned) Brw_ADMI_TCH_GRP, (unsigned) Brw_ADMI_SHR_GRP, (unsigned) Brw_ADMI_MRK_GRP); break; case Brw_ADMI_DOC_CRS: case Brw_ADMI_TCH_CRS: case Brw_ADMI_SHR_CRS: case Brw_ADMI_MRK_CRS: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT COUNT(DISTINCT file_browser_size.Cod)," "-1," "-1," "MAX(file_browser_size.NumLevels)," "SUM(file_browser_size.NumFolders)," "SUM(file_browser_size.NumFiles)," "SUM(file_browser_size.TotalSize)" " FROM courses,file_browser_size" " WHERE courses.DegCod=%ld" " AND courses.CrsCod=file_browser_size.Cod" " AND file_browser_size.FileBrowser=%u", Gbl.CurrentDeg.Deg.DegCod,(unsigned) FileBrowser); break; case Brw_ADMI_DOC_GRP: case Brw_ADMI_TCH_GRP: case Brw_ADMI_SHR_GRP: case Brw_ADMI_MRK_GRP: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT COUNT(DISTINCT crs_grp_types.CrsCod)," "COUNT(DISTINCT file_browser_size.Cod)," "-1," "MAX(file_browser_size.NumLevels)," "SUM(file_browser_size.NumFolders)," "SUM(file_browser_size.NumFiles)," "SUM(file_browser_size.TotalSize)" " FROM courses,crs_grp_types,crs_grp,file_browser_size" " WHERE courses.DegCod=%ld" " AND courses.CrsCod=crs_grp_types.CrsCod" " AND crs_grp_types.GrpTypCod=crs_grp.GrpTypCod" " AND crs_grp.GrpCod=file_browser_size.Cod" " AND file_browser_size.FileBrowser=%u", Gbl.CurrentDeg.Deg.DegCod,(unsigned) FileBrowser); break; case Brw_ADMI_ASG_USR: case Brw_ADMI_WRK_USR: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT COUNT(DISTINCT file_browser_size.Cod)," "-1," "COUNT(DISTINCT file_browser_size.ZoneUsrCod)," "MAX(file_browser_size.NumLevels)," "SUM(file_browser_size.NumFolders)," "SUM(file_browser_size.NumFiles)," "SUM(file_browser_size.TotalSize)" " FROM courses,file_browser_size" " WHERE courses.DegCod=%ld" " AND courses.CrsCod=file_browser_size.Cod" " AND file_browser_size.FileBrowser=%u", Gbl.CurrentDeg.Deg.DegCod,(unsigned) FileBrowser); break; case Brw_ADMI_BRF_USR: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT -1," "-1," "COUNT(DISTINCT file_browser_size.ZoneUsrCod)," "MAX(file_browser_size.NumLevels)," "SUM(file_browser_size.NumFolders)," "SUM(file_browser_size.NumFiles)," "SUM(file_browser_size.TotalSize)" " FROM courses,crs_usr,file_browser_size" " WHERE courses.DegCod=%ld" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=file_browser_size.ZoneUsrCod" " AND file_browser_size.FileBrowser=%u", Gbl.CurrentDeg.Deg.DegCod,(unsigned) FileBrowser); break; default: Lay_ShowErrorAndExit ("Wrong file browser."); break; } break; /* Scope = the current course */ case Sco_SCOPE_CRS: switch (FileBrowser) { case Brw_UNKNOWN: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT COUNT(DISTINCT CrsCod)," "COUNT(DISTINCT GrpCod)-1," "-1," "MAX(NumLevels)," "SUM(NumFolders)," "SUM(NumFiles)," "SUM(TotalSize)" " FROM " "(" "SELECT Cod AS CrsCod," "-1 AS GrpCod," // Course zones "NumLevels," "NumFolders," "NumFiles," "TotalSize" " FROM file_browser_size" " WHERE Cod=%ld" " AND FileBrowser IN (%u,%u,%u,%u,%u,%u)" " UNION " "SELECT crs_grp_types.CrsCod," "file_browser_size.Cod AS GrpCod," // Group zones "file_browser_size.NumLevels," "file_browser_size.NumFolders," "file_browser_size.NumFiles," "file_browser_size.TotalSize" " FROM crs_grp_types,crs_grp,file_browser_size" " WHERE crs_grp_types.CrsCod=%ld" " AND crs_grp_types.GrpTypCod=crs_grp.GrpTypCod" " AND crs_grp.GrpCod=file_browser_size.Cod" " AND file_browser_size.FileBrowser IN (%u,%u,%u,%u)" ") AS sizes", Gbl.CurrentCrs.Crs.CrsCod, (unsigned) Brw_ADMI_DOC_CRS, (unsigned) Brw_ADMI_TCH_CRS, (unsigned) Brw_ADMI_SHR_CRS, (unsigned) Brw_ADMI_ASG_USR, (unsigned) Brw_ADMI_WRK_USR, (unsigned) Brw_ADMI_MRK_CRS, Gbl.CurrentCrs.Crs.CrsCod, (unsigned) Brw_ADMI_DOC_GRP, (unsigned) Brw_ADMI_TCH_GRP, (unsigned) Brw_ADMI_SHR_GRP, (unsigned) Brw_ADMI_MRK_GRP); break; case Brw_ADMI_DOC_CRS: case Brw_ADMI_TCH_CRS: case Brw_ADMI_SHR_CRS: case Brw_ADMI_MRK_CRS: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT 1," "-1," "-1," "MAX(NumLevels)," "SUM(NumFolders)," "SUM(NumFiles)," "SUM(TotalSize)" " FROM file_browser_size" " WHERE Cod=%ld AND FileBrowser=%u", Gbl.CurrentCrs.Crs.CrsCod,(unsigned) FileBrowser); break; case Brw_ADMI_DOC_GRP: case Brw_ADMI_TCH_GRP: case Brw_ADMI_SHR_GRP: case Brw_ADMI_MRK_GRP: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT COUNT(DISTINCT crs_grp_types.CrsCod)," "COUNT(DISTINCT file_browser_size.Cod)," "-1," "MAX(file_browser_size.NumLevels)," "SUM(file_browser_size.NumFolders)," "SUM(file_browser_size.NumFiles)," "SUM(file_browser_size.TotalSize)" " FROM crs_grp_types,crs_grp,file_browser_size" " WHERE crs_grp_types.CrsCod=%ld" " AND crs_grp_types.GrpTypCod=crs_grp.GrpTypCod" " AND crs_grp.GrpCod=file_browser_size.Cod" " AND file_browser_size.FileBrowser=%u", Gbl.CurrentCrs.Crs.CrsCod,(unsigned) FileBrowser); break; case Brw_ADMI_ASG_USR: case Brw_ADMI_WRK_USR: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT 1," "-1," "COUNT(DISTINCT ZoneUsrCod)," "MAX(NumLevels)," "SUM(NumFolders)," "SUM(NumFiles)," "SUM(TotalSize)" " FROM file_browser_size" " WHERE Cod=%ld AND FileBrowser=%u", Gbl.CurrentCrs.Crs.CrsCod,(unsigned) FileBrowser); break; case Brw_ADMI_BRF_USR: DB_QuerySELECT (&mysql_res,"can not get size of a file browser", "SELECT -1," "-1," "COUNT(DISTINCT file_browser_size.ZoneUsrCod)," "MAX(file_browser_size.NumLevels)," "SUM(file_browser_size.NumFolders)," "SUM(file_browser_size.NumFiles)," "SUM(file_browser_size.TotalSize)" " FROM crs_usr,file_browser_size" " WHERE crs_usr.CrsCod=%ld" " AND crs_usr.UsrCod=file_browser_size.ZoneUsrCod" " AND file_browser_size.FileBrowser=%u", Gbl.CurrentCrs.Crs.CrsCod,(unsigned) FileBrowser); break; default: Lay_ShowErrorAndExit ("Wrong file browser."); break; } break; default: Lay_WrongScopeExit (); break; } /* Get row */ row = mysql_fetch_row (mysql_res); /* Reset default values to zero */ SizeOfFileZones->NumCrss = SizeOfFileZones->NumUsrs = 0; SizeOfFileZones->MaxLevels = 0; SizeOfFileZones->NumFolders = SizeOfFileZones->NumFiles = 0; SizeOfFileZones->Size = 0; /* Get number of courses (row[0]) */ if (row[0]) if (sscanf (row[0],"%d",&(SizeOfFileZones->NumCrss)) != 1) Lay_ShowErrorAndExit ("Error when getting number of courses."); /* Get number of groups (row[1]) */ if (row[1]) if (sscanf (row[1],"%d",&(SizeOfFileZones->NumGrps)) != 1) Lay_ShowErrorAndExit ("Error when getting number of groups."); /* Get number of users (row[2]) */ if (row[2]) if (sscanf (row[2],"%d",&(SizeOfFileZones->NumUsrs)) != 1) Lay_ShowErrorAndExit ("Error when getting number of users."); /* Get maximum number of levels (row[3]) */ if (row[3]) if (sscanf (row[3],"%u",&(SizeOfFileZones->MaxLevels)) != 1) Lay_ShowErrorAndExit ("Error when getting maximum number of levels."); /* Get number of folders (row[4]) */ if (row[4]) if (sscanf (row[4],"%lu",&(SizeOfFileZones->NumFolders)) != 1) Lay_ShowErrorAndExit ("Error when getting number of folders."); /* Get number of files (row[5]) */ if (row[5]) if (sscanf (row[5],"%lu",&(SizeOfFileZones->NumFiles)) != 1) Lay_ShowErrorAndExit ("Error when getting number of files."); /* Get total size (row[6]) */ if (row[6]) if (sscanf (row[6],"%llu",&(SizeOfFileZones->Size)) != 1) Lay_ShowErrorAndExit ("Error when getting toal size."); /* Free structure that stores the query result */ DB_FreeMySQLResult (&mysql_res); } /*****************************************************************************/ /************ Show stats about Open Educational Resources (OERs) *************/ /*****************************************************************************/ static void Sta_GetAndShowOERsStats (void) { extern const char *Hlp_ANALYTICS_Figures_open_educational_resources_oer; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; extern const char *Txt_License; extern const char *Txt_No_of_private_files; extern const char *Txt_No_of_public_files; extern const char *Txt_LICENSES[Brw_NUM_LICENSES]; Brw_License_t License; unsigned long NumFiles[2]; /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_OER],NULL, Hlp_ANALYTICS_Figures_open_educational_resources_oer,Box_NOT_CLOSABLE,2); /***** Write table heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_License, Txt_No_of_private_files, Txt_No_of_public_files); for (License = 0; License < Brw_NUM_LICENSES; License++) { Sta_GetNumberOfOERsFromDB (Gbl.Scope.Current,License,NumFiles); fprintf (Gbl.F.Out,"" "" "%s" "" "" "%lu" "" "" "%lu" "" "", Txt_LICENSES[License], NumFiles[0], NumFiles[1]); } /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /**************** Get the size of a file zone from database ******************/ /*****************************************************************************/ static void Sta_GetNumberOfOERsFromDB (Sco_Scope_t Scope,Brw_License_t License,unsigned long NumFiles[2]) { MYSQL_RES *mysql_res; MYSQL_ROW row; unsigned NumRows = 0; // Initialized to avoid warning unsigned NumRow; unsigned Public; /***** Get the size of a file browser *****/ switch (Scope) { case Sco_SCOPE_SYS: NumRows = (unsigned) DB_QuerySELECT (&mysql_res,"can not get number of OERs", "SELECT Public,COUNT(*)" " FROM files" " WHERE License=%u" " GROUP BY Public", (unsigned) License); break; case Sco_SCOPE_CTY: NumRows = (unsigned) DB_QuerySELECT (&mysql_res,"can not get number of OERs", "SELECT files.Public,COUNT(*)" " FROM institutions,centres,degrees,courses,files" " WHERE institutions.CtyCod=%ld" " AND institutions.InsCod=centres.InsCod" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=files.Cod" " AND files.FileBrowser IN (%u,%u)" " AND files.License=%u" " GROUP BY files.Public", Gbl.CurrentCty.Cty.CtyCod, (unsigned) Brw_ADMI_DOC_CRS, (unsigned) Brw_ADMI_SHR_CRS, (unsigned) License); break; case Sco_SCOPE_INS: NumRows = (unsigned) DB_QuerySELECT (&mysql_res,"can not get number of OERs", "SELECT files.Public,COUNT(*)" " FROM centres,degrees,courses,files" " WHERE centres.InsCod=%ld" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=files.Cod" " AND files.FileBrowser IN (%u,%u)" " AND files.License=%u" " GROUP BY files.Public", Gbl.CurrentIns.Ins.InsCod, (unsigned) Brw_ADMI_DOC_CRS, (unsigned) Brw_ADMI_SHR_CRS, (unsigned) License); break; case Sco_SCOPE_CTR: NumRows = (unsigned) DB_QuerySELECT (&mysql_res,"can not get number of OERs", "SELECT files.Public,COUNT(*)" " FROM degrees,courses,files" " WHERE degrees.CtrCod=%ld" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=files.Cod" " AND files.FileBrowser IN (%u,%u)" " AND files.License=%u" " GROUP BY files.Public", Gbl.CurrentCtr.Ctr.CtrCod, (unsigned) Brw_ADMI_DOC_CRS, (unsigned) Brw_ADMI_SHR_CRS, (unsigned) License); break; case Sco_SCOPE_DEG: NumRows = (unsigned) DB_QuerySELECT (&mysql_res,"can not get number of OERs", "SELECT files.Public,COUNT(*)" " FROM courses,files" " WHERE courses.DegCod=%ld" " AND courses.CrsCod=files.Cod" " AND files.FileBrowser IN (%u,%u)" " AND files.License=%u" " GROUP BY files.Public", Gbl.CurrentDeg.Deg.DegCod, (unsigned) Brw_ADMI_DOC_CRS, (unsigned) Brw_ADMI_SHR_CRS, (unsigned) License); break; case Sco_SCOPE_CRS: NumRows = (unsigned) DB_QuerySELECT (&mysql_res,"can not get number of OERs", "SELECT Public,COUNT(*)" " FROM files" " WHERE Cod=%ld" " AND FileBrowser IN (%u,%u)" " AND License=%u" " GROUP BY Public", Gbl.CurrentCrs.Crs.CrsCod, (unsigned) Brw_ADMI_DOC_CRS, (unsigned) Brw_ADMI_SHR_CRS, (unsigned) License); break; default: Lay_WrongScopeExit (); break; } /* Reset values to zero */ NumFiles[0] = NumFiles[1] = 0L; for (NumRow = 0; NumRow < NumRows; NumRow++) { /* Get row */ row = mysql_fetch_row (mysql_res); /* Get if public (row[0]) */ Public = (row[0][0] == 'Y') ? 1 : 0; /* Get number of files (row[1]) */ if (sscanf (row[1],"%lu",&NumFiles[Public]) != 1) Lay_ShowErrorAndExit ("Error when getting number of files."); } /* Free structure that stores the query result */ DB_FreeMySQLResult (&mysql_res); } /*****************************************************************************/ /************************ Show stats about assignments ***********************/ /*****************************************************************************/ static void Sta_GetAndShowAssignmentsStats (void) { extern const char *Hlp_ANALYTICS_Figures_assignments; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; extern const char *Txt_Number_of_BR_assignments; extern const char *Txt_Number_of_BR_courses_with_BR_assignments; extern const char *Txt_Average_number_BR_of_ASSIG_BR_per_course; extern const char *Txt_Number_of_BR_notifications; unsigned NumAssignments; unsigned NumNotif; unsigned NumCoursesWithAssignments = 0; float NumAssignmentsPerCourse = 0.0; /***** Get the number of assignments from this location *****/ if ((NumAssignments = Asg_GetNumAssignments (Gbl.Scope.Current,&NumNotif))) if ((NumCoursesWithAssignments = Asg_GetNumCoursesWithAssignments (Gbl.Scope.Current)) != 0) NumAssignmentsPerCourse = (float) NumAssignments / (float) NumCoursesWithAssignments; /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_ASSIGNMENTS],NULL, Hlp_ANALYTICS_Figures_assignments,Box_NOT_CLOSABLE,2); /***** Write table heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_Number_of_BR_assignments, Txt_Number_of_BR_courses_with_BR_assignments, Txt_Average_number_BR_of_ASSIG_BR_per_course, Txt_Number_of_BR_notifications); /***** Write number of assignments *****/ fprintf (Gbl.F.Out,"" "" "%u" "" "" "%u" "" "" "%.2f" "" "" "%u" "" "", NumAssignments, NumCoursesWithAssignments, NumAssignmentsPerCourse, NumNotif); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /************************* Show stats about projects *************************/ /*****************************************************************************/ static void Sta_GetAndShowProjectsStats (void) { extern const char *Hlp_ANALYTICS_Figures_projects; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; extern const char *Txt_Number_of_BR_projects; extern const char *Txt_Number_of_BR_courses_with_BR_projects; extern const char *Txt_Average_number_BR_of_projects_BR_per_course; unsigned NumProjects; unsigned NumCoursesWithProjects = 0; float NumProjectsPerCourse = 0.0; /***** Get the number of projects from this location *****/ if ((NumProjects = Prj_GetNumProjects (Gbl.Scope.Current))) if ((NumCoursesWithProjects = Prj_GetNumCoursesWithProjects (Gbl.Scope.Current)) != 0) NumProjectsPerCourse = (float) NumProjects / (float) NumCoursesWithProjects; /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_PROJECTS],NULL, Hlp_ANALYTICS_Figures_projects,Box_NOT_CLOSABLE,2); /***** Write table heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_Number_of_BR_projects, Txt_Number_of_BR_courses_with_BR_projects, Txt_Average_number_BR_of_projects_BR_per_course); /***** Write number of projects *****/ fprintf (Gbl.F.Out,"" "" "%u" "" "" "%u" "" "" "%.2f" "" "", NumProjects, NumCoursesWithProjects, NumProjectsPerCourse); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /********************** Show stats about test questions **********************/ /*****************************************************************************/ static void Sta_GetAndShowTestsStats (void) { extern const char *Hlp_ANALYTICS_Figures_tests; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; extern const char *Txt_Type_of_BR_answers; extern const char *Txt_Number_of_BR_courses_BR_with_test_BR_questions; extern const char *Txt_Number_of_BR_courses_with_BR_exportable_BR_test_BR_questions; extern const char *Txt_Number_BR_of_test_BR_questions; extern const char *Txt_Average_BR_number_BR_of_test_BR_questions_BR_per_course; extern const char *Txt_Number_of_BR_times_that_BR_questions_BR_have_been_BR_responded; extern const char *Txt_Average_BR_number_of_BR_times_that_BR_questions_BR_have_been_BR_responded_BR_per_course; extern const char *Txt_Average_BR_number_of_BR_times_that_BR_a_question_BR_has_been_BR_responded; extern const char *Txt_Average_BR_score_BR_per_question_BR_from_0_to_1; extern const char *Txt_TST_STR_ANSWER_TYPES[Tst_NUM_ANS_TYPES]; extern const char *Txt_Total; Tst_AnswerType_t AnsType; struct Tst_Stats Stats; /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_TESTS],NULL, Hlp_ANALYTICS_Figures_tests,Box_NOT_CLOSABLE,2); /***** Write table heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_Type_of_BR_answers, Txt_Number_of_BR_courses_BR_with_test_BR_questions, Txt_Number_of_BR_courses_with_BR_exportable_BR_test_BR_questions, Txt_Number_BR_of_test_BR_questions, Txt_Average_BR_number_BR_of_test_BR_questions_BR_per_course, Txt_Number_of_BR_times_that_BR_questions_BR_have_been_BR_responded, Txt_Average_BR_number_of_BR_times_that_BR_questions_BR_have_been_BR_responded_BR_per_course, Txt_Average_BR_number_of_BR_times_that_BR_a_question_BR_has_been_BR_responded, Txt_Average_BR_score_BR_per_question_BR_from_0_to_1); for (AnsType = (Tst_AnswerType_t) 0; AnsType < Tst_NUM_ANS_TYPES; AnsType++) { /***** Get the stats about test questions from this location *****/ Tst_GetTestStats (AnsType,&Stats); /***** Write number of assignments *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%u" "" "" "%u (%.1f%%)" "" "" "%u" "" "" "%.2f" "" "" "%lu" "" "" "%.2f" "" "" "%.2f" "" "" "%.2f" "" "", Txt_TST_STR_ANSWER_TYPES[AnsType], Stats.NumCoursesWithQuestions, Stats.NumCoursesWithPluggableQuestions, Stats.NumCoursesWithQuestions ? (float) Stats.NumCoursesWithPluggableQuestions * 100.0 / (float) Stats.NumCoursesWithQuestions : 0.0, Stats.NumQsts, Stats.AvgQstsPerCourse, Stats.NumHits, Stats.AvgHitsPerCourse, Stats.AvgHitsPerQuestion, Stats.AvgScorePerQuestion); } /***** Get the stats about test questions from this location *****/ Tst_GetTestStats (Tst_ANS_ALL,&Stats); /***** Write number of assignments *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%u" "" "" "%u (%.1f%%)" "" "" "%u" "" "" "%.2f" "" "" "%lu" "" "" "%.2f" "" "" "%.2f" "" "" "%.2f" "" "", Txt_Total, Stats.NumCoursesWithQuestions, Stats.NumCoursesWithPluggableQuestions, Stats.NumCoursesWithQuestions ? (float) Stats.NumCoursesWithPluggableQuestions * 100.0 / (float) Stats.NumCoursesWithQuestions : 0.0, Stats.NumQsts, Stats.AvgQstsPerCourse, Stats.NumHits, Stats.AvgHitsPerCourse, Stats.AvgHitsPerQuestion, Stats.AvgScorePerQuestion); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /*************************** Show stats about games **************************/ /*****************************************************************************/ static void Sta_GetAndShowGamesStats (void) { extern const char *Hlp_ANALYTICS_Figures_games; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; extern const char *Txt_Number_of_BR_games; extern const char *Txt_Number_of_BR_courses_with_BR_games; extern const char *Txt_Average_number_BR_of_games_BR_per_course; unsigned NumGames; unsigned NumCoursesWithGames = 0; float NumGamesPerCourse = 0.0; /***** Get the number of games from this location *****/ if ((NumGames = Gam_GetNumGames (Gbl.Scope.Current))) if ((NumCoursesWithGames = Gam_GetNumCoursesWithGames (Gbl.Scope.Current)) != 0) NumGamesPerCourse = (float) NumGames / (float) NumCoursesWithGames; /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_GAMES],NULL, Hlp_ANALYTICS_Figures_games,Box_NOT_CLOSABLE,2); /***** Write table heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_Number_of_BR_games, Txt_Number_of_BR_courses_with_BR_games, Txt_Average_number_BR_of_games_BR_per_course); /***** Write number of games *****/ fprintf (Gbl.F.Out,"" "" "%u" "" "" "%u" "" "" "%.2f" "" "", NumGames, NumCoursesWithGames, NumGamesPerCourse); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /******************** Get and show number of social notes ********************/ /*****************************************************************************/ static void Sta_GetAndShowSocialActivityStats (void) { extern const char *Hlp_ANALYTICS_Figures_timeline; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; extern const char *Txt_Type; extern const char *Txt_No_of_social_posts; extern const char *Txt_No_of_users; extern const char *Txt_PERCENT_of_users; extern const char *Txt_No_of_posts_BR_per_user; extern const char *Txt_SOCIAL_NOTE[Soc_NUM_NOTE_TYPES]; extern const char *Txt_Total; MYSQL_RES *mysql_res; MYSQL_ROW row; Soc_NoteType_t NoteType; unsigned long NumSocialNotes; unsigned long NumRows; unsigned NumUsrs; unsigned NumUsrsTotal; /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_SOCIAL_ACTIVITY],NULL, Hlp_ANALYTICS_Figures_timeline,Box_NOT_CLOSABLE,2); /***** Heading row *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_Type, Txt_No_of_social_posts, Txt_No_of_users, Txt_PERCENT_of_users, Txt_No_of_posts_BR_per_user); /***** Get total number of users *****/ NumUsrsTotal = (Gbl.Scope.Current == Sco_SCOPE_SYS) ? Usr_GetTotalNumberOfUsersInPlatform () : Usr_GetTotalNumberOfUsersInCourses (Gbl.Scope.Current, 1 << Rol_STD | 1 << Rol_NET | 1 << Rol_TCH); /***** Get total number of following/followers from database *****/ for (NoteType = (Soc_NoteType_t) 0; NoteType < Soc_NUM_NOTE_TYPES; NoteType++) { switch (Gbl.Scope.Current) { case Sco_SCOPE_SYS: NumRows = DB_QuerySELECT (&mysql_res,"can not get number of social notes", "SELECT COUNT(*)," "COUNT(DISTINCT UsrCod)" " FROM social_notes WHERE NoteType=%u", NoteType); break; case Sco_SCOPE_CTY: NumRows = DB_QuerySELECT (&mysql_res,"can not get number of social notes", "SELECT COUNT(DISTINCT social_notes.NotCod)," "COUNT(DISTINCT social_notes.UsrCod)" " FROM institutions,centres,degrees,courses,crs_usr,social_notes" " WHERE institutions.CtyCod=%ld" " AND institutions.InsCod=centres.InsCod" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=social_notes.UsrCod" " AND social_notes.NoteType=%u", Gbl.CurrentCty.Cty.CtyCod, (unsigned) NoteType); break; case Sco_SCOPE_INS: NumRows = DB_QuerySELECT (&mysql_res,"can not get number of social notes", "SELECT COUNT(DISTINCT social_notes.NotCod)," "COUNT(DISTINCT social_notes.UsrCod)" " FROM centres,degrees,courses,crs_usr,social_notes" " WHERE centres.InsCod=%ld" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=social_notes.UsrCod" " AND social_notes.NoteType=%u", Gbl.CurrentIns.Ins.InsCod, (unsigned) NoteType); break; case Sco_SCOPE_CTR: NumRows = DB_QuerySELECT (&mysql_res,"can not get number of social notes", "SELECT COUNT(DISTINCT social_notes.NotCod)," "COUNT(DISTINCT social_notes.UsrCod)" " FROM degrees,courses,crs_usr,social_notes" " WHERE degrees.CtrCod=%ld" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=social_notes.UsrCod" " AND social_notes.NoteType=%u", Gbl.CurrentCtr.Ctr.CtrCod, (unsigned) NoteType); break; case Sco_SCOPE_DEG: NumRows = DB_QuerySELECT (&mysql_res,"can not get number of social notes", "SELECT COUNT(DISTINCT social_notes.NotCod)," "COUNT(DISTINCT social_notes.UsrCod)" " FROM courses,crs_usr,social_notes" " WHERE courses.DegCod=%ld" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=social_notes.UsrCod" " AND social_notes.NoteType=%u", Gbl.CurrentDeg.Deg.DegCod, (unsigned) NoteType); break; case Sco_SCOPE_CRS: NumRows = DB_QuerySELECT (&mysql_res,"can not get number of social notes", "SELECT COUNT(DISTINCT social_notes.NotCod)," "COUNT(DISTINCT social_notes.UsrCod)" " FROM crs_usr,social_notes" " WHERE crs_usr.CrsCod=%ld" " AND crs_usr.UsrCod=social_notes.UsrCod" " AND social_notes.NoteType=%u", Gbl.CurrentCrs.Crs.CrsCod, (unsigned) NoteType); break; default: Lay_WrongScopeExit (); NumRows = 0; // Initialized to avoid warning break; } NumSocialNotes = 0; NumUsrs = 0; if (NumRows) { /***** Get number of social notes and number of users *****/ row = mysql_fetch_row (mysql_res); /* Get number of social notes */ if (row[0]) if (sscanf (row[0],"%lu",&NumSocialNotes) != 1) NumSocialNotes = 0; /* Get number of users */ if (row[1]) if (sscanf (row[1],"%u",&NumUsrs) != 1) NumUsrs = 0; } /***** Free structure that stores the query result *****/ DB_FreeMySQLResult (&mysql_res); /***** Write number of social notes and number of users *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%lu" "" "" "%u" "" "" "%5.2f%%" "" "" "%.2f" "" "", Txt_SOCIAL_NOTE[NoteType], NumSocialNotes, NumUsrs, NumUsrsTotal ? (float) NumUsrs * 100.0 / (float) NumUsrsTotal : 0.0, NumUsrs ? (float) NumSocialNotes / (float) NumUsrs : 0.0); } /***** Get and write totals *****/ switch (Gbl.Scope.Current) { case Sco_SCOPE_SYS: NumRows = DB_QuerySELECT (&mysql_res,"can not get number of social notes", "SELECT COUNT(*)," "COUNT(DISTINCT UsrCod)" " FROM social_notes"); break; case Sco_SCOPE_CTY: NumRows = DB_QuerySELECT (&mysql_res,"can not get number of social notes", "SELECT COUNT(DISTINCT social_notes.NotCod)," "COUNT(DISTINCT social_notes.UsrCod)" " FROM institutions,centres,degrees,courses,crs_usr,social_notes" " WHERE institutions.CtyCod=%ld" " AND institutions.InsCod=centres.InsCod" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=social_notes.UsrCod", Gbl.CurrentCty.Cty.CtyCod); break; case Sco_SCOPE_INS: NumRows = DB_QuerySELECT (&mysql_res,"can not get number of social notes", "SELECT COUNT(DISTINCT social_notes.NotCod)," "COUNT(DISTINCT social_notes.UsrCod)" " FROM centres,degrees,courses,crs_usr,social_notes" " WHERE centres.InsCod=%ld" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=social_notes.UsrCod", Gbl.CurrentIns.Ins.InsCod); break; case Sco_SCOPE_CTR: NumRows = DB_QuerySELECT (&mysql_res,"can not get number of social notes", "SELECT COUNT(DISTINCT social_notes.NotCod)," "COUNT(DISTINCT social_notes.UsrCod)" " FROM degrees,courses,crs_usr,social_notes" " WHERE degrees.CtrCod=%ld" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=social_notes.UsrCod", Gbl.CurrentCtr.Ctr.CtrCod); break; case Sco_SCOPE_DEG: NumRows = DB_QuerySELECT (&mysql_res,"can not get number of social notes", "SELECT COUNT(DISTINCT social_notes.NotCod)," "COUNT(DISTINCT social_notes.UsrCod)" " FROM courses,crs_usr,social_notes" " WHERE courses.DegCod=%ld" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=social_notes.UsrCod", Gbl.CurrentDeg.Deg.DegCod); break; case Sco_SCOPE_CRS: NumRows = DB_QuerySELECT (&mysql_res,"can not get number of social notes", "SELECT COUNT(DISTINCT social_notes.NotCod)," "COUNT(DISTINCT social_notes.UsrCod)" " FROM crs_usr,social_notes" " WHERE crs_usr.CrsCod=%ld" " AND crs_usr.UsrCod=social_notes.UsrCod", Gbl.CurrentCrs.Crs.CrsCod); break; default: Lay_WrongScopeExit (); NumRows = 0; // Initialized to avoid warning break; } NumSocialNotes = 0; NumUsrs = 0; if (NumRows) { /* Get number of social notes and number of users */ row = mysql_fetch_row (mysql_res); /* Get number of social notes */ if (row[0]) if (sscanf (row[0],"%lu",&NumSocialNotes) != 1) NumSocialNotes = 0; /* Get number of users */ if (row[1]) if (sscanf (row[1],"%u",&NumUsrs) != 1) NumUsrs = 0; } /* Free structure that stores the query result */ DB_FreeMySQLResult (&mysql_res); /* Write totals */ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%lu" "" "" "%u" "" "" "%5.2f%%" "" "" "%.2f" "" "", Txt_Total, NumSocialNotes, NumUsrs, NumUsrsTotal ? (float) NumUsrs * 100.0 / (float) NumUsrsTotal : 0.0, NumUsrs ? (float) NumSocialNotes / (float) NumUsrs : 0.0); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /************** Get and show number of following and followers ***************/ /*****************************************************************************/ static void Sta_GetAndShowFollowStats (void) { extern const char *Hlp_ANALYTICS_Figures_followed_followers; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; extern const char *Txt_Users; extern const char *Txt_No_of_users; extern const char *Txt_PERCENT_of_users; extern const char *Txt_Followed; extern const char *Txt_Followers; extern const char *Txt_FollowPerFollow[2]; const char *FieldDB[2] = { "FollowedCod", "FollowerCod" }; MYSQL_RES *mysql_res; MYSQL_ROW row; unsigned Fol; unsigned NumUsrsTotal; unsigned NumUsrs; float Average; /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_FOLLOW],NULL, Hlp_ANALYTICS_Figures_followed_followers,Box_NOT_CLOSABLE,2); /***** Heading row *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_Users, Txt_No_of_users, Txt_PERCENT_of_users); /***** Get total number of users *****/ NumUsrsTotal = (Gbl.Scope.Current == Sco_SCOPE_SYS) ? Usr_GetTotalNumberOfUsersInPlatform () : Usr_GetTotalNumberOfUsersInCourses (Gbl.Scope.Current, 1 << Rol_STD | 1 << Rol_NET | 1 << Rol_TCH); /***** Get total number of following/followers from database *****/ for (Fol = 0; Fol < 2; Fol++) { switch (Gbl.Scope.Current) { case Sco_SCOPE_SYS: NumUsrs = (unsigned) DB_QueryCOUNT ("can not get the total number" " of following/followers", "SELECT COUNT(DISTINCT %s) FROM usr_follow", FieldDB[Fol]); break; case Sco_SCOPE_CTY: NumUsrs = (unsigned) DB_QueryCOUNT ("can not get the total number" " of following/followers", "SELECT COUNT(DISTINCT usr_follow.%s)" " FROM institutions,centres,degrees,courses,crs_usr,usr_follow" " WHERE institutions.CtyCod=%ld" " AND institutions.InsCod=centres.InsCod" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=usr_follow.%s", FieldDB[Fol], Gbl.CurrentCty.Cty.CtyCod, FieldDB[Fol]); break; case Sco_SCOPE_INS: NumUsrs = (unsigned) DB_QueryCOUNT ("can not get the total number" " of following/followers", "SELECT COUNT(DISTINCT usr_follow.%s)" " FROM centres,degrees,courses,crs_usr,usr_follow" " WHERE centres.InsCod=%ld" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=usr_follow.%s", FieldDB[Fol], Gbl.CurrentIns.Ins.InsCod, FieldDB[Fol]); break; case Sco_SCOPE_CTR: NumUsrs = (unsigned) DB_QueryCOUNT ("can not get the total number" " of following/followers", "SELECT COUNT(DISTINCT usr_follow.%s)" " FROM degrees,courses,crs_usr,usr_follow" " WHERE degrees.CtrCod=%ld" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=usr_follow.%s", FieldDB[Fol], Gbl.CurrentCtr.Ctr.CtrCod, FieldDB[Fol]); break; case Sco_SCOPE_DEG: NumUsrs = (unsigned) DB_QueryCOUNT ("can not get the total number" " of following/followers", "SELECT COUNT(DISTINCT usr_follow.%s)" " FROM courses,crs_usr,usr_follow" " WHERE courses.DegCod=%ld" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=usr_follow.%s", FieldDB[Fol], Gbl.CurrentDeg.Deg.DegCod, FieldDB[Fol]); break; case Sco_SCOPE_CRS: NumUsrs = (unsigned) DB_QueryCOUNT ("can not get the total number" " of following/followers", "SELECT COUNT(DISTINCT usr_follow.%s)" " FROM crs_usr,usr_follow" " WHERE crs_usr.CrsCod=%ld" " AND crs_usr.UsrCod=usr_follow.%s", FieldDB[Fol], Gbl.CurrentCrs.Crs.CrsCod, FieldDB[Fol]); break; default: Lay_WrongScopeExit (); NumUsrs = 0; // Not reached. Initialized to av oid warning break; } /***** Write number of followed / followers *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%u" "" "" "%5.2f%%" "" "", Fol == 0 ? Txt_Followed : Txt_Followers, NumUsrs, NumUsrsTotal ? (float) NumUsrs * 100.0 / (float) NumUsrsTotal : 0.0); } /***** Write number of followed/followers per follower/followed *****/ for (Fol = 0; Fol < 2; Fol++) { switch (Gbl.Scope.Current) { case Sco_SCOPE_SYS: DB_QuerySELECT (&mysql_res,"can not get number of questions" " per survey", "SELECT AVG(N) FROM " "(SELECT COUNT(%s) AS N" " FROM usr_follow" " GROUP BY %s) AS F", FieldDB[Fol], FieldDB[1 - Fol]); break; case Sco_SCOPE_CTY: DB_QuerySELECT (&mysql_res,"can not get number of questions" " per survey", "SELECT AVG(N) FROM " "(SELECT COUNT(DISTINCT usr_follow.%s) AS N" " FROM institutions,centres,degrees,courses,crs_usr,usr_follow" " WHERE institutions.CtyCod=%ld" " AND institutions.InsCod=centres.InsCod" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=usr_follow.%s" " GROUP BY %s) AS F", FieldDB[Fol], Gbl.CurrentCty.Cty.CtyCod, FieldDB[Fol], FieldDB[1 - Fol]); break; case Sco_SCOPE_INS: DB_QuerySELECT (&mysql_res,"can not get number of questions" " per survey", "SELECT AVG(N) FROM " "(SELECT COUNT(DISTINCT usr_follow.%s) AS N" " FROM centres,degrees,courses,crs_usr,usr_follow" " WHERE centres.InsCod=%ld" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=usr_follow.%s" " GROUP BY %s) AS F", FieldDB[Fol], Gbl.CurrentIns.Ins.InsCod, FieldDB[Fol], FieldDB[1 - Fol]); break; case Sco_SCOPE_CTR: DB_QuerySELECT (&mysql_res,"can not get number of questions" " per survey", "SELECT AVG(N) FROM " "(SELECT COUNT(DISTINCT usr_follow.%s) AS N" " FROM degrees,courses,crs_usr,usr_follow" " WHERE degrees.CtrCod=%ld" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=usr_follow.%s" " GROUP BY %s) AS F", FieldDB[Fol], Gbl.CurrentCtr.Ctr.CtrCod, FieldDB[Fol], FieldDB[1 - Fol]); break; case Sco_SCOPE_DEG: DB_QuerySELECT (&mysql_res,"can not get number of questions" " per survey", "SELECT AVG(N) FROM " "(SELECT COUNT(DISTINCT usr_follow.%s) AS N" " FROM courses,crs_usr,usr_follow" " WHERE courses.DegCod=%ld" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=usr_follow.%s" " GROUP BY %s) AS F", FieldDB[Fol], Gbl.CurrentDeg.Deg.DegCod, FieldDB[Fol], FieldDB[1 - Fol]); break; case Sco_SCOPE_CRS: DB_QuerySELECT (&mysql_res,"can not get number of questions" " per survey", "SELECT AVG(N) FROM " "(SELECT COUNT(DISTINCT usr_follow.%s) AS N" " FROM crs_usr,usr_follow" " WHERE crs_usr.CrsCod=%ld" " AND crs_usr.UsrCod=usr_follow.%s" " GROUP BY %s) AS F", FieldDB[Fol], Gbl.CurrentCrs.Crs.CrsCod, FieldDB[Fol], FieldDB[1 - Fol]); break; default: Lay_WrongScopeExit (); break; } /***** Get average *****/ row = mysql_fetch_row (mysql_res); Average = Str_GetFloatNumFromStr (row[0]); /***** Free structure that stores the query result *****/ DB_FreeMySQLResult (&mysql_res); /***** Write number of followed per follower *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%5.2f" "" "" "" "", Txt_FollowPerFollow[Fol], Average); } /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /***************************** Show stats of forums **************************/ /*****************************************************************************/ static void Sta_GetAndShowForumStats (void) { extern const char *Hlp_ANALYTICS_Figures_forums; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; extern const char *Txt_Scope; extern const char *Txt_Forums; extern const char *Txt_No_of_forums; extern const char *Txt_No_of_threads; extern const char *Txt_No_of_posts; extern const char *Txt_Number_of_BR_notifications; extern const char *Txt_No_of_threads_BR_per_forum; extern const char *Txt_No_of_posts_BR_per_thread; extern const char *Txt_No_of_posts_BR_per_forum; struct Sta_StatsForum StatsForum; /***** Reset total stats *****/ StatsForum.NumForums = 0; StatsForum.NumThreads = 0; StatsForum.NumPosts = 0; StatsForum.NumUsrsToBeNotifiedByEMail = 0; /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_FORUMS],NULL, Hlp_ANALYTICS_Figures_forums,Box_NOT_CLOSABLE,2); /***** Write table heading *****/ fprintf (Gbl.F.Out,"" "" "\"%s\"" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "", Gbl.Prefs.URLIcons, Txt_Scope, Txt_Scope, Txt_Forums, Txt_No_of_forums, Txt_No_of_threads, Txt_No_of_posts, Txt_Number_of_BR_notifications, Txt_No_of_threads_BR_per_forum, Txt_No_of_posts_BR_per_thread, Txt_No_of_posts_BR_per_forum); /***** Write a row for each type of forum *****/ switch (Gbl.Scope.Current) { case Sco_SCOPE_SYS: Sta_ShowStatOfAForumType (For_FORUM_GLOBAL_USRS ,-1L,-1L,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_GLOBAL_TCHS ,-1L,-1L,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM__SWAD__USRS ,-1L,-1L,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM__SWAD__TCHS ,-1L,-1L,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_INSTIT_USRS,-1L,-1L,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_INSTIT_TCHS,-1L,-1L,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_CENTRE_USRS ,-1L,-1L,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_CENTRE_TCHS ,-1L,-1L,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_DEGREE_USRS ,-1L,-1L,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_DEGREE_TCHS ,-1L,-1L,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_COURSE_USRS ,-1L,-1L,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_COURSE_TCHS ,-1L,-1L,-1L,-1L,-1L,&StatsForum); break; case Sco_SCOPE_CTY: Sta_ShowStatOfAForumType (For_FORUM_INSTIT_USRS,Gbl.CurrentCty.Cty.CtyCod,-1L,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_INSTIT_TCHS,Gbl.CurrentCty.Cty.CtyCod,-1L,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_CENTRE_USRS ,Gbl.CurrentCty.Cty.CtyCod,-1L,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_CENTRE_TCHS ,Gbl.CurrentCty.Cty.CtyCod,-1L,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_DEGREE_USRS ,Gbl.CurrentCty.Cty.CtyCod,-1L,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_DEGREE_TCHS ,Gbl.CurrentCty.Cty.CtyCod,-1L,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_COURSE_USRS ,Gbl.CurrentCty.Cty.CtyCod,-1L,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_COURSE_TCHS ,Gbl.CurrentCty.Cty.CtyCod,-1L,-1L,-1L,-1L,&StatsForum); break; case Sco_SCOPE_INS: Sta_ShowStatOfAForumType (For_FORUM_INSTIT_USRS,-1L,Gbl.CurrentIns.Ins.InsCod,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_INSTIT_TCHS,-1L,Gbl.CurrentIns.Ins.InsCod,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_CENTRE_USRS ,-1L,Gbl.CurrentIns.Ins.InsCod,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_CENTRE_TCHS ,-1L,Gbl.CurrentIns.Ins.InsCod,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_DEGREE_USRS ,-1L,Gbl.CurrentIns.Ins.InsCod,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_DEGREE_TCHS ,-1L,Gbl.CurrentIns.Ins.InsCod,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_COURSE_USRS ,-1L,Gbl.CurrentIns.Ins.InsCod,-1L,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_COURSE_TCHS ,-1L,Gbl.CurrentIns.Ins.InsCod,-1L,-1L,-1L,&StatsForum); break; case Sco_SCOPE_CTR: Sta_ShowStatOfAForumType (For_FORUM_CENTRE_USRS,-1L,-1L,Gbl.CurrentCtr.Ctr.CtrCod,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_CENTRE_TCHS,-1L,-1L,Gbl.CurrentCtr.Ctr.CtrCod,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_DEGREE_USRS,-1L,-1L,Gbl.CurrentCtr.Ctr.CtrCod,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_DEGREE_TCHS,-1L,-1L,Gbl.CurrentCtr.Ctr.CtrCod,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_COURSE_USRS,-1L,-1L,Gbl.CurrentCtr.Ctr.CtrCod,-1L,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_COURSE_TCHS,-1L,-1L,Gbl.CurrentCtr.Ctr.CtrCod,-1L,-1L,&StatsForum); break; case Sco_SCOPE_DEG: Sta_ShowStatOfAForumType (For_FORUM_DEGREE_USRS,-1L,-1L,-1L,Gbl.CurrentDeg.Deg.DegCod,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_DEGREE_TCHS,-1L,-1L,-1L,Gbl.CurrentDeg.Deg.DegCod,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_COURSE_USRS,-1L,-1L,-1L,Gbl.CurrentDeg.Deg.DegCod,-1L,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_COURSE_TCHS,-1L,-1L,-1L,Gbl.CurrentDeg.Deg.DegCod,-1L,&StatsForum); break; case Sco_SCOPE_CRS: Sta_ShowStatOfAForumType (For_FORUM_COURSE_USRS,-1L,-1L,-1L,-1L,Gbl.CurrentCrs.Crs.CrsCod,&StatsForum); Sta_ShowStatOfAForumType (For_FORUM_COURSE_TCHS,-1L,-1L,-1L,-1L,Gbl.CurrentCrs.Crs.CrsCod,&StatsForum); break; default: Lay_WrongScopeExit (); break; } Sta_WriteForumTotalStats (&StatsForum); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /************************* Show stats of a forum type ************************/ /*****************************************************************************/ static void Sta_ShowStatOfAForumType (For_ForumType_t ForumType, long CtyCod,long InsCod,long CtrCod,long DegCod,long CrsCod, struct Sta_StatsForum *StatsForum) { extern const char *Txt_Courses; extern const char *Txt_Degrees; extern const char *Txt_Centres; extern const char *Txt_Institutions; extern const char *Txt_General; extern const char *Txt_only_teachers; switch (ForumType) { case For_FORUM_GLOBAL_USRS: Sta_WriteForumTitleAndStats (ForumType,CtyCod,InsCod,CtrCod,DegCod,CrsCod, "forum64x64.gif",StatsForum, Txt_General,""); break; case For_FORUM_GLOBAL_TCHS: Sta_WriteForumTitleAndStats (ForumType,CtyCod,InsCod,CtrCod,DegCod,CrsCod, "forum64x64.gif",StatsForum, Txt_General,Txt_only_teachers); break; case For_FORUM__SWAD__USRS: Sta_WriteForumTitleAndStats (ForumType,CtyCod,InsCod,CtrCod,DegCod,CrsCod, "swad64x64.gif",StatsForum, Cfg_PLATFORM_SHORT_NAME,""); break; case For_FORUM__SWAD__TCHS: Sta_WriteForumTitleAndStats (ForumType,CtyCod,InsCod,CtrCod,DegCod,CrsCod, "swad64x64.gif",StatsForum, Cfg_PLATFORM_SHORT_NAME,Txt_only_teachers); break; case For_FORUM_INSTIT_USRS: Sta_WriteForumTitleAndStats (ForumType,CtyCod,InsCod,CtrCod,DegCod,CrsCod, "university.svg",StatsForum, Txt_Institutions,""); break; case For_FORUM_INSTIT_TCHS: Sta_WriteForumTitleAndStats (ForumType,CtyCod,InsCod,CtrCod,DegCod,CrsCod, "university.svg",StatsForum, Txt_Institutions,Txt_only_teachers); break; case For_FORUM_CENTRE_USRS: Sta_WriteForumTitleAndStats (ForumType,CtyCod,InsCod,CtrCod,DegCod,CrsCod, "building.svg",StatsForum, Txt_Centres,""); break; case For_FORUM_CENTRE_TCHS: Sta_WriteForumTitleAndStats (ForumType,CtyCod,InsCod,CtrCod,DegCod,CrsCod, "building.svg",StatsForum, Txt_Centres,Txt_only_teachers); break; case For_FORUM_DEGREE_USRS: Sta_WriteForumTitleAndStats (ForumType,CtyCod,InsCod,CtrCod,DegCod,CrsCod, "graduation-cap.svg",StatsForum, Txt_Degrees,""); break; case For_FORUM_DEGREE_TCHS: Sta_WriteForumTitleAndStats (ForumType,CtyCod,InsCod,CtrCod,DegCod,CrsCod, "graduation-cap.svg",StatsForum, Txt_Degrees,Txt_only_teachers); break; case For_FORUM_COURSE_USRS: Sta_WriteForumTitleAndStats (ForumType,CtyCod,InsCod,CtrCod,DegCod,CrsCod, "list-ol.svg",StatsForum, Txt_Courses,""); break; case For_FORUM_COURSE_TCHS: Sta_WriteForumTitleAndStats (ForumType,CtyCod,InsCod,CtrCod,DegCod,CrsCod, "list-ol.svg",StatsForum, Txt_Courses,Txt_only_teachers); break; default: break; } } /*****************************************************************************/ /******************* Write title and stats of a forum type *******************/ /*****************************************************************************/ static void Sta_WriteForumTitleAndStats (For_ForumType_t ForumType, long CtyCod,long InsCod,long CtrCod,long DegCod,long CrsCod, const char *Icon,struct Sta_StatsForum *StatsForum, const char *ForumName1,const char *ForumName2) { unsigned NumForums; unsigned NumThreads; unsigned NumPosts; unsigned NumUsrsToBeNotifiedByEMail; float NumThrsPerForum; float NumPostsPerThread; float NumPostsPerForum; /***** Compute number of forums, number of threads and number of posts *****/ NumForums = For_GetNumTotalForumsOfType (ForumType,CtyCod,InsCod,CtrCod,DegCod,CrsCod); NumThreads = For_GetNumTotalThrsInForumsOfType (ForumType,CtyCod,InsCod,CtrCod,DegCod,CrsCod); NumPosts = For_GetNumTotalPstsInForumsOfType (ForumType,CtyCod,InsCod,CtrCod,DegCod,CrsCod,&NumUsrsToBeNotifiedByEMail); /***** Compute number of threads per forum, number of posts per forum and number of posts per thread *****/ NumThrsPerForum = (NumForums ? (float) NumThreads / (float) NumForums : 0.0); NumPostsPerThread = (NumThreads ? (float) NumPosts / (float) NumThreads : 0.0); NumPostsPerForum = (NumForums ? (float) NumPosts / (float) NumForums : 0.0); /***** Update total stats *****/ StatsForum->NumForums += NumForums; StatsForum->NumThreads += NumThreads; StatsForum->NumPosts += NumPosts; StatsForum->NumUsrsToBeNotifiedByEMail += NumUsrsToBeNotifiedByEMail; /***** Write forum name and stats *****/ fprintf (Gbl.F.Out,"" "" "\"%s%s\"" "" "" "%s%s" "" "" "%u" "" "" "%u" "" "" "%u" "" "" "%u" "" "" "%.2f" "" "" "%.2f" "" "" "%.2f" "" "", Gbl.Prefs.URLIcons,Icon, ForumName1,ForumName2, ForumName1,ForumName2, ForumName1,ForumName2, NumForums,NumThreads,NumPosts,NumUsrsToBeNotifiedByEMail, NumThrsPerForum,NumPostsPerThread,NumPostsPerForum); } /*****************************************************************************/ /******************* Write title and stats of a forum type *******************/ /*****************************************************************************/ static void Sta_WriteForumTotalStats (struct Sta_StatsForum *StatsForum) { extern const char *Txt_Total; float NumThrsPerForum; float NumPostsPerThread; float NumPostsPerForum; /***** Compute number of threads per forum, number of posts per forum and number of posts per thread *****/ NumThrsPerForum = (StatsForum->NumForums ? (float) StatsForum->NumThreads / (float) StatsForum->NumForums : 0.0); NumPostsPerThread = (StatsForum->NumThreads ? (float) StatsForum->NumPosts / (float) StatsForum->NumThreads : 0.0); NumPostsPerForum = (StatsForum->NumForums ? (float) StatsForum->NumPosts / (float) StatsForum->NumForums : 0.0); /***** Write forum name and stats *****/ fprintf (Gbl.F.Out,"" "" "" "" "%s" "" "" "%u" "" "" "%u" "" "" "%u" "" "" "%u" "" "" "%.2f" "" "" "%.2f" "" "" "%.2f" "" "", Txt_Total, StatsForum->NumForums, StatsForum->NumThreads, StatsForum->NumPosts, StatsForum->NumUsrsToBeNotifiedByEMail, NumThrsPerForum, NumPostsPerThread, NumPostsPerForum); } /*****************************************************************************/ /****** Get and show number of users who want to be notified by email ********/ /*****************************************************************************/ static void Sta_GetAndShowNumUsrsPerNotifyEvent (void) { extern const char *Hlp_ANALYTICS_Figures_notifications; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; extern const char *Txt_Event; extern const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS]; extern const char *Txt_No_of_users; extern const char *Txt_PERCENT_of_users; extern const char *Txt_Number_of_BR_events; extern const char *Txt_Number_of_BR_emails; extern const char *Txt_Total; Ntf_NotifyEvent_t NotifyEvent; char *SubQuery; MYSQL_RES *mysql_res; MYSQL_ROW row; unsigned NumUsrsTotal; unsigned NumUsrsTotalWhoWantToBeNotifiedByEMailAboutSomeEvent; unsigned NumUsrs[Ntf_NUM_NOTIFY_EVENTS]; unsigned NumEventsTotal = 0; unsigned NumEvents[Ntf_NUM_NOTIFY_EVENTS]; unsigned NumMailsTotal = 0; unsigned NumMails[Ntf_NUM_NOTIFY_EVENTS]; /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_NOTIFY_EVENTS],NULL, Hlp_ANALYTICS_Figures_notifications,Box_NOT_CLOSABLE,2); /***** Heading row *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_Event, Txt_No_of_users, Txt_PERCENT_of_users, Txt_Number_of_BR_events, Txt_Number_of_BR_emails); /***** Get total number of users *****/ NumUsrsTotal = (Gbl.Scope.Current == Sco_SCOPE_SYS) ? Usr_GetTotalNumberOfUsersInPlatform () : Usr_GetTotalNumberOfUsersInCourses (Gbl.Scope.Current, 1 << Rol_STD | 1 << Rol_NET | 1 << Rol_TCH); /***** Get total number of users who want to be notified by email on some event, from database *****/ NumUsrsTotalWhoWantToBeNotifiedByEMailAboutSomeEvent = Sta_GetNumUsrsWhoChoseAnOption ("usr_data.EmailNtfEvents<>0"); /***** For each notify event... *****/ for (NotifyEvent = (Ntf_NotifyEvent_t) 1; NotifyEvent < Ntf_NUM_NOTIFY_EVENTS; NotifyEvent++) // 0 is reserved for Ntf_EVENT_UNKNOWN { /* Get the number of users who want to be notified by email on this event, from database */ if (asprintf (&SubQuery,"((usr_data.EmailNtfEvents & %u)<>0)", (1 << NotifyEvent)) < 0) Lay_NotEnoughMemoryExit (); NumUsrs[NotifyEvent] = Sta_GetNumUsrsWhoChoseAnOption (SubQuery); free ((void *) SubQuery); /* Get number of notifications by email from database */ switch (Gbl.Scope.Current) { case Sco_SCOPE_SYS: DB_QuerySELECT (&mysql_res,"can not get the number" " of notifications by email", "SELECT SUM(NumEvents),SUM(NumMails)" " FROM sta_notif" " WHERE NotifyEvent=%u", (unsigned) NotifyEvent); break; case Sco_SCOPE_CTY: DB_QuerySELECT (&mysql_res,"can not get the number" " of notifications by email", "SELECT SUM(sta_notif.NumEvents),SUM(sta_notif.NumMails)" " FROM institutions,centres,degrees,sta_notif" " WHERE institutions.CtyCod=%ld" " AND institutions.InsCod=centres.InsCod" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=sta_notif.DegCod" " AND sta_notif.NotifyEvent=%u", Gbl.CurrentCty.Cty.CtyCod,(unsigned) NotifyEvent); break; case Sco_SCOPE_INS: DB_QuerySELECT (&mysql_res,"can not get the number" " of notifications by email", "SELECT SUM(sta_notif.NumEvents),SUM(sta_notif.NumMails)" " FROM centres,degrees,sta_notif" " WHERE centres.InsCod=%ld" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=sta_notif.DegCod" " AND sta_notif.NotifyEvent=%u", Gbl.CurrentIns.Ins.InsCod,(unsigned) NotifyEvent); break; case Sco_SCOPE_CTR: DB_QuerySELECT (&mysql_res,"can not get the number" " of notifications by email", "SELECT SUM(sta_notif.NumEvents),SUM(sta_notif.NumMails)" " FROM degrees,sta_notif" " WHERE degrees.CtrCod=%ld" " AND degrees.DegCod=sta_notif.DegCod" " AND sta_notif.NotifyEvent=%u", Gbl.CurrentCtr.Ctr.CtrCod,(unsigned) NotifyEvent); break; case Sco_SCOPE_DEG: DB_QuerySELECT (&mysql_res,"can not get the number" " of notifications by email", "SELECT SUM(NumEvents),SUM(NumMails)" " FROM sta_notif" " WHERE DegCod=%ld" " AND NotifyEvent=%u", Gbl.CurrentDeg.Deg.DegCod,(unsigned) NotifyEvent); break; case Sco_SCOPE_CRS: DB_QuerySELECT (&mysql_res,"can not get the number" " of notifications by email", "SELECT SUM(NumEvents),SUM(NumMails)" " FROM sta_notif" " WHERE CrsCod=%ld" " AND NotifyEvent=%u", Gbl.CurrentCrs.Crs.CrsCod,(unsigned) NotifyEvent); break; default: Lay_WrongScopeExit (); break; } row = mysql_fetch_row (mysql_res); /* Get number of events notified */ if (row[0]) { if (sscanf (row[0],"%u",&NumEvents[NotifyEvent]) != 1) Lay_ShowErrorAndExit ("Error when getting the number of notifications by email."); } else NumEvents[NotifyEvent] = 0; /* Get number of mails sent */ if (row[1]) { if (sscanf (row[1],"%u",&NumMails[NotifyEvent]) != 1) Lay_ShowErrorAndExit ("Error when getting the number of emails to notify events3."); } else NumMails[NotifyEvent] = 0; /* Free structure that stores the query result */ DB_FreeMySQLResult (&mysql_res); /* Update total number of events and mails */ NumEventsTotal += NumEvents[NotifyEvent]; NumMailsTotal += NumMails [NotifyEvent]; } /***** Write number of users who want to be notified by email on each event *****/ for (NotifyEvent = (Ntf_NotifyEvent_t) 1; NotifyEvent < Ntf_NUM_NOTIFY_EVENTS; NotifyEvent++) // 0 is reserved for Ntf_EVENT_UNKNOWN fprintf (Gbl.F.Out,"" "" "%s" "" "" "%u" "" "" "%5.2f%%" "" "" "%u" "" "" "%u" "" "", Txt_NOTIFY_EVENTS_PLURAL[NotifyEvent], NumUsrs[NotifyEvent], NumUsrsTotal ? (float) NumUsrs[NotifyEvent] * 100.0 / (float) NumUsrsTotal : 0.0, NumEvents[NotifyEvent], NumMails[NotifyEvent]); /***** Write total number of users who want to be notified by email on some event *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%u" "" "" "%5.2f%%" "" "" "%u" "" "" "%u" "" "", Txt_Total, NumUsrsTotalWhoWantToBeNotifiedByEMailAboutSomeEvent, NumUsrsTotal ? (float) NumUsrsTotalWhoWantToBeNotifiedByEMailAboutSomeEvent * 100.0 / (float) NumUsrsTotal : 0.0, NumEventsTotal, NumMailsTotal); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /***************************** Show stats of notices *************************/ /*****************************************************************************/ static void Sta_GetAndShowNoticesStats (void) { extern const char *Hlp_ANALYTICS_Figures_notices; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; extern const char *Txt_NOTICE_Active_BR_notices; extern const char *Txt_NOTICE_Obsolete_BR_notices; extern const char *Txt_NOTICE_Deleted_BR_notices; extern const char *Txt_Total; extern const char *Txt_Number_of_BR_notifications; Not_Status_t NoticeStatus; unsigned NumNotices[Not_NUM_STATUS]; unsigned NumNoticesDeleted; unsigned NumTotalNotices = 0; unsigned NumNotif; unsigned NumTotalNotifications = 0; /***** Get the number of notices active and obsolete *****/ for (NoticeStatus = (Not_Status_t) 0; NoticeStatus < Not_NUM_STATUS; NoticeStatus++) { NumNotices[NoticeStatus] = Not_GetNumNotices (Gbl.Scope.Current,NoticeStatus,&NumNotif); NumTotalNotices += NumNotices[NoticeStatus]; NumTotalNotifications += NumNotif; } NumNoticesDeleted = Not_GetNumNoticesDeleted (Gbl.Scope.Current,&NumNotif); NumTotalNotices += NumNoticesDeleted; NumTotalNotifications += NumNotif; /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_NOTICES],NULL, Hlp_ANALYTICS_Figures_notices,Box_NOT_CLOSABLE,2); /***** Write table heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_NOTICE_Active_BR_notices, Txt_NOTICE_Obsolete_BR_notices, Txt_NOTICE_Deleted_BR_notices, Txt_Total, Txt_Number_of_BR_notifications); /***** Write number of notices *****/ fprintf (Gbl.F.Out,"" "" "%u" "" "" "%u" "" "" "%u" "" "" "%u" "" "" "%u" "" "", NumNotices[Not_ACTIVE_NOTICE], NumNotices[Not_OBSOLETE_NOTICE], NumNoticesDeleted, NumTotalNotices, NumTotalNotifications); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /*************************** Show stats of messages **************************/ /*****************************************************************************/ static void Sta_GetAndShowMsgsStats (void) { extern const char *Hlp_ANALYTICS_Figures_messages; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; extern const char *Txt_Messages; extern const char *Txt_MSGS_Not_deleted; extern const char *Txt_MSGS_Deleted; extern const char *Txt_Total; extern const char *Txt_Number_of_BR_notifications; extern const char *Txt_MSGS_Sent; extern const char *Txt_MSGS_Received; unsigned NumMsgsSentNotDeleted,NumMsgsSentDeleted; unsigned NumMsgsReceivedNotDeleted,NumMsgsReceivedAndDeleted; unsigned NumMsgsReceivedAndNotified; /***** Get the number of unique messages sent from this location *****/ NumMsgsSentNotDeleted = Msg_GetNumMsgsSent (Gbl.Scope.Current,Msg_STATUS_ALL ); NumMsgsSentDeleted = Msg_GetNumMsgsSent (Gbl.Scope.Current,Msg_STATUS_DELETED ); NumMsgsReceivedNotDeleted = Msg_GetNumMsgsReceived (Gbl.Scope.Current,Msg_STATUS_ALL ); NumMsgsReceivedAndDeleted = Msg_GetNumMsgsReceived (Gbl.Scope.Current,Msg_STATUS_DELETED ); NumMsgsReceivedAndNotified = Msg_GetNumMsgsReceived (Gbl.Scope.Current,Msg_STATUS_NOTIFIED); /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_MESSAGES],NULL, Hlp_ANALYTICS_Figures_messages,Box_NOT_CLOSABLE,2); /***** Write table heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_Messages, Txt_MSGS_Not_deleted, Txt_MSGS_Deleted, Txt_Total, Txt_Number_of_BR_notifications); /***** Write number of messages *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%u" "" "" "%u" "" "" "%u" "" "" "-" "" "" "" "" "%s" "" "" "%u" "" "" "%u" "" "" "%u" "" "" "%u" "" "", Txt_MSGS_Sent, NumMsgsSentNotDeleted, NumMsgsSentDeleted, NumMsgsSentNotDeleted + NumMsgsSentDeleted, Txt_MSGS_Received, NumMsgsReceivedNotDeleted, NumMsgsReceivedAndDeleted, NumMsgsReceivedNotDeleted + NumMsgsReceivedAndDeleted, NumMsgsReceivedAndNotified); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /***************************** Show stats of surveys *************************/ /*****************************************************************************/ static void Sta_GetAndShowSurveysStats (void) { extern const char *Hlp_ANALYTICS_Figures_surveys; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; extern const char *Txt_Number_of_BR_surveys; extern const char *Txt_Number_of_BR_courses_with_BR_surveys; extern const char *Txt_Average_number_BR_of_surveys_BR_per_course; extern const char *Txt_Average_number_BR_of_questions_BR_per_survey; extern const char *Txt_Number_of_BR_notifications; unsigned NumSurveys; unsigned NumNotif; unsigned NumCoursesWithSurveys = 0; float NumSurveysPerCourse = 0.0; float NumQstsPerSurvey = 0.0; /***** Get the number of surveys and the average number of questions per survey from this location *****/ if ((NumSurveys = Svy_GetNumCrsSurveys (Gbl.Scope.Current,&NumNotif))) { if ((NumCoursesWithSurveys = Svy_GetNumCoursesWithCrsSurveys (Gbl.Scope.Current)) != 0) NumSurveysPerCourse = (float) NumSurveys / (float) NumCoursesWithSurveys; NumQstsPerSurvey = Svy_GetNumQstsPerCrsSurvey (Gbl.Scope.Current); } /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_SURVEYS],NULL, Hlp_ANALYTICS_Figures_surveys,Box_NOT_CLOSABLE,2); /***** Write table heading *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_Number_of_BR_surveys, Txt_Number_of_BR_courses_with_BR_surveys, Txt_Average_number_BR_of_surveys_BR_per_course, Txt_Average_number_BR_of_questions_BR_per_survey, Txt_Number_of_BR_notifications); /***** Write number of surveys *****/ fprintf (Gbl.F.Out,"" "" "%u" "" "" "%u" "" "" "%.2f" "" "" "%.2f" "" "" "%u" "" "", NumSurveys, NumCoursesWithSurveys, NumSurveysPerCourse, NumQstsPerSurvey, NumNotif); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /********** Get and show number of users who have chosen a privacy ***********/ /*****************************************************************************/ static void Sta_GetAndShowNumUsrsPerPrivacy (void) { extern const char *Hlp_ANALYTICS_Figures_privacy; extern const char *Txt_Photo; extern const char *Txt_Public_profile; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_PRIVACY],NULL, Hlp_ANALYTICS_Figures_privacy,Box_NOT_CLOSABLE,2); /***** Privacy for photo *****/ Sta_GetAndShowNumUsrsPerPrivacyForAnObject (Txt_Photo,"PhotoVisibility"); /***** Privacy for public profile *****/ Sta_GetAndShowNumUsrsPerPrivacyForAnObject (Txt_Public_profile,"ProfileVisibility"); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /********** Get and show number of users who have chosen a privacy ***********/ /*****************************************************************************/ static void Sta_GetAndShowNumUsrsPerPrivacyForAnObject (const char *TxtObject,const char *FieldName) { extern const char *Txt_No_of_users; extern const char *Txt_PERCENT_of_users; extern const char *Pri_VisibilityDB[Pri_NUM_OPTIONS_PRIVACY]; extern const char *Txt_PRIVACY_OPTIONS[Pri_NUM_OPTIONS_PRIVACY]; Pri_Visibility_t Visibility; char *SubQuery; unsigned NumUsrs[Pri_NUM_OPTIONS_PRIVACY]; unsigned NumUsrsTotal = 0; /***** Heading row *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "", TxtObject, Txt_No_of_users, Txt_PERCENT_of_users); /***** For each privacy option... *****/ for (Visibility = (Pri_Visibility_t) 0; Visibility < Pri_NUM_OPTIONS_PRIVACY; Visibility++) { /* Get the number of users who have chosen this privacy option from database */ if (asprintf (&SubQuery,"usr_data.%s='%s'", FieldName,Pri_VisibilityDB[Visibility]) < 0) Lay_NotEnoughMemoryExit (); NumUsrs[Visibility] = Sta_GetNumUsrsWhoChoseAnOption (SubQuery); free ((void *) SubQuery); /* Update total number of users */ NumUsrsTotal += NumUsrs[Visibility]; } /***** Write number of users who have chosen each privacy option *****/ for (Visibility = (Pri_Visibility_t) 0; Visibility < Pri_NUM_OPTIONS_PRIVACY; Visibility++) fprintf (Gbl.F.Out,"" "" "%s" "" "" "%u" "" "" "%5.2f%%" "" "", Txt_PRIVACY_OPTIONS[Visibility],NumUsrs[Visibility], NumUsrsTotal ? (float) NumUsrs[Visibility] * 100.0 / (float) NumUsrsTotal : 0); } /*****************************************************************************/ /********* Get and show number of users who have chosen a language ***********/ /*****************************************************************************/ static void Sta_GetAndShowNumUsrsPerLanguage (void) { extern const char *Hlp_ANALYTICS_Figures_language; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; extern const char *Txt_Language; extern const char *Lan_STR_LANG_ID[1 + Lan_NUM_LANGUAGES]; extern const char *Txt_STR_LANG_NAME[1 + Lan_NUM_LANGUAGES]; extern const char *Txt_No_of_users; extern const char *Txt_PERCENT_of_users; Lan_Language_t Lan; char *SubQuery; unsigned NumUsrs[1 + Lan_NUM_LANGUAGES]; unsigned NumUsrsTotal = 0; /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_LANGUAGES],NULL, Hlp_ANALYTICS_Figures_language,Box_NOT_CLOSABLE,2); /***** Heading row *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_Language, Txt_No_of_users, Txt_PERCENT_of_users); /***** For each language... *****/ for (Lan = (Lan_Language_t) 1; Lan <= Lan_NUM_LANGUAGES; Lan++) { /* Get the number of users who have chosen this language from database */ if (asprintf (&SubQuery,"usr_data.Language='%s'", Lan_STR_LANG_ID[Lan]) < 0) Lay_NotEnoughMemoryExit (); NumUsrs[Lan] = Sta_GetNumUsrsWhoChoseAnOption (SubQuery); free ((void *) SubQuery); /* Update total number of users */ NumUsrsTotal += NumUsrs[Lan]; } /***** Write number of users who have chosen each language *****/ for (Lan = (Lan_Language_t) 1; Lan <= Lan_NUM_LANGUAGES; Lan++) fprintf (Gbl.F.Out,"" "" "%s" "" "" "%u" "" "" "%5.2f%%" "" "", Txt_STR_LANG_NAME[Lan],NumUsrs[Lan], NumUsrsTotal ? (float) NumUsrs[Lan] * 100.0 / (float) NumUsrsTotal : 0); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /***** Get and show number of users who have chosen a first day of week ******/ /*****************************************************************************/ static void Sta_GetAndShowNumUsrsPerFirstDayOfWeek (void) { extern const bool Cal_DayIsValidAsFirstDayOfWeek[7]; extern const char *Hlp_ANALYTICS_Figures_calendar; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; extern const char *Txt_Calendar; extern const char *Txt_First_day_of_the_week; extern const char *Txt_DAYS_SMALL[7]; extern const char *Txt_No_of_users; extern const char *Txt_PERCENT_of_users; unsigned FirstDayOfWeek; char *SubQuery; unsigned NumUsrs[7]; // 7: seven days in a week unsigned NumUsrsTotal = 0; /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_FIRST_DAY_OF_WEEK],NULL, Hlp_ANALYTICS_Figures_calendar,Box_NOT_CLOSABLE,2); /***** Heading row *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_Calendar, Txt_No_of_users, Txt_PERCENT_of_users); /***** For each day... *****/ for (FirstDayOfWeek = 0; // Monday FirstDayOfWeek <= 6; // Sunday FirstDayOfWeek++) if (Cal_DayIsValidAsFirstDayOfWeek[FirstDayOfWeek]) { /* Get number of users who have chosen this first day of week from database */ if (asprintf (&SubQuery,"usr_data.FirstDayOfWeek=%u", (unsigned) FirstDayOfWeek) < 0) Lay_NotEnoughMemoryExit (); NumUsrs[FirstDayOfWeek] = Sta_GetNumUsrsWhoChoseAnOption (SubQuery); free ((void *) SubQuery); /* Update total number of users */ NumUsrsTotal += NumUsrs[FirstDayOfWeek]; } /***** Write number of users who have chosen each first day of week *****/ for (FirstDayOfWeek = 0; // Monday FirstDayOfWeek <= 6; // Sunday FirstDayOfWeek++) if (Cal_DayIsValidAsFirstDayOfWeek[FirstDayOfWeek]) fprintf (Gbl.F.Out,"" "" "\"%s\"" "" "" "%u" "" "" "%5.2f%%" "" "", Gbl.Prefs.URLIcons,FirstDayOfWeek, Txt_DAYS_SMALL[FirstDayOfWeek], Txt_First_day_of_the_week,Txt_DAYS_SMALL[FirstDayOfWeek], NumUsrs[FirstDayOfWeek], NumUsrsTotal ? (float) NumUsrs[FirstDayOfWeek] * 100.0 / (float) NumUsrsTotal : 0); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /******** Get and show number of users who have chosen a date format *********/ /*****************************************************************************/ static void Sta_GetAndShowNumUsrsPerDateFormat (void) { extern const char *Hlp_ANALYTICS_Figures_dates; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; extern const char *Txt_Format; extern const char *Txt_No_of_users; extern const char *Txt_PERCENT_of_users; unsigned Format; char *SubQuery; unsigned NumUsrs[Dat_NUM_OPTIONS_FORMAT]; unsigned NumUsrsTotal = 0; /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_DATE_FORMAT],NULL, Hlp_ANALYTICS_Figures_dates,Box_NOT_CLOSABLE,2); /***** Heading row *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_Format, Txt_No_of_users, Txt_PERCENT_of_users); /***** For each format... *****/ for (Format = (Dat_Format_t) 0; Format <= (Dat_Format_t) (Dat_NUM_OPTIONS_FORMAT - 1); Format++) { /* Get number of users who have chosen this date format from database */ if (asprintf (&SubQuery,"usr_data.DateFormat=%u", (unsigned) Format) < 0) Lay_NotEnoughMemoryExit (); NumUsrs[Format] = Sta_GetNumUsrsWhoChoseAnOption (SubQuery); free ((void *) SubQuery); /* Update total number of users */ NumUsrsTotal += NumUsrs[Format]; } /***** Write number of users who have chosen each date format *****/ for (Format = (Dat_Format_t) 0; Format <= (Dat_Format_t) (Dat_NUM_OPTIONS_FORMAT - 1); Format++) { fprintf (Gbl.F.Out,"" ""); Dat_PutSpanDateFormat (Format); Dat_PutScriptDateFormat (Format); fprintf (Gbl.F.Out,"" "" "%u" "" "" "%5.2f%%" "" "", NumUsrs[Format], NumUsrsTotal ? (float) NumUsrs[Format] * 100.0 / (float) NumUsrsTotal : 0); } /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /********* Get and show number of users who have chosen an icon set **********/ /*****************************************************************************/ static void Sta_GetAndShowNumUsrsPerIconSet (void) { extern const char *Hlp_ANALYTICS_Figures_icons; extern const char *Ico_IconSetId[Ico_NUM_ICON_SETS]; extern const char *Ico_IconSetNames[Ico_NUM_ICON_SETS]; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; extern const char *Txt_Icons; extern const char *Txt_No_of_users; extern const char *Txt_PERCENT_of_users; Ico_IconSet_t IconSet; char *SubQuery; unsigned NumUsrs[Ico_NUM_ICON_SETS]; unsigned NumUsrsTotal = 0; /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_ICON_SETS],NULL, Hlp_ANALYTICS_Figures_icons,Box_NOT_CLOSABLE,2); /***** Heading row *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_Icons, Txt_No_of_users, Txt_PERCENT_of_users); /***** For each icon set... *****/ for (IconSet = (Ico_IconSet_t) 0; IconSet < Ico_NUM_ICON_SETS; IconSet++) { /* Get the number of users who have chosen this icon set from database */ if (asprintf (&SubQuery,"usr_data.IconSet='%s'", Ico_IconSetId[IconSet]) < 0) Lay_NotEnoughMemoryExit (); NumUsrs[IconSet] = Sta_GetNumUsrsWhoChoseAnOption (SubQuery); free ((void *) SubQuery); /* Update total number of users */ NumUsrsTotal += NumUsrs[IconSet]; } /***** Write number of users who have chosen each icon set *****/ for (IconSet = (Ico_IconSet_t) 0; IconSet < Ico_NUM_ICON_SETS; IconSet++) fprintf (Gbl.F.Out,"" "" "\"%s\"" "" "" "%u" "" "" "%5.2f%%" "" "", Gbl.Prefs.URLIcons, Cfg_ICON_FOLDER_ICON_SETS, Ico_IconSetId[IconSet], Ico_IconSetNames[IconSet], Ico_IconSetNames[IconSet], NumUsrs[IconSet], NumUsrsTotal ? (float) NumUsrs[IconSet] * 100.0 / (float) NumUsrsTotal : 0); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /*********** Get and show number of users who have chosen a menu *************/ /*****************************************************************************/ static void Sta_GetAndShowNumUsrsPerMenu (void) { extern const char *Hlp_ANALYTICS_Figures_menu; extern const char *Mnu_MenuIcons[Mnu_NUM_MENUS]; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; extern const char *Txt_Menu; extern const char *Txt_No_of_users; extern const char *Txt_PERCENT_of_users; extern const char *Txt_MENU_NAMES[Mnu_NUM_MENUS]; Mnu_Menu_t Menu; char *SubQuery; unsigned NumUsrs[Mnu_NUM_MENUS]; unsigned NumUsrsTotal = 0; /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_MENUS],NULL, Hlp_ANALYTICS_Figures_menu,Box_NOT_CLOSABLE,2); /***** Heading row *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_Menu, Txt_No_of_users, Txt_PERCENT_of_users); /***** For each menu... *****/ for (Menu = (Mnu_Menu_t) 0; Menu < Mnu_NUM_MENUS; Menu++) { /* Get number of users who have chosen this menu from database */ if (asprintf (&SubQuery,"usr_data.Menu=%u", (unsigned) Menu) < 0) Lay_NotEnoughMemoryExit (); NumUsrs[Menu] = Sta_GetNumUsrsWhoChoseAnOption (SubQuery); free ((void *) SubQuery); /* Update total number of users */ NumUsrsTotal += NumUsrs[Menu]; } /***** Write number of users who have chosen each menu *****/ for (Menu = (Mnu_Menu_t) 0; Menu < Mnu_NUM_MENUS; Menu++) fprintf (Gbl.F.Out,"" "" "\"%s\"" "" "" "%u" "" "" "%5.2f%%" "" "", Gbl.Prefs.URLIcons,Mnu_MenuIcons[Menu], Txt_MENU_NAMES[Menu], Txt_MENU_NAMES[Menu], NumUsrs[Menu], NumUsrsTotal ? (float) NumUsrs[Menu] * 100.0 / (float) NumUsrsTotal : 0); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /********** Get and show number of users who have chosen a theme *************/ /*****************************************************************************/ static void Sta_GetAndShowNumUsrsPerTheme (void) { extern const char *Hlp_ANALYTICS_Figures_theme; extern const char *The_ThemeId[The_NUM_THEMES]; extern const char *The_ThemeNames[The_NUM_THEMES]; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; extern const char *Txt_Theme_SKIN; extern const char *Txt_No_of_users; extern const char *Txt_PERCENT_of_users; The_Theme_t Theme; char *SubQuery; unsigned NumUsrs[The_NUM_THEMES]; unsigned NumUsrsTotal = 0; /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_THEMES],NULL, Hlp_ANALYTICS_Figures_theme,Box_NOT_CLOSABLE,2); /***** Heading row *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_Theme_SKIN, Txt_No_of_users, Txt_PERCENT_of_users); /***** For each theme... *****/ for (Theme = (The_Theme_t) 0; Theme < The_NUM_THEMES; Theme++) { /* Get number of users who have chosen this theme from database */ if (asprintf (&SubQuery,"usr_data.Theme='%s'", The_ThemeId[Theme]) < 0) Lay_NotEnoughMemoryExit (); NumUsrs[Theme] = Sta_GetNumUsrsWhoChoseAnOption (SubQuery); free ((void *) SubQuery); /* Update total number of users */ NumUsrsTotal += NumUsrs[Theme]; } /***** Write number of users who have chosen each theme *****/ for (Theme = (The_Theme_t) 0; Theme < The_NUM_THEMES; Theme++) fprintf (Gbl.F.Out,"" "" "\"%s\"" "" "" "%u" "" "" "%5.2f%%" "" "", Gbl.Prefs.URLIcons,Cfg_ICON_FOLDER_THEMES,The_ThemeId[Theme], The_ThemeNames[Theme], The_ThemeNames[Theme], NumUsrs[Theme], NumUsrsTotal ? (float) NumUsrs[Theme] * 100.0 / (float) NumUsrsTotal : 0); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /***** Get and show number of users who have chosen a layout of columns ******/ /*****************************************************************************/ static void Sta_GetAndShowNumUsrsPerSideColumns (void) { extern const char *Hlp_ANALYTICS_Figures_columns; extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES]; extern const char *Txt_Columns; extern const char *Txt_No_of_users; extern const char *Txt_PERCENT_of_users; unsigned SideCols; char *SubQuery; unsigned NumUsrs[4]; unsigned NumUsrsTotal = 0; extern const char *Txt_LAYOUT_SIDE_COLUMNS[4]; /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_STAT_USE_STAT_TYPES[Sta_SIDE_COLUMNS],NULL, Hlp_ANALYTICS_Figures_columns,Box_NOT_CLOSABLE,2); /***** Heading row *****/ fprintf (Gbl.F.Out,"" "" "%s" "" "" "%s" "" "" "%s" "" "", Txt_Columns, Txt_No_of_users, Txt_PERCENT_of_users); /***** For each language... *****/ for (SideCols = 0; SideCols <= Lay_SHOW_BOTH_COLUMNS; SideCols++) { /* Get the number of users who have chosen this layout of columns from database */ if (asprintf (&SubQuery,"usr_data.SideCols=%u", SideCols) < 0) Lay_NotEnoughMemoryExit (); NumUsrs[SideCols] = Sta_GetNumUsrsWhoChoseAnOption (SubQuery); free ((void *) SubQuery); /* Update total number of users */ NumUsrsTotal += NumUsrs[SideCols]; } /***** Write number of users who have chosen this layout of columns *****/ for (SideCols = 0; SideCols <= Lay_SHOW_BOTH_COLUMNS; SideCols++) fprintf (Gbl.F.Out,"" "" "\"%s\"" "" "" "%u" "" "" "%5.2f%%" "" "", Gbl.Prefs.URLIcons,SideCols >> 1,SideCols & 1, Txt_LAYOUT_SIDE_COLUMNS[SideCols], Txt_LAYOUT_SIDE_COLUMNS[SideCols], NumUsrs[SideCols], NumUsrsTotal ? (float) NumUsrs[SideCols] * 100.0 / (float) NumUsrsTotal : 0); /***** End table and box *****/ Box_EndBoxTable (); } /*****************************************************************************/ /************** Get number of users who have chosen an option ****************/ /*****************************************************************************/ unsigned Sta_GetNumUsrsWhoChoseAnOption (const char *SubQuery) { unsigned NumUsrs; /***** Get the number of users who have chosen this privacy option from database *****/ switch (Gbl.Scope.Current) { case Sco_SCOPE_SYS: NumUsrs = (unsigned) DB_QueryCOUNT ("can not get the number of users" " who have chosen an option", "SELECT COUNT(*)" " FROM usr_data WHERE %s", SubQuery); break; case Sco_SCOPE_CTY: NumUsrs = (unsigned) DB_QueryCOUNT ("can not get the number of users" " who have chosen an option", "SELECT COUNT(DISTINCT usr_data.UsrCod)" " FROM institutions,centres,degrees,courses,crs_usr,usr_data" " WHERE institutions.CtyCod=%ld" " AND institutions.InsCod=centres.InsCod" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=usr_data.UsrCod" " AND %s", Gbl.CurrentCty.Cty.CtyCod,SubQuery); break; case Sco_SCOPE_INS: NumUsrs = (unsigned) DB_QueryCOUNT ("can not get the number of users" " who have chosen an option", "SELECT COUNT(DISTINCT usr_data.UsrCod)" " FROM centres,degrees,courses,crs_usr,usr_data" " WHERE centres.InsCod=%ld" " AND centres.CtrCod=degrees.CtrCod" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=usr_data.UsrCod" " AND %s", Gbl.CurrentIns.Ins.InsCod,SubQuery); break; case Sco_SCOPE_CTR: NumUsrs = (unsigned) DB_QueryCOUNT ("can not get the number of users" " who have chosen an option", "SELECT COUNT(DISTINCT usr_data.UsrCod)" " FROM degrees,courses,crs_usr,usr_data" " WHERE degrees.CtrCod=%ld" " AND degrees.DegCod=courses.DegCod" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=usr_data.UsrCod" " AND %s", Gbl.CurrentCtr.Ctr.CtrCod,SubQuery); break; case Sco_SCOPE_DEG: NumUsrs = (unsigned) DB_QueryCOUNT ("can not get the number of users" " who have chosen an option", "SELECT COUNT(DISTINCT usr_data.UsrCod)" " FROM courses,crs_usr,usr_data" " WHERE courses.DegCod=%ld" " AND courses.CrsCod=crs_usr.CrsCod" " AND crs_usr.UsrCod=usr_data.UsrCod" " AND %s", Gbl.CurrentDeg.Deg.DegCod,SubQuery); break; case Sco_SCOPE_CRS: NumUsrs = (unsigned) DB_QueryCOUNT ("can not get the number of users" " who have chosen an option", "SELECT COUNT(DISTINCT usr_data.UsrCod)" " FROM crs_usr,usr_data" " WHERE crs_usr.CrsCod=%ld" " AND crs_usr.UsrCod=usr_data.UsrCod" " AND %s", Gbl.CurrentCrs.Crs.CrsCod,SubQuery); break; default: Lay_WrongScopeExit (); NumUsrs = 0; // Not reached. Initialized to avoid warning. break; } return NumUsrs; } /*****************************************************************************/ /**************** Compute the time used to generate the page *****************/ /*****************************************************************************/ void Sta_ComputeTimeToGeneratePage (void) { if (gettimeofday (&Gbl.tvPageCreated, &Gbl.tz)) // Error in gettimeofday Gbl.TimeGenerationInMicroseconds = 0; else { if (Gbl.tvPageCreated.tv_usec < Gbl.tvStart.tv_usec) { Gbl.tvPageCreated.tv_sec--; Gbl.tvPageCreated.tv_usec += 1000000; } Gbl.TimeGenerationInMicroseconds = (Gbl.tvPageCreated.tv_sec - Gbl.tvStart.tv_sec) * 1000000L + Gbl.tvPageCreated.tv_usec - Gbl.tvStart.tv_usec; } } /*****************************************************************************/ /****************** Compute the time used to send the page *******************/ /*****************************************************************************/ void Sta_ComputeTimeToSendPage (void) { if (gettimeofday (&Gbl.tvPageSent, &Gbl.tz)) // Error in gettimeofday Gbl.TimeSendInMicroseconds = 0; else { if (Gbl.tvPageSent.tv_usec < Gbl.tvPageCreated.tv_usec) { Gbl.tvPageSent.tv_sec--; Gbl.tvPageSent.tv_usec += 1000000; } Gbl.TimeSendInMicroseconds = (Gbl.tvPageSent.tv_sec - Gbl.tvPageCreated.tv_sec) * 1000000L + Gbl.tvPageSent.tv_usec - Gbl.tvPageCreated.tv_usec; } } /*****************************************************************************/ /************** Write the time to generate and send the page *****************/ /*****************************************************************************/ void Sta_WriteTimeToGenerateAndSendPage (void) { extern const char *Txt_PAGE1_Page_generated_in; extern const char *Txt_PAGE2_and_sent_in; char StrTimeGenerationInMicroseconds[Dat_MAX_BYTES_TIME + 1]; char StrTimeSendInMicroseconds[Dat_MAX_BYTES_TIME + 1]; Sta_WriteTime (StrTimeGenerationInMicroseconds,Gbl.TimeGenerationInMicroseconds); Sta_WriteTime (StrTimeSendInMicroseconds,Gbl.TimeSendInMicroseconds); fprintf (Gbl.F.Out,"%s %s %s %s", Txt_PAGE1_Page_generated_in,StrTimeGenerationInMicroseconds, Txt_PAGE2_and_sent_in,StrTimeSendInMicroseconds); } /*****************************************************************************/ /********* Write time (given in microseconds) depending on amount ************/ /*****************************************************************************/ void Sta_WriteTime (char Str[Dat_MAX_BYTES_TIME],long TimeInMicroseconds) { if (TimeInMicroseconds < 1000L) snprintf (Str,Dat_MAX_BYTES_TIME + 1, "%ld µs", TimeInMicroseconds); else if (TimeInMicroseconds < 1000000L) snprintf (Str,Dat_MAX_BYTES_TIME + 1, "%ld ms", TimeInMicroseconds / 1000); else if (TimeInMicroseconds < (60 * 1000000L)) snprintf (Str,Dat_MAX_BYTES_TIME + 1, "%.1f s", (float) TimeInMicroseconds / 1E6); else snprintf (Str,Dat_MAX_BYTES_TIME + 1, "%ld min, %ld s", TimeInMicroseconds / (60 * 1000000L), (TimeInMicroseconds / 1000000L) % 60); }