2011-04-18 11:32:19 +02:00
import time
import subprocess
2018-04-12 16:27:41 +02:00
# import StringIO
2011-04-18 11:32:19 +02:00
import re
2018-04-12 16:27:41 +02:00
# from wol import *
# import os
# import signal
2011-04-18 11:32:19 +02:00
import smtplib
from email . MIMEText import MIMEText
2018-04-12 16:27:41 +02:00
from HTMLParser import HTMLParser
2011-04-18 11:32:19 +02:00
2018-04-12 16:27:41 +02:00
def sendTextMail ( strFrom , to , strSubject , text ) :
# from = "SimpaCluster <guillaume.raffy@univ-rennes1.fr>"
2011-04-18 11:32:19 +02:00
mail = MIMEText ( text )
mail [ ' From ' ] = strFrom
mail [ ' Subject ' ] = strSubject
mail [ ' To ' ] = to
smtp = smtplib . SMTP ( ' smtp.univ-rennes1.fr ' , 25 )
2018-04-12 16:27:41 +02:00
# smtp.connect()
# smtp.login('guillaume.raffy@univ-rennes1.fr', 'password')
2011-04-18 11:32:19 +02:00
smtp . sendmail ( strFrom , [ to ] , mail . as_string ( ) )
smtp . close ( )
2018-04-12 16:27:41 +02:00
class Error ( Exception ) :
def __init__ ( self , strMessage ) :
self . m_strMessage = strMessage
2012-02-07 15:14:48 +01:00
def getHostName ( ) :
2018-04-12 16:27:41 +02:00
( returnCode , stdout , stderr ) = executeProgram ( [ ' hostname ' , ' -s ' ] )
if returnCode != 0 :
raise Error ( stderr )
strHostName = re . sub ( r " \ n " , " " , stdout )
return strHostName
def log ( message ) :
print time . asctime ( time . localtime ( ) ) + ' : ' + message
def executeProgram ( astrArguments ) :
# log('executeProgram : program [%s]' % (','.join(astrArguments)))
popen = subprocess . Popen ( astrArguments , bufsize = 1 , shell = False , stdout = subprocess . PIPE , stderr = subprocess . PIPE ) # bufsize=1 seems to prevent deadlocks that happen 50% the time
stdout , stderr = popen . communicate ( )
# popen.wait()
result = ( popen . returncode , stdout , stderr )
# log('executeProgram : command %s popen.pid = %d' % (astrArguments[0], popen.pid))
# os.kill(popen.pid, signal.SIGTERM)
return result
def executeCommand ( command ) :
"""
executes the shell command such as ' set x=1; myprog $x '
"""
popen = subprocess . Popen ( [ command ] , bufsize = 1 , shell = True , stdout = subprocess . PIPE , stderr = subprocess . PIPE , executable = ' /bin/bash ' ) # bufsize=1 seems to prevent deadlocks that happen 50% the time
# if we don't specify the optional executable argument, then the default non interactive shell will be used. On debian, the default non-interactive shell is dash, which doesn't understand the keyword 'source' that we use in many places
stdout , stderr = popen . communicate ( )
# popen.wait()
result = ( popen . returncode , stdout , stderr )
return result
2018-06-20 10:04:29 +02:00
def executeCommandOn ( target_machine_fqdn , strCommand , remote_user = None ) :
2018-04-12 16:27:41 +02:00
"""
execute command on a local or remote machine ( using ssh then )
2018-06-20 10:04:29 +02:00
: param str remote_user :
2018-04-12 16:27:41 +02:00
"""
2018-04-16 11:53:40 +02:00
print ( " comparing %s and %s " % ( getHostName ( ) , target_machine_fqdn . split ( ' . ' ) [ 0 ] ) )
if getHostName ( ) == target_machine_fqdn . split ( ' . ' ) [ 0 ] :
2018-04-12 16:27:41 +02:00
return executeCommand ( strCommand )
else :
2018-06-20 10:04:29 +02:00
if not remote_user is None :
target = ' %s @ %s ' % ( remote_user , target_machine_fqdn )
else :
target = target_machine_fqdn
return executeProgram ( [ ' ssh ' , target , " %s " % strCommand ] )
2011-04-18 11:32:19 +02:00
def getUpsStatus ( ) :
2018-04-12 16:27:41 +02:00
class MyHTMLParser ( HTMLParser ) :
def __init__ ( self ) :
HTMLParser . __init__ ( self )
self . TokenList = [ ]
def handle_data ( self , data ) :
data = data . strip ( )
if data and len ( data ) > 0 :
self . TokenList . append ( data )
# print data
def GetTokenList ( self ) :
return self . TokenList
import urllib2
try :
url = ' http://Net Vision:public@129.20.27.119/PageMonComprehensive.html '
f = urllib2 . urlopen ( url )
res = f . read ( )
f . close ( )
except :
print " bad read "
return
h = MyHTMLParser ( )
h . feed ( res )
tokensList = h . GetTokenList ( ) # @UnusedVariable
2011-04-18 11:32:19 +02:00
if __name__ == ' __main__ ' :
2018-04-12 16:27:41 +02:00
from SimpaDbUtil import wakeUp
"""
for i in range ( 30 ) :
machineName = ' simpatix %d ' % ( i + 10 )
print ' lom ip of %s is %s ' % ( machineName , getLightOutManagementIpAddress ( machineName ) )
"""
wakeUp ( ' simpatix21 ' )
# print putToSleep('simpatix13')
# print isNonRespondingMachineSleeping('simpatix13')