buildframework/helium/sf/python/pythoncore/lib/ido.py
author wbernard
Fri, 13 Aug 2010 14:59:05 +0300
changeset 628 7c4a911dc066
parent 588 c7c26511138f
permissions -rw-r--r--
helium_11.0.0-e00f171ca185
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     1
#============================================================================ 
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     2
#Name        : ido.py 
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     3
#Part of     : Helium 
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     4
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     5
#Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     6
#All rights reserved.
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     7
#This component and the accompanying materials are made available
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     8
#under the terms of the License "Eclipse Public License v1.0"
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     9
#which accompanies this distribution, and is available
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    10
#at the URL "http://www.eclipse.org/legal/epl-v10.html".
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    11
#
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    12
#Initial Contributors:
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    13
#Nokia Corporation - initial contribution.
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    14
#
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    15
#Contributors:
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    16
#
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    17
#Description:
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    18
#===============================================================================
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    19
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    20
"""
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    21
IDO specific features
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    22
    * find layer_real_source_path from sysdef file.
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    23
    * time manipulation for robot releasing.
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    24
"""
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    25
import re
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    26
import datetime
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    27
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    28
MATCH_ENTITY = re.compile(r".*ENTITY\s+layer_real_source_path\s+\"(.+)\"\s*>?.*")
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    29
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    30
def get_sysdef_location(sysdef):
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    31
    """ Search for layer_real_source_path entity inside the sysdef file. """
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 588
diff changeset
    32
    input_ = open(sysdef, 'r')
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 588
diff changeset
    33
    for line in input_.readlines():
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    34
        result = MATCH_ENTITY.match(line)
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    35
        if result != None:
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 588
diff changeset
    36
            input_.close()
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    37
            return result.groups()[0]
628
7c4a911dc066 helium_11.0.0-e00f171ca185
wbernard
parents: 588
diff changeset
    38
    input_.close()
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    39
    print 'layer_real_source_path entity not found in ' + sysdef
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    40
    return None
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    41
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    42
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    43
def get_first_day_of_cycle(now = datetime.datetime.now()):
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    44
    """ This function returns a datetime object representing the monday from closest
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    45
        odd week.
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    46
    """
588
c7c26511138f helium-10.0.0-bc45d50958fe
wbernard
parents: 587
diff changeset
    47
    _, isoweek, isoday = now.isocalendar()
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    48
    week = isoweek - 1
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    49
    day = isoday - 1
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    50
    monday = now - datetime.timedelta(days=day + week.__mod__(2) * 7)
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    51
    monday = monday.replace(hour = 0, minute = 0, second = 0, microsecond = 0)
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    52
    return monday
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    53
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    54
def get_absolute_date(day, time, now = datetime.datetime.now()):
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    55
    """ Get the absolute date from the day and time. """
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    56
    time = datetime.datetime.strptime(time, "%H:%M")
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    57
    delta = datetime.timedelta(days = day-1, hours = time.hour, minutes= time.minute)
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    58
    return get_first_day_of_cycle(now) + delta
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    59
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    60
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    61
def is_in_interval(day1, time1, day2, time2, now = datetime.datetime.now()):
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    62
    """ Return True is get_absolute_date(day1, time1) < now < get_absolute_date(day2, time2). """
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    63
    delta1 = get_absolute_date(day1, time1, now)
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    64
    delta2 = get_absolute_date(day2, time2, now)
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    65
    if now <= delta1:
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    66
        return False
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    67
    if delta2 <= now:
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    68
        return False
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    69
    return True
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    70