utils.py 14 KB
Newer Older
Łukasz Nowak's avatar
Łukasz Nowak committed
1 2 3 4 5
import slapos.slap
import time
import subprocess
import os
from xml_marshaller import xml_marshaller
6 7 8 9 10
import re
import urllib
from flask import jsonify
import shutil
import string
Łukasz Nowak's avatar
Łukasz Nowak committed
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28


class Popen(subprocess.Popen):
  def __init__(self, *args, **kwargs):
    kwargs['stdin'] = subprocess.PIPE
    kwargs['stderr'] = subprocess.STDOUT
    kwargs.setdefault('stdout', subprocess.PIPE)
    kwargs.setdefault('close_fds', True)
    subprocess.Popen.__init__(self, *args, **kwargs)
    self.stdin.flush()
    self.stdin.close()
    self.stdin = None


def updateProxy(config):
  if not os.path.exists(config['instance_root']):
    os.mkdir(config['instance_root'])
  slap = slapos.slap.slap()
29
  profile = getProfilePath(config['runner_workdir'], config['software_profile'])
Łukasz Nowak's avatar
Łukasz Nowak committed
30
  slap.initializeConnection(config['master_url'])
31
  slap.registerSupply().supply(profile, computer_guid=config['computer_id'])
Łukasz Nowak's avatar
Łukasz Nowak committed
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
  computer = slap.registerComputer(config['computer_id'])
  prefix = 'slappart'
  slap_config = {
 'address': config['ipv4_address'],
 'instance_root': config['instance_root'],
 'netmask': '255.255.255.255',
 'partition_list': [
                    ],
 'reference': config['computer_id'],
 'software_root': config['software_root']}
  for i in xrange(0, int(config['partition_amount'])):
    partition_reference = '%s%s' % (prefix, i)
    partition_path = os.path.join(config['instance_root'], partition_reference)
    if not os.path.exists(partition_path):
      os.mkdir(partition_path)
    os.chmod(partition_path, 0750)
    slap_config['partition_list'].append({'address_list': [{'addr': config['ipv4_address'],
                                       'netmask': '255.255.255.255'},
                                      {'addr': config['ipv6_address'],
                                       'netmask': 'ffff:ffff:ffff::'},
                      ],
                     'path': partition_path,
                     'reference': partition_reference,
                     'tap': {'name': partition_reference},
                     })

  computer.updateConfiguration(xml_marshaller.dumps(slap_config))
59
  slap.registerOpenOrder().request(profile,
Łukasz Nowak's avatar
Łukasz Nowak committed
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
              partition_reference=partition_reference)


def readPid(file):
  if os.path.exists(file):
    data = open(file).read().strip()
    try:
      return int(data)
    except Exception:
      return 0
  return 0


def writePid(file, pid):
  open(file, 'w').write(str(pid))


def startProxy(config):
  proxy_pid = os.path.join(config['runner_workdir'], 'proxy.pid')
  pid = readPid(proxy_pid)
  running = False
  if pid:
    try:
      os.kill(pid, 0)
    except Exception:
      pass
    else:
      running = True
  if not running:
    proxy = Popen([config['slapproxy'], config['configuration_file_path']])
    proxy_pid = os.path.join(config['runner_workdir'], 'proxy.pid')
    writePid(proxy_pid, proxy.pid)
    time.sleep(5)


def stopProxy(config):
  pid = readPid(os.path.join(config['runner_workdir'], 'proxy.pid'))
  if pid:
    try:
      os.kill(pid)
    except:
      pass


def removeProxyDb(config):
  if os.path.exists(config['database_uri']):
    os.unlink(config['database_uri'])

def isSoftwareRunning(config):
  slapgrid_pid = os.path.join(config['runner_workdir'], 'slapgrid-sr.pid')
  pid = readPid(slapgrid_pid)
  if pid:
    try:
      os.kill(pid, 0)
    except Exception:
      running = False
    else:
      running = True
  else:
    running = False
  return running


