Home > Articles > Networking > Network Design & Architecture

7.3 Collecting the Data

The first task is deciding exactly what data we'll be collecting. Since we're using the humidity sensing circuit we developed in Section 4.4.3, we should briefly review its capabilities. The sensor used a 1-Wire chip as a digital front end to the physical humidity sensor. The humidity sensor's only output is an analog voltage. The 1-Wire chip provided analog to digital conversion as well as temperature readings. The HumiditySensor class we created to expose the sensor's functionality provides the following public methods.

public double getSensorRH() throws OneWireException
public double getTrueRH() throws OneWireException
public double getTemperature() throws OneWireException

Of the three readings we can obtain from the above methods, only two are likely to be interesting to a client: the temperature and the true relative humidity. The sensor relative humidity might be interesting for calibration purposes, but we'll ignore it here. We'll also want to put a time stamp on each reading so that clients can build logs and chart environmental change over time.

The next thing we need to decide is how to store the data samples. One obvious approach would be to write the data to a file. Each new entry could be appended to the end of the file. The advantage of using a file is that even if the system loses power, the log data is not lost. When power is restored and the application restarts, it can simply continue logging data samples by appending each sample to the end of the same file. If the system were down long enough to miss one or more samples, any client that downloads the file would be able to detect this by examining the time stamps. The downside to logging the data to a file is that DataLogger is running in a memory constrained environment. The file system, Java objects, and all system data structures live in the same memory space. If the log file grows too large, the application will likely terminate with an OutOfMemoryError or some other fatal exception. Special tricks would be required to ensure that the file didn't grow beyond a certain size. This is further complicated by the fact that we can't just truncate the file at a certain size by writing the latest sample over the sample at the end of the file. If a sample must be lost, it should be the oldest sample. In this sense, we really want something like a circular buffer. This can still be implemented with the file system using a RandomAccessFile, but it is too cumbersome for our example. For our purposes, it will be much simpler and more efficient to store the data in a Vector. Of course, if we just continue to add elements to the vector, we'll still run out of memory. But by using a Vector we can easily avoid this problem by removing the oldest sample, which will always be at index 0, before adding the new sample after the maximum sample count has been reached.

Note that if we assumed a constant connection to a network, we could structure DataLogger so that it just wrote all samples to a socket as they were collected. But we're building this application with the idea that the network isn't always available. This allows the logger to do all of its work without the network. Then when a client is interested in synching up with the logger, it can establish a connection with the server and collect the necessary data. The more "remote" the system is, the more important this ability becomes.

To keep the logging classes reasonably general purpose and reusable, we'll create an abstract class named LoggingDaemon to drive the data collection process. Ideally we don't want LoggingDaemon to have to be aware of what kind of data is being logged or the details of how it is acquired. To accomplish this isolation, LoggingDaemon defines the following abstract methods.

protected abstract Object captureSample();
protected abstract void writeLogEntry(Object sample, DataOutputStream dout)
  throws IOException;

Subclasses of LoggingDaemon implement the captureSample method to handle the details of collecting a single data sample. This sample must be encapsulated within an object because it will be stored in a Vector. The writeLogEntry method is used to write the individual fields contained in the sample object to the supplied instance of DataOutputStream.

LoggingDaemon's constructor is shown in Listing 7.4. The constructor requires the maximum number of samples to be held in the samples Vector along with the delay between consecutive samples. The maxSamples field is used to set the initial size of the Vector. The delay is input to the constructor as a number of seconds. The delay is converted to milliseconds so that it can be input directly into Thread's sleep method. Finally the LoggingDaemon thread is set to a daemon thread. This means that when the last non-daemon thread exits, LoggingDaemon will exit, along with any other daemon threads, allowing the process to terminate. We do this because there isn't any point in continuing to log data if there isn't a server running to allow clients to download it.

Listing 7.4 LoggingDaemon's constructor

import java.io.*;
import java.util.*;

public abstract class LoggingDaemon extends Thread {
  private int maxSamples;
  private int delay;
  private Vector samples; 

  ...

  public LoggingDaemon(int maxSamples, int delay) 
    throws LoggingException {

    this.maxSamples = maxSamples;
    // Convert delay from seconds to milliseconds
    this.delay = delay * 1000; 
    samples = new Vector(maxSamples);
    this.setDaemon(true);
  }
  ......

  public void stopLogging() {
    logEm = false;
  }
}

LoggingDaemon's run method is shown in Listing 7.5. As long as the stopLogging method is not invoked, the run method spins in an infinite loop collecting data samples at the specified interval.

Listing 7.5 LoggingDaemon's run method

...
public void run() {
  while (logEm) {
    Object smp = captureSample(); 
    if (smp != null) {
      synchronized (samples) {
        if (samples.size() == maxSamples) {
          // Remove the oldest entry
          samples.removeElementAt(0);
        }
        samples.addElement(smp); 
      }
    }
    try {
      Thread.sleep(delay);
    } catch (InterruptedException ie) {}
  }
}

