Sponsored Content
Full Discussion: get next working day
Top Forums Programming get next working day Post 302272810 by anup13 on Thursday 1st of January 2009 04:54:32 AM
Old 01-01-2009
i done some modifications for considering holidays also(i.e local holiday).
also you can get nth working day from given day.
if holiday list is stored in table, you can build hash table on it instead of array of holiday. hash table will give lots of performance gain also

Code:
#include <stdio.h>
#include <stdlib.h>
#include<time.h>


#define OFORMAT "%Y-%m-%d"

//char holidy_list[][12]={"01-Jan-2004","03-Jan-2004","04-Jan-2004","10-Jan-2004","11-Jan-2004","17-Jan-2004","18-Jan-2004"};

char holidy_list[][12]={"2004-01-01","2004-01-03","2004-01-04","2004-01-10","2004-01-11","2004-01-17","2004-01-18"};

int main(void)
{
   struct tm xmas, *tm1;
   time_t tt;

   int flg=0,i,found=0;

   char date[] = "2003-12-31";
   char buf[12];



  int no_of_days =1;  // nth working day 
  int  count =0;

   if (strptime(date, "%Y-%m-%d", &xmas) == NULL)
   {
      printf("strptime() failed.\n");
      exit(1);
   }


    tt = mktime(&xmas);
    tm1 = localtime(&tt);
    strftime(buf,sizeof(buf), OFORMAT, tm1);
    printf("\nOld Date is <%s>\n",buf);

 for(;;)
 {
    tt= tt-86400;
    tm1 = localtime(&tt);
    strftime(buf,sizeof(buf), OFORMAT, tm1);

    //printf("\nbuf<%s>  count<%d>",buf,count);
    found=0;
    if (tm1->tm_wday==0 || tm1->tm_wday ==6)
    {
         continue;
    }

    if(HashGet(buf))
     { found = 1;}

    if(found ==0)
     {
        count ++;
        if (count >= no_of_days)  break;

     }

     //printf("\nbuf<%s> hldlst<%s> count<%d>",buf,holidy_list[i],count);

  }

  for( i = 0; buf[ i ]; i++)
    buf[ i ] = toupper( buf[ i ] );
  printf( "\nNew Date is <%s>\n",buf);
}


int HashGet(char buf[])
{
    int i;
    for(i=0;i< (sizeof(holidy_list)/sizeof("30-DEC-2008"));i++)
    {
      if (strncasecmp(holidy_list[i],buf,sizeof(buf))==0)
        { return 1; break;}
    }
    return 0;
}

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Write a shell script to find whether the first day of the month is a working day

Hi , I am relatively new to unix... Can u pls help me out to find out if the first day of the month is a working day ie from (Monday to Friday)...using Date and If clause in Korn shell.. This is very urgent. Thanks for ur help... (7 Replies)
Discussion started by: phani
7 Replies

2. Shell Programming and Scripting

set Working day in ksh

Hello guys it´s a pleasure to type with the unix community...I´m new in shell script and I need to insert into a #!/ksh a statment that will check if a file that I´ll receive from another script is arriving in the first working day of each month: let´s say that I´ll reveive the following files... (1 Reply)
Discussion started by: Rafael.Buria
1 Replies

3. Shell Programming and Scripting

Get Last working day of the month

Hi I need a script to get "Last working day of the month". I will pass the month and year as parameters and i need to get the last working date. Ex for June 2008 the last working day is 30th its monday. for August 2008 the last working day is 29th and it is Friday. ie the last working... (6 Replies)
Discussion started by: manmarirama
6 Replies

4. Shell Programming and Scripting

last working day of previous month

Hi, I want a script(ksh) to see if today is the last working day(Mon-Fri) of the month. If it is the last working day I need to print current date, else I need the last working day of previous month. Thanks in advance. (1 Reply)
Discussion started by: rspk_praveen
1 Replies

5. Shell Programming and Scripting

Script to find previous month last day minus one day timestamp

Hi All, I need to find the previous month last day minus one day, using shell script. Can you guys help me to do this. My Requirment is as below: Input for me will be 2000909(YYYYMM) I need the previous months last day minus 1 day timestamp. That is i need 2000908 months last day minus ... (3 Replies)
Discussion started by: girish.raos
3 Replies

6. Shell Programming and Scripting

How to find the first working day of month ?

Hi, How to find the first working day of month ? My requirement is, I need to call the function only if today is first working day of month. I could find out one function which finds last working day in month in this forum. Can anyone pls let me know for first working day. Thanks. for... (10 Replies)
Discussion started by: vnimavat
10 Replies

7. Shell Programming and Scripting

Calculating 12th working day

I have a business requirement in my project where I need to calculate the 12th working day of every month. Can any please tell me the solution to my problem. Thanks in advance (7 Replies)
Discussion started by: ami_smart
7 Replies

8. UNIX for Dummies Questions & Answers

Running Script via Crontab on 2nd Working day each month

Hello Guys, I have a questions regarding running a shell script every second working day each month. I have no clue how solve this problem :wall:. Important is that it has to be the second working (Mo-Fr). Example: If 1st and 2nd Days of month are Sat and Sun the script must run on 4th day... (5 Replies)
Discussion started by: Hollo
5 Replies

9. Shell Programming and Scripting

Find Month first Working Day

Hi, I would like to calculate 1st working/Business day of each month. Exp: 1st -Oct-2011 is Saturday--- Non Business Day So the Next Working Day would be 3-Oct-2011 I need a shell script to calculate the month first business date. (3 Replies)
Discussion started by: koti_rama
3 Replies

10. Shell Programming and Scripting

KSH script Not working (calculate days since 1/1/2000 given day 4444)

I am unable to get this KSH script to work. Can someone help. I've been told this should work with KSH93. Which I think I have on Solaris 10. If I do a grep -i version /usr/dt/bin/dtksh I get @(#)Version M-12/28/93d @(#)Version 12/28/93 @(#)Version M-12/28/93 This is correct for... (5 Replies)
Discussion started by: thibodc
5 Replies
XkbLookupKeyBinding(3)						   XKB FUNCTIONS					    XkbLookupKeyBinding(3)

NAME
XkbLookupKeyBinding - Find the string bound to a key by XRebindKeySym SYNOPSIS
int XkbLookupKeyBinding ( dpy, sym, state, buf, nbytes, extra_rtrn ) Display * dpy; KeySym sym; unsigned int state; char * buf; int nbytes; int * extra_rtrn; ARGUMENTS
- dpy connection to server - sym connection to server - state state for which string is to be looked up - buf buffer into which returned string is written - nbytes size of buffer in bytes - extra_rtrn backfilled with number bytes overflow DESCRIPTION
XkbLookupKeyBinding is the equivalent of the core XLookupString function. XRebindKeysym binds an ASCII string to a specified keysym, so that the string and keysym are returned when the key is pressed and a speci- fied list of modifiers are also being held down. XkbLookupKeyBinding returns in buf the string associated with the keysym sym and modifier state state. buf is NULL terminated unless there's an overflow. If the string returned is larger than nbytes, a count of bytes that does not fit into the buffer is returned in extra_rtrn. XkbTranslateKeySym returns the number of bytes that it placed into buf. SEE ALSO
XkbTranslateKeySym(3), XLookupString(3X11), XRebindKeysym(3X11) X Version 11 libX11 1.2.1 XkbLookupKeyBinding(3)
All times are GMT -4. The time now is 08:22 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy