Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
HOTMapper
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Harbor Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
HOTMapper
HOTMapper
Merge requests
!13
v1.1.0
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
v1.1.0
v1.1.0
into
master
Overview
1
Commits
54
Pipelines
0
Changes
29
Merged
jvfpw18
requested to merge
v1.1.0
into
master
5 years ago
Overview
1
Commits
54
Pipelines
0
Changes
1
Expand
@hvehrenfried
0
0
Merge request reports
Compare
version 1
version 3
0b7ea826
5 years ago
version 2
8d4c58c5
5 years ago
version 1
03441b46
5 years ago
master (base)
and
version 2
latest version
e1be7d28
54 commits,
5 years ago
version 3
0b7ea826
53 commits,
5 years ago
version 2
8d4c58c5
52 commits,
5 years ago
version 1
03441b46
51 commits,
5 years ago
Show latest version
1 file
+
0
−
164
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
auto.sh deleted
100755 → 0
+
0
−
164
Options
#!/bin/bash
# Copyright (C) 2016 Centro de Computacao Cientifica e Software Livre
# Departamento de Informatica - Universidade Federal do Parana - C3SL/UFPR
#
# This file is part of HOTMapper.
#
# HOTMapper is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# HOTMapper 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with HOTMapper. If not, see <https://www.gnu.org/licenses/>.
# ---------------------------------------------------------------------------------------#
# Esse script tem como objetivo facilitar a criação do banco de dados do projeto SIMCAQ,
# conforme a necessidade dos desenvolvedores. O código é livre para modificações contanto
# que os que utilizam o script sejam notificados das mudanças decorrentes.
# ---------------------------------------------------------------------------------------#
# ---------------------------------------------------------------------------------------#
# Função para criar as tabelas que são consideradas bases para o banco de dados
# ---------------------------------------------------------------------------------------#
fBase
()
{
./manage.py execute_sql_group base
}
# ---------------------------------------------------------------------------------------#
# ---------------------------------------------------------------------------------------#
# Função para criar as tabelas a partir dos protocolos de mapeamento
# ---------------------------------------------------------------------------------------#
fCreate
()
{
./manage.py create escola
./manage.py create turma
./manage.py create matricula
./manage.py create docente
}
# ---------------------------------------------------------------------------------------#
# ---------------------------------------------------------------------------------------#
# Função para inserir dados nas tabelas criadas a partir dos protocolos de mapeamento
# ---------------------------------------------------------------------------------------#
fInsert
()
{
local
alpha
=
"
$2
"
while
[
"
$alpha
"
-le
"
$3
"
]
;
do
./manage.py insert
$1
${
alpha
}
_ESCOLAS.CSV escola
$alpha
--sep
=
\|
./manage.py insert
$1
${
alpha
}
_TURMAS.CSV turma
$alpha
--sep
=
\|
./manage.py insert
$1
${
alpha
}
_DOCENTES_CO.CSV docente
$alpha
--sep
=
\|
./manage.py insert
$1
${
alpha
}
_DOCENTES_NORTE.CSV docente
$alpha
--sep
=
\|
./manage.py insert
$1
${
alpha
}
_DOCENTES_NORDESTE.CSV docente
$alpha
--sep
=
\|
./manage.py insert
$1
${
alpha
}
_DOCENTES_SUDESTE.CSV docente
$alpha
--sep
=
\|
./manage.py insert
$1
${
alpha
}
_DOCENTES_SUL.CSV docente
$alpha
--sep
=
\|
./manage.py insert
$1
${
alpha
}
_MATRICULA_CO.CSV matricula
$alpha
--sep
=
\|
./manage.py insert
$1
${
alpha
}
_MATRICULA_NORTE.CSV matricula
$alpha
--sep
=
\|
./manage.py insert
$1
${
alpha
}
_MATRICULA_NORDESTE.CSV matricula
$alpha
--sep
=
\|
./manage.py insert
$1
${
alpha
}
_MATRICULA_SUDESTE.CSV matricula
$alpha
--sep
=
\|
./manage.py insert
$1
${
alpha
}
_MATRICULA_SUL.CSV matricula
$alpha
--sep
=
\|
alpha
=
$((
$alpha
+
1
))
done
}
# ---------------------------------------------------------------------------------------#
# ---------------------------------------------------------------------------------------#
# Função para criar tabelas agregadas a partir de sql
# ---------------------------------------------------------------------------------------#
fAggregate
()
{
./manage.py execute_sql_group simcaq_aggregate
}
# ---------------------------------------------------------------------------------------#
# ---------------------------------------------------------------------------------------#
# Retorna uma ajuda caso não haja parâmetros de entrada
# ---------------------------------------------------------------------------------------#
if
[
!
$1
]
;
then
printf
"
\n
# WARNING: Don't forget to check the settings file for the database name.
\n
"
printf
"
\n
# This script has 4 commands:
\n
"
printf
"# 1. all: execute all commands to create the database and insert data.
\n
"
printf
"# 2. base: execute the commands to create de base tables.
\n
"
printf
"# 3. create: execute the commands to create the tables.
\n
"
printf
"# 4. insert: execute the commands to insert data to tables.
\n\n
"
printf
"# Estructure of commands:
\n
"
printf
"# 1. ./auto.sh all [path_to_files] [initial_year]"
printf
" [final_year]
\n
"
printf
"# 2. ./auto.sh base
\n
"
printf
"# 3. ./auto.sh create
\n
"
printf
"# 4. ./auto.sh insert [path_to_files] [initial_year] [final_year]
\n\n
"
exit
0
;
fi
# ---------------------------------------------------------------------------------------#
# ---------------------------------------------------------------------------------------#
# Execução do script conforme os comandos passados
# ---------------------------------------------------------------------------------------#
source
./env/bin/activate
if
[
$?
=
0
]
;
then
printf
"
\n
# Environment activated!
\n
"
if
[
"
$1
"
=
'all'
]
;
then
if
[
$2
]
&&
[
$3
]
&&
[
$4
]
;
then
printf
"
\n
# Initializing the creation of base tables...
\n
"
sleep
1
fBase
printf
"
\n
# Initializing the creation of mapping tables...
\n
"
sleep
1
fCreate
printf
"
\n
# Initializing the insertion of data, this may take a while...
\n
"
sleep
2
fInsert
"
$2
"
"
$3
"
"
$4
"
sleep
1
printf
"
\n
# Initializing the creation of aggregate tables...
\n
"
sleep
1
fAggregate
else
printf
"# ERROR: Missing parameters!
\n
"
exit
-1
;
fi
elif
[
"
$1
"
=
'base'
]
;
then
printf
"
\n
# Initializing the creation of base tables...
\n
"
sleep
1
fBase
sleep
1
elif
[
"
$1
"
=
'create'
]
;
then
printf
"
\n
# Initializing the creation of tables...
\n
"
sleep
1
fCreate
sleep
1
elif
[
"
$1
"
=
'insert'
]
;
then
if
[
$2
]
&&
[
$3
]
&&
[
$4
]
;
then
printf
"
\n
# Initializing the insertion of data, this may take a while...
\n
"
sleep
2
fInsert
"
$2
"
"
$3
"
"
$4
"
sleep
1
else
printf
"# ERROR: Missing parameters!
\n
"
exit
-1
;
fi
else
printf
"
\n
# ERROR: Missing parameters!
\n
"
deactivate
printf
"
\n
# Environment deactivated!
\n
"
printf
"# Terminating...
\n
"
sleep
1
exit
-1
;
fi
deactivate
printf
"
\n
# Environment deactivated!
\n
"
printf
"
\n
# All done! Terminating...
\n
"
sleep
1
exit
0
;
else
printf
"# ERROR: can't find the directory for environment!
\n
"
exit
-1
;
fi
Loading