def runSoftwareWithLock(config):
  slapgrid_pid = os.path.join(config['runner_workdir'], 'slapgrid-sr.pid')
  if not isSoftwareRunning(config):
    if not os.path.exists(config['software_root']):
      os.mkdir(config['software_root'])
    stopProxy(config)
    removeProxyDb(config)
    startProxy(config)
    logfile = open(config['software_log'], 'w')
    updateProxy(config)
    slapgrid = Popen([config['slapgrid_sr'], '-vc', config['configuration_file_path']], stdout=logfile)
    writePid(slapgrid_pid, slapgrid.pid)
    slapgrid.wait()
136
    #Saves the current compile software for re-use
137
    #This uses the new software create by slapgrid (if not exits yet)
138 139 140 141 142 143 144 145 146 147 148 149 150
    data = loadSoftwareData(config['runner_workdir'])
    md5 = ""    
    for path in os.listdir(config['software_root']):
      exist = False
      for val in data:
	if val['md5'] == path:	  
	  exist = True
      if not exist: #save this compile software folder
	data.append({"title":getProjectTitle(config), "md5":path,
	            "path": open(os.path.join(config['runner_workdir'],
	                                      ".project"), 'r').read()})
	writeSoftwareData(config['runner_workdir'], data)
	break
Łukasz Nowak's avatar
Łukasz Nowak committed
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
    return True
  return False


def isInstanceRunning(config):
  slapgrid_pid = os.path.join(config['runner_workdir'], 'slapgrid-cp.pid')
  pid = readPid(slapgrid_pid)
  if pid:
    try:
      os.kill(pid, 0)
    except Exception:
      running = False
    else:
      running = True
  else:
    running = False
  return running


def runInstanceWithLock(config):
  slapgrid_pid = os.path.join(config['runner_workdir'], 'slapgrid-cp.pid')
  if not isInstanceRunning(config):
    startProxy(config)
    logfile = open(config['instance_log'], 'w')
    updateProxy(config)
    slapgrid = Popen([config['slapgrid_cp'], '-vc', config['configuration_file_path']], stdout=logfile)
    writePid(slapgrid_pid, slapgrid.pid)
    slapgrid.wait()
    return True
  return False


183 184
def getProfile(peojectDir, profileName):
  profile = getProfilePath(peojectDir, profileName)
Łukasz Nowak's avatar
Łukasz Nowak committed
185 186 187
  if os.path.exists(profile):
    return open(profile).read()
  else:
188
    return None
Łukasz Nowak's avatar
Łukasz Nowak committed
189

190 191 192 193 194
def getProfilePath(peojectDir, profile):
  if not os.path.exists(os.path.join(peojectDir, ".project")):
    return ""
  projectFolder = open(os.path.join(peojectDir, ".project")).read()
  return os.path.join(projectFolder, profile)
Łukasz Nowak's avatar
Łukasz Nowak committed
195 196 197 198 199 200 201 202 203 204 205 206 207 208

def getSlapStatus(config):
  slap = slapos.slap.slap()
  slap.initializeConnection(config['master_url'])
  partition_list = []
  computer = slap.registerComputer(config['computer_id'])
  try:
    for partition in computer.getComputerPartitionList():
      # Note: Internal use of API, as there is no reflexion interface in SLAP
      partition_list.append((partition.getId(), partition._connection_dict.copy()))
  except Exception:
    pass
  return partition_list

209 210 211 212 213 214 215 216 217 218 219
def runBuildoutAnnotate(config):
  slapgrid_pid = os.path.join(config['runner_workdir'], 'slapgrid-sr.pid')
  if not isSoftwareRunning(config):
	bin_buildout = os.path.join(config['software_root'], "bin/buildout")
	if os.path.exists(bin_buildout):
	  logfile = open(config['annotate_log'], 'w')
	  buildout = Popen([bin_buildout, '-vc', config['configuration_file_path'], 
	                    "annotate"], stdout=logfile)
	  buildout.wait()
	  return True
  return False
Łukasz Nowak's avatar
Łukasz Nowak committed
220 221

def svcStopAll(config):
222 223 224 225
  #stop all process running in supervisord
  request = Popen([config['supervisor'], config['configuration_file_path'], 
                'stop', 'all'])
  request.wait()
226 227
  return Popen([config['supervisor'], config['configuration_file_path'], 
                'shutdown']).communicate()[0]
Łukasz Nowak's avatar
Łukasz Nowak committed
228

