Sponsored Content
Top Forums Programming Setting Environment variable..! Post 302314330 by Kattoor on Friday 8th of May 2009 04:47:30 AM
Old 05-08-2009
Setting Environment variable..!

Hi,

I already have one CPP program which invokes the C program.And the C program contains whole function definitions..!This is a working program..I have to enable the logs in both CPP as well as in the C program ..!So I am reading the enviornmental variable log path from the CPP and doing the logging in CPP program..But I have to use the logging in the C program also...So again should I read the enviornmental variable for log path?As of now I am reading it in the C program also..But I dnt think it will work..I cant pass the file pointer as an argument because I dont have permission to change these functions..!I am using the gcc compiler only..!

Can anybody help me out on this..?

Example code:
test1.cpp
---------
Code:
#include "test.h"
 
int main()
{
     char * descr = getenv("LOG_PATH");
     FILE *pFile = fopen(descr,"a");
     char *name;
     printf("Variable is defined %s",descr);
     printf("Enter the name : ");
     scanf("%s" ,name);
     fprintf(pFile, "name is %s: ",name);
     display(name);
}
 
test_fun.c
-----------
//this file contains only the function definitions..
char *descr=getenv("LOG_PATH"); 
FILE *pFile=fopen(descr,"a");
 
void display(char name)
{
   fprintf(pFile,"~~~~~~name is %s~~~~~~~",name);
}

 
test.h
------
void display(char *name);

This is an example code only..!

Thanks in advance....!!!

Last edited by DukeNuke2; 05-08-2009 at 06:01 AM.. Reason: added code tags
 

10 More Discussions You Might Find Interesting

1. Programming

Setting Environment Variable date

Hi to all... I'm currently running a C++ program in Unix environment and it is dependent to a Unix environment variable with a date value. ex: echo $DateToday 20060403 I want to change that date in my C++ program, changing the value date to 20061120 and revert back to original... (6 Replies)
Discussion started by: d3ck_tm
6 Replies

2. Programming

Setting environment variable using JNI call

I have function declaration in Java and same function definition written in C programming language.. A JNI call from Java is made to a fuction...Function would set the environment variable { putenv(cEnvString1);} using C-built -in function ..and later return the encrypted string... putenv is... (6 Replies)
Discussion started by: shafi2all
6 Replies

3. UNIX for Dummies Questions & Answers

setting environment variable in awk

Dear all, I have a data sample... Dose: Summed ROI: Bladder ************************** Bin Dose Volume 001 0.700 100.000 002 0.715 99.998 168 3.142 0.368 169 3.157 0.338 170 3.171 0.292 Dose: Summed ROI:... (2 Replies)
Discussion started by: tintin72
2 Replies

4. Shell Programming and Scripting

Setting Environment variable from value in file

I've searched Google and now this forum. Best guess is my search fu is not good (and it probably isn't). The Google search did bring me here. Background I have a number of Korn Shell scripts who all use one of 3 values for an environment variable used in the backup system. On occasion one or... (8 Replies)
Discussion started by: WolfBrother
8 Replies

5. Shell Programming and Scripting

Setting environment variable using shell script

Hi All, I'm trying to write an menu driven program to automate some functions which involve loging to multiple hosts. The hosts can differ for every use, so I thought I would use an config file to get the hostnames. Now I need to set those values in the config file to environment variable to... (6 Replies)
Discussion started by: arun_maffy
6 Replies

6. Shell Programming and Scripting

Dynamically setting of environment variable... Can it be done?

Hi all, I am fairly new to unix scripting and will like to know how to dynamically set the name of an environment variable to be used. We have a .env file where we defined the names and locations of data files, trigger files, directories .... etc Example of variables defined in .env... (4 Replies)
Discussion started by: Morelia
4 Replies

7. Shell Programming and Scripting

problem with setting environment variable

shell script: #!/bin/csh set VAR=12345 echo $VAR will peacefully give the output 12345 at shell. I need to use C++ to do the same in some part of the code: string str = "12345"; retValue="set var1= "+str; system(retValue1.c_str()); system("echo $var1"); This doesn't create a system... (1 Reply)
Discussion started by: harshvardhan360
1 Replies

8. UNIX for Dummies Questions & Answers

setting a environment variable on linux

I want to set a enviroment variable VDC_DIR to a particular directory. I am doing it as export VDC_DIR=/abc it gets set but when i logout and do relogin than its not there. one way could be setting it in .profile file. but i have seen it on another box where it is not present in... (2 Replies)
Discussion started by: Jcpratap
2 Replies

9. UNIX for Dummies Questions & Answers

Setting environment variable problem in Ubuntu?

I am trying to install timbl- memory based learner tools in ubuntu. it after unpacking the tar file it brings the following msg No package 'ticcutils' found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you... (1 Reply)
Discussion started by: gbdaw
1 Replies

10. UNIX for Dummies Questions & Answers

STTY Columns Setting Environment Variable?

I am wondering about the following: stty columns 140 I have found that a number of times I need to set my display columns to a high number (such as 140) but I have to do this every time I login to use putty/ssh. Can we set this with an environmental variable so that it is permanent? Also... (4 Replies)
Discussion started by: newbie2010
4 Replies
KRB5_OPENLOG(3) 					   BSD Library Functions Manual 					   KRB5_OPENLOG(3)

