Example #1
0
        public Customer(int id, string name, string address, string telephone, int numNights, Room room, string idRoom)
        {
            this.id = id;
            this.name = name;
            this.address = address;
            this.telephone = telephone;
            this.numNights = numNights;

            bookRoom(id, room, idRoom);

            writeToFile();
        }
Example #2
0
        public Customer(int id, string name, string address, string telephone, int numNights)
        {
            this.id = id;
            this.name = name;
            this.address = address;
            this.telephone = telephone;
            this.numNights = numNights;

            this.room = null;
            this.idRoom = convertStringFormat(this.idRoom, 5);

            writeToFile();
        }
Example #3
0
        static void Main(string[] args)
        {
            ObjectReader or = new ObjectReader();
            or.clearFiles();

            ObjectSerialization os = new ObjectSerialization();

            // PART 1 TEST
            // Create Hotel Class Test Data
            Console.WriteLine("HOTEL SERIALIZE PART ->");
            Console.WriteLine("Hotel Data Created:");
            Console.WriteLine("---------------------------");

            Hotel [] hotel = new Hotel [2];

            hotel[0] = new Hotel(0, "Avalon", "The Palm 32, Dubai");
            hotel[0].addRoom(0, "A1", 2, 1000.0f);
            hotel[0].addRoom(0, "A2", 3, 1500.0f);

            hotel[1] = new Hotel(1, "Kira", "Yasumi 12, Kyoto");
            hotel[1].addRoom(1, "B1", 1, 3200.0f);

            for (int i = 0; i < hotel.Length; i++)
                Console.WriteLine(hotel[i].getInfo());

            // Serialize single Hotel Object
            os.serializeObject(hotel[0], @"t1.xml");

            // Deserialize and display single Hotel Object
            Console.WriteLine("Single Hotel Data After Deserlialization: (ID = 0)");
            Console.WriteLine("---------------------------");

            Hotel hotel2 = null;
            if (os.deserializeObject(ref hotel2, @"t1.xml"))
            {
                Console.WriteLine(hotel2.getInfo());
            }
            else
            {
                Console.WriteLine("Deserlize function problem!");
            }

            // Serialize Hotel Object array
            os.serializeObjectArray(hotel, @"t2.xml");

            // Deserialize and display Hotel Object array
            Console.WriteLine("Hotel Array After Deserlialization:");
            Console.WriteLine("---------------------------");

            Hotel [] hotel3 = null;
            if (os.deserializeObjectArray(ref hotel3, @"t2.xml"))
            {
                for (int i = 0; i < hotel3.Length; i++)
                    Console.WriteLine(hotel3[i].getInfo());
            }
            else
            {
                Console.WriteLine("Deserlize function problem!");
            }

            // PART 2 TEST
            // Create Customer Class Test Data
            Console.WriteLine("CUSTOMER SERIALIZE PART ->");
            Console.WriteLine("Customer Data Created:");
            Console.WriteLine("---------------------------");

            ArrayList list = new ArrayList();

            list.Add(new Customer(0, "Lionel Messi", "Royal Residence 3, Barcelona", "+48 832333222", 5, 0.5f));
            list.Add(new Customer(1, "Mao Asada", "Ice Palace 14, Tokyo", "+321 2243332223", 3, 0.05f));

            Customer[] customer = new Customer[list.Count];
            for (int i = 0; i < list.Count; i++)
                customer[i] = (Customer)list[i];

            for (int i = 0; i < customer.Length; i++)
                Console.WriteLine(customer[i].getInfo());

            // Serialize single Customer Object
            os.serializeObject(customer[0], @"t3.xml");

            // Deserialize and display single Customer Object
            Console.WriteLine("Single Customer Data After Deserlialization: (ID = 0)");
            Console.WriteLine("---------------------------");

            Customer customer2 = null;
            if (os.deserializeObject(ref customer2, @"t3.xml"))
            {
                Console.WriteLine(customer2.getInfo());
            }
            else
            {
                Console.WriteLine("Deserlize function problem!");
            }

            // Serialize Customer Object array
            os.serializeObjectArray(customer, @"t4.xml");

            // Deserialize and display Customer Object array
            Console.WriteLine("Customer Array After Deserlialization:");
            Console.WriteLine("---------------------------");

            Customer[] customer3 = null;
            if (os.deserializeObjectArray(ref customer3, @"t4.xml"))
            {
                for (int i = 0; i < customer3.Length; i++)
                    Console.WriteLine(customer3[i].getInfo());
            }
            else
            {
                Console.WriteLine("Deserlize function problem!");
            }

            // PART 3 TEST
            // Get Room Class Array Data (created in Hotel)
            Console.WriteLine("ROOM SERIALIZE PART ->");
            Console.WriteLine("Room Data Created:");
            Console.WriteLine("---------------------------");

            list = new ArrayList();
            list = or.getRoomsList();

            Room[] room = new Room[list.Count];
            for (int i = 0; i < list.Count; i++)
                room[i] = (Room)list[i];

            for (int i = 0; i < room.Length; i++)
                Console.WriteLine(room[i].getInfo());

            // Serialize single Room Object
            os.serializeObject(room[0], @"t5.xml");

            // Deserialize and display single Room Object
            Console.WriteLine("Single Room Data After Deserlialization: (ID = 0)");
            Console.WriteLine("---------------------------");

            Room room2 = null;
            if (os.deserializeObject(ref room2, @"t5.xml"))
            {
                Console.WriteLine(room2.getInfo());
            }
            else
            {
                Console.WriteLine("Deserlize function problem!");
            }

            // Serialize Room Object array
            os.serializeObjectArray(room, @"t6.xml");

            // Deserialize and display Room Object array
            Console.WriteLine("Room Array After Deserlialization:");
            Console.WriteLine("---------------------------");

            Room[] room3 = null;
            if (os.deserializeObjectArray(ref room3, @"t6.xml"))
            {
                for (int i = 0; i < room3.Length; i++)
                    Console.WriteLine(room3[i].getInfo());
            }
            else
            {
                Console.WriteLine("Deserlize function problem!");
            }

            //
            // PART 4 TEST
            // Serialize All Object array to one file
            os.serializeAllObjectArray(customer, hotel, room, os.getSamplePath(4));

            // Deserialize and display All Object array
            Console.WriteLine("ALL OBJECT SERIALIZE PART ->");
            Console.WriteLine("All Objects Array (from one file) After Deserlialization:");
            Console.WriteLine("---------------------------");

            Customer[] customer4 = null;
            Hotel[] hotel4 = null;
            Room[] room4 = null;
            if (os.deserializeAllObjectArray(ref customer4, ref hotel4, ref room4, os.getSamplePath(4)))
            {
                for (int i = 0; i < customer4.Length; i++)
                    Console.WriteLine(customer4[i].getInfo());

                for (int i = 0; i < hotel4.Length; i++)
                    Console.WriteLine(hotel4[i].getInfo());

                for (int i = 0; i < room4.Length; i++)
                    Console.WriteLine(room4[i].getInfo());
            }
            else
            {
                Console.WriteLine("Deserlize function problem!");
            }
        }
