summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/Reaktor/sed-plugin.py
blob: 677a1a44f4ddcd528b6b47feb900c58d7629c6fa (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
53
#!/usr/bin/env python3

# Usage:
# _from=krebs statedir=. python sed-plugin.py 'dick butt'
# _from=krebs statedir=. python sed-plugin.py 's/t/l/g'
## dick bull
import shelve
from os import environ
from os.path import join
from sys import argv
d = shelve.open(join(environ['statedir'],'sed-plugin.shelve'),writeback=True)
import re

def is_regex(line):
    # TODO: match s/di\/ck/butt/ but not s/di/ck/butt/
    myre = re.compile(r'^s/((?:\\/|[^/])+)/((?:\\/|[^/])*)/([ig]*)$')
    return myre.match(line)

line = argv[1]
m = is_regex(line)

if m:
    f,t,flagstr = m.groups()
    fn = f.replace('\/','/')
    tn = t.replace('\/','/')
    flags =  0
    count = 1
    if flagstr:
        if 'i' in flagstr:
            flags = re.IGNORECASE
        if 'g' in flagstr:
            count = 0
    else:
        flagstr = ''
    last = d.get(environ['_from'],None)
    if last:
        print(fn,tn,last)
        #print(re.sub(fn,tn,last,count=count,flags=flags))
        from subprocess import Popen,PIPE
        p = Popen(['sed','s/{}/{}/{}'.format(f,t,flagstr)],stdin=PIPE,stdout=PIPE )
        so,_ = p.communicate(last+"\n")
        if p.returncode:
            print("something went wrong when trying to process your regex")
        print(so)


    else:
        print("no last message")
else:
    print("setting line")
    d[environ['_from']] = line

d.close()