Objects descriptions and definitions designed
This commit is contained in:
parent
654b902cd4
commit
febd87737c
167
trunk/opal.py
167
trunk/opal.py
@ -2,6 +2,18 @@
|
|||||||
#! coding: utf-8
|
#! coding: utf-8
|
||||||
|
|
||||||
import subprocess
|
import subprocess
|
||||||
|
import json
|
||||||
|
import os, sys
|
||||||
|
import datetime
|
||||||
|
|
||||||
|
#-------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
def GenerateId(data):
|
||||||
|
import hashlib
|
||||||
|
title = data['title']
|
||||||
|
author = data['author']
|
||||||
|
id = hashlib.md5(title + author).hexdigest()
|
||||||
|
return id
|
||||||
|
|
||||||
#-------------------------------------------------------------------------------
|
#-------------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -12,18 +24,78 @@ class LocalServer:
|
|||||||
self.max_run = 2
|
self.max_run = 2
|
||||||
self.cur_run = 0
|
self.cur_run = 0
|
||||||
|
|
||||||
|
self.task_descrs = []
|
||||||
self.task_queue = []
|
self.task_queue = []
|
||||||
|
self.log = None
|
||||||
|
|
||||||
def GetTaskDescriptionList(self):
|
self.Init()
|
||||||
|
|
||||||
|
def Init(self):
|
||||||
|
self.log = open('log.txt', 'w')
|
||||||
|
self.WriteToLog('local server initialized')
|
||||||
|
|
||||||
|
def Close(self):
|
||||||
|
self.WriteToLog('local server closed\n')
|
||||||
|
|
||||||
|
def __del__(self):
|
||||||
|
self.Close()
|
||||||
|
|
||||||
|
def WriteToLog(self, msg):
|
||||||
|
tm = str(datetime.datetime.now())
|
||||||
|
msg = tm + ' ' + msg
|
||||||
|
self.log.write(msg + '\n')
|
||||||
|
print msg
|
||||||
|
|
||||||
|
def Start(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def Stop(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def TestTaskData(self, data):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def LoadTasksDescriptions(self, source = 'tasks.conf'):
|
||||||
|
"""
|
||||||
|
"""
|
||||||
|
self.task_descrs = []
|
||||||
|
|
||||||
|
self.WriteToLog('tasks interrogation starts')
|
||||||
|
for line in open(source, 'r'):
|
||||||
|
try:
|
||||||
|
# нормализуем указанный путь
|
||||||
|
line = os.path.normpath(line)
|
||||||
|
# считываем данные через shell (важно для скриптовых языков)
|
||||||
|
textdata = subprocess.check_output([line, '-i'], shell = True)
|
||||||
|
# загружаем данные описания задачи
|
||||||
|
data = json.loads(textdata)
|
||||||
|
# провряем их на корректность
|
||||||
|
self.TestTaskData(data)
|
||||||
|
# пакуем все в объект-описание задачи
|
||||||
|
task_descr = TaskDescription(self, line, data)
|
||||||
|
# добавляем в список описаний
|
||||||
|
self.task_descrs.append(task_descr)
|
||||||
|
self.WriteToLog('Task from "{}" asked'.format(line))
|
||||||
|
except IOError, e:
|
||||||
|
self.WriteToLog('file "{}" not found'.format(line))
|
||||||
|
except subprocess.CalledProcessError, e:
|
||||||
|
self.WriteToLog('file "{}" not opened, error {} (msg: {})'.format(line, e, e.output))
|
||||||
|
except ValueError, e:
|
||||||
|
self.WriteToLog('file "{}" not opened, error "{}")'.format(line, e))
|
||||||
|
|
||||||
|
def GetTasksDescriptions(self):
|
||||||
|
"""
|
||||||
|
Return list with task descriptions
|
||||||
|
"""
|
||||||
|
return self.task_descrs
|
||||||
|
|
||||||
def GetTaskCount(self):
|
def GetTaskCount(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def GetTask(self, index):
|
def GetTask(self, index):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def AddTask(self, *args):
|
def AddTask(self, task):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
#-------------------------------------------------------------------------------
|
#-------------------------------------------------------------------------------
|
||||||
@ -32,25 +104,82 @@ class TaskDescription:
|
|||||||
"""
|
"""
|
||||||
Description of the task. Task runs on server.
|
Description of the task. Task runs on server.
|
||||||
"""
|
"""
|
||||||
def __init__(self, server, tid, data):
|
def __init__(self, server, execpath, data):
|
||||||
self.server = server
|
"""
|
||||||
self.tid = tid
|
``server`` is owner of task process
|
||||||
self.data = data
|
|
||||||
|
``execpath`` - path to task executable
|
||||||
|
|
||||||
|
``data`` is parsed data presentation about models, methods
|
||||||
|
and meta information
|
||||||
|
"""
|
||||||
|
self.server = server
|
||||||
|
self.execpath = execpath
|
||||||
|
self.data = data
|
||||||
|
self.models = []
|
||||||
|
for label, data in self.data['models'].iteritems():
|
||||||
|
self.models.append(ModelDescription(self, label, data))
|
||||||
|
|
||||||
|
def GetModelsDescriptions(self):
|
||||||
|
return self.models
|
||||||
|
|
||||||
#-------------------------------------------------------------------------------
|
#-------------------------------------------------------------------------------
|
||||||
|
|
||||||
class ObjectDescription:
|
|
||||||
def __init__(self, taskdescr, label, data):
|
|
||||||
pass
|
|
||||||
|
|
||||||
class ObjectDefinition:
|
|
||||||
def __init__(self, taskdescr, label, data):
|
|
||||||
pass
|
|
||||||
|
|
||||||
class Parameter:
|
class Parameter:
|
||||||
def __init__(self, paramdescr):
|
def __init__(self, paramdescr):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def DoDataParametrization(data):
|
||||||
|
pass
|
||||||
|
|
||||||
|
class ObjectDescription:
|
||||||
|
def __init__(self, parentdescr, label, data):
|
||||||
|
self.parentdescr = parentdescr
|
||||||
|
self.label = label
|
||||||
|
self.data = data
|
||||||
|
DoDataParametrization(self.data)
|
||||||
|
|
||||||
|
def GetLabel(self):
|
||||||
|
return self.label
|
||||||
|
|
||||||
|
def GetTitle(self):
|
||||||
|
return self.data.get('title', self.label)
|
||||||
|
|
||||||
|
def GetAuthor(self):
|
||||||
|
return self.data.get('author', 'Unknown')
|
||||||
|
|
||||||
|
def GetId(self):
|
||||||
|
return None
|
||||||
|
|
||||||
|
class ModelDescription(ObjectDescription):
|
||||||
|
def __init__(self, taskdescr, label, data):
|
||||||
|
ObjectDescription.__init__(self, taskdescr, label, data)
|
||||||
|
self.methods = []
|
||||||
|
for label, data in self.data['methods'].iteritems():
|
||||||
|
self.methods.append(MethodDescription(self, label, data))
|
||||||
|
|
||||||
|
def GetMethodsDescriptions(self):
|
||||||
|
return self.methods
|
||||||
|
|
||||||
|
class MethodDescription(ObjectDescription):
|
||||||
|
def __init__(self, modeldescr, label, data):
|
||||||
|
ObjectDescription.__init__(self, modeldescr, label, data)
|
||||||
|
|
||||||
|
#-------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
class ObjectDefinition:
|
||||||
|
def __init__(self, objectdescr):
|
||||||
|
self.descr = objectdescr
|
||||||
|
self.params = {}
|
||||||
|
|
||||||
|
class ModelDefinition(ObjectDefinition):
|
||||||
|
def __init__(self, modeldescr):
|
||||||
|
ObjectDefinition(self, modeldescr)
|
||||||
|
|
||||||
|
class MethodDefinition(ObjectDefinition):
|
||||||
|
def __init__(self, methoddescr):
|
||||||
|
ObjectDefinition(self, methoddescr)
|
||||||
|
|
||||||
#-------------------------------------------------------------------------------
|
#-------------------------------------------------------------------------------
|
||||||
|
|
||||||
class Task:
|
class Task:
|
||||||
@ -72,7 +201,15 @@ class Task:
|
|||||||
#-------------------------------------------------------------------------------
|
#-------------------------------------------------------------------------------
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
pass
|
s = LocalServer()
|
||||||
|
s.LoadTasksDescriptions()
|
||||||
|
ds = s.GetTasksDescriptions()
|
||||||
|
ms = ds[0].GetModelsDescriptions()
|
||||||
|
for m in ms:
|
||||||
|
print m.GetTitle()
|
||||||
|
print m.GetLabel()
|
||||||
|
print m.GetAuthor()
|
||||||
|
print m.GetId()
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
@ -1,14 +1,13 @@
|
|||||||
{
|
{
|
||||||
"title": "Example task",
|
"title": "Example task",
|
||||||
"author": "Anton Vakhrushev",
|
"author": "Anton Vakhrushev",
|
||||||
|
|
||||||
"silent": false,
|
|
||||||
|
|
||||||
"models": {
|
"models": {
|
||||||
|
|
||||||
"simpleexample": {
|
"simpleexample": {
|
||||||
|
|
||||||
"title": "Simple example model",
|
"title": "Simple example model",
|
||||||
|
"author": "Anton Vakhrushev",
|
||||||
|
|
||||||
"data": {
|
"data": {
|
||||||
|
|
||||||
|
@ -2,21 +2,27 @@
|
|||||||
|
|
||||||
import sys
|
import sys
|
||||||
import json
|
import json
|
||||||
|
import os
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
||||||
## if len(sys.argv) != 2:
|
# try:
|
||||||
## print 'Error!'
|
|
||||||
## return
|
|
||||||
##
|
|
||||||
## if sys.argv[1] == '-i':
|
|
||||||
with open('task.js') as f:
|
|
||||||
d = json.load(f)
|
|
||||||
print json.dumps(d, indent = 2)
|
|
||||||
|
|
||||||
## elif sys.argv[1] == '-r':
|
d = os.path.dirname(__file__)
|
||||||
## data = raw_input()
|
os.chdir(d)
|
||||||
## data = json.loads(data)
|
|
||||||
|
if sys.argv[1] == '-i':
|
||||||
|
with open('task.js') as f:
|
||||||
|
d = json.load(f)
|
||||||
|
print json.dumps(d, indent = 2)
|
||||||
|
|
||||||
|
elif sys.argv[1] == '-r':
|
||||||
|
textdata = raw_input()
|
||||||
|
data = json.loads(data)
|
||||||
|
|
||||||
|
# except:
|
||||||
|
# print 'Error!'
|
||||||
|
# sys.exit(-1)
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
Loading…
Reference in New Issue
Block a user