Example #4
0
        public void setUpBookingInformation(int id, ArrayList rooms, string idRoom)
        {
            if (id == this.id)
            {

                for (int i = 0; i < rooms.Count; i++)
                {
                    if (((Room)rooms[i]).checkRoom(idRoom))
                    {
                        this.room = (Room)rooms[i];

                        break;
                    }
                }
            }
        }
Example #5
0
        public void checkOut(int id, string idRoom)
        {
            if (id == this.id)
            {
                this.room.setRoomAvailable(idRoom);

                this.room = null;
                this.idRoom = convertStringFormat("", 5);
                this.checkInStatus = false;

                changeInFile(id, 7);
                changeInFile(id, 6);
            }
        }
Example #6
0
        public void bookRoom(int id, Room room, string idRoom)
        {
            if (id == this.id && room != null)
            {
                string idRoom2 = convertStringFormat(idRoom, 5);

                room.setRoomNotAvailable(idRoom2);

                this.room = room;
                this.idRoom = idRoom2;

                if (!this.checkInStatus)
                {
                    changeInFile(id, 7);
                    changeInFile(id, 6);
                }

                this.checkInStatus = true;
            }
        }
Example #7
0
        public void checkOut(int id, Hotel hotel, int idHotel, string idRoom)
        {
            if (id == this.id)
            {
                this.checkInStatus = false;

                this.room = hotel.changeRoomStatus(idHotel, convertStringFormat(idRoom, 5), checkInStatus);

                this.idRoom = convertStringFormat("", 5);

                changeInFile(id, 7);
                changeInFile(id, 6);
            }
        }
Example #8
0
        public void bookRoom(int id, Hotel hotel, int idHotel, string idRoom)
        {
            if (id == this.id)
            {
                string idRoom2 = convertStringFormat(idRoom, 5);
                this.checkInStatus = true;

                this.room = hotel.changeRoomStatus(idHotel, idRoom2, checkInStatus);

                if (this.room != null)
                {
                    this.idRoom = idRoom2;
                }
                else this.checkInStatus = false;

                changeInFile(id, 7);
                changeInFile(id, 6);
            }
        }
Example #9
0
        public void bookRoom(int id, ArrayList rooms, string idRoom)
        {
            if (id == this.id)
            {
                string idRoom2 = convertStringFormat(idRoom, 5);

                for (int i = 0; i < rooms.Count; i++)
                {
                    if (((Room)rooms[i]).checkRoom(idRoom2))
                    {
                        this.room = (Room)rooms[i];
                        this.idRoom = idRoom2;

                        if (this.checkInStatus != true)
                            this.room.setRoomNotAvailable(idRoom2);

                        this.checkInStatus = true;
                        changeInFile(id, 7);
                        changeInFile(id, 6);

                        break;
                    }
                }
            }
        }
