8%
Programming Mobile Devices: An Introduction for Practitioners

Programming Mobile Devices: An Introduction for Practitioners

          
5
4
3
2
1

International Edition


Premium quality
Premium quality
Bookswagon upholds the quality by delivering untarnished books. Quality, services and satisfaction are everything for us!
Easy Return
Easy return
Not satisfied with this product! Keep it in original condition and packaging to avail easy return policy.
Certified product
Certified product
First impression is the last impression! Address the book’s certification page, ISBN, publisher’s name, copyright page and print quality.
Secure Checkout
Secure checkout
Security at its finest! Login, browse, purchase and pay, every step is safe and secured.
Money back guarantee
Money-back guarantee:
It’s all about customers! For any kind of bad experience with the product, get your actual amount back after returning the product.
On time delivery
On-time delivery
At your doorstep on time! Get this book delivered without any delay.
Quantity:
Add to Wishlist

About the Book

With forewords by Jan Bosch, Nokia and Antero Taivalsaari, Sun Microsystems. Learn how to programme the mobile devices of the future! The importance of mobile systems programming has emerged over the recent years as a new domain in software development. The design of software that runs in a mobile device requires that developers combine the rules applicable in embedded environment; memory-awareness, limited performance, security, and limited resources with features that are needed in workstation environment; modifiability, run-time extensions, and rapid application development. Programming Mobile Devices is a comprehensive, practical introduction to programming mobile systems. The book is a platform independent approach to programming mobile devices: it does not focus on specific technologies, and devices, instead it evaluates the component areas and issues that are common to all mobile software platforms. This text will enable the designer to programme mobile devices by mastering both hardware-aware and application-level software, as well as the main principles that guide their design. Programming Mobile Devices: Provides a complete and authoritative overview of programming mobile systems. Discusses the major issues surrounding mobile systems programming; such as understanding of embedded systems and workstation programming. Covers memory management, the concepts of applications, dynamically linked libraries, concurrency, handling local resources, networking and mobile devices as well as security features. Uses generic examples from JavaTM and Symbian OS to illustrate the principles of mobile device programming. Programming Mobile Devices is essential reading for graduate and advanced undergraduate students, academic and industrial researchers in the field as well as software developers, and programmers.

