Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

53

54

55

56

57

58

59

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

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

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

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

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

351

352

353

354

355

356

357

358

359

360

361

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

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

426

427

428

429

430

431

432

433

434

435

436

437

438

439

440

441

442

443

444

445

446

447

448

449

450

451

452

453

454

455

456

457

458

459

460

461

462

463

464

465

466

467

468

469

470

471

472

473

474

475

476

477

478

479

480

481

482

483

484

485

486

487

488

489

490

491

492

493

494

495

496

497

498

499

500

501

502

503

504

505

506

507

508

509

510

511

512

513

514

515

516

517

518

519

520

521

522

523

524

525

526

527

528

529

530

531

532

533

534

535

536

537

538

539

540

541

542

543

544

545

546

547

548

549

550

551

552

553

554

555

556

557

558

559

560

561

562

563

564

565

566

567

568

569

570

571

572

573

574

575

576

577

578

579

580

581

582

583

584

585

586

587

588

589

590

591

592

593

594

595

596

597

598

599

600

601

602

603

604

605

606

607

608

609

610

611

612

613

614

615

616

617

618

619

620

621

622

623

624

625

626

627

628

629

630

631

632

633

634

635

636

637

638

639

640

641

642

643

644

645

646

647

648

649

650

651

652

653

654

655

656

657

658

659

660

661

662

663

664

665

666

667

668

669

670

671

672

673

674

675

676

677

678

679

680

681

682

683

684

685

686

687

688

689

690

691

692

693

694

695

696

697

698

699

700

701

702

703

704

705

706

707

708

709

710

711

712

713

714

715

716

717

718

719

720

721

722

723

724

725

726

727

728

729

730

731

732

733

734

735

736

737

738

739

740

741

742

743

744

745

746

747

748

749

750

751

752

753

754

755

756

757

758

759

760

761

762

763

764

765

766

767

768

769

770

771

772

773

774

775

776

777

778

779

780

781

782

783

784

785

786

787

788

789

790

791

792

793

794

795

796

797

798

799

800

801

802

803

804

805

806

807

808

809

810

811

812

813

814

815

816

817

818

819

820

821

822

823

824

825

826

827

828

829

830

831

832

833

834

835

836

837

838

839

840

841

842

843

844

845

#!/usr/bin/python3 

 

# Copyright (C) 2011  Internet Systems Consortium. 

# 

# Permission to use, copy, modify, and distribute this software for any 

# purpose with or without fee is hereby granted, provided that the above 

# copyright notice and this permission notice appear in all copies. 

# 

# THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SYSTEMS CONSORTIUM 

# DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL 

# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL 

# INTERNET SYSTEMS CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, 

# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING 

# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, 

# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION 

# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 

 

""" 

A standalone HTTP server for HTTP/XML interface of statistics in BIND 10 

 

""" 

import sys; sys.path.append ('@@PYTHONPATH@@') 

import os 

import time 

import errno 

import select 

from optparse import OptionParser, OptionValueError 

import http.server 

import socket 

import string 

import xml.etree.ElementTree 

import urllib.parse 

 

import isc.cc 

import isc.config 

import isc.util.process 

 

import isc.log 

from isc.log_messages.stats_httpd_messages import * 

 

isc.log.init("b10-stats-httpd") 

logger = isc.log.Logger("stats-httpd") 

 

# Some constants for debug levels. 

DBG_STATHTTPD_INIT = logger.DBGLVL_START_SHUT 

DBG_STATHTTPD_MESSAGING = logger.DBGLVL_COMMAND 

 

# If B10_FROM_SOURCE is set in the environment, we use data files 

# from a directory relative to that, otherwise we use the ones 

# installed on the system 

if "B10_FROM_SOURCE" in os.environ: 

    BASE_LOCATION = os.environ["B10_FROM_SOURCE"] + os.sep + \ 

        "src" + os.sep + "bin" + os.sep + "stats" 

else: 

    PREFIX = "/home/jelte/opt/bind10" 

    DATAROOTDIR = "${prefix}/share" 

    BASE_LOCATION = "${datarootdir}" + os.sep + "bind10-devel" 

    BASE_LOCATION = BASE_LOCATION.replace("${datarootdir}", DATAROOTDIR).replace("${prefix}", PREFIX) 

SPECFILE_LOCATION = BASE_LOCATION + os.sep + "stats-httpd.spec" 

XML_TEMPLATE_LOCATION = BASE_LOCATION + os.sep + "stats-httpd-xml.tpl" 

XSD_TEMPLATE_LOCATION = BASE_LOCATION + os.sep + "stats-httpd-xsd.tpl" 

XSL_TEMPLATE_LOCATION = BASE_LOCATION + os.sep + "stats-httpd-xsl.tpl" 

 

# These variables are paths part of URL. 

# eg. "http://${address}" + XXX_URL_PATH 