229 230 231 232 233 234 235 236 237 238 239
def removeInstanceRoot(config):
  if os.path.exists(config['instance_root']):
    svcStopAll(config)
    for root, dirs, files in os.walk(config['instance_root']):
      for fname in dirs:
	fullPath = os.path.join(root, fname)
	if not os.access(fullPath, os.W_OK) :
	  # Some directories may be read-only, preventing to remove files in it
	  os.chmod(fullPath, 0744)
    shutil.rmtree(config['instance_root'])

Łukasz Nowak's avatar
Łukasz Nowak committed
240
def getSvcStatus(config):
241 242 243 244 245 246 247 248 249 250 251 252 253 254
  result = Popen([config['supervisor'], config['configuration_file_path'], 
                  'status']).communicate()[0]
  regex = "(^unix:.+\.socket)|(^error:).*$"
  supervisord = []
  for item in result.split('\n'):
    if item != "" and re.search(regex, item) == None:
      supervisord.append(re.split('[\s,]+', item))
  return supervisord

def getSvcTailProcess(config, process):
  return Popen([config['supervisor'], config['configuration_file_path'], 
                "tail", process]).communicate()[0]

def svcStartStopProcess(config, process, action):
255
  cmd = {"RESTART":"restart", "STOPPED":"start", "RUNNING":"stop", "EXITED":"start", "STOP":"stop"}
256 257 258 259 260 261 262 263
  return Popen([config['supervisor'], config['configuration_file_path'], 
                cmd[action], process]).communicate()[0]

def getFolderContent(folder):
  r=['<ul class="jqueryFileTree" style="display: none;">']
  try:
    r=['<ul class="jqueryFileTree" style="display: none;">']
    d=urllib.unquote(folder)
264 265
    ldir = sorted(os.listdir(d), key=unicode.lower)
    for f in ldir:
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
      if f.startswith('.'): #do not displays this file/folder
	continue      
      ff=os.path.join(d,f)
      if os.path.isdir(ff):
	r.append('<li class="directory collapsed"><a href="#" rel="%s/">%s</a></li>' % (ff,f))
      else:
	e=os.path.splitext(f)[1][1:] # get .ext and remove dot
	r.append('<li class="file ext_%s"><a href="#" rel="%s">%s</a></li>' % (e,ff,f))
    r.append('</ul>')
  except Exception,e:
    r.append('Could not load directory: %s' % str(e))
  r.append('</ul>')
  return jsonify(result=''.join(r))

def getFolder(folder):
  r=['<ul class="jqueryFileTree" style="display: none;">']
  try:
283
    r=['<ul class="jqueryFileTree" style="display: none;">']    
284
    d=urllib.unquote(folder)
285 286
    ldir = sorted(os.listdir(d), key=unicode.lower)
    for f in ldir:
287 288 289 290 291 292 293 294 295 296 297 298 299
      if f.startswith('.'): #do not display this file/folder
	continue
      ff=os.path.join(d,f)
      if os.path.isdir(ff):
	r.append('<li class="directory collapsed"><a href="#" rel="%s/">%s</a></li>' % (ff, f))
    r.append('</ul>')
  except Exception,e:
    r.append('Could not load directory: %s' % str(e))
  r.append('</ul>')
  return jsonify(result=''.join(r))

def getProjectList(folder):
  project = []
300 301
  project_list = sorted(os.listdir(folder), key=str.lower)
  for elt in project_list:
302 303 304
    project.append(elt)
  return project

305 306 307 308 309 310 311 312 313 314 315
def configNewSR(config, project):
  if os.path.exists(project):
    stopProxy(config)
    removeProxyDb(config)
    startProxy(config)
    removeInstanceRoot(config)
    open(os.path.join(config['runner_workdir'], ".project"), 'w').write(project)
    return True
  else:
    return False

