Server IP : 103.119.228.120 / Your IP : 18.191.62.68 Web Server : Apache System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : nobody ( 99) PHP Version : 5.6.40 Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/zsh/5.0.2/functions/ |
Upload File : |
# Parse the line passed down in the first argument as a calendar entry. # Sets the values parsed into the associative array reply, consisting of: # time The time as an integer (as per EPOCHSECONDS) of the (next) event. # text1 The text from the line not including the date/time, but # including any WARN or RPT text. This is useful for rescheduling # events, since the keywords need to be retained in this case. # warntime Any warning time (WARN keyword) as an integer, else an empty # string. This is the time of the warning in units of EPOCHSECONDS, # not the parsed version of the original number (which was a time # difference). # warnstr Any warning time as the original string (e.g. "5 mins"), not # including the WARN keyword. # schedrpttime The next scheduled recurrence (which may be cancelled # or rescheduled). # rpttime The actual occurrence time: the event may have been rescheduled, # in which case this is the time of the actual event (for use in # programming warnings etc.) rather than that of the normal # recurrence (which is recorded by calendar_add as RECURRENCE). # # rptstr Any repeat/recurrence time as the original string. # text2 The text from the line with the date and other keywords and # values removed. # # Note that here an "integer" is a string of digits, not an internally # formatted integer. # # Return status 1 if parsing failed. reply is set to an empty # in this case. Note the caller is responsible for # making reply local. emulate -L zsh setopt extendedglob local vdatefmt="%Y%m%dT%H%M%S" local REPLY REPLY2 timefmt occurrence skip try_to_recover before after local -a match mbegin mend integer now then replaced firstsched schedrpt # Any text matching "OCCURRENCE <timestamp> <disposition>" # may occur multiple times. We set occurrences[<timestamp>]=disposition. local -A occurrences autoload -Uz calendar_scandate typeset -gA reply reply=() if (( $# != 1 )); then print "Usage: $0 calendar-entry" >&2 return 2 fi # This call sets REPLY to the date and time in seconds since the epoch, # REPLY2 to the line with the date and time removed. calendar_scandate -as $1 || return 1 reply[time]=$(( REPLY )) schedrpt=${reply[time]} reply[text1]=${REPLY2##[[:space:]]#} reply[text2]=${reply[text1]} while true; do case ${reply[text2]} in # First check for a scheduled repeat time. If we don't find one # we'll use the normal time. ((#b)(*[[:space:]\#])RECURRENCE[[:space:]]##([^[:space:]]##)([[:space:]]*|)) strftime -rs then $vdatefmt ${match[2]} || print "format: $vdatefmt, string ${match[2]}" >&2 schedrpt=$then reply[text2]="${match[1]}${match[3]##[ ]#}" ;; # Look for specific warn time. ((#b)(|*[[:space:],])WARN[[:space:]](*)) if calendar_scandate -asm -R $reply[time] $match[2]; then reply[warntime]=$REPLY reply[warnstr]=${match[2]%%"$REPLY2"} # Remove spaces and tabs but not newlines from trailing text, # else the formatting looks funny. reply[text2]="${match[1]}${REPLY2##[ ]#}" else # Just remove the keyword for further parsing reply[text2]="${match[1]}${match[2]##[ ]#}" fi ;; ((#b)(|*[[:space:],])RPT[[:space:]](*)) before=${match[1]} after=${match[2]} if [[ $after = CANCELLED(|[[:space:]]*) ]]; then reply[text2]="$before${match[2]##[ ]#}" reply[rptstr]=CANCELLED reply[rpttime]=CANCELLED reply[schedrpttime]=CANCELLED elif calendar_scandate -a -R $schedrpt $after; then # It's possible to calculate a recurrence, however we don't # do that yet. For now just keep the current time as # the recurrence. Hence we ignore REPLY. reply[text2]="$before${REPLY2##[ ]#}" reply[rptstr]=${after%%"$REPLY2"} # Until we find an individual occurrence, the actual time # of the event is the regular one. reply[rpttime]=$schedrpt else # Just remove the keyword for further parsing reply[text2]="$before${after##[[:space:]]#}" fi ;; ((#b)(|*[[:space:]\#])OCCURRENCE[[:space:]]##([^[:space:]]##)[[:space:]]##([^[:space:]]##)(*)) occurrences[${match[2]}]="${match[3]}" # as above reply[text2]="${match[1]}${match[4]##[ ]#}" ;; (*) break ;; esac done if [[ -n ${reply[rpttime]} && ${reply[rptstr]} != CANCELLED ]]; then # Recurring event. We need to find out when it recurs. (( now = EPOCHSECONDS )) # First find the next recurrence. replaced=0 reply[schedrpttime]=$schedrpt if (( schedrpt >= now )); then firstsched=$schedrpt fi while (( ${reply[schedrpttime]} < now || replaced )); do if ! calendar_scandate -a -R ${reply[schedrpttime]} ${reply[rptstr]}; then break fi if (( REPLY <= ${reply[schedrpttime]} )); then # going backwards --- pathological case break; fi reply[schedrpttime]=$REPLY reply[rpttime]=$REPLY if (( ${reply[schedrpttime]} > now && firstsched == 0 )); then firstsched=$REPLY fi replaced=0 # do we have an occurrence to compare against? if (( ${#occurrences} )); then strftime -s timefmt $vdatefmt ${reply[schedrpttime]} occurrence=$occurrences[$timefmt] if [[ -n $occurrence ]]; then # Yes, this replaces the scheduled one. replaced=1 fi fi done # Now look through occurrences (values only) and see which are (i) still # to happen (ii) early than the current rpttime. for occurrence in $occurrences; do if [[ $occurrence != CANCELLED ]]; then strftime -rs then $vdatefmt $occurrence || print "format: $vdatefmt, string $occurrence" >&2 if (( then > now && then < ${reply[rpttime]} )); then reply[rpttime]=$then fi fi done # Finally, update the scheduled repeat time to the earliest # possible value. This is so that if an occurrence replacement is # cancelled we pick up the regular one. Can this happen? Dunno. reply[schedrpttime]=$firstsched fi reply[text2]="${reply[text2]##[[:space:],]#}" return 0