File: jsheader.py

package info (click to toggle)
mongodb 1%3A2.4.10-5
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 82,464 kB
  • sloc: cpp: 740,225; ansic: 152,098; sh: 13,820; python: 11,864; makefile: 1,012; perl: 922; pascal: 617; java: 452; lisp: 222; asm: 174
file content (53 lines) | stat: -rw-r--r-- 1,332 bytes parent folder | download | duplicates (3)
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
import os

from SCons.Builder import Builder

def jsToH(target, source, env):

    outFile = str( target[0] )

    h =  ['#include "mongo/base/string_data.h"'
        ,'namespace mongo {'
        ,'struct JSFile{ const char* name; const StringData& source; };'
        ,'namespace JSFiles{'
         ]

    def cppEscape(s):
        s = s.rstrip()
        s = s.replace( '\\', '\\\\' )
        s = s.replace( '"', r'\"' )
        return s

    for s in source:
        filename = str(s)
        objname = os.path.split(filename)[1].split('.')[0]
        stringname = '_jscode_raw_' + objname

        h.append('const StringData ' + stringname + " = ")

        for l in open( filename, 'r' ):
            h.append( '"' + cppEscape(l) + r'\n" ' )

        h.append(";")
        h.append('extern const JSFile %s;'%objname) #symbols aren't exported w/o this
        h.append('const JSFile %s = { "%s", %s };'%(objname, filename.replace('\\', '/'), stringname))

    h.append("} // namespace JSFiles")
    h.append("} // namespace mongo")
    h.append("")

    text = '\n'.join(h);

    out = open( outFile, 'wb' )
    try:
        out.write( text )
    finally:
        out.close()

jshBuilder = Builder( action=jsToH )

def generate(env, **kw):
    env.Append( BUILDERS=dict( JSHeader=jshBuilder ) )

def exists(env):
    return True