Saturday, February 27, 2010

Aloha POS

I found some useful information about a good Point of Sale program.
Aloha is a widely used program to place orders. link

Maybe our group can find some of the information on the website helpful.

Friday, February 19, 2010

Bonjour

Group 4: iOrder for restaurants. After evaluating the project risk in class, we came up with the following potential risk: Server Client: Can we use the iPod touch to connect to a server? how hard is it? UI Feasibility: Can we create a user interface that is fast enough to place orders? The biggest risk for our group project is that we need to have a server and client. After doing our risk evaluation in class we started to work on trying to tackle this issue. Prof of Concept: I worked on trying to get the iPod touch to communicate with a server. I took some server client code that I used from a previous school project and tried to port it over to the Ipod. This was not as difficult as I expected. The iPhone SDK natively supports c, c++, objective c/c++. The client code I had was written in c++. I was able to copy it into the project in Xcode and have it compile without any modifications. Using the code from objective-c was more difficult. I had to rename the extension of the file that was using the class from *.m to *.mm. After this I could call the c++ code without any problems. I was actually impressed at how objective-c++ can keep track of both objective-c and c++. I had overloaded operators in my clientSocket class and they worked just fine. I was able to connect both the iPod touch and a linux server and send unencrypted data back and forward. I saw a potential problem setting up the server address in the client though. We really don't want people to have to enter the ip address of the server and port number in order to connect to the server. If for some reason the server goes down and comes back with a different address, having to go trough and change many iPod touches to reflect these changes would be a hassle. This got me thinking: iTunes automatically shares music libraries across a network. It does some magic and automatically the libraries of anyone on a network are shared with everyone else. Can our group do this? I looked around the Internet and found out how this magic is done. Apple uses a zeroconf protocol called bonjour. Bonjour locates devices such as printers, other computers, and the services that those devices offer on a local network using multicast Domain Name System service records (source). I was able to broadcast my server on a local network using avahi. Avahi is an open source implementation of bonjour (source). I was able to do it with the following steps in ubuntu: - run my server using port 5555. - create file in /etc/avahi/services/iorder.service with following contents
<?xml version="1.0" standalone='no'?>
<service-group>
  <name>iOrder Server</name>
  <service>
    <type>_http._tcp</type>
    <port>5555</port>
  </service>
</service-group>
avahi-deamon will now take care of broadcasting the service. To browse for services using bonjour apple provides the class NSNetServiceBrowser. I had a hard time getting this to work. I am not familiar with objective-c so writing code was very slow. The biggest problem I had was that after discovering a service(by name) it needs to be resolved to get the ip address and port number. When a service is found, the method
(void)netServiceBrowser: ...didFindService ( NSNetService* ) service moreComing: ( BOOL )more
is called and a request needs to be done to resolve the address:
[service resolveWithTimeout:5.0]
but for some reason it can't be called on the service that is being passed by the didFindService method. It needs to be a new service. It took a very long time to figure this out. I spent hours looking at my code and examples trying to figure out why it was not working. I was able to get networking/bonjour working on the prof of concept app. It automagically finds the server and connects to it. It does take a few min to resolve the address and port but these can probably be saved until they are no longer valid. In conclusion, having a server client is not a huge risk, although we will need to be careful moving forward.

Software Ideas

originally posted on Wednesday, February 10, 2010, 06:36 PM

I am still not quite sure on some software ideas. I'm not sure if the ideas I have would help the community.

Here are my ideas so far:

Software program that allows food servers to place orders from the ipod touch. Restaurants usually have a few computers used by the waiters to place orders at most restaurants. I think it would be neat to allow the waiters/waitress to place the order from the ipod touch. Typically waiters need to wait for an open machine to be available to place an order. Sometimes waiters forget what it was the customers wanted since it takes them so long to get an available machine.

Brain Age for the ipod touch. This is a brain activity game created by Nintendo for their NDS consonle. It is a game that allows old people to do simple math and reading exercises to keep their mind sharp. The interface is similar to the ipod touch so it would be feasable to write a

OS update 3.1.3

originally posted on Monday, February 8, 2010, 06:00 PM

I finished setting up the development environment on my machine. I Installed the latest version of xcode, and had to upgrade the iPod touch to the latest version in order to be able to use it for development.

I did the setup on my own machine and found the following issues:
The certificate I got from apple was displaying as being from an untrusted source. I had to install the "WWDR intermediate certificate" from the apple developers website to avoid this.

I was looking around the web trying to find objective-c compilers that do not require a mac and found GNUstep. It allows developing applications using objective-c. This is not a replacement for cocoa and xcode, but it does allow practicing objective-c without having to be on campus.

Software Engineering

I am taking a graduate level Software Engineering class.  We are going to be developing software for the iPod touch.  I am required to maintain a blog... so I decided I could also post them on here.  You'll be hearing from me more often, at least twice a week.  That is what is required :p