XML_URL_PATH = '/bind10/statistics/xml' 

XSD_URL_PATH = '/bind10/statistics/xsd' 

XSL_URL_PATH = '/bind10/statistics/xsl' 

# TODO: This should be considered later. 

XSD_NAMESPACE = 'http://bind10.isc.org/bind10' 

 

# Assign this process name 

isc.util.process.rename() 

 

class HttpHandler(http.server.BaseHTTPRequestHandler): 

    """HTTP handler class for HttpServer class. The class inhrits the super 

    class http.server.BaseHTTPRequestHandler. It implemets do_GET() 

    and do_HEAD() and orverrides log_message()""" 

    def do_GET(self): 

        body = self.send_head() 

        if body is not None: 

            self.wfile.write(body.encode()) 

 

    def do_HEAD(self): 

        self.send_head() 

 

    def send_head(self): 

        try: 

            req_path = self.path 

            req_path = urllib.parse.urlsplit(req_path).path 

            req_path = urllib.parse.unquote(req_path) 

            req_path = os.path.normpath(req_path) 

            path_dirs = req_path.split('/') 

            path_dirs = [ d for d in filter(None, path_dirs) ] 

            req_path = '/'+"/".join(path_dirs) 

            module_name = None 

            item_name = None 

            # in case of /bind10/statistics/xxx/YYY/zzz 

            if len(path_dirs) >= 5: 

                item_name = path_dirs[4] 

            # in case of /bind10/statistics/xxx/YYY ... 

            if len(path_dirs) >= 4: 

                module_name = path_dirs[3] 

            if req_path == '/'.join([XML_URL_PATH] + path_dirs[3:5]): 

                body = self.server.xml_handler(module_name, item_name) 

            elif req_path == '/'.join([XSD_URL_PATH] + path_dirs[3:5]): 

                body = self.server.xsd_handler(module_name, item_name) 

            elif req_path == '/'.join([XSL_URL_PATH] + path_dirs[3:5]): 

                body = self.server.xsl_handler(module_name, item_name) 

            else: 

                if req_path == '/' and 'Host' in self.headers.keys(): 

                    # redirect to XML URL only when requested with '/' 

                    self.send_response(302) 

                    self.send_header( 

                        "Location", 

                        "http://" + self.headers.get('Host') + XML_URL_PATH) 

                    self.end_headers() 

                    return None 

                else: 

                    # Couldn't find HOST 

                    self.send_error(404) 

                    return None 

        except StatsHttpdDataError as err: 

            # Couldn't find neither specified module name nor 

            # specified item name 

            self.send_error(404) 

            logger.error(STATHTTPD_SERVER_DATAERROR, err) 

            return None 

        except StatsHttpdError as err: 

            self.send_error(500) 

            logger.error(STATHTTPD_SERVER_ERROR, err) 

            return None 

        else: 

            self.send_response(200) 

            self.send_header("Content-type", "text/xml") 

            self.send_header("Content-Length", len(body)) 

            self.end_headers() 

            return body 

 

class HttpServerError(Exception): 

    """Exception class for HttpServer class. It is intended to be 

    passed from the HttpServer object to the StatsHttpd object.""" 

    pass 

 

class HttpServer(http.server.HTTPServer): 

    """HTTP Server class. The class inherits the super 

    http.server.HTTPServer. Some parameters are specified as 

    arguments, which are xml_handler, xsd_handler, xsl_handler, and 

    log_writer. These all are parameters which the StatsHttpd object 

    has. The handler parameters are references of functions which 

    return body of each document. The last parameter log_writer is 

    reference of writer function to just write to 

    sys.stderr.write. They are intended to be referred by HttpHandler 

    object.""" 

    def __init__(self, server_address, handler, 

                 xml_handler, xsd_handler, xsl_handler, log_writer): 

        self.server_address = server_address 

        self.xml_handler = xml_handler 

        self.xsd_handler = xsd_handler 

        self.xsl_handler = xsl_handler 

        self.log_writer = log_writer 

        http.server.HTTPServer.__init__(self, server_address, handler) 

 

class StatsHttpdError(Exception): 

    """Exception class for StatsHttpd class. It is intended to be 

    thrown from the the StatsHttpd object to the HttpHandler object or 

    main routine.""" 

    pass 

 

class StatsHttpdDataError(Exception): 

    """Exception class for StatsHttpd class. The reason seems to be 

    due to the data. It is intended to be thrown from the the 

    StatsHttpd object to the HttpHandler object or main routine.""" 

    pass 

 