Table of Contents:
Foreword by Jan Bosch xi Foreword by Antero Taivalsaari xv Preface xvii Acknowledgments xxi 1 Introduction 1 1.1 Motivation 1 1.1.1 Leaking Abstractions 1 1.1.2 Allocation Responsibility 3 1.2 Commonly Used Hardware and Software 4 1.2.1 Computing Hardware 5 1.2.2 Low-Level Software Infrastructure 13 1.2.3 Run-Time Infrastructure 14 1.2.4 Software Stack 20 1.3 Development Process 21 1.4 Chapter Overview 23 1.5 Summary 25 1.6 Exercises 25 2 Memory Management 27 2.1 Overview 27 2.2 Strategies for Allocating Variables to Memory 27 2.2.1 Static Allocation 28 2.2.2 Stack 28 2.2.3 Heap 30 2.3 Design Patterns for Limited Memory 31 2.3.1 Linear Data Structures 31 2.3.2 Basic Design Decisions 32 2.3.3 Data Packing 34 2.3.4 Discussion 36 2.4 Memory Management in Mobile Java 37 2.4.1 Motivation 37 2.4.2 Rules of Thumb for Mobile Java 39 2.5 Symbian OS Memory Management 42 2.5.1 Naming Conventions 43 2.5.2 Descriptors 45 2.5.3 Exceptions 46 2.5.4 Combining Exceptions and Allocation 48 2.5.5 Cleanup Stack 49 2.5.6 Two-Phase Construction 52 2.5.7 Factory Methods for Two-Phase Construction 54 2.5.8 Using Symbian Conventions 55 2.6 Summary 57 2.7 Exercises 58 3 Applications 61 3.1 What Constitutes an Application? 61 3.2 Workflow for Application Development 62 3.2.1 Scoping 63 3.2.2 Performance Considerations 63 3.2.3 User Interface Design 64 3.2.4 Data Model and Memory Concerns 65 3.2.5 Communications and I/O 65 3.3 Techniques for Composing Applications 66 3.3.1 Event-Based Programming 67 3.3.2 Model-View-Controller as the Application Architecture 68 3.3.3 Auxiliary Files 70 3.3.4 Managing Applications 71 3.3.5 Practicalities 73 3.4 Application Models in Mobile Java 73 3.4.1 Configurations 74 3.4.2 Profiles 76 3.4.3 Sample MIDP Java Application 80 3.5 Symbian OS Application Infrastructure 84 3.5.1 Overview 85 3.5.2 Resource File 86 3.5.3 Attaching Application to Run-Time Infrastructure 88 3.5.4 Application 89 3.5.5 Document 91 3.5.6 User Interface 93 3.5.7 View 96 3.5.8 Engine 98 3.5.9 Generating Installation Package 102 3.6 Summary 102 3.7 Exercises 103 4 Dynamic Linking 105 4.1 Overview 105 4.1.1 Motivation 105 4.1.2 Release Definition Using Dynamically Linked Libraries 106 4.1.3 Required Implementation Facilities 107 4.1.4 Static versus Dynamic DLLs 107 4.1.5 Challenges with Using DLLs 108 4.2 Implementation Techniques 109 4.3 Implementing Plugins 111 4.3.1 Plugin Principles 111 4.3.2 Implementation-Level Concerns 113 4.4 Managing Memory Consumption Related to Dynamically Linked Libraries 114 4.4.1 Memory Limit 114 4.4.2 Interface Design Principles 115 4.4.3 Merging Elements 117 4.5 Rules of Thumb for Using Dynamically Loaded Libraries 118 4.6 Mobile Java and Dynamic Linking 118 4.7 Symbian OS Dynamic Libraries 120 4.7.1 Standard Structure of Dynamically Linked Libraries 120 4.7.2 Managing Binary Compatibility 122 4.7.3 ECOM Component Model 124 4.8 Summary 125 4.9 Exercises 126 5 Concurrency 127 5.1 Motivation 127 5.2 Infrastructure for Concurrent Programming 127 5.2.1 Threading 128 5.2.2 Inter-Thread Communication 128 5.2.3 Common Problems 129 5.3 Faking Concurrency 130 5.4 MIDP Java and Concurrency 132 5.4.1 Threading in Virtual Machine 132 5.4.2 Using Threads in Mobile Java 132 5.4.3 Problems with Java Threading 135 5.5 Symbian OS and Concurrency 135 5.5.1 Overview 135 5.5.2 Sample Active Object 141 5.5.3 Active Objects and Applications 145 5.5.4 Problems with Active Objects 145 5.6 Summary 146 5.7 Exercises 147 6 Managing Resources 149 6.1 Resource-Related Concerns in Mobile Devices 149 6.1.1 Overview 149 6.1.2 Grouping Resource Managers 151 6.1.3 Separating Resource Managers 152 6.1.4 Resource-Hosting Virtual Machine 155 6.2 Common Concerns 156 6.2.1 Overview 156 6.2.2 Extension and Adaptation 156 6.2.3 Performance 158 6.2.4 Energy Management 159 6.2.5 Internal Resource Management 160 6.3 MIDP Java 161 6.3.1 Basic Elements 162 6.3.2 Compatibility between Different Devices 164 6.4 Symbian OS 165 6.4.1 Servers as a Mechanism of Resource Management 165 6.4.2 Implementing Servers 167 6.4.3 Adapting Servers to Hardware 171 6.4.4 Problems with Servers 173 6.5 Summary 173 6.6 Exercises 174 7 Networking 177 7.1 Introduction 177 7.1.1 Basic Connectivity 177 7.1.2 Stateful and Stateless Systems 178 7.1.3 Infrastructure Assisted or Ad-hoc Networking? 180 7.2 Design Patterns for Networking Environment 181 7.3 Problems with Networking Facilities and Implementations 184 7.4 MIDP Java and Web Services 185 7.4.1 Web Services Overview 185 7.4.2 Using Web Services with Mobile Java 187 7.5 Symbian OS and Bluetooth Facilities 189 7.5.1 Bluetooth Introduction 189 7.5.2 Bluetooth in Symbian 191 7.6 Summary 194 7.7 Exercises 194 8 Security 197 8.1 Overview 197 8.2 Secure Coding and Design 198 8.2.1 Mindset for Secure Design 198 8.2.2 Sample Security-Related Design Patterns 199 8.3 Infrastructure for Enabling Secured Execution 201 8.3.1 Goals for Security Features 201 8.3.2 Supporting Hardware and Software Facilities 203 8.4 Security Features in MIDP Java 205 8.4.1 Low-Level Security 205 8.4.2 Application-Level Security 206 8.4.3 End-to-End Security 208 8.4.4 Problems 208 8.5 Symbian OS Security Features 208 8.5.1 Low-Level Security 209 8.5.2 Application-Level Security 209 8.5.3 End-to-End Security 211 8.5.4 Problems with Symbian OS Security Features 212 8.6 Summary 212 8.7 Exercises 213 References 215 Index 219


Best Sellers


Product Details
  • ISBN-13: 9780470057384
  • Publisher: John Wiley & Sons Inc
  • Publisher Imprint: John Wiley & Sons Inc
  • Height: 249 mm
  • No of Pages: 256
  • Series Title: English
  • Sub Title: An Introduction for Practitioners
  • Width: 176 mm
  • ISBN-10: 0470057386
  • Publisher Date: 09 Feb 2007
  • Binding: Hardback
  • Language: English
  • Returnable: N
  • Spine Width: 20 mm
  • Weight: 624 gr


Similar Products

How would you rate your experience shopping for books on Bookswagon?

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
Programming Mobile Devices: An Introduction for Practitioners
John Wiley & Sons Inc -
Programming Mobile Devices: An Introduction for Practitioners
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Programming Mobile Devices: An Introduction for Practitioners

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book
    Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    ASK VIDYA