blob: 134af376121794f23b97e9804126053844c897ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#!/usr/bin/python
## Virt-factory backend code.
##
## Copyright 2006, Red Hat, Inc
## Adrian Likins <alikins@redhat.com
##
## This software may be freely redistributed under the terms of the GNU
## general public license.
##
## 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., 675 Mass Ave, Cambridge, MA 02139, USA.
##
from codes import *
from server import config_data
from server import logger
import os
import threading
import time
import traceback
class WebSvc(object):
def __init__(self):
config_obj = config_data.Config()
config_result = config_obj.get()
self.config = config_result
self.__init_log()
def __init_log(self):
# lets see what happens when we c&p the stuff from server.py
log = logger.Logger()
self.logger = log.logger
def register_rpc(self, handlers):
for meth in self.methods:
handlers[meth] = self.methods[meth]
def offset_and_limit(self, args):
return args.get('offset', 0), args.get('limit', 100000)
class AuthWebSvc(WebSvc):
def __init__(self):
WebSvc.__init__(self)
|