class StatsHttpd: 

    """The main class of HTTP server of HTTP/XML interface for 

    statistics module. It handles HTTP requests, and command channel 

    and config channel CC session. It uses select.select function 

    while waiting for clients requests.""" 

    def __init__(self): 

        self.running = False 

        self.poll_intval = 0.5 

        self.write_log = sys.stderr.write 

        self.mccs = None 

        self.httpd = [] 

        self.open_mccs() 

        self.config = {} 

        self.load_config() 

        self.http_addrs = [] 

        self.mccs.start() 

        try: 

            self.open_httpd() 

        except HttpServerError: 

            # if some exception, e.g. address in use, is raised, then it closes mccs and httpd 

            self.close_mccs() 

            raise 

 

    def open_mccs(self): 

        """Opens a ModuleCCSession object""" 

        # create ModuleCCSession 

        logger.debug(DBG_STATHTTPD_INIT, STATHTTPD_STARTING_CC_SESSION) 

        self.mccs = isc.config.ModuleCCSession( 

            SPECFILE_LOCATION, self.config_handler, self.command_handler) 

        self.cc_session = self.mccs._session 

 

    def close_mccs(self): 

        """Closes a ModuleCCSession object""" 

        if self.mccs is None: 

            return 

        self.mccs.send_stopping() 

 

        logger.debug(DBG_STATHTTPD_INIT, STATHTTPD_CLOSING_CC_SESSION) 

        self.mccs.close() 

        self.mccs = None 

 

    def load_config(self, new_config={}): 

        """Loads configuration from spec file or new configuration 

        from the config manager""" 

        # load config 

        if len(self.config) == 0: 

            self.config = dict([ 

                (itm['item_name'], self.mccs.get_value(itm['item_name'])[0]) 

                for itm in self.mccs.get_module_spec().get_config_spec() 

                ]) 

        self.config.update(new_config) 

        # set addresses and ports for HTTP 

        addrs = [] 

233        if 'listen_on' in self.config: 

            for cf in self.config['listen_on']: 

230                if 'address' in cf and 'port' in cf: 

                    addrs.append((cf['address'], cf['port'])) 

        self.http_addrs = addrs 

 

    def open_httpd(self): 

        """Opens sockets for HTTP. Iterating each HTTP address to be 

        configured in spec file""" 

        for addr in self.http_addrs: 

            self.httpd.append(self._open_httpd(addr)) 

 

    def _open_httpd(self, server_address): 

        httpd = None 

        try: 

            # get address family for the server_address before 

            # creating HttpServer object. If a specified address is 

            # not numerical, gaierror may be thrown. 

            address_family = socket.getaddrinfo( 

                server_address[0], server_address[1], 0, 

                socket.SOCK_STREAM, socket.IPPROTO_TCP, socket.AI_NUMERICHOST 

                )[0][0] 

            HttpServer.address_family = address_family 

            httpd = HttpServer( 

                server_address, HttpHandler, 

                self.xml_handler, self.xsd_handler, self.xsl_handler, 

                self.write_log) 

            logger.info(STATHTTPD_STARTED, server_address[0], 

                        server_address[1]) 

            return httpd 

        except (socket.gaierror, socket.error, 

                OverflowError, TypeError) as err: 

262           if httpd: 

                httpd.server_close() 

           raise HttpServerError( 

               "Invalid address %s, port %s: %s: %s" % 

               (server_address[0], server_address[1], 

                err.__class__.__name__, err)) 

 

    def close_httpd(self): 

        """Closes sockets for HTTP""" 

        while len(self.httpd)>0: 

            ht = self.httpd.pop() 

            logger.info(STATHTTPD_CLOSING, ht.server_address[0], 

                        ht.server_address[1]) 

            ht.server_close() 

 

    def start(self): 

        """Starts StatsHttpd objects to run. Waiting for client 

        requests by using select.select functions""" 

        self.running = True 

        while self.running: 

            try: 

                (rfd, wfd, xfd) = select.select( 

                    self.get_sockets(), [], [], self.poll_intval) 

            except select.error as err: 

                # select.error exception is caught only in the case of 

                # EINTR, or in other cases it is just thrown. 

                if err.args[0] == errno.EINTR: 

303                    (rfd, wfd, xfd) = ([], [], []) 

                else: 

                    raise 

            # FIXME: This module can handle only one request at a 

            # time. If someone sends only part of the request, we block 

            # waiting for it until we time out. 

            # But it isn't so big issue for administration purposes. 

            for fd in rfd + xfd: 

                if fd == self.mccs.get_socket(): 

                    self.mccs.check_command(nonblock=False) 

                    continue 

295                for ht in self.httpd: 

299                    if fd == ht.socket: 

                        ht.handle_request() 

                        break 

        self.stop() 

 

    def stop(self): 

        """Stops the running StatsHttpd objects. Closes CC session and 

        HTTP handling sockets""" 

        logger.info(STATHTTPD_SHUTDOWN) 

        self.close_httpd() 

        self.close_mccs() 

        self.running = False 

 

    def get_sockets(self): 

        """Returns sockets to select.select""" 

        sockets = [] 

