swad-core/swad_search.h

87 lines
3.4 KiB
C
Raw Normal View History

2014-12-01 23:55:08 +01:00
// swad_search.c: edition of courses
#ifndef _SWAD_SCH
#define _SWAD_SCH
/*
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.
2019-01-07 21:52:19 +01:00
Copyright (C) 1999-2019 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 **********************************/
/*****************************************************************************/
/*****************************************************************************/
/****************************** Public constants *****************************/
/*****************************************************************************/
2017-03-08 14:12:33 +01:00
#define Sch_MAX_CHARS_STRING_TO_FIND (128 - 1) // 127
#define Sch_MAX_BYTES_STRING_TO_FIND ((Sch_MAX_CHARS_STRING_TO_FIND + 1) * Str_MAX_BYTES_PER_CHAR - 1) // 2047
2017-03-07 11:03:05 +01:00
2016-06-29 18:27:49 +02:00
#define Sch_MAX_WORDS_IN_SEARCH 10
2017-03-07 11:03:05 +01:00
2017-03-08 14:12:33 +01:00
#define Sch_MAX_CHARS_SEARCH_WORD (128 - 1) // 127
#define Sch_MAX_BYTES_SEARCH_WORD ((Sch_MAX_CHARS_SEARCH_WORD - 1) * Str_MAX_BYTES_PER_CHAR - 1) // 2047
2017-03-07 11:03:05 +01:00
2017-03-12 21:15:32 +01:00
#define Sch_MAX_BYTES_SEARCH_QUERY (Sch_MAX_WORDS_IN_SEARCH * (128 + Sch_MAX_BYTES_SEARCH_WORD))
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/******************************** Public types *******************************/
/*****************************************************************************/
2017-02-28 00:59:01 +01:00
#define Sch_NUM_WHAT_TO_SEARCH 14
2014-12-01 23:55:08 +01:00
typedef enum
{
2017-01-29 12:42:19 +01:00
Sch_SEARCH_UNKNOWN = 0,
Sch_SEARCH_ALL = 1,
2017-02-28 00:59:01 +01:00
Sch_SEARCH_COUNTRIES = 2,
Sch_SEARCH_INSTITS = 3,
Sch_SEARCH_CENTRES = 4,
Sch_SEARCH_DEGREES = 5,
Sch_SEARCH_COURSES = 6,
Sch_SEARCH_USERS = 7,
Sch_SEARCH_TEACHERS = 8,
Sch_SEARCH_STUDENTS = 9,
Sch_SEARCH_GUESTS = 10,
Sch_SEARCH_OPEN_DOCUMENTS = 11,
Sch_SEARCH_DOCUM_IN_MY_COURSES = 12,
Sch_SEARCH_MY_DOCUMENTS = 13,
2014-12-01 23:55:08 +01:00
} Sch_WhatToSearch_t;
2017-01-29 12:42:19 +01:00
#define Sch_WHAT_TO_SEARCH_DEFAULT Sch_SEARCH_ALL
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/****************************** Public prototypes ****************************/
/*****************************************************************************/
void Sch_ReqSysSearch (void);
2016-06-24 20:16:06 +02:00
void Sch_PutFormToSearchInPageTopHeading (void);
2016-04-18 10:22:56 +02:00
void Sch_PutInputStringToSearch (const char *IdInputText);
void Sch_PutMagnifyingGlassButton (const char *Icon);
2014-12-13 21:38:31 +01:00
void Sch_GetParamWhatToSearch (void);
2014-12-01 23:55:08 +01:00
void Sch_GetParamsSearch (void);
void Sch_SysSearch (void);
2017-03-07 11:03:05 +01:00
bool Sch_BuildSearchQuery (char SearchQuery[Sch_MAX_BYTES_SEARCH_QUERY + 1],
2017-01-16 01:51:01 +01:00
const char *FieldName,
2016-06-29 18:27:49 +02:00
const char *CharSet,const char *Collate);
2014-12-01 23:55:08 +01:00
#endif