NAME
krb5_initlog, krb5_openlog, krb5_closelog, krb5_addlog_dest, krb5_addlog_func, krb5_log, krb5_vlog, krb5_log_msg, krb5_vlog_msg -- Heimdal logging functions LIBRARY
Kerberos 5 Library (libkrb5, -lkrb5) SYNOPSIS
#include <krb5.h> typedef void (*krb5_log_log_func_t)(const char *time, const char *message, void *data); typedef void (*krb5_log_close_func_t)(void *data); krb5_error_code krb5_addlog_dest(krb5_context context, krb5_log_facility *facility, const char *destination); krb5_error_code krb5_addlog_func(krb5_context context, krb5_log_facility *facility, int min, int max, krb5_log_log_func_t log, krb5_log_close_func_t close, void *data); krb5_error_code krb5_closelog(krb5_context context, krb5_log_facility *facility); krb5_error_code krb5_initlog(krb5_context context, const char *program, krb5_log_facility **facility); krb5_error_code krb5_log(krb5_context context, krb5_log_facility *facility, int level, const char *format, ...); krb5_error_code krb5_log_msg(krb5_context context, krb5_log_facility *facility, char **reply, int level, const char *format, ...); krb5_error_code krb5_openlog(krb5_context context, const char *program, krb5_log_facility **facility); krb5_error_code krb5_vlog(krb5_context context, krb5_log_facility *facility, int level, const char *format, va_list arglist); krb5_error_code krb5_vlog_msg(krb5_context context, krb5_log_facility *facility, char **reply, int level, const char *format, va_list arglist); DESCRIPTION
These functions logs messages to one or more destinations. The krb5_openlog() function creates a logging facility, that is used to log messages. A facility consists of one or more destinations (which can be files or syslog or some other device). The program parameter should be the generic name of the program that is doing the logging. This name is used to lookup which destinations to use. This information is contained in the logging section of the krb5.conf configuration file. If no entry is found for program, the entry for default is used, or if that is missing too, SYSLOG will be used as destination. To close a logging facility, use the krb5_closelog() function. To log a message to a facility use one of the functions krb5_log(), krb5_log_msg(), krb5_vlog(), or krb5_vlog_msg(). The functions ending in _msg return in reply a pointer to the message that just got logged. This string is allocated, and should be freed with free(). The format is a standard printf() style format string (but see the BUGS section). If you want better control of where things gets logged, you can instead of using krb5_openlog() call krb5_initlog(), which just initializes a facility, but doesn't define any actual logging destinations. You can then add destinations with the krb5_addlog_dest() and krb5_addlog_func() functions. The first of these takes a string specifying a logging destination, and adds this to the facility. If you want to do some non-standard logging you can use the krb5_addlog_func() function, which takes a function to use when logging. The log function is called for each message with time being a string specifying the current time, and message the message to log. close is called when the facility is closed. You can pass application specific data in the data parameter. The min and max parameter are the same as in a destination (defined below). To specify a max of infinity, pass -1. krb5_openlog() calls krb5_initlog() and then calls krb5_addlog_dest() for each destination found. Destinations The defined destinations (as specified in krb5.conf) follows: STDERR This logs to the program's stderr. FILE:/file FILE=/file Log to the specified file. The form using a colon appends to the file, the form with an equal truncates the file. The truncating form keeps the file open, while the appending form closes it after each log message (which makes it possible to rotate logs). The truncating form is mainly for compatibility with the MIT libkrb5. DEVICE=/device This logs to the specified device, at present this is the same as FILE:/device. CONSOLE Log to the console, this is the same as DEVICE=/dev/console. SYSLOG[:priority[:facility]] Send messages to the syslog system, using priority, and facility. To get the name for one of these, you take the name of the macro passed to syslog(3), and remove the leading LOG_ (LOG_NOTICE becomes NOTICE). The default values (as well as the values used for unrecognised values), are ERR, and AUTH, respectively. See syslog(3) for a list of priorities and facilities. Each destination may optionally be prepended with a range of logging levels, specified as min-max/. If the level parameter to krb5_log() is within this range (inclusive) the message gets logged to this destination, otherwise not. Either of the min and max valued may be omitted, in this case min is assumed to be zero, and max is assumed to be infinity. If you don't include a dash, both min and max gets set to the speci- fied value. If no range is specified, all messages gets logged. EXAMPLES
[logging] kdc = 0/FILE:/var/log/kdc.log kdc = 1-/SYSLOG:INFO:USER default = STDERR This will log all messages from the kdc program with level 0 to /var/log/kdc.log, other messages will be logged to syslog with priority LOG_INFO, and facility LOG_USER. All other programs will log all messages to their stderr. SEE ALSO
syslog(3), krb5.conf(5) BUGS
These functions use asprintf() to format the message. If your operating system does not have a working asprintf(), a replacement will be used. At present this replacement does not handle some correct conversion specifications (like floating point numbers). Until this is fixed, the use of these conversions should be avoided. If logging is done to the syslog facility, these functions might not be thread-safe, depending on the implementation of openlog(), and syslog(). HEIMDAL
August 6, 1997 HEIMDAL
All times are GMT -4. The time now is 10:10 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy