swad-core/swad_statistic.h

149 lines
5.2 KiB
C
Raw Normal View History

2014-12-01 23:55:08 +01:00
// swad_statistic.h: statistics
#ifndef _SWAD_STA
#define _SWAD_STA
/*
SWAD (Shared Workspace At a Distance in Spanish),
is a web platform developed at the University of Granada (Spain),
and used to support university teaching.
This file is part of SWAD core.
2015-01-01 14:34:06 +01:00
Copyright (C) 1999-2015 Antonio Ca<EFBFBD>as Vargas
2014-12-01 23:55:08 +01:00
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 <http://www.gnu.org/licenses/>.
*/
/*****************************************************************************/
/********************************* Headers ***********************************/
/*****************************************************************************/
#include "swad_user.h"
/*****************************************************************************/
/************************** Public types and constants ***********************/
/*****************************************************************************/
#define Sta_NUM_ROLES_STAT 11
typedef enum
{
Sta_IDENTIFIED_USRS = 0,
Sta_ALL_USRS = 1,
Sta_INS_ADMINS = 2,
Sta_CTR_ADMINS = 3,
Sta_DEG_ADMINS = 4,
Sta_TEACHERS = 5,
Sta_STUDENTS = 6,
Sta_VISITORS = 7,
Sta_GUESTS = 8,
Sta_UNKNOWN_USRS = 9,
Sta_ME = 10,
} Sta_Role_t;
#define Sta_NUM_STAT_COUNT_TYPES 5
typedef enum
{
Sta_TOTAL_CLICKS = 0,
Sta_DISTINCT_USRS = 1,
Sta_CLICKS_PER_USR = 2,
Sta_GENERATION_TIME = 3,
Sta_SEND_TIME = 4,
} Sta_CountType_t;
#define Sta_NUM_TYPES_CLICK_STATS 21
typedef enum
{
Sta_ACC_CRS_LISTING = 0,
Sta_ACC_CRS_PER_USR = 1,
Sta_ACC_CRS_PER_DAYS = 2,
Sta_ACC_CRS_PER_DAYS_AND_HOUR = 3,
Sta_ACC_CRS_PER_WEEKS = 4,
Sta_ACC_CRS_PER_MONTHS = 5,
Sta_ACC_CRS_PER_HOUR = 6,
Sta_ACC_CRS_PER_MINUTE = 7,
Sta_ACC_CRS_PER_ACTION = 8,
Sta_ACC_GBL_PER_DAYS = 9,
Sta_ACC_GBL_PER_DAYS_AND_HOUR = 10,
Sta_ACC_GBL_PER_WEEKS = 11,
Sta_ACC_GBL_PER_MONTHS = 12,
Sta_ACC_GBL_PER_HOUR = 13,
Sta_ACC_GBL_PER_MINUTE = 14,
Sta_ACC_GBL_PER_ACTION = 15,
Sta_ACC_GBL_PER_PLUGIN = 16,
Sta_ACC_GBL_PER_Svc_FUNCTION = 17,
Sta_ACC_GBL_PER_BANNER = 18,
Sta_ACC_GBL_PER_DEGREE = 19,
Sta_ACC_GBL_PER_COURSE = 20,
} Sta_ClicksStatType_t;
2015-04-03 14:04:26 +02:00
#define Sta_NUM_TYPES_USE_STATS 21
2014-12-01 23:55:08 +01:00
typedef enum
{
Sta_USERS, // Number of users
2015-04-03 11:49:11 +02:00
Sta_USERS_RANKING, // Users' ranking
Sta_HIERARCHY, // Number of countries, institutions, centres, degrees and courses
2015-04-03 14:04:26 +02:00
Sta_INSTITUTIONS, // Number of users in each institution
2014-12-01 23:55:08 +01:00
Sta_SOCIAL_NETWORKS, // Number of users in social networks
Sta_FOLDERS_AND_FILES, // Number of folders and files
Sta_OER, // Number of OERs (Open Educational Resources)
Sta_ASSIGNMENTS, // Number of assignments
Sta_TESTS, // Number of test questions
Sta_NOTIFY_EVENTS, // Number of users per notify event
Sta_NOTICES, // Number of notices
2015-04-03 11:49:11 +02:00
Sta_MESSAGES, // Number of users' (sent and received) messages
2014-12-01 23:55:08 +01:00
Sta_FORUMS, // Number of forums, threads and posts
Sta_SURVEYS, // Number of surveys
2015-03-16 14:05:16 +01:00
Sta_PRIVACY, // Number of users per privacity
2014-12-01 23:55:08 +01:00
Sta_LANGUAGES, // Number of users per language
Sta_LAYOUTS, // Number of users per layout
Sta_THEMES, // Number of users per theme
2015-01-02 18:05:56 +01:00
Sta_ICON_SETS, // Number of users per icon set
Sta_MENUS, // Number of users per menu
Sta_SIDE_COLUMNS, // Number of users per layout of columns
2014-12-01 23:55:08 +01:00
} Sta_UseStatType_t;
#define Sta_NUM_COLOR_TYPES 3
typedef enum
{
Sta_COLOR,
Sta_BLACK_TO_WHITE,
Sta_WHITE_TO_BLACK,
} Sta_ColorType_t;
#define Sta_NUM_STAT_CRS_FILE_ZONES 9
/*****************************************************************************/
/***************************** Public prototypes *****************************/
/*****************************************************************************/
void Sta_GetRemoteAddr (void);
void Sta_ExitIfTooFast (void);
void Sta_LogAccess (const char *Comments);
void Sta_RemoveOldEntriesRecentLog (void);
void Sta_AskSeeCrsAccesses (void);
void Sta_AskSeeGblAccesses (void);
void Sta_SetIniEndDates (void);
void Sta_SeeCrsAccesses (void);
void Sta_SeeGblAccesses (void);
void Sta_ReqUseOfPlatform (void);
void Sta_ShowUseOfPlatform (void);
unsigned Sta_GetTotalNumberOfUsers (Sco_Scope_t Scope,Rol_Role_t Role);
void Sta_WriteParamsDatesSeeAccesses (void);
void Sta_ComputeTimeToGeneratePage (void);
void Sta_ComputeTimeToSendPage (void);
void Sta_WriteTimeToGenerateAndSendPage (void);
void Sta_WriteTime (char *Str,long TimeInMicroseconds);
#endif