If the captureSample method returns null, there is no change in samples. The run method simply goes to sleep until it is time to try another sample. This is a rather simplistic mechanism for handling errors that occur during data collection, but it is appropriate for our application. Since every sample carries with it a time stamp, a client can determine that one or more samples were missed by simple analysis of the time stamps.

LoggingDaemon's writeLog method is shown in Listing 7.6. The writeLog method is invoked by the server when a client establishes a connection with the server, requesting a log of the recent data samples. The writeLog method simply enumerates samples, invoking writeLogEntry for every data sample contained within the Vector. The details of extracting and writing the actual field data contained within the sample object are left to the subclass.

Listing 7.6 LoggingDaemon's writeLog method

public void writeLog(DataOutputStream dout) throws IOException {
  Vector sc = (Vector) samples.clone();
  dout.writeInt(sc.size());
  for (Enumeration e = sc.elements(); e.hasMoreElements(); ) {
    writeLogEntry(e.nextElement(), dout);
  }
}

Since we need to encapsulate the individual data readings within an object, we'll create a class named HumiditySample (shown in Listing 7.7). HumiditySample is just a thin wrapper on the sample data that provides public "get" methods for the individual fields. HumiditySample's constructor takes the readings attained using the HumiditySensor class and stores them in the temperature and relHumidity fields. It also time stamps the readings using the System.currentTimeMillis method, which returns the number of milliseconds between the current time and midnight, January 1, 1970. This is much simpler and faster for our purposes than storing the time stamp as a Date object. We can put the burden of converting the timeStamp value to humanly readable date and time on the client program. In the case that the client is written in Java, this job is trivial. It can simply pass the timeStamp value received to the Date constructor that takes the long value returned from currentTimeMillis. We'll make use of this in the next section, which presents a small sample client application.

Listing 7.7 HumiditySample

public class HumiditySample {
  private double temperature;
  private double relHumidity;
  private long  timeStamp;

  public HumiditySample(double relHumidity, double temperature) {
    this.temperature = temperature;
    this.relHumidity = relHumidity;
    timeStamp = System.currentTimeMillis();
  }

  public long getTimeStamp() {
    return timeStamp;
  }

  public double getRelativeHumidity() {
    return relHumidity;
  }

  public double getTemperature() {
    return temperature;
  }
}

Now that we have a simple framework for collecting, maintaining, and outputting a group of samples, we can create the class that performs the actual work of collecting individual samples. The class HumidityLogger, shown in Listing 7.8, extends LoggingDaemon and provides implementations for the captureSample and writeLogEntry methods.

Listing 7.8 HumidityLogger

import java.io.IOException;
import java.io.DataOutputStream;

import com.dalsemi.onewire.OneWireAccessProvider; 
import com.dalsemi.onewire.adapter.DSPortAdapter; 
import com.dalsemi.onewire.OneWireException; 

public class HumidityLogger extends LoggingDaemon {
  private HumiditySensor sensor;
  private DSPortAdapter adapter;

  public HumidityLogger(int maxSamples, int delay) 
    throws LoggingException {

    super(maxSamples, delay);
    try {
      adapter = OneWireAccessProvider.getDefaultAdapter();
      sensor = new HumiditySensor(adapter);
    } catch (OneWireException owe) {
      throw new LoggingException(
             "Error creating Environmental Sensor:" +
             owe.getMessage());
    }
  }

  public Object captureSample() {
    try {
      adapter.beginExclusive(true);
      double temp = sensor.getTemperature();
      double humidity = sensor.getTrueRH();
      return new HumiditySample(humidity, temp);
    } catch (OneWireException owe) { 
      System.out.println("Error reading sensor");
      owe.printStackTrace();
      // No need to terminate app because of a failed reading
      return null;
    } finally {
      adapter.endExclusive();
    }
  }

  public void writeLogEntry(Object sample, DataOutputStream dout) 
    throws IOException {

    dout.writeLong(((HumiditySample)sample).getTimeStamp());
    dout.writeDouble(((HumiditySample)sample).getRelativeHumidity());
    dout.writeDouble(((HumiditySample)sample).getTemperature());
  }
}

HumidityLogger creates a new instance of the class HumiditySensor, which is used to perform the humidity and temperature measurements. When the captureSample method is invoked, it simply creates a new HumiditySample object to encapsulate the humidity and temperature values and returns that object to the caller, in this case the run method of LoggingDaemon. It is important that a transient error that could cause a failure while performing an individual measurement not cause the logging thread to terminate. If an exception is thrown while performing the measurements, it is caught, and null is returned.

Since the LoggingDaemon class doesn't know anything about the internal details of the data sample object—HumiditySample, in this case—it invokes writeLogEntry passing it a reference to the sample object and a DataOutputStream used to write the sample object's field information to the underlying socket. The writeLogEntry method extracts the time stamp, humidity, and temperature readings and writes them to the stream using the appropriate methods, writeLong and writeDouble, preserving their primitive types. It is assumed that the client will be using a DataInputStream for easy interpretation of the data.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020