Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
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
RadioObservatory
LOFAR
Commits
3f4fee69
Commit
3f4fee69
authored
15 years ago
by
Ruud Overeem
Browse files
Options
Downloads
Patches
Plain Diff
Bug 1284: Added new functions for SASscheduler
parent
195c7923
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitattributes
+2
-0
2 additions, 0 deletions
.gitattributes
SAS/OTDB/sql/getSchedulerInfo.sql
+87
-0
87 additions, 0 deletions
SAS/OTDB/sql/getSchedulerInfo.sql
SAS/OTDB/sql/getTreesInPeriod_func.sql
+73
-0
73 additions, 0 deletions
SAS/OTDB/sql/getTreesInPeriod_func.sql
with
162 additions
and
0 deletions
.gitattributes
+
2
−
0
View file @
3f4fee69
...
@@ -1356,7 +1356,9 @@ SAS/OTB/scripts/src/Makefile.am -text
...
@@ -1356,7 +1356,9 @@ SAS/OTB/scripts/src/Makefile.am -text
SAS/OTB/scripts/src/checkOTDBServer -text
SAS/OTB/scripts/src/checkOTDBServer -text
SAS/OTB/scripts/src/startOTB -text
SAS/OTB/scripts/src/startOTB -text
SAS/OTDB/sql/fresh_sas001_database.sh -text
SAS/OTDB/sql/fresh_sas001_database.sh -text
SAS/OTDB/sql/getSchedulerInfo.sql -text
SAS/OTDB/sql/getTreeGroup_func.sql -text
SAS/OTDB/sql/getTreeGroup_func.sql -text
SAS/OTDB/sql/getTreesInPeriod_func.sql -text
SDP/SPP/DSP[!!-~]BUILDER/myfilterbank.mdl -text
SDP/SPP/DSP[!!-~]BUILDER/myfilterbank.mdl -text
SDP/SPP/MATLAB/gui2/gui_qt.fig -text svneol=unset#unset
SDP/SPP/MATLAB/gui2/gui_qt.fig -text svneol=unset#unset
SDP/SPP/VHDL/FFT/aukfft_acmxaa.tdf -text svneol=unset#unset
SDP/SPP/VHDL/FFT/aukfft_acmxaa.tdf -text svneol=unset#unset
...
...
This diff is collapsed.
Click to expand it.
SAS/OTDB/sql/getSchedulerInfo.sql
0 → 100644
+
87
−
0
View file @
3f4fee69
--
-- getSchedulerInfo.sql: function for getting treeinfo from the OTDB
--
-- Copyright (C) 2010
-- ASTRON (Netherlands Foundation for Research in Astronomy)
-- P.O.Box 2, 7990 AA Dwingeloo, The Netherlands, seg@astron.nl
--
-- This program 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 2 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 General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program; if not, write to the Free Software
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
--
-- $Id: getSchedulerInfo.sql 8438 2006-05-18 19:16:37Z overeem $
--
CREATE
TYPE
schedulerInfo
AS
(
CEPProcessingUnits
INT4
,
declination
VARCHAR
(
20
),
firstPossibleDate
VARCHAR
(
20
),
fixedDay
BOOLEAN
,
fixedTime
BOOLEAN
,
lastPossibleDate
VARCHAR
(
20
),
late
BOOLEAN
,
nightTimeWeightFactor
INT4
,
nrOfSubbands
INT4
,
offlineProcessingUnits
INT4
,
predMaxTimeDif
VARCHAR
(
20
),
predMinTimeDif
VARCHAR
(
20
),
predecessor
INT4
,
priority
FLOAT
,
referenceFrame
VARCHAR
(
20
),
rightAscention
VARCHAR
(
20
),
sources
TEXT
,
storageUnits
INT4
,
taskDuration
VARCHAR
(
20
),
taskStatus
VARCHAR
(
20
),
taskType
VARCHAR
(
20
),
unscheduledReason
VARCHAR
(
20
),
windowMaximumTime
VARCHAR
(
20
),
windowMinimumTime
VARCHAR
(
20
)
);
CREATE
OR
REPLACE
FUNCTION
getSchedulerInfo
(
INT4
)
RETURNS
schedulerInfo
AS
'
DECLARE vRecord schedulerInfo;
DECLARE fieldList CURSOR FOR
SELECT limits FROM getvhitemlist($1,
\'
%Observation.Scheduler.%
\'
) ORDER BY name ASC;
BEGIN
OPEN fieldList;
FETCH fieldList INTO vRecord.CEPProcessingUnits;
FETCH fieldList INTO vRecord.declination;
FETCH fieldList INTO vRecord.firstPossibleDate;
FETCH fieldList INTO vRecord.fixedDay;
FETCH fieldList INTO vRecord.fixedTime;
FETCH fieldList INTO vRecord.lastPossibleDate;
FETCH fieldList INTO vRecord.late;
FETCH fieldList INTO vRecord.nightTimeWeightFactor;
FETCH fieldList INTO vRecord.nrOfSubbands;
FETCH fieldList INTO vRecord.offlineProcessingUnits;
FETCH fieldList INTO vRecord.predMaxTimeDif;
FETCH fieldList INTO vRecord.predMinTimeDif;
FETCH fieldList INTO vRecord.predecessor;
FETCH fieldList INTO vRecord.priority;
FETCH fieldList INTO vRecord.referenceFrame;
FETCH fieldList INTO vRecord.rightAscention;
FETCH fieldList INTO vRecord.sources;
FETCH fieldList INTO vRecord.storageUnits;
FETCH fieldList INTO vRecord.taskDuration;
FETCH fieldList INTO vRecord.taskStatus;
FETCH fieldList INTO vRecord.taskType;
FETCH fieldList INTO vRecord.unscheduledReason;
FETCH fieldList INTO vRecord.windowMaximumTime;
FETCH fieldList INTO vRecord.windowMinimumTime;
RETURN vRecord;
END;
'
language
plpgsql
;
This diff is collapsed.
Click to expand it.
SAS/OTDB/sql/getTreesInPeriod_func.sql
0 → 100644
+
73
−
0
View file @
3f4fee69
--
-- searchTreeInPeriod.sql: function for getting treeinfo from the OTDB
--
-- Copyright (C) 2005
-- ASTRON (Netherlands Foundation for Research in Astronomy)
-- P.O.Box 2, 7990 AA Dwingeloo, The Netherlands, seg@astron.nl
--
-- This program 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 2 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 General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program; if not, write to the Free Software
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
--
-- $Id: getTreeList_func.sql 9997 2007-03-01 12:21:46Z overeem $
--
--
-- getTreesInPeriod (treeType, startDate, endDate)
--
-- Get a list of trees.
--
-- Authorisation: none
--
-- Tables: otdbtree read
-- otdbuser read
-- campaign read
--
-- Types: treeInfo
--
CREATE
OR
REPLACE
FUNCTION
getTreesInPeriod
(
INT2
,
TIMESTAMP
,
TIMESTAMP
)
RETURNS
SETOF
treeInfo
AS
'
DECLARE
vRecord RECORD;
vQuery TEXT;
BEGIN
-- Construct where clause
vQuery :=
\'
WHERE t.treetype =
\'
|| chr(39) || $1 || chr(39) ||
\'
AND (t.starttime <=
\'
;
vQuery := vQuery || chr(39) || $3 || chr(39) ||
\'
AND t.stoptime >=
\'
|| chr(39) || $2 || chr(39) ||
\'
)
\'
;
-- do selection
FOR vRecord IN EXECUTE
\'
SELECT t.treeID,
t.momID,
t.classif,
u.username,
t.d_creation,
t.treetype,
t.state,
t.originID,
c.name,
t.starttime,
t.stoptime,
t.description
FROM OTDBtree t
INNER JOIN OTDBuser u ON t.creator = u.userid
INNER JOIN campaign c ON c.ID = t.campaign
\'
|| vQuery ||
\'
ORDER BY t.treeID ASC
\'
LOOP
RETURN NEXT vRecord;
END LOOP;
RETURN;
END
'
LANGUAGE
plpgsql
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment