mirror of https://gitlab.com/bashrc2/epicyon
Timeline timing function
parent
8f164638c0
commit
e7eff2a111
|
@ -61,6 +61,16 @@ from webapp_question import insertQuestion
|
|||
from devices import E2EEdecryptMessageFromDevice
|
||||
|
||||
|
||||
def logPostTiming(enableTimingLog: bool, postStartTime, debugId: str) -> None:
|
||||
"""Create a log of timings for performance tuning
|
||||
"""
|
||||
if not enableTimingLog:
|
||||
return
|
||||
timeDiff = int((time.time() - postStartTime) * 1000)
|
||||
if timeDiff > 100:
|
||||
print('TIMING INDIV ' + debugId + ' = ' + str(timeDiff))
|
||||
|
||||
|
||||
def preparePostFromHtmlCache(postHtml: str, boxName: str,
|
||||
pageNumber: int) -> str:
|
||||
"""Sets the page number on a cached html post
|
||||
|
@ -861,16 +871,6 @@ def getReplyWithoutDisplayName(translate: {}, iconsPath: str,
|
|||
replyNickname + '@' + replyDomain + '</a>\n'
|
||||
|
||||
|
||||
def logPostTiming(enableTimingLog: bool, postStartTime, debugId: str) -> None:
|
||||
"""Create a log of timings for performance tuning
|
||||
"""
|
||||
if not enableTimingLog:
|
||||
return
|
||||
timeDiff = int((time.time() - postStartTime) * 1000)
|
||||
if timeDiff > 100:
|
||||
print('TIMING INDIV ' + debugId + ' = ' + str(timeDiff))
|
||||
|
||||
|
||||
def getPostTitleReplyHtml(baseDir: str,
|
||||
httpPrefix: str,
|
||||
nickname: str, domain: str,
|
||||
|
|
|
@ -27,6 +27,18 @@ from posts import isModerator
|
|||
from posts import isEditor
|
||||
|
||||
|
||||
def logTimelineTiming(enableTimingLog: bool, timelineStartTime,
|
||||
boxName: str, debugId: str) -> None:
|
||||
"""Create a log of timings for performance tuning
|
||||
"""
|
||||
if not enableTimingLog:
|
||||
return
|
||||
timeDiff = int((time.time() - timelineStartTime) * 1000)
|
||||
if timeDiff > 100:
|
||||
print('TIMELINE TIMING ' +
|
||||
boxName + ' ' + debugId + ' = ' + str(timeDiff))
|
||||
|
||||
|
||||
def htmlTimeline(cssCache: {}, defaultTimeline: str,
|
||||
recentPostsCache: {}, maxRecentPosts: int,
|
||||
translate: {}, pageNumber: int,
|
||||
|
@ -50,6 +62,8 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
|
|||
authorized: bool) -> str:
|
||||
"""Show the timeline as html
|
||||
"""
|
||||
enableTimingLog = False
|
||||
|
||||
timelineStartTime = time.time()
|
||||
|
||||
accountDir = baseDir + '/accounts/' + nickname + '@' + domain
|
||||
|
@ -114,10 +128,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
|
|||
# filename of the banner shown at the top
|
||||
bannerFile, bannerFilename = getBannerFile(baseDir, nickname, domain)
|
||||
|
||||
# benchmark 1
|
||||
timeDiff = int((time.time() - timelineStartTime) * 1000)
|
||||
if timeDiff > 100:
|
||||
print('TIMELINE TIMING ' + boxName + ' 1 = ' + str(timeDiff))
|
||||
logTimelineTiming(enableTimingLog, timelineStartTime, boxName, '1')
|
||||
|
||||
# is the user a moderator?
|
||||
if not moderator:
|
||||
|
@ -127,10 +138,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
|
|||
if not editor:
|
||||
editor = isEditor(baseDir, nickname)
|
||||
|
||||
# benchmark 2
|
||||
timeDiff = int((time.time() - timelineStartTime) * 1000)
|
||||
if timeDiff > 100:
|
||||
print('TIMELINE TIMING ' + boxName + ' 2 = ' + str(timeDiff))
|
||||
logTimelineTiming(enableTimingLog, timelineStartTime, boxName, '2')
|
||||
|
||||
# the appearance of buttons - highlighted or not
|
||||
inboxButton = 'button'
|
||||
|
@ -217,10 +225,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
|
|||
'" src="/' + iconsPath + '/person.png"/></a>\n'
|
||||
break
|
||||
|
||||
# benchmark 3
|
||||
timeDiff = int((time.time() - timelineStartTime) * 1000)
|
||||
if timeDiff > 100:
|
||||
print('TIMELINE TIMING ' + boxName + ' 3 = ' + str(timeDiff))
|
||||
logTimelineTiming(enableTimingLog, timelineStartTime, boxName, '3')
|
||||
|
||||
# moderation / reports button
|
||||
moderationButtonStr = ''
|
||||
|
@ -255,10 +260,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
|
|||
|
||||
tlStr = htmlHeaderWithExternalStyle(cssFilename)
|
||||
|
||||
# benchmark 4
|
||||
timeDiff = int((time.time() - timelineStartTime) * 1000)
|
||||
if timeDiff > 100:
|
||||
print('TIMELINE TIMING ' + boxName + ' 4 = ' + str(timeDiff))
|
||||
logTimelineTiming(enableTimingLog, timelineStartTime, boxName, '4')
|
||||
|
||||
# if this is a news instance and we are viewing the news timeline
|
||||
newsHeader = False
|
||||
|
@ -474,10 +476,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
|
|||
'" name="submitInfo" value="' + translate['Info'] + '">\n'
|
||||
tlStr += '</div>\n</form>\n'
|
||||
|
||||
# benchmark 6
|
||||
timeDiff = int((time.time() - timelineStartTime) * 1000)
|
||||
if timeDiff > 100:
|
||||
print('TIMELINE TIMING ' + boxName + ' 6 = ' + str(timeDiff))
|
||||
logTimelineTiming(enableTimingLog, timelineStartTime, boxName, '6')
|
||||
|
||||
if boxName == 'tlshares':
|
||||
maxSharesPerAccount = itemsPerPage
|
||||
|
@ -487,15 +486,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
|
|||
maxSharesPerAccount, httpPrefix) +
|
||||
htmlFooter())
|
||||
|
||||
# benchmark 7
|
||||
timeDiff = int((time.time() - timelineStartTime) * 1000)
|
||||
if timeDiff > 100:
|
||||
print('TIMELINE TIMING ' + boxName + ' 7 = ' + str(timeDiff))
|
||||
|
||||
# benchmark 8
|
||||
timeDiff = int((time.time() - timelineStartTime) * 1000)
|
||||
if timeDiff > 100:
|
||||
print('TIMELINE TIMING ' + boxName + ' 8 = ' + str(timeDiff))
|
||||
logTimelineTiming(enableTimingLog, timelineStartTime, boxName, '7')
|
||||
|
||||
# page up arrow
|
||||
if pageNumber > 1:
|
||||
|
@ -520,8 +511,6 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
|
|||
|
||||
# show each post in the timeline
|
||||
for item in timelineJson['orderedItems']:
|
||||
timelinePostStartTime = time.time()
|
||||
|
||||
if item['type'] == 'Create' or \
|
||||
item['type'] == 'Announce' or \
|
||||
item['type'] == 'Update':
|
||||
|
@ -543,22 +532,14 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
|
|||
preparePostFromHtmlCache(currTlStr,
|
||||
boxName,
|
||||
pageNumber)
|
||||
# benchmark cache post
|
||||
timeDiff = \
|
||||
int((time.time() -
|
||||
timelinePostStartTime) * 1000)
|
||||
if timeDiff > 100:
|
||||
print('TIMELINE POST CACHE TIMING ' +
|
||||
boxName + ' = ' + str(timeDiff))
|
||||
logTimelineTiming(enableTimingLog,
|
||||
timelineStartTime,
|
||||
boxName, '10')
|
||||
|
||||
if not currTlStr:
|
||||
# benchmark cache post
|
||||
timeDiff = \
|
||||
int((time.time() -
|
||||
timelinePostStartTime) * 1000)
|
||||
if timeDiff > 100:
|
||||
print('TIMELINE POST DISK TIMING START ' +
|
||||
boxName + ' = ' + str(timeDiff))
|
||||
logTimelineTiming(enableTimingLog,
|
||||
timelineStartTime,
|
||||
boxName, '11')
|
||||
|
||||
# read the post from disk
|
||||
currTlStr = \
|
||||
|
@ -578,13 +559,8 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
|
|||
showIndividualPostIcons,
|
||||
manuallyApproveFollowers,
|
||||
False, True)
|
||||
# benchmark cache post
|
||||
timeDiff = \
|
||||
int((time.time() -
|
||||
timelinePostStartTime) * 1000)
|
||||
if timeDiff > 100:
|
||||
print('TIMELINE POST DISK TIMING ' +
|
||||
boxName + ' = ' + str(timeDiff))
|
||||
logTimelineTiming(enableTimingLog,
|
||||
timelineStartTime, boxName, '12')
|
||||
|
||||
if currTlStr:
|
||||
itemCtr += 1
|
||||
|
@ -625,10 +601,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
|
|||
rightColumnStr + ' </td>\n'
|
||||
tlStr += ' </tr>\n'
|
||||
|
||||
# benchmark 9
|
||||
timeDiff = int((time.time() - timelineStartTime) * 1000)
|
||||
if timeDiff > 100:
|
||||
print('TIMELINE TIMING ' + boxName + ' 9 = ' + str(timeDiff))
|
||||
logTimelineTiming(enableTimingLog, timelineStartTime, boxName, '9')
|
||||
|
||||
tlStr += ' </tbody>\n'
|
||||
tlStr += '</table>\n'
|
||||
|
|
Loading…
Reference in New Issue