318        if self.mccs is not None: 

            sockets.append(self.mccs.get_socket()) 

321        if len(self.httpd) > 0: 

            for ht in self.httpd: 

                sockets.append(ht.socket) 

        return sockets 

 

    def config_handler(self, new_config): 

        """Config handler for the ModuleCCSession object. It resets 

        addresses and ports to listen HTTP requests on.""" 

        logger.debug(DBG_STATHTTPD_MESSAGING, STATHTTPD_HANDLE_CONFIG, 

                   new_config) 

        errors = [] 

        if not self.mccs.get_module_spec().\ 

                validate_config(False, new_config, errors): 

                return isc.config.ccsession.create_answer( 

                    1, ", ".join(errors)) 

        # backup old config 

        old_config = self.config.copy() 

        self.load_config(new_config) 

        # If the http sockets aren't opened or 

        # if new_config doesn't have'listen_on', it returns 

        if len(self.httpd) == 0 or 'listen_on' not in new_config: 

            return isc.config.ccsession.create_answer(0) 

        self.close_httpd() 

        try: 

            self.open_httpd() 

        except HttpServerError as err: 

            logger.error(STATHTTPD_SERVER_ERROR, err) 

            # restore old config 

            self.load_config(old_config) 

            self.open_httpd() 

            return isc.config.ccsession.create_answer(1, str(err)) 

        else: 

            return isc.config.ccsession.create_answer(0) 

 

    def command_handler(self, command, args): 

        """Command handler for the ModuleCCSesson object. It handles 

        "status" and "shutdown" commands.""" 

        if command == "status": 

            logger.debug(DBG_STATHTTPD_MESSAGING, 

                         STATHTTPD_RECEIVED_STATUS_COMMAND) 

            return isc.config.ccsession.create_answer( 

                0, "Stats Httpd is up. (PID " + str(os.getpid()) + ")") 

        elif command == "shutdown": 

            logger.debug(DBG_STATHTTPD_MESSAGING, 

                         STATHTTPD_RECEIVED_SHUTDOWN_COMMAND) 

            self.running = False 

            return isc.config.ccsession.create_answer(0) 

        else: 

            logger.debug(DBG_STATHTTPD_MESSAGING, 

                         STATHTTPD_RECEIVED_UNKNOWN_COMMAND, command) 

            return isc.config.ccsession.create_answer( 

                1, "Unknown command: " + str(command)) 

 

    def get_stats_data(self, owner=None, name=None): 

        """Requests statistics data to the Stats daemon and returns 

        the data which obtains from it. The first argument is the 

        module name which owns the statistics data, the second 

        argument is one name of the statistics items which the the 

        module owns. The second argument cannot be specified when the 

        first argument is not specified. It returns the statistics 

        data of the specified module or item. When the session timeout 

        or the session error is occurred, it raises 

        StatsHttpdError. When the stats daemon returns none-zero 

        value, it raises StatsHttpdDataError.""" 

        param = {} 

        if owner is None and name is None: 

            param = None 

        if owner is not None: 

            param['owner'] = owner 

        if name is not None: 

            param['name'] = name 

        try: 

            seq = self.cc_session.group_sendmsg( 

                isc.config.ccsession.create_command('show', param), 'Stats') 

            (answer, env) = self.cc_session.group_recvmsg(False, seq) 

400            if answer: 

                (rcode, value) = isc.config.ccsession.parse_answer(answer) 

        except (isc.cc.session.SessionTimeout, 

                isc.cc.session.SessionError) as err: 

            raise StatsHttpdError("%s: %s" % 

                                  (err.__class__.__name__, err)) 

        else: 

403            if rcode == 0: 

                return value 

            else: 

                raise StatsHttpdDataError("Stats module: %s" % str(value)) 

 

    def get_stats_spec(self, owner=None, name=None): 

        """Requests statistics data to the Stats daemon and returns 

        the data which obtains from it. The first argument is the 

        module name which owns the statistics data, the second 

        argument is one name of the statistics items which the the 

        module owns. The second argument cannot be specified when the 

        first argument is not specified. It returns the statistics 

        specification of the specified module or item. When the 

        session timeout or the session error is occurred, it raises 

        StatsHttpdError. When the stats daemon returns none-zero 

        value, it raises StatsHttpdDataError.""" 

        param = {} 

        if owner is None and name is None: 

            param = None 

        if owner is not None: 

            param['owner'] = owner 

        if name is not None: 

            param['name'] = name 

        try: 

            seq = self.cc_session.group_sendmsg( 

                isc.config.ccsession.create_command('showschema', param), 'Stats') 

            (answer, env) = self.cc_session.group_recvmsg(False, seq) 

exit            if answer: 

                (rcode, value) = isc.config.ccsession.parse_answer(answer) 

                if rcode == 0: 

                    return value 

                else: 

                    raise StatsHttpdDataError("Stats module: %s" % str(value)) 

        except (isc.cc.session.SessionTimeout, 

                isc.cc.session.SessionError) as err: 

            raise StatsHttpdError("%s: %s" % 

                                  (err.__class__.__name__, err)) 

 

 

    def xml_handler(self, module_name=None, item_name=None): 

        """Requests the specified statistics data and specification by 

        using the functions get_stats_data and get_stats_spec 

        respectively and loads the XML template file and returns the 

        string of the XML document.The first argument is the module 

        name which owns the statistics data, the second argument is 

        one name of the statistics items which the the module 

        owns. The second argument cannot be specified when the first 

        argument is not specified.""" 

 

        # TODO: Separate the following recursive function by type of 

        # the parameter. Because we should be sure what type there is 

        # when we call it recursively. 

        def stats_data2xml(stats_spec, stats_data, xml_elem): 

            """Internal use for xml_handler. Reads stats_data and 

            stats_spec specified as first and second arguments, and 

            modify the xml object specified as third 

            argument. xml_elem must be modified and always returns 

            None.""" 

            # assumed started with module_spec or started with 

            # item_spec in statistics 

            if type(stats_spec) is dict: 

                # assumed started with module_spec 

                if 'item_name' not in stats_spec \ 

                        and 'item_type' not in stats_spec: 

                    for module_name in stats_spec.keys(): 

                        elem = xml.etree.ElementTree.Element(module_name) 

                        stats_data2xml(stats_spec[module_name], 

                                       stats_data[module_name], elem) 

                        xml_elem.append(elem) 

                # started with item_spec in statistics 

                else: 

                    elem = xml.etree.ElementTree.Element(stats_spec['item_name']) 

                    if stats_spec['item_type'] == 'map': 

                        stats_data2xml(stats_spec['map_item_spec'], 

                                       stats_data, 

                                       elem) 

                    elif stats_spec['item_type'] == 'list': 

                        for item in stats_data: 

                            stats_data2xml(stats_spec['list_item_spec'], 

                                           item, elem) 

                    else: 

                        elem.text = str(stats_data) 

                    xml_elem.append(elem) 

            # assumed started with stats_spec 

exit            elif type(stats_spec) is list: 

                for item_spec in stats_spec: 

                    stats_data2xml(item_spec, 

                                   stats_data[item_spec['item_name']], 

                                   xml_elem) 

 

        stats_spec = self.get_stats_spec(module_name, item_name) 

        stats_data = self.get_stats_data(module_name, item_name) 

        # make the path xxx/module/item if specified respectively 

        path_info = '' 

        if module_name is not None and item_name is not None: 

            path_info = '/' + module_name + '/' + item_name 

        elif module_name is not None: 

            path_info = '/' + module_name 

        xml_elem = xml.etree.ElementTree.Element( 

            'bind10:statistics', 

            attrib={ 'xsi:schemaLocation' : XSD_NAMESPACE + ' ' + XSD_URL_PATH + path_info, 

                     'xmlns:bind10' : XSD_NAMESPACE, 

                     'xmlns:xsi' : "http://www.w3.org/2001/XMLSchema-instance" }) 

        stats_data2xml(stats_spec, stats_data, xml_elem) 

        # The coding conversion is tricky. xml..tostring() of Python 3.2 

        # returns bytes (not string) regardless of the coding, while 

        # tostring() of Python 3.1 returns a string.  To support both 

        # cases transparently, we first make sure tostring() returns 

        # bytes by specifying utf-8 and then convert the result to a 

        # plain string (code below assume it). 

        # FIXME: Non-ASCII characters might be lost here. Consider how 

        # the whole system should handle non-ASCII characters. 

        xml_string = str(xml.etree.ElementTree.tostring(xml_elem, encoding='utf-8'), 

                         encoding='us-ascii') 

        self.xml_body = self.open_template(XML_TEMPLATE_LOCATION).substitute( 

            xml_string=xml_string, 

            xsl_url_path=XSL_URL_PATH + path_info) 

        assert self.xml_body is not None 

        return self.xml_body 

 

    def xsd_handler(self, module_name=None, item_name=None): 

        """Requests the specified statistics specification by using 

        the function get_stats_spec respectively and loads the XSD 

        template file and returns the string of the XSD document.The 

        first argument is the module name which owns the statistics 

        data, the second argument is one name of the statistics items 

        which the the module owns. The second argument cannot be 

        specified when the first argument is not specified.""" 

 

        # TODO: Separate the following recursive function by type of 

        # the parameter. Because we should be sure what type there is 

        # when we call it recursively. 

        def stats_spec2xsd(stats_spec, xsd_elem): 

            """Internal use for xsd_handler. Reads stats_spec 

            specified as first arguments, and modify the xml object 

            specified as second argument. xsd_elem must be 

            modified. Always returns None with no exceptions.""" 

            # assumed module_spec or one stats_spec 

            if type(stats_spec) is dict: 

                # assumed module_spec 

                if 'item_name' not in stats_spec: 

                    for mod in stats_spec.keys(): 

                        elem = xml.etree.ElementTree.Element( 

                            "element", { "name" : mod }) 

                        complextype = xml.etree.ElementTree.Element("complexType") 

                        alltag = xml.etree.ElementTree.Element("all") 

                        stats_spec2xsd(stats_spec[mod], alltag) 

                        complextype.append(alltag) 

                        elem.append(complextype) 

                        xsd_elem.append(elem) 

                # assumed stats_spec 

                else: 

                    if stats_spec['item_type'] == 'map': 

                        alltag = xml.etree.ElementTree.Element("all") 

                        stats_spec2xsd(stats_spec['map_item_spec'], alltag) 

                        complextype = xml.etree.ElementTree.Element("complexType") 

                        complextype.append(alltag) 

                        elem = xml.etree.ElementTree.Element( 

                            "element", attrib={ "name" : stats_spec["item_name"], 

                                                "minOccurs": "0" \ 

                                                    if stats_spec["item_optional"] \ 

                                                    else "1", 

                                                "maxOccurs": "unbounded" }) 

                        elem.append(complextype) 

                        xsd_elem.append(elem) 

                    elif stats_spec['item_type'] == 'list': 

                        alltag = xml.etree.ElementTree.Element("sequence") 

                        stats_spec2xsd(stats_spec['list_item_spec'], alltag) 

                        complextype = xml.etree.ElementTree.Element("complexType") 

                        complextype.append(alltag) 

                        elem = xml.etree.ElementTree.Element( 

                            "element", attrib={ "name" : stats_spec["item_name"], 

                                                "minOccurs": "0" \ 

                                                    if stats_spec["item_optional"] \ 

                                                    else "1", 

                                                "maxOccurs": "1" }) 

                        elem.append(complextype) 

                        xsd_elem.append(elem) 

                    else: 

                        # determine the datatype of XSD 

                        # TODO: Should consider other item_format types 

                        datatype = stats_spec["item_type"] \ 

                            if stats_spec["item_type"].lower() != 'real' \ 

                            else 'float' 

                        if "item_format" in stats_spec: 

                            item_format = stats_spec["item_format"] 