316
def newSoftware(folder, config, session):
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
  json = ""
  code = 0
  runner_dir = config['runner_workdir']
  try:
    if not os.path.exists(folder):
      os.mkdir(folder)
      #load software.cfg and instance.cfg from http://git.erp5.org
      software = "http://git.erp5.org/gitweb/slapos.git/blob_plain/HEAD:/software/lamp-template/software.cfg"
      instance = "http://git.erp5.org/gitweb/slapos.git/blob_plain/HEAD:/software/lamp-template/instance.cfg"
      softwareContent = ""
      instanceContent = ""
      try:
	softwareContent = urllib.urlopen(software).read()
	instanceContent = urllib.urlopen(instance).read()
      except:
	#Software.cfg and instance.cfg content will be empty
	pass
      open(os.path.join(folder, config['software_profile']), 'w').write(softwareContent)
      open(os.path.join(folder, config['instance_profile']), 'w').write(instanceContent)
      open(os.path.join(runner_dir, ".project"), 'w').write(folder)
      session['title'] = getProjectTitle(config)
      code = 1
    else:
      json = "Directory '" + folder + "' already exist, please enter a new name for your software"
  except Exception, e:
    json = "Can not create your software, please try again! : " + str(e)
    if os.path.exists(folder):
      shutil.rmtree(folder)
  return jsonify(code=code, result=json)

def checkSoftwareFolder(path, config):
  tmp = path.split('/')
  del tmp[len(tmp) - 1]
  path = string.join(tmp, '/')
351
  if os.path.exists(os.path.join(path, config['software_profile'])):
352 353 354 355 356 357 358 359 360
    return jsonify(result=path)
  return jsonify(result="")

def getProjectTitle(config):
  conf = os.path.join(config['runner_workdir'], ".project")
  if os.path.exists(conf):
    project = open(conf, "r").read().replace(config['workspace'] + "/", "").split("/")
    software = project[len(project) - 1]
    del project[len(project) - 1]
361
    return software + "(SR in /" + string.join(project, '/') + ")"
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
  return "No Profile"

def loadSoftwareData(runner_dir):
  import pickle
  file_path = os.path.join(runner_dir, '.softdata')
  if not os.path.exists(file_path):
    return []
  pkl_file = open(file_path, 'rb')
  data = pickle.load(pkl_file)
  pkl_file.close()
  return data

def writeSoftwareData(runner_dir, data):
  import pickle
  file_path = os.path.join(runner_dir, '.softdata')
  pkl_file = open(file_path, 'wb')
  # Pickle dictionary using protocol 0.
  pickle.dump(data, pkl_file)
  pkl_file.close()
  
def removeSoftwareByName(config, folderName):
  if isSoftwareRunning(config) or isInstanceRunning(config):
    return jsonify(code=0, result="Software installation or instantiation in progress, cannot remove")
  path = os.path.join(config['software_root'], folderName)
  if not os.path.exists(path):
    return jsonify(code=0, result="Can not remove software: No such file or directory")
  svcStopAll(config)
  shutil.rmtree(path)
  #update compiled software list
  data = loadSoftwareData(config['runner_workdir'])
  i = 0
  for p in data:
    if p['md5'] == folderName:
      del data[i]
      writeSoftwareData(config['runner_workdir'], data)
      break
    i = i+1
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
  return jsonify(code=1, result=data)

def tail(f, lines=20):
  """
  Returns the last `lines` lines of file `f`. It is an implementation of tail -f n.
  """
  BUFSIZ = 1024
  f.seek(0, 2)
  bytes = f.tell()
  size = lines + 1
  block = -1
  data = []
  while size > 0 and bytes > 0:
      if bytes - BUFSIZ > 0:
	  # Seek back one whole BUFSIZ
	  f.seek(block * BUFSIZ, 2)
	  # read BUFFER
	  data.insert(0, f.read(BUFSIZ))
      else:
	  # file too small, start from begining
	  f.seek(0,0)
	  # only read what was not read
	  data.insert(0, f.read(bytes))
      linesFound = data[0].count('\n')
      size -= linesFound
      bytes -= BUFSIZ
      block -= 1
426 427 428 429 430 431 432 433 434 435 436 437
  return string.join(''.join(data).splitlines()[-lines:], '\n')

def isText(file):
  """Return True if the mimetype of file is Text"""
  if not os.path.exists(file):
    return False
  text_range = ''.join(map(chr, [7,8,9,10,12,13,27] + range(0x20, 0x100)))
  is_binary_string = lambda bytes: bool(bytes.translate(None, text_range))
  try:
    return not is_binary_string(open(file).read(1024))
  except:
    return False