Example #10
0
        public void serializeObject(Room room, string filePath)
        {
            FileStream fileStream = new FileStream(filePath, FileMode.OpenOrCreate);

            SoapFormatter soapFormatter = new SoapFormatter();

            soapFormatter.Serialize(fileStream, room);

            fileStream.Flush();
            fileStream.Close();
        }
Example #11
0
        public void serializeObjectArray(Room[] room, string filePath)
        {
            FileStream fileStream = new FileStream(filePath, FileMode.OpenOrCreate);

            SoapFormatter soapFormatter = new SoapFormatter();

            for (int i = 0; i < room.Length; i++)
                soapFormatter.Serialize(fileStream, room[i]);

            fileStream.Flush();
            fileStream.Close();
        }
Example #12
0
        public void serializeAllObjectArray(Customer[] customer, Hotel[] hotel, Room[] room, string filePath)
        {
            FileStream fileStream = new FileStream(filePath, FileMode.OpenOrCreate);

            SoapFormatter soapFormatter = new SoapFormatter();

            for (int i = 0; i < customer.Length; i++)
                soapFormatter.Serialize(fileStream, customer[i]);

            for (int i = 0; i < hotel.Length; i++)
                soapFormatter.Serialize(fileStream, hotel[i]);

            for (int i = 0; i < room.Length; i++)
                soapFormatter.Serialize(fileStream, room[i]);

            fileStream.Flush();
            fileStream.Close();
        }
Example #13
0
        public bool deserializeObjectArray(ref Room [] room, string filePath)
        {
            FileStream fileStream = new FileStream(filePath, FileMode.Open);

            SoapFormatter soapFormatter = new SoapFormatter();

            object obj = null;

            ArrayList list = new ArrayList();

            for (; ; )
            {
                try
                {
                    obj = soapFormatter.Deserialize(fileStream);

                    if (obj is Room)
                    {
                        list.Add((Room)obj);
                    }
                    else return false;
                }
                catch (EndOfStreamException) { }
                catch (SerializationException)
                {
                    //Console.WriteLine(e.Message);
                    break;
                }
                catch (System.Xml.XmlException)
                {
                    //Console.WriteLine(e.Message);
                    break;
                }
            }

            room = new Room[list.Count];
            bool execute = false;

            for (int i = 0; i < list.Count; i++)
            {
                room[i] = (Room)list[i];

                execute = true;
            }

            fileStream.Flush();
            fileStream.Close();

            if (execute)
                return true;

            return false;
        }
Example #14
0
        public bool deserializeAllObjectArray(ref Customer[] customer, ref Hotel[] hotel, ref Room[] room, string filePath)
        {
            FileStream fileStream = new FileStream(filePath, FileMode.Open);

            SoapFormatter soapFormatter = new SoapFormatter();

            object obj = null;

            ArrayList list1 = new ArrayList();
            ArrayList list2 = new ArrayList();
            ArrayList list3 = new ArrayList();

            for (; ; )
            {
                try
                {
                    obj = soapFormatter.Deserialize(fileStream);

                    if (obj is Customer)
                    {
                        list1.Add((Customer)obj);
                    }
                    else if (obj is Hotel)
                    {
                        list2.Add((Hotel)obj);
                    }
                    else if (obj is Room)
                    {
                        list3.Add((Room)obj);
                    }
                    else return false;
                }
                catch (EndOfStreamException) { }
                catch (SerializationException)
                {
                    //Console.WriteLine(e.Message);
                    break;
                }
                catch (System.Xml.XmlException)
                {
                    //Console.WriteLine(e.Message);
                    break;
                }
            }

            customer = new Customer[list1.Count];

            for (int i = 0; i < list1.Count; i++)
            {
                customer[i] = (Customer)list1[i];
            }

            hotel = new Hotel[list2.Count];

            for (int i = 0; i < list2.Count; i++)
            {
                hotel[i] = (Hotel)list2[i];
            }

            room = new Room[list3.Count];

            for (int i = 0; i < list3.Count; i++)
            {
                room[i] = (Room)list3[i];
            }

            fileStream.Flush();
            fileStream.Close();

            return true;
        }
Example #15
0
        public bool deserializeObject(ref Room room, string filePath)
        {
            FileStream fileStream = new FileStream(filePath, FileMode.Open);

            SoapFormatter soapFormatter = new SoapFormatter();

            object obj = null;
            //Room room = null;
            room = null;

            try
            {
                obj = soapFormatter.Deserialize(fileStream);

                if (obj is Room)
                {
                    room = (Room)obj;

                    return true;
                }
            }
            catch (EndOfStreamException e)
            {
                Console.WriteLine("No object left!" + e.Message);
            }
            catch (SerializationException)
            {
                //Console.WriteLine(e.Message);
            }
            catch (System.Xml.XmlException)
            {
                //Console.WriteLine(e.Message);
            }

            fileStream.Flush();
            fileStream.Close();

            return false;
        }
Example #16
0
 public void addRoom(int id, Room room)
 {
     if (id == this.id)
         rooms.Add(room);
 }