589   589                            if datatype.lower() == 'string' \ 

                                    and item_format.lower() == 'date-time': 

                                 datatype = 'dateTime' 

                            elif datatype.lower() == 'string' \ 

                                    and (item_format.lower() == 'date' \ 

                                             or item_format.lower() == 'time'): 

                                 datatype = item_format.lower() 

                        elem = xml.etree.ElementTree.Element( 

                            "element", 

                            attrib={ 

                                'name' : stats_spec["item_name"], 

                                'type' : datatype, 

                                'minOccurs' : "0" \ 

                                    if stats_spec["item_optional"] \ 

                                    else "1", 

                                'maxOccurs' : "1" 

                                } 

                            ) 

                        annotation = xml.etree.ElementTree.Element("annotation") 

                        appinfo = xml.etree.ElementTree.Element("appinfo") 

                        documentation = xml.etree.ElementTree.Element("documentation") 

609                        if "item_title" in stats_spec: 

                            appinfo.text = stats_spec["item_title"] 

611                        if "item_description" in stats_spec: 

                            documentation.text = stats_spec["item_description"] 

                        annotation.append(appinfo) 

                        annotation.append(documentation) 

                        elem.append(annotation) 

                        xsd_elem.append(elem) 

            # multiple stats_specs 

exit            elif type(stats_spec) is list: 

                for item_spec in stats_spec: 

                    stats_spec2xsd(item_spec, xsd_elem) 

 

        # for XSD 

        stats_spec = self.get_stats_spec(module_name, item_name) 

        alltag = xml.etree.ElementTree.Element("all") 

        stats_spec2xsd(stats_spec, alltag) 

        complextype = xml.etree.ElementTree.Element("complexType") 

        complextype.append(alltag) 

        documentation = xml.etree.ElementTree.Element("documentation") 

        documentation.text = "A set of statistics data" 

        annotation = xml.etree.ElementTree.Element("annotation") 

        annotation.append(documentation) 

        elem = xml.etree.ElementTree.Element( 

            "element", attrib={ 'name' : 'statistics' }) 

        elem.append(annotation) 

        elem.append(complextype) 

        documentation = xml.etree.ElementTree.Element("documentation") 

        documentation.text = "XML schema of the statistics data in BIND 10" 

        annotation = xml.etree.ElementTree.Element("annotation") 

        annotation.append(documentation) 

        xsd_root = xml.etree.ElementTree.Element( 

            "schema", 

            attrib={ 'xmlns' : "http://www.w3.org/2001/XMLSchema", 

                     'targetNamespace' : XSD_NAMESPACE, 

                     'xmlns:bind10' : XSD_NAMESPACE }) 

        xsd_root.append(annotation) 

        xsd_root.append(elem) 

        # The coding conversion is tricky. xml..tostring() of Python 3.2 

        # returns bytes (not string) regardless of the coding, while 

        # tostring() of Python 3.1 returns a string.  To support both 

        # cases transparently, we first make sure tostring() returns 

        # bytes by specifying utf-8 and then convert the result to a 

        # plain string (code below assume it). 

        # FIXME: Non-ASCII characters might be lost here. Consider how 

        # the whole system should handle non-ASCII characters. 

        xsd_string = str(xml.etree.ElementTree.tostring(xsd_root, encoding='utf-8'), 

                         encoding='us-ascii') 

        self.xsd_body = self.open_template(XSD_TEMPLATE_LOCATION).substitute( 

            xsd_string=xsd_string) 

        assert self.xsd_body is not None 

        return self.xsd_body 

 

    def xsl_handler(self, module_name=None, item_name=None): 

        """Requests the specified statistics specification by using 

        the function get_stats_spec respectively and loads the XSL 

        template file and returns the string of the XSL document.The 

        first argument is the module name which owns the statistics 

        data, the second argument is one name of the statistics items 

        which the the module owns. The second argument cannot be 

        specified when the first argument is not specified.""" 

 

        # TODO: Separate the following recursive function by type of 

        # the parameter. Because we should be sure what type there is 

        # when we call it recursively. 

        def stats_spec2xsl(stats_spec, xsl_elem, path=XML_URL_PATH): 

            """Internal use for xsl_handler. Reads stats_spec 

            specified as first arguments, and modify the xml object 

            specified as second argument. xsl_elem must be 

            modified. The third argument is a base path used for 

            making anchor tag in XSL. Always returns None with no 

            exceptions.""" 

            # assumed module_spec or one stats_spec 

            if type(stats_spec) is dict: 

                # assumed module_spec 

                if 'item_name' not in stats_spec: 

                    table = xml.etree.ElementTree.Element("table") 

                    tr = xml.etree.ElementTree.Element("tr") 

                    th = xml.etree.ElementTree.Element("th") 

                    th.text = "Module Name" 

                    tr.append(th) 

                    th = xml.etree.ElementTree.Element("th") 

                    th.text = "Module Item" 

                    tr.append(th) 

                    table.append(tr) 

                    for mod in stats_spec.keys(): 

                        foreach = xml.etree.ElementTree.Element( 

                            "xsl:for-each", attrib={ "select" : mod }) 

                        tr = xml.etree.ElementTree.Element("tr") 

                        td = xml.etree.ElementTree.Element("td") 

                        a = xml.etree.ElementTree.Element( 

                            "a", attrib={ "href": urllib.parse.quote(path + "/" + mod) }) 

                        a.text = mod 

                        td.append(a) 

                        tr.append(td) 

                        td = xml.etree.ElementTree.Element("td") 

                        stats_spec2xsl(stats_spec[mod], td, 

                                       path + "/" + mod) 

                        tr.append(td) 

                        foreach.append(tr) 

                        table.append(foreach) 

                    xsl_elem.append(table) 

                # assumed stats_spec 

                else: 

                    if stats_spec['item_type'] == 'map': 

                        table = xml.etree.ElementTree.Element("table") 

                        tr = xml.etree.ElementTree.Element("tr") 

                        th = xml.etree.ElementTree.Element("th") 

                        th.text = "Item Name" 

                        tr.append(th) 

                        th = xml.etree.ElementTree.Element("th") 

                        th.text = "Item Value" 

                        tr.append(th) 

                        table.append(tr) 

                        foreach = xml.etree.ElementTree.Element( 

                            "xsl:for-each", attrib={ "select" : stats_spec['item_name'] }) 

                        tr = xml.etree.ElementTree.Element("tr") 

                        td = xml.etree.ElementTree.Element( 

                            "td", 

                            attrib={ "class" : "title", 

                                     "title" : stats_spec["item_description"] \ 

                                         if "item_description" in stats_spec \ 

                                         else "" }) 

                        # TODO: Consider whether we should always use 

                        # the identical name "item_name" for the 

                        # user-visible name in XSL. 

                        td.text = stats_spec[ "item_title" if "item_title" in stats_spec else "item_name" ] 

                        tr.append(td) 

                        td = xml.etree.ElementTree.Element("td") 

                        stats_spec2xsl(stats_spec['map_item_spec'], td, 

                                       path + "/" + stats_spec["item_name"]) 

                        tr.append(td) 

                        foreach.append(tr) 

                        table.append(foreach) 

                        xsl_elem.append(table) 

                    elif stats_spec['item_type'] == 'list': 

                        stats_spec2xsl(stats_spec['list_item_spec'], xsl_elem, 

                                       path + "/" + stats_spec["item_name"]) 

                    else: 

                        xsl_valueof = xml.etree.ElementTree.Element( 

                            "xsl:value-of", 

                            attrib={'select': stats_spec["item_name"]}) 

                        xsl_elem.append(xsl_valueof) 

 

            # multiple stats_specs 

exit            elif type(stats_spec) is list: 

                table = xml.etree.ElementTree.Element("table") 

                tr = xml.etree.ElementTree.Element("tr") 

                th = xml.etree.ElementTree.Element("th") 

                th.text = "Item Name" 

                tr.append(th) 

                th = xml.etree.ElementTree.Element("th") 

                th.text = "Item Value" 

                tr.append(th) 

                table.append(tr) 

                for item_spec in stats_spec: 

                    tr = xml.etree.ElementTree.Element("tr") 

                    td = xml.etree.ElementTree.Element( 

                        "td", 

                        attrib={ "class" : "title", 

                                 "title" : item_spec["item_description"] \ 

                                     if "item_description" in item_spec \ 

                                     else "" }) 

                    # if the path length is equal to or shorter than 

                    # XML_URL_PATH + /Module/Item, add the anchor tag. 

                    if len(path.split('/')) <= len((XML_URL_PATH + '/Module/Item').split('/')): 

                        a = xml.etree.ElementTree.Element( 

                            "a", attrib={ "href": urllib.parse.quote(path + "/" + item_spec["item_name"]) }) 

                        a.text = item_spec[ "item_title" if "item_title" in item_spec else "item_name" ] 

                        td.append(a) 

                    else: 

                        td.text = item_spec[ "item_title" if "item_title" in item_spec else "item_name" ] 

                    tr.append(td) 

                    td = xml.etree.ElementTree.Element("td") 

                    stats_spec2xsl(item_spec, td, path) 

                    tr.append(td) 

                    if item_spec['item_type'] == 'list': 

                        foreach = xml.etree.ElementTree.Element( 

                            "xsl:for-each", attrib={ "select" : item_spec['item_name'] }) 

                        foreach.append(tr) 

                        table.append(foreach) 

                    else: 

                        table.append(tr) 

                xsl_elem.append(table) 

 

        # for XSL 

        stats_spec = self.get_stats_spec(module_name, item_name) 

        xsd_root = xml.etree.ElementTree.Element( # started with xml:template tag 

            "xsl:template", 

            attrib={'match': "bind10:statistics"}) 

        stats_spec2xsl(stats_spec, xsd_root) 

        # The coding conversion is tricky. xml..tostring() of Python 3.2 

        # returns bytes (not string) regardless of the coding, while 

        # tostring() of Python 3.1 returns a string.  To support both 

        # cases transparently, we first make sure tostring() returns 

        # bytes by specifying utf-8 and then convert the result to a 

        # plain string (code below assume it). 

        # FIXME: Non-ASCII characters might be lost here. Consider how 

        # the whole system should handle non-ASCII characters. 

        xsl_string = str(xml.etree.ElementTree.tostring(xsd_root, encoding='utf-8'), 

                         encoding='us-ascii') 

        self.xsl_body = self.open_template(XSL_TEMPLATE_LOCATION).substitute( 

            xsl_string=xsl_string, 

            xsd_namespace=XSD_NAMESPACE) 

        assert self.xsl_body is not None 

        return self.xsl_body 

 

    def open_template(self, file_name): 

        """It opens a template file, and it loads all lines to a 

        string variable and returns string. Template object includes 

        the variable. Limitation of a file size isn't needed there.""" 

        f = open(file_name, 'r') 

        lines = "".join(f.readlines()) 

        f.close() 

        assert lines is not None 

        return string.Template(lines) 

 

825if __name__ == "__main__": 

    try: 

        parser = OptionParser() 

        parser.add_option( 

            "-v", "--verbose", dest="verbose", action="store_true", 

            help="display more about what is going on") 

        (options, args) = parser.parse_args() 

        if options.verbose: 

            isc.log.init("b10-stats-httpd", "DEBUG", 99) 

        stats_httpd = StatsHttpd() 

        stats_httpd.start() 

    except OptionValueError as ove: 

        logger.fatal(STATHTTPD_BAD_OPTION_VALUE, ove) 

        sys.exit(1) 

    except isc.cc.session.SessionError as se: 

        logger.fatal(STATHTTPD_CC_SESSION_ERROR, se) 

        sys.exit(1) 

    except HttpServerError as hse: 

        logger.fatal(STATHTTPD_START_SERVER_INIT_ERROR, hse) 

        sys.exit(1) 

    except KeyboardInterrupt as kie: 

        logger.info(STATHTTPD_STOPPED_BY_KEYBOARD)