Debug a support for formatted output
This commit is contained in:
parent
256a6932c3
commit
b36e130286
4 changed files with 51 additions and 10 deletions
9
example/layout.txt
Normal file
9
example/layout.txt
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
Created timestamp: {created}
|
||||||
|
Created added: {added}
|
||||||
|
Created on hostname: {hostname}
|
||||||
|
Created on platform: {platform}
|
||||||
|
Tags: {tags}
|
||||||
|
Subpath: {subpath}
|
||||||
|
Id: {id}
|
||||||
|
Content:
|
||||||
|
{content}
|
|
@ -85,12 +85,18 @@ class Metadata:
|
||||||
exit(1)
|
exit(1)
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def delete(self,subpath):
|
def delete(self,subpath, ignore_error=False):
|
||||||
"""
|
"""
|
||||||
Delete subpath and its associated tags from the metadata.
|
Delete subpath and its associated tags from the metadata.
|
||||||
"""
|
"""
|
||||||
cur=self.con.cursor()
|
cur=self.con.cursor()
|
||||||
subpath_id=self.subpathid(subpath, True)
|
subpath_id=None
|
||||||
|
if ignore_error:
|
||||||
|
subpath_id=self.subpathid(subpath, False)
|
||||||
|
else:
|
||||||
|
subpath_id=self.subpathid(subpath, True)
|
||||||
|
if subpath_id is None:
|
||||||
|
return
|
||||||
cur.execute('DELETE FROM tags WHERE id={}'.format(subpath_id))
|
cur.execute('DELETE FROM tags WHERE id={}'.format(subpath_id))
|
||||||
cur.execute('DELETE FROM files WHERE id={}'.format(subpath_id))
|
cur.execute('DELETE FROM files WHERE id={}'.format(subpath_id))
|
||||||
self.con.commit()
|
self.con.commit()
|
||||||
|
|
|
@ -260,7 +260,7 @@ class Project:
|
||||||
print("Empty note file detected => "+f.name)
|
print("Empty note file detected => "+f.name)
|
||||||
else:
|
else:
|
||||||
print("Fixing empty note file => "+f.name)
|
print("Fixing empty note file => "+f.name)
|
||||||
self.metadata.delete(str(f))
|
self.metadata.delete(str(f),ignore_error=True)
|
||||||
os.remove(path)
|
os.remove(path)
|
||||||
|
|
||||||
self.metadata.fix_deleted(dry)
|
self.metadata.fix_deleted(dry)
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
from pnote.tools.tool import Tool
|
from pnote.tools.tool import Tool
|
||||||
import argparse
|
import argparse, os
|
||||||
|
|
||||||
class ToolSearch(Tool):
|
class ToolSearch(Tool):
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
self.format_file=None
|
||||||
|
|
||||||
def add_parser(self,subparsers):
|
def add_parser(self,subparsers):
|
||||||
p = subparsers.add_parser("search", description="Perform search operation on your notes")
|
p = subparsers.add_parser("search", description="Perform search operation on your notes")
|
||||||
p.add_argument("-g", "--grep", help="Grep an expression")
|
p.add_argument("-g", "--grep", help="Grep an expression")
|
||||||
|
@ -13,11 +16,28 @@ class ToolSearch(Tool):
|
||||||
p.add_argument("-s", "--subpath-only", help="Show file subpath only", action='store_true')
|
p.add_argument("-s", "--subpath-only", help="Show file subpath only", action='store_true')
|
||||||
p.add_argument("--last-created", help="Get last n created note files")
|
p.add_argument("--last-created", help="Get last n created note files")
|
||||||
p.add_argument("--last-added", help="Get last n added note files")
|
p.add_argument("--last-added", help="Get last n added note files")
|
||||||
|
p.add_argument("--format-file", help="Format output according to a format file")
|
||||||
|
|
||||||
def catsubpath(self,project,subpath):
|
def catsubpath(self,project,subpath):
|
||||||
with open(project.getpath(subpath),"r") as fp:
|
if self.format_file is not None:
|
||||||
for line in fp:
|
with open(project.getpath(subpath),"r") as noteFile:
|
||||||
print(line,end="")
|
with open(self.format_file,"r") as tplFile:
|
||||||
|
variables={
|
||||||
|
"content":noteFile.read(),
|
||||||
|
"created":project.getfileinfo(subpath,"created"),
|
||||||
|
"added":project.getfileinfo(subpath,"added"),
|
||||||
|
"id":project.getfileinfo(subpath,"id"),
|
||||||
|
"hostname":project.getfileinfo(subpath,"hostname"),
|
||||||
|
"platform":project.getfileinfo(subpath,"platform"),
|
||||||
|
"tags":project.listtags(subpath),
|
||||||
|
"subpath":subpath}
|
||||||
|
for line in tplFile:
|
||||||
|
print(line.format(**variables),end="")
|
||||||
|
else:
|
||||||
|
with open(project.getpath(subpath),"r") as fp:
|
||||||
|
for line in fp:
|
||||||
|
print(line,end="")
|
||||||
|
|
||||||
|
|
||||||
def catsubpaths(self, project, subpaths, content_only=False, subpath_only=False):
|
def catsubpaths(self, project, subpaths, content_only=False, subpath_only=False):
|
||||||
first=True
|
first=True
|
||||||
|
@ -26,9 +46,10 @@ class ToolSearch(Tool):
|
||||||
print(subpath)
|
print(subpath)
|
||||||
continue
|
continue
|
||||||
if not content_only:
|
if not content_only:
|
||||||
if not first:
|
if self.format_file is not None:
|
||||||
print()
|
if not first:
|
||||||
self.printsubpath(subpath)
|
print()
|
||||||
|
self.printsubpath(subpath)
|
||||||
self.catsubpath(project,subpath)
|
self.catsubpath(project,subpath)
|
||||||
first=False
|
first=False
|
||||||
|
|
||||||
|
@ -40,6 +61,11 @@ class ToolSearch(Tool):
|
||||||
if content_only and subpath_only:
|
if content_only and subpath_only:
|
||||||
print("content and file-path options cannot be used at the same time")
|
print("content and file-path options cannot be used at the same time")
|
||||||
exit(1)
|
exit(1)
|
||||||
|
if args.format_file:
|
||||||
|
if not os.path.exists(args.format_file):
|
||||||
|
print("Template file not found: {}".format(args.format_file))
|
||||||
|
exit(1)
|
||||||
|
self.format_file=args.format_file
|
||||||
if args.grep:
|
if args.grep:
|
||||||
first=True
|
first=True
|
||||||
for entry in project.grep(args.grep, ignore_case):
|
for entry in project.grep(args.grep, ignore_case):
|
||||||
|
|
Loading…
Add table
Reference in a new issue