A little advice on writing a logWriter

A

Alexander Jonsson

Hello everyone,

I'm new to Ruby and not so experienced programmer in overall but i
manage to do "ok". Now I started to program a bit in Ruby and wanted
to write a logWriter program but the problem is that Ruby doesnt have
I/O Stream functions like java and C++.

I have never written a simple log writer before either, this will be
challenging. Is there any advice on how to proceed you could give a
fellow rookie ruby lover? :)


Cheers,

RubyNub
 
V

Vlad GALU

Hello everyone,

I'm new to Ruby and not so experienced programmer in overall but i
manage to do "ok". Now I started to program a bit in Ruby and wanted
to write a logWriter program but the problem is that Ruby doesnt have
I/O Stream functions like java and C++.

Instead it has a quite capable File class.
I have never written a simple log writer before either, this will be
challenging. Is there any advice on how to proceed you could give a
fellow rookie ruby lover? :)

Take a look at log4r (http://log4r.sourceforge.net). It aims to
resemble log4j/log4cpp as much as possible.
 
K

Karl Gabel

Alexander said:
Hello everyone,

I'm new to Ruby and not so experienced programmer in overall but i
manage to do "ok". Now I started to program a bit in Ruby and wanted
to write a logWriter program but the problem is that Ruby doesnt have
I/O Stream functions like java and C++.
log_fd = File.new("test_log", "w+")
or just open an existing one

log_fd.write(str)
or
log_fd << "str"
log_fd.flush

you can also use sprintf

log_fd.write(sprintf "%d", var)

log_fd.close

have a look to
http://www.ruby-doc.org/core/classes/IO.html

is this you are looking for?

regards

karl
 
A

Alex Hedin

Thanks Vlad, I will take a look at it right now.

Instead it has a quite capable File class.


Take a look at log4r (http://log4r.sourceforge.net). It aims to
resemble log4j/log4cpp as much as possible.



--
If it's there, and you can see it, it's real.
If it's not there, and you can see it, it's virtual.
If it's there, and you can't see it, it's transparent.
If it's not there, and you can't see it, you erased it.
 
K

Kyle Schmitt

Ooh. From personal experience log4r is rather poorly documented (in
bad moods I'd call it abysmal, but right now, I'll just say poor). If
you have trouble, just post it here and folks who've used it will
help.

I'm trying to find the script I had that used it extensively to show
another example, but it may have gotten purged...

--Kyle
 
J

James Edward Gray II

Ooh. From personal experience log4r is rather poorly documented (in
bad moods I'd call it abysmal, but right now, I'll just say poor). If
you have trouble, just post it here and folks who've used it will
help.

You could read the standard logger library which is pretty easy to
follow.

James Edward Gray II
 
K

Karl Gabel

Alex said:
Hello!

What I want do do is to make a logwriter so I can store the
information that comes in from a given network. For example I would
like to see what kind of data I'm receiving from that network by
having this logwriter storing that info for me.
there is doc for the socket class, this is much easier to write the
whole stuff then in C
http://www.ruby-doc.org/stdlib/libdoc/socket/rdoc/index.html

maybe this is interessting for you
http://www.ruby-doc.org/stdlib/libdoc/drb/rdoc/index.html
http://www.chadfowler.com/ruby/drb.html
I went and looked at this link: (http://log4r.sourceforge.net)

But that is a completely done written logging program right? What I
would want do to, is to write one of my own. I thought they were
simpler than that.... CAn you give mne advice on how to proceed?
log_fd = File.new("test_log", "w+")
or just open an existing one

log_fd.write(str)
or
log_fd << "str"
log_fd.flush

This for sure is of great help. The File class seem very handy, jsut
that its my first logwriter and I don't exactly know wot the main
components should be (apart from write and read methods) in my
logwriter...
I don't know either, I am sorry. I never write a logwriter before, I
just logged some messages with the classes above (socket and DRb).

regards

karl
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,768
Messages
2,569,575
Members
45,053
Latest member
billing-software

Latest Threads

Top