Initialize project
15
.gitignore
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
*.iml
|
||||||
|
.gradle
|
||||||
|
/local.properties
|
||||||
|
/.idea/caches
|
||||||
|
/.idea/libraries
|
||||||
|
/.idea/modules.xml
|
||||||
|
/.idea/workspace.xml
|
||||||
|
/.idea/navEditor.xml
|
||||||
|
/.idea/assetWizardSettings.xml
|
||||||
|
.DS_Store
|
||||||
|
/build
|
||||||
|
/captures
|
||||||
|
.externalNativeBuild
|
||||||
|
.cxx
|
||||||
|
local.properties
|
3
.idea/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# Default ignored files
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
6
.idea/compiler.xml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="CompilerConfiguration">
|
||||||
|
<bytecodeTargetLevel target="1.8" />
|
||||||
|
</component>
|
||||||
|
</project>
|
22
.idea/gradle.xml
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="GradleMigrationSettings" migrationVersion="1" />
|
||||||
|
<component name="GradleSettings">
|
||||||
|
<option name="linkedExternalProjectsSettings">
|
||||||
|
<GradleProjectSettings>
|
||||||
|
<option name="testRunner" value="PLATFORM" />
|
||||||
|
<option name="distributionType" value="DEFAULT_WRAPPED" />
|
||||||
|
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
||||||
|
<option name="gradleJvm" value="1.8" />
|
||||||
|
<option name="modules">
|
||||||
|
<set>
|
||||||
|
<option value="$PROJECT_DIR$" />
|
||||||
|
<option value="$PROJECT_DIR$/app" />
|
||||||
|
</set>
|
||||||
|
</option>
|
||||||
|
<option name="resolveModulePerSourceSet" value="false" />
|
||||||
|
<option name="useQualifiedModuleNames" value="true" />
|
||||||
|
</GradleProjectSettings>
|
||||||
|
</option>
|
||||||
|
</component>
|
||||||
|
</project>
|
25
.idea/jarRepositories.xml
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="RemoteRepositoriesConfiguration">
|
||||||
|
<remote-repository>
|
||||||
|
<option name="id" value="central" />
|
||||||
|
<option name="name" value="Maven Central repository" />
|
||||||
|
<option name="url" value="https://repo1.maven.org/maven2" />
|
||||||
|
</remote-repository>
|
||||||
|
<remote-repository>
|
||||||
|
<option name="id" value="jboss.community" />
|
||||||
|
<option name="name" value="JBoss Community repository" />
|
||||||
|
<option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" />
|
||||||
|
</remote-repository>
|
||||||
|
<remote-repository>
|
||||||
|
<option name="id" value="BintrayJCenter" />
|
||||||
|
<option name="name" value="BintrayJCenter" />
|
||||||
|
<option name="url" value="https://jcenter.bintray.com/" />
|
||||||
|
</remote-repository>
|
||||||
|
<remote-repository>
|
||||||
|
<option name="id" value="Google" />
|
||||||
|
<option name="name" value="Google" />
|
||||||
|
<option name="url" value="https://dl.google.com/dl/android/maven2/" />
|
||||||
|
</remote-repository>
|
||||||
|
</component>
|
||||||
|
</project>
|
9
.idea/misc.xml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
|
||||||
|
<output url="file://$PROJECT_DIR$/build/classes" />
|
||||||
|
</component>
|
||||||
|
<component name="ProjectType">
|
||||||
|
<option name="id" value="Android" />
|
||||||
|
</component>
|
||||||
|
</project>
|
6
.idea/render.experimental.xml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="RenderSettings">
|
||||||
|
<option name="showDecorations" value="true" />
|
||||||
|
</component>
|
||||||
|
</project>
|
1
app/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
/build
|
57
app/build.gradle
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
plugins {
|
||||||
|
id 'com.android.application'
|
||||||
|
id 'kotlin-android'
|
||||||
|
}
|
||||||
|
|
||||||
|
android {
|
||||||
|
compileSdkVersion 30
|
||||||
|
buildToolsVersion "30.0.3"
|
||||||
|
|
||||||
|
defaultConfig {
|
||||||
|
applicationId "io.github.chronosx88.radium"
|
||||||
|
minSdkVersion 19
|
||||||
|
targetSdkVersion 30
|
||||||
|
versionCode 1
|
||||||
|
versionName "1.0"
|
||||||
|
|
||||||
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
|
}
|
||||||
|
|
||||||
|
buildTypes {
|
||||||
|
release {
|
||||||
|
minifyEnabled false
|
||||||
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
compileOptions {
|
||||||
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||||||
|
targetCompatibility JavaVersion.VERSION_1_8
|
||||||
|
}
|
||||||
|
kotlinOptions {
|
||||||
|
jvmTarget = '1.8'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
|
||||||
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
||||||
|
implementation 'androidx.core:core-ktx:1.2.0'
|
||||||
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
||||||
|
implementation 'com.google.android.material:material:1.2.1'
|
||||||
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
||||||
|
implementation 'androidx.navigation:navigation-fragment:2.2.2'
|
||||||
|
implementation 'androidx.navigation:navigation-ui:2.2.2'
|
||||||
|
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.2.0'
|
||||||
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0'
|
||||||
|
implementation 'androidx.navigation:navigation-fragment-ktx:2.2.2'
|
||||||
|
implementation 'androidx.navigation:navigation-ui-ktx:2.2.2'
|
||||||
|
implementation 'de.hdodenhof:circleimageview:3.1.0'
|
||||||
|
|
||||||
|
implementation 'com.github.bumptech.glide:glide:4.12.0'
|
||||||
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
|
||||||
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
|
||||||
|
|
||||||
|
testImplementation 'junit:junit:4.+'
|
||||||
|
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
|
||||||
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
||||||
|
}
|
21
app/proguard-rules.pro
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# Add project specific ProGuard rules here.
|
||||||
|
# You can control the set of applied configuration files using the
|
||||||
|
# proguardFiles setting in build.gradle.
|
||||||
|
#
|
||||||
|
# For more details, see
|
||||||
|
# http://developer.android.com/guide/developing/tools/proguard.html
|
||||||
|
|
||||||
|
# If your project uses WebView with JS, uncomment the following
|
||||||
|
# and specify the fully qualified class name to the JavaScript interface
|
||||||
|
# class:
|
||||||
|
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
||||||
|
# public *;
|
||||||
|
#}
|
||||||
|
|
||||||
|
# Uncomment this to preserve the line number information for
|
||||||
|
# debugging stack traces.
|
||||||
|
#-keepattributes SourceFile,LineNumberTable
|
||||||
|
|
||||||
|
# If you keep the line number information, uncomment this to
|
||||||
|
# hide the original source file name.
|
||||||
|
#-renamesourcefileattribute SourceFile
|
@ -0,0 +1,24 @@
|
|||||||
|
package io.github.chronosx88.radium
|
||||||
|
|
||||||
|
import androidx.test.platform.app.InstrumentationRegistry
|
||||||
|
import androidx.test.ext.junit.runners.AndroidJUnit4
|
||||||
|
|
||||||
|
import org.junit.Test
|
||||||
|
import org.junit.runner.RunWith
|
||||||
|
|
||||||
|
import org.junit.Assert.*
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Instrumented test, which will execute on an Android device.
|
||||||
|
*
|
||||||
|
* See [testing documentation](http://d.android.com/tools/testing).
|
||||||
|
*/
|
||||||
|
@RunWith(AndroidJUnit4::class)
|
||||||
|
class ExampleInstrumentedTest {
|
||||||
|
@Test
|
||||||
|
fun useAppContext() {
|
||||||
|
// Context of the app under test.
|
||||||
|
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
|
||||||
|
assertEquals("io.github.chronosx88.radium", appContext.packageName)
|
||||||
|
}
|
||||||
|
}
|
27
app/src/main/AndroidManifest.xml
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="io.github.chronosx88.radium">
|
||||||
|
|
||||||
|
<application
|
||||||
|
android:allowBackup="true"
|
||||||
|
android:icon="@mipmap/ic_launcher"
|
||||||
|
android:label="@string/app_name"
|
||||||
|
android:roundIcon="@mipmap/ic_launcher_round"
|
||||||
|
android:supportsRtl="true"
|
||||||
|
android:theme="@style/Theme.Radium"
|
||||||
|
android:name=".RadiumApplication">
|
||||||
|
<activity
|
||||||
|
android:name=".ChatListActivity"
|
||||||
|
android:label="@string/app_name"
|
||||||
|
android:theme="@style/Theme.Radium.NoActionBar">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.MAIN" />
|
||||||
|
|
||||||
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
|
</intent-filter>
|
||||||
|
</activity>
|
||||||
|
</application>
|
||||||
|
|
||||||
|
<uses-permission android:name="android.permission.INTERNET"/>
|
||||||
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||||
|
</manifest>
|
@ -0,0 +1,79 @@
|
|||||||
|
package io.github.chronosx88.radium
|
||||||
|
|
||||||
|
import android.os.Bundle
|
||||||
|
import android.view.MenuItem
|
||||||
|
import androidx.activity.viewModels
|
||||||
|
import androidx.appcompat.app.ActionBarDrawerToggle
|
||||||
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
|
import androidx.appcompat.widget.Toolbar
|
||||||
|
import androidx.core.view.GravityCompat
|
||||||
|
import androidx.drawerlayout.widget.DrawerLayout
|
||||||
|
import androidx.lifecycle.Observer
|
||||||
|
import androidx.recyclerview.widget.LinearLayoutManager
|
||||||
|
import androidx.recyclerview.widget.RecyclerView
|
||||||
|
import com.google.android.material.floatingactionbutton.FloatingActionButton
|
||||||
|
import com.google.android.material.snackbar.Snackbar
|
||||||
|
|
||||||
|
class ChatListActivity : AppCompatActivity() {
|
||||||
|
private lateinit var drawer: DrawerLayout
|
||||||
|
private val viewModel: ChatListViewModel by viewModels()
|
||||||
|
|
||||||
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
|
super.onCreate(savedInstanceState)
|
||||||
|
setContentView(R.layout.activity_main)
|
||||||
|
|
||||||
|
initActivity()
|
||||||
|
initRecyclerView()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun initActivity() {
|
||||||
|
val toolbar: Toolbar = findViewById(R.id.toolbar)
|
||||||
|
setSupportActionBar(toolbar)
|
||||||
|
|
||||||
|
val fab: FloatingActionButton = findViewById(R.id.fab)
|
||||||
|
fab.setOnClickListener { view ->
|
||||||
|
Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
|
||||||
|
.setAction("Action", null).show()
|
||||||
|
}
|
||||||
|
|
||||||
|
drawer = findViewById(R.id.drawer_layout)
|
||||||
|
|
||||||
|
val drawerToggle = ActionBarDrawerToggle(this, drawer, R.string.navigation_drawer_open, R.string.navigation_drawer_close)
|
||||||
|
drawer.addDrawerListener(drawerToggle)
|
||||||
|
drawerToggle.syncState()
|
||||||
|
|
||||||
|
supportActionBar?.setDisplayHomeAsUpEnabled(true)
|
||||||
|
}
|
||||||
|
|
||||||
|
fun initRecyclerView() {
|
||||||
|
val chatList: RecyclerView = findViewById(R.id.chat_list_rv)
|
||||||
|
|
||||||
|
val adapter = ChatListAdapter(this)
|
||||||
|
chatList.adapter = adapter
|
||||||
|
chatList.layoutManager = LinearLayoutManager(this)
|
||||||
|
|
||||||
|
viewModel.chats.observe(this, Observer { chats ->
|
||||||
|
adapter.data.addAll(chats)
|
||||||
|
adapter.notifyDataSetChanged()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onBackPressed() {
|
||||||
|
if (drawer.isDrawerOpen(GravityCompat.START)) {
|
||||||
|
drawer.closeDrawer(GravityCompat.START)
|
||||||
|
} else {
|
||||||
|
super.onBackPressed()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onOptionsItemSelected(item: MenuItem): Boolean {
|
||||||
|
super.onOptionsItemSelected(item)
|
||||||
|
return when (item.itemId) {
|
||||||
|
android.R.id.home -> {
|
||||||
|
drawer.openDrawer(GravityCompat.START)
|
||||||
|
true
|
||||||
|
}
|
||||||
|
else -> super.onOptionsItemSelected(item)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,58 @@
|
|||||||
|
package io.github.chronosx88.radium
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import android.graphics.drawable.Drawable
|
||||||
|
import android.view.LayoutInflater
|
||||||
|
import android.view.View
|
||||||
|
import android.view.ViewGroup
|
||||||
|
import android.widget.ImageView
|
||||||
|
import android.widget.TextView
|
||||||
|
import androidx.appcompat.content.res.AppCompatResources
|
||||||
|
import androidx.recyclerview.widget.RecyclerView
|
||||||
|
import com.bumptech.glide.Glide
|
||||||
|
import de.hdodenhof.circleimageview.CircleImageView
|
||||||
|
import io.github.chronosx88.radium.models.Chat
|
||||||
|
import io.github.chronosx88.radium.utils.time.LocaleUtils
|
||||||
|
import java.util.ArrayList
|
||||||
|
|
||||||
|
class ChatListAdapter(val context: Context) : RecyclerView.Adapter<ChatListAdapter.ViewHolder>() {
|
||||||
|
val data = ArrayList<Chat>()
|
||||||
|
|
||||||
|
class ViewHolder(view: View) : RecyclerView.ViewHolder(view) {
|
||||||
|
val chatName: TextView = view.findViewById(R.id.chat_list_item_name)
|
||||||
|
val avatar: CircleImageView = view.findViewById(R.id.chat_list_item_avatar)
|
||||||
|
val lastMsg: TextView = view.findViewById(R.id.chat_list_item_last_msg)
|
||||||
|
val lastMessageReadState: ImageView = view.findViewById(R.id.chat_list_read_icon)
|
||||||
|
val lastMessageTime: TextView = view.findViewById(R.id.chat_list_last_msg_timestamp)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder {
|
||||||
|
val view = LayoutInflater.from(parent.context)
|
||||||
|
.inflate(R.layout.chat_list_item, parent, false)
|
||||||
|
return ViewHolder(view)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onBindViewHolder(holder: ViewHolder, position: Int) {
|
||||||
|
holder.chatName.text = data[position].name
|
||||||
|
holder.lastMsg.text = data[position].lastMsg.text
|
||||||
|
|
||||||
|
if (data[position].lastMsg.author) {
|
||||||
|
val doneIcon: Drawable? = AppCompatResources.getDrawable(context, R.drawable.ic_done_purple_24)
|
||||||
|
val doneAllIcon: Drawable? = AppCompatResources.getDrawable(context, R.drawable.ic_done_all_purple_24)
|
||||||
|
holder.lastMessageReadState.setImageDrawable(if (data[position].lastMsg.read) doneAllIcon!! else doneIcon!!)
|
||||||
|
} else {
|
||||||
|
holder.lastMessageReadState.visibility = View.INVISIBLE
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Glide.with(holder.itemView)
|
||||||
|
.load(data[position].photoURL)
|
||||||
|
.into(holder.avatar)
|
||||||
|
|
||||||
|
val lastMessageDateText = LocaleUtils.stringForMessageListDate(data[position].lastMsg.timestamp)
|
||||||
|
holder.lastMessageTime.text = lastMessageDateText
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun getItemCount(): Int = data.size
|
||||||
|
}
|
@ -0,0 +1,41 @@
|
|||||||
|
package io.github.chronosx88.radium
|
||||||
|
|
||||||
|
import androidx.lifecycle.LiveData
|
||||||
|
import androidx.lifecycle.MutableLiveData
|
||||||
|
import androidx.lifecycle.ViewModel
|
||||||
|
import androidx.lifecycle.viewModelScope
|
||||||
|
import io.github.chronosx88.radium.models.Chat
|
||||||
|
import io.github.chronosx88.radium.models.Message
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
|
||||||
|
class ChatListViewModel : ViewModel() {
|
||||||
|
private val _chats = MutableLiveData<Array<Chat>>()
|
||||||
|
val chats : LiveData<Array<Chat>> = _chats
|
||||||
|
|
||||||
|
init {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_chats.value = arrayOf(
|
||||||
|
Chat(
|
||||||
|
"Michael Jordan",
|
||||||
|
Message(
|
||||||
|
"That's great!",
|
||||||
|
true,
|
||||||
|
1616522699913,
|
||||||
|
true
|
||||||
|
),
|
||||||
|
"https://upload.wikimedia.org/wikipedia/commons/a/ae/Michael_Jordan_in_2014.jpg"
|
||||||
|
),
|
||||||
|
Chat(
|
||||||
|
"Linus Torvalds",
|
||||||
|
Message(
|
||||||
|
"software is like sex : it's better when it's free",
|
||||||
|
false,
|
||||||
|
823522140000,
|
||||||
|
true
|
||||||
|
),
|
||||||
|
"https://upload.wikimedia.org/wikipedia/commons/0/01/LinuxCon_Europe_Linus_Torvalds_03_%28cropped%29.jpg"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
package io.github.chronosx88.radium
|
||||||
|
|
||||||
|
import android.app.Application
|
||||||
|
import io.github.chronosx88.radium.utils.time.LocaleUtils
|
||||||
|
|
||||||
|
class RadiumApplication : Application() {
|
||||||
|
override fun onCreate() {
|
||||||
|
super.onCreate()
|
||||||
|
|
||||||
|
LocaleUtils.initFormatters(this.applicationContext) // FIXME this is bullshit, need to think about better solution
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package io.github.chronosx88.radium.models
|
||||||
|
|
||||||
|
data class Chat(
|
||||||
|
val name: String,
|
||||||
|
val lastMsg: Message,
|
||||||
|
val photoURL: String
|
||||||
|
)
|
@ -0,0 +1,8 @@
|
|||||||
|
package io.github.chronosx88.radium.models
|
||||||
|
|
||||||
|
data class Message(
|
||||||
|
val text: String,
|
||||||
|
val author: Boolean,
|
||||||
|
val timestamp: Long,
|
||||||
|
val read: Boolean
|
||||||
|
)
|
@ -0,0 +1,92 @@
|
|||||||
|
package io.github.chronosx88.radium.utils.time;
|
||||||
|
|
||||||
|
|
||||||
|
import java.text.ParseException;
|
||||||
|
import java.text.ParsePosition;
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.Locale;
|
||||||
|
import java.util.TimeZone;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>DateParser is the "missing" interface for the parsing methods of
|
||||||
|
* {@link java.text.DateFormat}.</p>
|
||||||
|
*
|
||||||
|
* @since 3.2
|
||||||
|
*/
|
||||||
|
public interface DateParser {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Equivalent to DateFormat.parse(String).
|
||||||
|
* <p/>
|
||||||
|
* See {@link java.text.DateFormat#parse(String)} for more information.
|
||||||
|
*
|
||||||
|
* @param source A <code>String</code> whose beginning should be parsed.
|
||||||
|
* @return A <code>Date</code> parsed from the string
|
||||||
|
* @throws ParseException if the beginning of the specified string cannot be parsed.
|
||||||
|
*/
|
||||||
|
Date parse(String source) throws ParseException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Equivalent to DateFormat.parse(String, ParsePosition).
|
||||||
|
* <p/>
|
||||||
|
* See {@link java.text.DateFormat#parse(String, ParsePosition)} for more information.
|
||||||
|
*
|
||||||
|
* @param source A <code>String</code>, part of which should be parsed.
|
||||||
|
* @param pos A <code>ParsePosition</code> object with index and error index information
|
||||||
|
* as described above.
|
||||||
|
* @return A <code>Date</code> parsed from the string. In case of error, returns null.
|
||||||
|
* @throws NullPointerException if text or pos is null.
|
||||||
|
*/
|
||||||
|
Date parse(String source, ParsePosition pos);
|
||||||
|
|
||||||
|
// Accessors
|
||||||
|
//-----------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Get the pattern used by this parser.</p>
|
||||||
|
*
|
||||||
|
* @return the pattern, {@link java.text.SimpleDateFormat} compatible
|
||||||
|
*/
|
||||||
|
String getPattern();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>
|
||||||
|
* Get the time zone used by this parser.
|
||||||
|
* </p>
|
||||||
|
* <p/>
|
||||||
|
* <p>
|
||||||
|
* The default {@link TimeZone} used to create a {@link Date} when the {@link TimeZone} is not specified by
|
||||||
|
* the format pattern.
|
||||||
|
* </p>
|
||||||
|
*
|
||||||
|
* @return the time zone
|
||||||
|
*/
|
||||||
|
TimeZone getTimeZone();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Get the locale used by this parser.</p>
|
||||||
|
*
|
||||||
|
* @return the locale
|
||||||
|
*/
|
||||||
|
Locale getLocale();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parses text from a string to produce a Date.
|
||||||
|
*
|
||||||
|
* @param source A <code>String</code> whose beginning should be parsed.
|
||||||
|
* @return a <code>java.util.Date</code> object
|
||||||
|
* @throws ParseException if the beginning of the specified string cannot be parsed.
|
||||||
|
* @see java.text.DateFormat#parseObject(String)
|
||||||
|
*/
|
||||||
|
Object parseObject(String source) throws ParseException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse a date/time string according to the given parse position.
|
||||||
|
*
|
||||||
|
* @param source A <code>String</code> whose beginning should be parsed.
|
||||||
|
* @param pos the parse position
|
||||||
|
* @return a <code>java.util.Date</code> object
|
||||||
|
* @see java.text.DateFormat#parseObject(String, ParsePosition)
|
||||||
|
*/
|
||||||
|
Object parseObject(String source, ParsePosition pos);
|
||||||
|
}
|
@ -0,0 +1,126 @@
|
|||||||
|
/*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
|
* contributor license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright ownership.
|
||||||
|
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||||
|
* (the "License"); you may not use this file except in compliance with
|
||||||
|
* the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
package io.github.chronosx88.radium.utils.time;
|
||||||
|
|
||||||
|
import java.text.FieldPosition;
|
||||||
|
import java.util.Calendar;
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.Locale;
|
||||||
|
import java.util.TimeZone;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>DatePrinter is the "missing" interface for the format methods of
|
||||||
|
* {@link java.text.DateFormat}.</p>
|
||||||
|
*
|
||||||
|
* @since 3.2
|
||||||
|
*/
|
||||||
|
public interface DatePrinter {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Formats a millisecond {@code long} value.</p>
|
||||||
|
*
|
||||||
|
* @param millis the millisecond value to format
|
||||||
|
* @return the formatted string
|
||||||
|
* @since 2.1
|
||||||
|
*/
|
||||||
|
String format(long millis);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Formats a {@code Date} object using a {@code GregorianCalendar}.</p>
|
||||||
|
*
|
||||||
|
* @param date the date to format
|
||||||
|
* @return the formatted string
|
||||||
|
*/
|
||||||
|
String format(Date date);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Formats a {@code Calendar} object.</p>
|
||||||
|
*
|
||||||
|
* @param calendar the calendar to format
|
||||||
|
* @return the formatted string
|
||||||
|
*/
|
||||||
|
String format(Calendar calendar);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Formats a milliseond {@code long} value into the
|
||||||
|
* supplied {@code StringBuffer}.</p>
|
||||||
|
*
|
||||||
|
* @param millis the millisecond value to format
|
||||||
|
* @param buf the buffer to format into
|
||||||
|
* @return the specified string buffer
|
||||||
|
*/
|
||||||
|
StringBuffer format(long millis, StringBuffer buf);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Formats a {@code Date} object into the
|
||||||
|
* supplied {@code StringBuffer} using a {@code GregorianCalendar}.</p>
|
||||||
|
*
|
||||||
|
* @param date the date to format
|
||||||
|
* @param buf the buffer to format into
|
||||||
|
* @return the specified string buffer
|
||||||
|
*/
|
||||||
|
StringBuffer format(Date date, StringBuffer buf);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Formats a {@code Calendar} object into the
|
||||||
|
* supplied {@code StringBuffer}.</p>
|
||||||
|
*
|
||||||
|
* @param calendar the calendar to format
|
||||||
|
* @param buf the buffer to format into
|
||||||
|
* @return the specified string buffer
|
||||||
|
*/
|
||||||
|
StringBuffer format(Calendar calendar, StringBuffer buf);
|
||||||
|
|
||||||
|
// Accessors
|
||||||
|
//-----------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets the pattern used by this printer.</p>
|
||||||
|
*
|
||||||
|
* @return the pattern, {@link java.text.SimpleDateFormat} compatible
|
||||||
|
*/
|
||||||
|
String getPattern();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets the time zone used by this printer.</p>
|
||||||
|
* <p/>
|
||||||
|
* <p>This zone is always used for {@code Date} printing. </p>
|
||||||
|
*
|
||||||
|
* @return the time zone
|
||||||
|
*/
|
||||||
|
TimeZone getTimeZone();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets the locale used by this printer.</p>
|
||||||
|
*
|
||||||
|
* @return the locale
|
||||||
|
*/
|
||||||
|
Locale getLocale();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Formats a {@code Date}, {@code Calendar} or
|
||||||
|
* {@code Long} (milliseconds) object.</p>
|
||||||
|
* <p/>
|
||||||
|
* See {@link java.text.DateFormat#format(Object, StringBuffer, FieldPosition)}
|
||||||
|
*
|
||||||
|
* @param obj the object to format
|
||||||
|
* @param toAppendTo the buffer to append to
|
||||||
|
* @param pos the position - ignored
|
||||||
|
* @return the buffer passed in
|
||||||
|
*/
|
||||||
|
StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition pos);
|
||||||
|
}
|
@ -0,0 +1,597 @@
|
|||||||
|
package io.github.chronosx88.radium.utils.time;
|
||||||
|
|
||||||
|
import java.text.DateFormat;
|
||||||
|
import java.text.FieldPosition;
|
||||||
|
import java.text.Format;
|
||||||
|
import java.text.ParseException;
|
||||||
|
import java.text.ParsePosition;
|
||||||
|
import java.util.Calendar;
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.Locale;
|
||||||
|
import java.util.TimeZone;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>FastDateFormat is a fast and thread-safe version of
|
||||||
|
* {@link java.text.SimpleDateFormat}.</p>
|
||||||
|
*
|
||||||
|
* <p>This class can be used as a direct replacement to
|
||||||
|
* {@code SimpleDateFormat} in most formatting and parsing situations.
|
||||||
|
* This class is especially useful in multi-threaded server environments.
|
||||||
|
* {@code SimpleDateFormat} is not thread-safe in any JDK version,
|
||||||
|
* nor will it be as Sun have closed the bug/RFE.
|
||||||
|
* </p>
|
||||||
|
*
|
||||||
|
* <p>All patterns are compatible with
|
||||||
|
* SimpleDateFormat (except time zones and some year patterns - see below).</p>
|
||||||
|
*
|
||||||
|
* <p>Since 3.2, FastDateFormat supports parsing as well as printing.</p>
|
||||||
|
*
|
||||||
|
* <p>Java 1.4 introduced a new pattern letter, {@code 'Z'}, to represent
|
||||||
|
* time zones in RFC822 format (eg. {@code +0800} or {@code -1100}).
|
||||||
|
* This pattern letter can be used here (on all JDK versions).</p>
|
||||||
|
*
|
||||||
|
* <p>In addition, the pattern {@code 'ZZ'} has been made to represent
|
||||||
|
* ISO8601 full format time zones (eg. {@code +08:00} or {@code -11:00}).
|
||||||
|
* This introduces a minor incompatibility with Java 1.4, but at a gain of
|
||||||
|
* useful functionality.</p>
|
||||||
|
*
|
||||||
|
* <p>Javadoc cites for the year pattern: <i>For formatting, if the number of
|
||||||
|
* pattern letters is 2, the year is truncated to 2 digits; otherwise it is
|
||||||
|
* interpreted as a number.</i> Starting with Java 1.7 a pattern of 'Y' or
|
||||||
|
* 'YYY' will be formatted as '2003', while it was '03' in former Java
|
||||||
|
* versions. FastDateFormat implements the behavior of Java 7.</p>
|
||||||
|
*
|
||||||
|
* @since 2.0
|
||||||
|
* @version $Id: FastDateFormat.java 1572877 2014-02-28 08:42:25Z britter $
|
||||||
|
*/
|
||||||
|
public class FastDateFormat extends Format implements DateParser, DatePrinter {
|
||||||
|
/**
|
||||||
|
* Required for serialization support.
|
||||||
|
*
|
||||||
|
* @see java.io.Serializable
|
||||||
|
*/
|
||||||
|
private static final long serialVersionUID = 2L;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* FULL locale dependent date or time style.
|
||||||
|
*/
|
||||||
|
public static final int FULL = DateFormat.FULL;
|
||||||
|
/**
|
||||||
|
* LONG locale dependent date or time style.
|
||||||
|
*/
|
||||||
|
public static final int LONG = DateFormat.LONG;
|
||||||
|
/**
|
||||||
|
* MEDIUM locale dependent date or time style.
|
||||||
|
*/
|
||||||
|
public static final int MEDIUM = DateFormat.MEDIUM;
|
||||||
|
/**
|
||||||
|
* SHORT locale dependent date or time style.
|
||||||
|
*/
|
||||||
|
public static final int SHORT = DateFormat.SHORT;
|
||||||
|
|
||||||
|
private static final FormatCache<FastDateFormat> cache = new FormatCache<FastDateFormat>() {
|
||||||
|
@Override
|
||||||
|
protected FastDateFormat createInstance(final String pattern, final TimeZone timeZone, final Locale locale) {
|
||||||
|
return new FastDateFormat(pattern, timeZone, locale);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
private final FastDatePrinter printer;
|
||||||
|
private final FastDateParser parser;
|
||||||
|
|
||||||
|
//-----------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a formatter instance using the default pattern in the
|
||||||
|
* default locale.</p>
|
||||||
|
*
|
||||||
|
* @return a date/time formatter
|
||||||
|
*/
|
||||||
|
public static FastDateFormat getInstance() {
|
||||||
|
return cache.getInstance();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a formatter instance using the specified pattern in the
|
||||||
|
* default locale.</p>
|
||||||
|
*
|
||||||
|
* @param pattern {@link java.text.SimpleDateFormat} compatible
|
||||||
|
* pattern
|
||||||
|
* @return a pattern based date/time formatter
|
||||||
|
* @throws IllegalArgumentException if pattern is invalid
|
||||||
|
*/
|
||||||
|
public static FastDateFormat getInstance(final String pattern) {
|
||||||
|
return cache.getInstance(pattern, null, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a formatter instance using the specified pattern and
|
||||||
|
* time zone.</p>
|
||||||
|
*
|
||||||
|
* @param pattern {@link java.text.SimpleDateFormat} compatible
|
||||||
|
* pattern
|
||||||
|
* @param timeZone optional time zone, overrides time zone of
|
||||||
|
* formatted date
|
||||||
|
* @return a pattern based date/time formatter
|
||||||
|
* @throws IllegalArgumentException if pattern is invalid
|
||||||
|
*/
|
||||||
|
public static FastDateFormat getInstance(final String pattern, final TimeZone timeZone) {
|
||||||
|
return cache.getInstance(pattern, timeZone, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a formatter instance using the specified pattern and
|
||||||
|
* locale.</p>
|
||||||
|
*
|
||||||
|
* @param pattern {@link java.text.SimpleDateFormat} compatible
|
||||||
|
* pattern
|
||||||
|
* @param locale optional locale, overrides system locale
|
||||||
|
* @return a pattern based date/time formatter
|
||||||
|
* @throws IllegalArgumentException if pattern is invalid
|
||||||
|
*/
|
||||||
|
public static FastDateFormat getInstance(final String pattern, final Locale locale) {
|
||||||
|
return cache.getInstance(pattern, null, locale);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a formatter instance using the specified pattern, time zone
|
||||||
|
* and locale.</p>
|
||||||
|
*
|
||||||
|
* @param pattern {@link java.text.SimpleDateFormat} compatible
|
||||||
|
* pattern
|
||||||
|
* @param timeZone optional time zone, overrides time zone of
|
||||||
|
* formatted date
|
||||||
|
* @param locale optional locale, overrides system locale
|
||||||
|
* @return a pattern based date/time formatter
|
||||||
|
* @throws IllegalArgumentException if pattern is invalid
|
||||||
|
* or {@code null}
|
||||||
|
*/
|
||||||
|
public static FastDateFormat getInstance(final String pattern, final TimeZone timeZone, final Locale locale) {
|
||||||
|
return cache.getInstance(pattern, timeZone, locale);
|
||||||
|
}
|
||||||
|
|
||||||
|
//-----------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a date formatter instance using the specified style in the
|
||||||
|
* default time zone and locale.</p>
|
||||||
|
*
|
||||||
|
* @param style date style: FULL, LONG, MEDIUM, or SHORT
|
||||||
|
* @return a localized standard date formatter
|
||||||
|
* @throws IllegalArgumentException if the Locale has no date
|
||||||
|
* pattern defined
|
||||||
|
* @since 2.1
|
||||||
|
*/
|
||||||
|
public static FastDateFormat getDateInstance(final int style) {
|
||||||
|
return cache.getDateInstance(style, null, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a date formatter instance using the specified style and
|
||||||
|
* locale in the default time zone.</p>
|
||||||
|
*
|
||||||
|
* @param style date style: FULL, LONG, MEDIUM, or SHORT
|
||||||
|
* @param locale optional locale, overrides system locale
|
||||||
|
* @return a localized standard date formatter
|
||||||
|
* @throws IllegalArgumentException if the Locale has no date
|
||||||
|
* pattern defined
|
||||||
|
* @since 2.1
|
||||||
|
*/
|
||||||
|
public static FastDateFormat getDateInstance(final int style, final Locale locale) {
|
||||||
|
return cache.getDateInstance(style, null, locale);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a date formatter instance using the specified style and
|
||||||
|
* time zone in the default locale.</p>
|
||||||
|
*
|
||||||
|
* @param style date style: FULL, LONG, MEDIUM, or SHORT
|
||||||
|
* @param timeZone optional time zone, overrides time zone of
|
||||||
|
* formatted date
|
||||||
|
* @return a localized standard date formatter
|
||||||
|
* @throws IllegalArgumentException if the Locale has no date
|
||||||
|
* pattern defined
|
||||||
|
* @since 2.1
|
||||||
|
*/
|
||||||
|
public static FastDateFormat getDateInstance(final int style, final TimeZone timeZone) {
|
||||||
|
return cache.getDateInstance(style, timeZone, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a date formatter instance using the specified style, time
|
||||||
|
* zone and locale.</p>
|
||||||
|
*
|
||||||
|
* @param style date style: FULL, LONG, MEDIUM, or SHORT
|
||||||
|
* @param timeZone optional time zone, overrides time zone of
|
||||||
|
* formatted date
|
||||||
|
* @param locale optional locale, overrides system locale
|
||||||
|
* @return a localized standard date formatter
|
||||||
|
* @throws IllegalArgumentException if the Locale has no date
|
||||||
|
* pattern defined
|
||||||
|
*/
|
||||||
|
public static FastDateFormat getDateInstance(final int style, final TimeZone timeZone, final Locale locale) {
|
||||||
|
return cache.getDateInstance(style, timeZone, locale);
|
||||||
|
}
|
||||||
|
|
||||||
|
//-----------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a time formatter instance using the specified style in the
|
||||||
|
* default time zone and locale.</p>
|
||||||
|
*
|
||||||
|
* @param style time style: FULL, LONG, MEDIUM, or SHORT
|
||||||
|
* @return a localized standard time formatter
|
||||||
|
* @throws IllegalArgumentException if the Locale has no time
|
||||||
|
* pattern defined
|
||||||
|
* @since 2.1
|
||||||
|
*/
|
||||||
|
public static FastDateFormat getTimeInstance(final int style) {
|
||||||
|
return cache.getTimeInstance(style, null, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a time formatter instance using the specified style and
|
||||||
|
* locale in the default time zone.</p>
|
||||||
|
*
|
||||||
|
* @param style time style: FULL, LONG, MEDIUM, or SHORT
|
||||||
|
* @param locale optional locale, overrides system locale
|
||||||
|
* @return a localized standard time formatter
|
||||||
|
* @throws IllegalArgumentException if the Locale has no time
|
||||||
|
* pattern defined
|
||||||
|
* @since 2.1
|
||||||
|
*/
|
||||||
|
public static FastDateFormat getTimeInstance(final int style, final Locale locale) {
|
||||||
|
return cache.getTimeInstance(style, null, locale);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a time formatter instance using the specified style and
|
||||||
|
* time zone in the default locale.</p>
|
||||||
|
*
|
||||||
|
* @param style time style: FULL, LONG, MEDIUM, or SHORT
|
||||||
|
* @param timeZone optional time zone, overrides time zone of
|
||||||
|
* formatted time
|
||||||
|
* @return a localized standard time formatter
|
||||||
|
* @throws IllegalArgumentException if the Locale has no time
|
||||||
|
* pattern defined
|
||||||
|
* @since 2.1
|
||||||
|
*/
|
||||||
|
public static FastDateFormat getTimeInstance(final int style, final TimeZone timeZone) {
|
||||||
|
return cache.getTimeInstance(style, timeZone, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a time formatter instance using the specified style, time
|
||||||
|
* zone and locale.</p>
|
||||||
|
*
|
||||||
|
* @param style time style: FULL, LONG, MEDIUM, or SHORT
|
||||||
|
* @param timeZone optional time zone, overrides time zone of
|
||||||
|
* formatted time
|
||||||
|
* @param locale optional locale, overrides system locale
|
||||||
|
* @return a localized standard time formatter
|
||||||
|
* @throws IllegalArgumentException if the Locale has no time
|
||||||
|
* pattern defined
|
||||||
|
*/
|
||||||
|
public static FastDateFormat getTimeInstance(final int style, final TimeZone timeZone, final Locale locale) {
|
||||||
|
return cache.getTimeInstance(style, timeZone, locale);
|
||||||
|
}
|
||||||
|
|
||||||
|
//-----------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a date/time formatter instance using the specified style
|
||||||
|
* in the default time zone and locale.</p>
|
||||||
|
*
|
||||||
|
* @param dateStyle date style: FULL, LONG, MEDIUM, or SHORT
|
||||||
|
* @param timeStyle time style: FULL, LONG, MEDIUM, or SHORT
|
||||||
|
* @return a localized standard date/time formatter
|
||||||
|
* @throws IllegalArgumentException if the Locale has no date/time
|
||||||
|
* pattern defined
|
||||||
|
* @since 2.1
|
||||||
|
*/
|
||||||
|
public static FastDateFormat getDateTimeInstance(final int dateStyle, final int timeStyle) {
|
||||||
|
return cache.getDateTimeInstance(dateStyle, timeStyle, null, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a date/time formatter instance using the specified style and
|
||||||
|
* locale in the default time zone.</p>
|
||||||
|
*
|
||||||
|
* @param dateStyle date style: FULL, LONG, MEDIUM, or SHORT
|
||||||
|
* @param timeStyle time style: FULL, LONG, MEDIUM, or SHORT
|
||||||
|
* @param locale optional locale, overrides system locale
|
||||||
|
* @return a localized standard date/time formatter
|
||||||
|
* @throws IllegalArgumentException if the Locale has no date/time
|
||||||
|
* pattern defined
|
||||||
|
* @since 2.1
|
||||||
|
*/
|
||||||
|
public static FastDateFormat getDateTimeInstance(final int dateStyle, final int timeStyle, final Locale locale) {
|
||||||
|
return cache.getDateTimeInstance(dateStyle, timeStyle, null, locale);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a date/time formatter instance using the specified style and
|
||||||
|
* time zone in the default locale.</p>
|
||||||
|
*
|
||||||
|
* @param dateStyle date style: FULL, LONG, MEDIUM, or SHORT
|
||||||
|
* @param timeStyle time style: FULL, LONG, MEDIUM, or SHORT
|
||||||
|
* @param timeZone optional time zone, overrides time zone of
|
||||||
|
* formatted date
|
||||||
|
* @return a localized standard date/time formatter
|
||||||
|
* @throws IllegalArgumentException if the Locale has no date/time
|
||||||
|
* pattern defined
|
||||||
|
* @since 2.1
|
||||||
|
*/
|
||||||
|
public static FastDateFormat getDateTimeInstance(final int dateStyle, final int timeStyle, final TimeZone timeZone) {
|
||||||
|
return getDateTimeInstance(dateStyle, timeStyle, timeZone, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a date/time formatter instance using the specified style,
|
||||||
|
* time zone and locale.</p>
|
||||||
|
*
|
||||||
|
* @param dateStyle date style: FULL, LONG, MEDIUM, or SHORT
|
||||||
|
* @param timeStyle time style: FULL, LONG, MEDIUM, or SHORT
|
||||||
|
* @param timeZone optional time zone, overrides time zone of
|
||||||
|
* formatted date
|
||||||
|
* @param locale optional locale, overrides system locale
|
||||||
|
* @return a localized standard date/time formatter
|
||||||
|
* @throws IllegalArgumentException if the Locale has no date/time
|
||||||
|
* pattern defined
|
||||||
|
*/
|
||||||
|
public static FastDateFormat getDateTimeInstance(
|
||||||
|
final int dateStyle, final int timeStyle, final TimeZone timeZone, final Locale locale) {
|
||||||
|
return cache.getDateTimeInstance(dateStyle, timeStyle, timeZone, locale);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Constructor
|
||||||
|
//-----------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Constructs a new FastDateFormat.</p>
|
||||||
|
*
|
||||||
|
* @param pattern {@link java.text.SimpleDateFormat} compatible pattern
|
||||||
|
* @param timeZone non-null time zone to use
|
||||||
|
* @param locale non-null locale to use
|
||||||
|
* @throws NullPointerException if pattern, timeZone, or locale is null.
|
||||||
|
*/
|
||||||
|
protected FastDateFormat(final String pattern, final TimeZone timeZone, final Locale locale) {
|
||||||
|
this(pattern, timeZone, locale, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Constructor
|
||||||
|
//-----------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Constructs a new FastDateFormat.</p>
|
||||||
|
*
|
||||||
|
* @param pattern {@link java.text.SimpleDateFormat} compatible pattern
|
||||||
|
* @param timeZone non-null time zone to use
|
||||||
|
* @param locale non-null locale to use
|
||||||
|
* @param centuryStart The start of the 100 year period to use as the "default century" for 2 digit year parsing. If centuryStart is null, defaults to now - 80 years
|
||||||
|
* @throws NullPointerException if pattern, timeZone, or locale is null.
|
||||||
|
*/
|
||||||
|
protected FastDateFormat(final String pattern, final TimeZone timeZone, final Locale locale, final Date centuryStart) {
|
||||||
|
printer = new FastDatePrinter(pattern, timeZone, locale);
|
||||||
|
parser = new FastDateParser(pattern, timeZone, locale, centuryStart);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Format methods
|
||||||
|
//-----------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Formats a {@code Date}, {@code Calendar} or
|
||||||
|
* {@code Long} (milliseconds) object.</p>
|
||||||
|
*
|
||||||
|
* @param obj the object to format
|
||||||
|
* @param toAppendTo the buffer to append to
|
||||||
|
* @param pos the position - ignored
|
||||||
|
* @return the buffer passed in
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public StringBuffer format(final Object obj, final StringBuffer toAppendTo, final FieldPosition pos) {
|
||||||
|
return printer.format(obj, toAppendTo, pos);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Formats a millisecond {@code long} value.</p>
|
||||||
|
*
|
||||||
|
* @param millis the millisecond value to format
|
||||||
|
* @return the formatted string
|
||||||
|
* @since 2.1
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public String format(final long millis) {
|
||||||
|
return printer.format(millis);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Formats a {@code Date} object using a {@code GregorianCalendar}.</p>
|
||||||
|
*
|
||||||
|
* @param date the date to format
|
||||||
|
* @return the formatted string
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public String format(final Date date) {
|
||||||
|
return printer.format(date);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Formats a {@code Calendar} object.</p>
|
||||||
|
*
|
||||||
|
* @param calendar the calendar to format
|
||||||
|
* @return the formatted string
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public String format(final Calendar calendar) {
|
||||||
|
return printer.format(calendar);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Formats a millisecond {@code long} value into the
|
||||||
|
* supplied {@code StringBuffer}.</p>
|
||||||
|
*
|
||||||
|
* @param millis the millisecond value to format
|
||||||
|
* @param buf the buffer to format into
|
||||||
|
* @return the specified string buffer
|
||||||
|
* @since 2.1
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public StringBuffer format(final long millis, final StringBuffer buf) {
|
||||||
|
return printer.format(millis, buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Formats a {@code Date} object into the
|
||||||
|
* supplied {@code StringBuffer} using a {@code GregorianCalendar}.</p>
|
||||||
|
*
|
||||||
|
* @param date the date to format
|
||||||
|
* @param buf the buffer to format into
|
||||||
|
* @return the specified string buffer
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public StringBuffer format(final Date date, final StringBuffer buf) {
|
||||||
|
return printer.format(date, buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Formats a {@code Calendar} object into the
|
||||||
|
* supplied {@code StringBuffer}.</p>
|
||||||
|
*
|
||||||
|
* @param calendar the calendar to format
|
||||||
|
* @param buf the buffer to format into
|
||||||
|
* @return the specified string buffer
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public StringBuffer format(final Calendar calendar, final StringBuffer buf) {
|
||||||
|
return printer.format(calendar, buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parsing
|
||||||
|
//-----------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see DateParser#parse(java.lang.String)
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Date parse(final String source) throws ParseException {
|
||||||
|
return parser.parse(source);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see DateParser#parse(java.lang.String, java.text.ParsePosition)
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Date parse(final String source, final ParsePosition pos) {
|
||||||
|
return parser.parse(source, pos);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see java.text.Format#parseObject(java.lang.String, java.text.ParsePosition)
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Object parseObject(final String source, final ParsePosition pos) {
|
||||||
|
return parser.parseObject(source, pos);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Accessors
|
||||||
|
//-----------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets the pattern used by this formatter.</p>
|
||||||
|
*
|
||||||
|
* @return the pattern, {@link java.text.SimpleDateFormat} compatible
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public String getPattern() {
|
||||||
|
return printer.getPattern();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets the time zone used by this formatter.</p>
|
||||||
|
* <p/>
|
||||||
|
* <p>This zone is always used for {@code Date} formatting. </p>
|
||||||
|
*
|
||||||
|
* @return the time zone
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public TimeZone getTimeZone() {
|
||||||
|
return printer.getTimeZone();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets the locale used by this formatter.</p>
|
||||||
|
*
|
||||||
|
* @return the locale
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Locale getLocale() {
|
||||||
|
return printer.getLocale();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets an estimate for the maximum string length that the
|
||||||
|
* formatter will produce.</p>
|
||||||
|
* <p/>
|
||||||
|
* <p>The actual formatted length will almost always be less than or
|
||||||
|
* equal to this amount.</p>
|
||||||
|
*
|
||||||
|
* @return the maximum formatted length
|
||||||
|
*/
|
||||||
|
public int getMaxLengthEstimate() {
|
||||||
|
return printer.getMaxLengthEstimate();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Basics
|
||||||
|
//-----------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Compares two objects for equality.</p>
|
||||||
|
*
|
||||||
|
* @param obj the object to compare to
|
||||||
|
* @return {@code true} if equal
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public boolean equals(final Object obj) {
|
||||||
|
if (!(obj instanceof FastDateFormat)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
final FastDateFormat other = (FastDateFormat) obj;
|
||||||
|
// no need to check parser, as it has same invariants as printer
|
||||||
|
return printer.equals(other.printer);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Returns a hashcode compatible with equals.</p>
|
||||||
|
*
|
||||||
|
* @return a hashcode compatible with equals
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public int hashCode() {
|
||||||
|
return printer.hashCode();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a debugging string version of this formatter.</p>
|
||||||
|
*
|
||||||
|
* @return a debugging string
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "FastDateFormat[" + printer.getPattern() + "," + printer.getLocale() + "," + printer.getTimeZone().getID() + "]";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Performs the formatting by applying the rules to the
|
||||||
|
* specified calendar.</p>
|
||||||
|
*
|
||||||
|
* @param calendar the calendar to format
|
||||||
|
* @param buf the buffer to format into
|
||||||
|
* @return the specified string buffer
|
||||||
|
*/
|
||||||
|
protected StringBuffer applyRules(final Calendar calendar, final StringBuffer buf) {
|
||||||
|
return printer.applyRules(calendar, buf);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,874 @@
|
|||||||
|
/*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
|
* contributor license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright ownership.
|
||||||
|
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||||
|
* (the "License"); you may not use this file except in compliance with
|
||||||
|
* the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
package io.github.chronosx88.radium.utils.time;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.ObjectInputStream;
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.text.DateFormatSymbols;
|
||||||
|
import java.text.ParseException;
|
||||||
|
import java.text.ParsePosition;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Calendar;
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Locale;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.SortedMap;
|
||||||
|
import java.util.TimeZone;
|
||||||
|
import java.util.TreeMap;
|
||||||
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
|
import java.util.concurrent.ConcurrentMap;
|
||||||
|
import java.util.regex.Matcher;
|
||||||
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>FastDateParser is a fast and thread-safe version of
|
||||||
|
* {@link java.text.SimpleDateFormat}.</p>
|
||||||
|
*
|
||||||
|
* <p>This class can be used as a direct replacement for
|
||||||
|
* <code>SimpleDateFormat</code> in most parsing situations.
|
||||||
|
* This class is especially useful in multi-threaded server environments.
|
||||||
|
* <code>SimpleDateFormat</code> is not thread-safe in any JDK version,
|
||||||
|
* nor will it be as Sun has closed the
|
||||||
|
* <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4228335">bug</a>/RFE.
|
||||||
|
* </p>
|
||||||
|
*
|
||||||
|
* <p>Only parsing is supported, but all patterns are compatible with
|
||||||
|
* SimpleDateFormat.</p>
|
||||||
|
*
|
||||||
|
* <p>Timing tests indicate this class is as about as fast as SimpleDateFormat
|
||||||
|
* in single thread applications and about 25% faster in multi-thread applications.</p>
|
||||||
|
*
|
||||||
|
* @version $Id: FastDateParser.java 1572877 2014-02-28 08:42:25Z britter $
|
||||||
|
* @since 3.2
|
||||||
|
*/
|
||||||
|
public class FastDateParser implements DateParser, Serializable {
|
||||||
|
/**
|
||||||
|
* Required for serialization support.
|
||||||
|
*
|
||||||
|
* @see java.io.Serializable
|
||||||
|
*/
|
||||||
|
private static final long serialVersionUID = 2L;
|
||||||
|
|
||||||
|
static final Locale JAPANESE_IMPERIAL = new Locale("ja", "JP", "JP");
|
||||||
|
|
||||||
|
// defining fields
|
||||||
|
private final String pattern;
|
||||||
|
private final TimeZone timeZone;
|
||||||
|
private final Locale locale;
|
||||||
|
private final int century;
|
||||||
|
private final int startYear;
|
||||||
|
|
||||||
|
// derived fields
|
||||||
|
private transient Pattern parsePattern;
|
||||||
|
private transient Strategy[] strategies;
|
||||||
|
|
||||||
|
// dynamic fields to communicate with Strategy
|
||||||
|
private transient String currentFormatField;
|
||||||
|
private transient Strategy nextStrategy;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Constructs a new FastDateParser.</p>
|
||||||
|
*
|
||||||
|
* @param pattern non-null {@link java.text.SimpleDateFormat} compatible
|
||||||
|
* pattern
|
||||||
|
* @param timeZone non-null time zone to use
|
||||||
|
* @param locale non-null locale
|
||||||
|
*/
|
||||||
|
protected FastDateParser(final String pattern, final TimeZone timeZone, final Locale locale) {
|
||||||
|
this(pattern, timeZone, locale, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Constructs a new FastDateParser.</p>
|
||||||
|
*
|
||||||
|
* @param pattern non-null {@link java.text.SimpleDateFormat} compatible
|
||||||
|
* pattern
|
||||||
|
* @param timeZone non-null time zone to use
|
||||||
|
* @param locale non-null locale
|
||||||
|
* @param centuryStart The start of the century for 2 digit year parsing
|
||||||
|
* @since 3.3
|
||||||
|
*/
|
||||||
|
protected FastDateParser(final String pattern, final TimeZone timeZone, final Locale locale, final Date centuryStart) {
|
||||||
|
this.pattern = pattern;
|
||||||
|
this.timeZone = timeZone;
|
||||||
|
this.locale = locale;
|
||||||
|
|
||||||
|
final Calendar definingCalendar = Calendar.getInstance(timeZone, locale);
|
||||||
|
int centuryStartYear;
|
||||||
|
if (centuryStart != null) {
|
||||||
|
definingCalendar.setTime(centuryStart);
|
||||||
|
centuryStartYear = definingCalendar.get(Calendar.YEAR);
|
||||||
|
} else if (locale.equals(JAPANESE_IMPERIAL)) {
|
||||||
|
centuryStartYear = 0;
|
||||||
|
} else {
|
||||||
|
// from 80 years ago to 20 years from now
|
||||||
|
definingCalendar.setTime(new Date());
|
||||||
|
centuryStartYear = definingCalendar.get(Calendar.YEAR) - 80;
|
||||||
|
}
|
||||||
|
century = centuryStartYear / 100 * 100;
|
||||||
|
startYear = centuryStartYear - century;
|
||||||
|
|
||||||
|
init(definingCalendar);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize derived fields from defining fields.
|
||||||
|
* This is called from constructor and from readObject (de-serialization)
|
||||||
|
*
|
||||||
|
* @param definingCalendar the {@link java.util.Calendar} instance used to initialize this FastDateParser
|
||||||
|
*/
|
||||||
|
private void init(Calendar definingCalendar) {
|
||||||
|
|
||||||
|
final StringBuilder regex = new StringBuilder();
|
||||||
|
final List<Strategy> collector = new ArrayList<Strategy>();
|
||||||
|
|
||||||
|
final Matcher patternMatcher = formatPattern.matcher(pattern);
|
||||||
|
if (!patternMatcher.lookingAt()) {
|
||||||
|
throw new IllegalArgumentException(
|
||||||
|
"Illegal pattern character '" + pattern.charAt(patternMatcher.regionStart()) + "'");
|
||||||
|
}
|
||||||
|
|
||||||
|
currentFormatField = patternMatcher.group();
|
||||||
|
Strategy currentStrategy = getStrategy(currentFormatField, definingCalendar);
|
||||||
|
for (; ; ) {
|
||||||
|
patternMatcher.region(patternMatcher.end(), patternMatcher.regionEnd());
|
||||||
|
if (!patternMatcher.lookingAt()) {
|
||||||
|
nextStrategy = null;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
final String nextFormatField = patternMatcher.group();
|
||||||
|
nextStrategy = getStrategy(nextFormatField, definingCalendar);
|
||||||
|
if (currentStrategy.addRegex(this, regex)) {
|
||||||
|
collector.add(currentStrategy);
|
||||||
|
}
|
||||||
|
currentFormatField = nextFormatField;
|
||||||
|
currentStrategy = nextStrategy;
|
||||||
|
}
|
||||||
|
if (patternMatcher.regionStart() != patternMatcher.regionEnd()) {
|
||||||
|
throw new IllegalArgumentException("Failed to parse \"" + pattern + "\" ; gave up at index " + patternMatcher.regionStart());
|
||||||
|
}
|
||||||
|
if (currentStrategy.addRegex(this, regex)) {
|
||||||
|
collector.add(currentStrategy);
|
||||||
|
}
|
||||||
|
currentFormatField = null;
|
||||||
|
strategies = collector.toArray(new Strategy[collector.size()]);
|
||||||
|
parsePattern = Pattern.compile(regex.toString());
|
||||||
|
}
|
||||||
|
|
||||||
|
// Accessors
|
||||||
|
//-----------------------------------------------------------------------
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see org.apache.commons.lang3.time.DateParser#getPattern()
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public String getPattern() {
|
||||||
|
return pattern;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see org.apache.commons.lang3.time.DateParser#getTimeZone()
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public TimeZone getTimeZone() {
|
||||||
|
return timeZone;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see org.apache.commons.lang3.time.DateParser#getLocale()
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Locale getLocale() {
|
||||||
|
return locale;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the generated pattern (for testing purposes).
|
||||||
|
*
|
||||||
|
* @return the generated pattern
|
||||||
|
*/
|
||||||
|
Pattern getParsePattern() {
|
||||||
|
return parsePattern;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Basics
|
||||||
|
//-----------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Compare another object for equality with this object.</p>
|
||||||
|
*
|
||||||
|
* @param obj the object to compare to
|
||||||
|
* @return <code>true</code>if equal to this instance
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public boolean equals(final Object obj) {
|
||||||
|
if (!(obj instanceof FastDateParser)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
final FastDateParser other = (FastDateParser) obj;
|
||||||
|
return pattern.equals(other.pattern)
|
||||||
|
&& timeZone.equals(other.timeZone)
|
||||||
|
&& locale.equals(other.locale);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Return a hashcode compatible with equals.</p>
|
||||||
|
*
|
||||||
|
* @return a hashcode compatible with equals
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public int hashCode() {
|
||||||
|
return pattern.hashCode() + 13 * (timeZone.hashCode() + 13 * locale.hashCode());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Get a string version of this formatter.</p>
|
||||||
|
*
|
||||||
|
* @return a debugging string
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "FastDateParser[" + pattern + "," + locale + "," + timeZone.getID() + "]";
|
||||||
|
}
|
||||||
|
|
||||||
|
// Serializing
|
||||||
|
//-----------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create the object after serialization. This implementation reinitializes the
|
||||||
|
* transient properties.
|
||||||
|
*
|
||||||
|
* @param in ObjectInputStream from which the object is being deserialized.
|
||||||
|
* @throws IOException if there is an IO issue.
|
||||||
|
* @throws ClassNotFoundException if a class cannot be found.
|
||||||
|
*/
|
||||||
|
private void readObject(final ObjectInputStream in) throws IOException, ClassNotFoundException {
|
||||||
|
in.defaultReadObject();
|
||||||
|
|
||||||
|
final Calendar definingCalendar = Calendar.getInstance(timeZone, locale);
|
||||||
|
init(definingCalendar);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see org.apache.commons.lang3.time.DateParser#parseObject(java.lang.String)
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Object parseObject(final String source) throws ParseException {
|
||||||
|
return parse(source);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see org.apache.commons.lang3.time.DateParser#parse(java.lang.String)
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Date parse(final String source) throws ParseException {
|
||||||
|
final Date date = parse(source, new ParsePosition(0));
|
||||||
|
if (date == null) {
|
||||||
|
// Add a note re supported date range
|
||||||
|
if (locale.equals(JAPANESE_IMPERIAL)) {
|
||||||
|
throw new ParseException(
|
||||||
|
"(The " + locale + " locale does not support dates before 1868 AD)\n" +
|
||||||
|
"Unparseable date: \"" + source + "\" does not match " + parsePattern.pattern(), 0);
|
||||||
|
}
|
||||||
|
throw new ParseException("Unparseable date: \"" + source + "\" does not match " + parsePattern.pattern(), 0);
|
||||||
|
}
|
||||||
|
return date;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see org.apache.commons.lang3.time.DateParser#parseObject(java.lang.String, java.text.ParsePosition)
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Object parseObject(final String source, final ParsePosition pos) {
|
||||||
|
return parse(source, pos);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see org.apache.commons.lang3.time.DateParser#parse(java.lang.String, java.text.ParsePosition)
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Date parse(final String source, final ParsePosition pos) {
|
||||||
|
final int offset = pos.getIndex();
|
||||||
|
final Matcher matcher = parsePattern.matcher(source.substring(offset));
|
||||||
|
if (!matcher.lookingAt()) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
// timing tests indicate getting new instance is 19% faster than cloning
|
||||||
|
final Calendar cal = Calendar.getInstance(timeZone, locale);
|
||||||
|
cal.clear();
|
||||||
|
|
||||||
|
for (int i = 0; i < strategies.length; ) {
|
||||||
|
final Strategy strategy = strategies[i++];
|
||||||
|
strategy.setCalendar(this, cal, matcher.group(i));
|
||||||
|
}
|
||||||
|
pos.setIndex(offset + matcher.end());
|
||||||
|
return cal.getTime();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Support for strategies
|
||||||
|
//-----------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Escape constant fields into regular expression
|
||||||
|
*
|
||||||
|
* @param regex The destination regex
|
||||||
|
* @param value The source field
|
||||||
|
* @param unquote If true, replace two success quotes ('') with single quote (')
|
||||||
|
* @return The <code>StringBuilder</code>
|
||||||
|
*/
|
||||||
|
private static StringBuilder escapeRegex(final StringBuilder regex, final String value, final boolean unquote) {
|
||||||
|
regex.append("\\Q");
|
||||||
|
for (int i = 0; i < value.length(); ++i) {
|
||||||
|
char c = value.charAt(i);
|
||||||
|
switch (c) {
|
||||||
|
case '\'':
|
||||||
|
if (unquote) {
|
||||||
|
if (++i == value.length()) {
|
||||||
|
return regex;
|
||||||
|
}
|
||||||
|
c = value.charAt(i);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case '\\':
|
||||||
|
if (++i == value.length()) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
* If we have found \E, we replace it with \E\\E\Q, i.e. we stop the quoting,
|
||||||
|
* quote the \ in \E, then restart the quoting.
|
||||||
|
*
|
||||||
|
* Otherwise we just output the two characters.
|
||||||
|
* In each case the initial \ needs to be output and the final char is done at the end
|
||||||
|
*/
|
||||||
|
regex.append(c); // we always want the original \
|
||||||
|
c = value.charAt(i); // Is it followed by E ?
|
||||||
|
if (c == 'E') { // \E detected
|
||||||
|
regex.append("E\\\\E\\"); // see comment above
|
||||||
|
c = 'Q'; // appended below
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
regex.append(c);
|
||||||
|
}
|
||||||
|
regex.append("\\E");
|
||||||
|
return regex;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static String[] getDisplayNameArray(int field, boolean isLong, Locale locale) {
|
||||||
|
DateFormatSymbols dfs = new DateFormatSymbols(locale);
|
||||||
|
switch (field) {
|
||||||
|
case Calendar.AM_PM:
|
||||||
|
return dfs.getAmPmStrings();
|
||||||
|
case Calendar.DAY_OF_WEEK:
|
||||||
|
return isLong ? dfs.getWeekdays() : dfs.getShortWeekdays();
|
||||||
|
case Calendar.ERA:
|
||||||
|
return dfs.getEras();
|
||||||
|
case Calendar.MONTH:
|
||||||
|
return isLong ? dfs.getMonths() : dfs.getShortMonths();
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void insertValuesInMap(Map<String, Integer> map, String[] values) {
|
||||||
|
if (values == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
for (int i = 0; i < values.length; ++i) {
|
||||||
|
if (values[i] != null && values[i].length() > 0) {
|
||||||
|
map.put(values[i], i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static Map<String, Integer> getDisplayNames(int field, Locale locale) {
|
||||||
|
Map<String, Integer> result = new HashMap<String, Integer>();
|
||||||
|
insertValuesInMap(result, getDisplayNameArray(field, false, locale));
|
||||||
|
insertValuesInMap(result, getDisplayNameArray(field, true, locale));
|
||||||
|
return result.isEmpty() ? null : result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the short and long values displayed for a field
|
||||||
|
*
|
||||||
|
* @param field The field of interest
|
||||||
|
* @param definingCalendar The calendar to obtain the short and long values
|
||||||
|
* @param locale The locale of display names
|
||||||
|
* @return A Map of the field key / value pairs
|
||||||
|
*/
|
||||||
|
private static Map<String, Integer> getDisplayNames(final int field, final Calendar definingCalendar, final Locale locale) {
|
||||||
|
return getDisplayNames(field, locale);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Adjust dates to be within appropriate century
|
||||||
|
*
|
||||||
|
* @param twoDigitYear The year to adjust
|
||||||
|
* @return A value between centuryStart(inclusive) to centuryStart+100(exclusive)
|
||||||
|
*/
|
||||||
|
private int adjustYear(final int twoDigitYear) {
|
||||||
|
int trial = century + twoDigitYear;
|
||||||
|
return twoDigitYear >= startYear ? trial : trial + 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Is the next field a number?
|
||||||
|
*
|
||||||
|
* @return true, if next field will be a number
|
||||||
|
*/
|
||||||
|
boolean isNextNumber() {
|
||||||
|
return nextStrategy != null && nextStrategy.isNumber();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* What is the width of the current field?
|
||||||
|
*
|
||||||
|
* @return The number of characters in the current format field
|
||||||
|
*/
|
||||||
|
int getFieldWidth() {
|
||||||
|
return currentFormatField.length();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A strategy to parse a single field from the parsing pattern
|
||||||
|
*/
|
||||||
|
private static abstract class Strategy {
|
||||||
|
/**
|
||||||
|
* Is this field a number?
|
||||||
|
* The default implementation returns false.
|
||||||
|
*
|
||||||
|
* @return true, if field is a number
|
||||||
|
*/
|
||||||
|
boolean isNumber() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the Calendar with the parsed field.
|
||||||
|
* <p/>
|
||||||
|
* The default implementation does nothing.
|
||||||
|
*
|
||||||
|
* @param parser The parser calling this strategy
|
||||||
|
* @param cal The <code>Calendar</code> to set
|
||||||
|
* @param value The parsed field to translate and set in cal
|
||||||
|
*/
|
||||||
|
void setCalendar(final FastDateParser parser, final Calendar cal, final String value) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generate a <code>Pattern</code> regular expression to the <code>StringBuilder</code>
|
||||||
|
* which will accept this field
|
||||||
|
*
|
||||||
|
* @param parser The parser calling this strategy
|
||||||
|
* @param regex The <code>StringBuilder</code> to append to
|
||||||
|
* @return true, if this field will set the calendar;
|
||||||
|
* false, if this field is a constant value
|
||||||
|
*/
|
||||||
|
abstract boolean addRegex(FastDateParser parser, StringBuilder regex);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A <code>Pattern</code> to parse the user supplied SimpleDateFormat pattern
|
||||||
|
*/
|
||||||
|
private static final Pattern formatPattern = Pattern.compile(
|
||||||
|
"D+|E+|F+|G+|H+|K+|M+|L+|S+|W+|Z+|a+|d+|h+|k+|m+|s+|w+|y+|z+|''|'[^']++(''[^']*+)*+'|[^'A-Za-z]++");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Obtain a Strategy given a field from a SimpleDateFormat pattern
|
||||||
|
*
|
||||||
|
* @param formatField A sub-sequence of the SimpleDateFormat pattern
|
||||||
|
* @param definingCalendar The calendar to obtain the short and long values
|
||||||
|
* @return The Strategy that will handle parsing for the field
|
||||||
|
*/
|
||||||
|
private Strategy getStrategy(final String formatField, final Calendar definingCalendar) {
|
||||||
|
switch (formatField.charAt(0)) {
|
||||||
|
case '\'':
|
||||||
|
if (formatField.length() > 2) {
|
||||||
|
return new CopyQuotedStrategy(formatField.substring(1, formatField.length() - 1));
|
||||||
|
}
|
||||||
|
//$FALL-THROUGH$
|
||||||
|
default:
|
||||||
|
return new CopyQuotedStrategy(formatField);
|
||||||
|
case 'D':
|
||||||
|
return DAY_OF_YEAR_STRATEGY;
|
||||||
|
case 'E':
|
||||||
|
return getLocaleSpecificStrategy(Calendar.DAY_OF_WEEK, definingCalendar);
|
||||||
|
case 'F':
|
||||||
|
return DAY_OF_WEEK_IN_MONTH_STRATEGY;
|
||||||
|
case 'G':
|
||||||
|
return getLocaleSpecificStrategy(Calendar.ERA, definingCalendar);
|
||||||
|
case 'H':
|
||||||
|
return MODULO_HOUR_OF_DAY_STRATEGY;
|
||||||
|
case 'K':
|
||||||
|
return HOUR_STRATEGY;
|
||||||
|
case 'M':
|
||||||
|
case 'L':
|
||||||
|
return formatField.length() >= 3 ? getLocaleSpecificStrategy(Calendar.MONTH, definingCalendar) : NUMBER_MONTH_STRATEGY;
|
||||||
|
case 'S':
|
||||||
|
return MILLISECOND_STRATEGY;
|
||||||
|
case 'W':
|
||||||
|
return WEEK_OF_MONTH_STRATEGY;
|
||||||
|
case 'a':
|
||||||
|
return getLocaleSpecificStrategy(Calendar.AM_PM, definingCalendar);
|
||||||
|
case 'd':
|
||||||
|
return DAY_OF_MONTH_STRATEGY;
|
||||||
|
case 'h':
|
||||||
|
return MODULO_HOUR_STRATEGY;
|
||||||
|
case 'k':
|
||||||
|
return HOUR_OF_DAY_STRATEGY;
|
||||||
|
case 'm':
|
||||||
|
return MINUTE_STRATEGY;
|
||||||
|
case 's':
|
||||||
|
return SECOND_STRATEGY;
|
||||||
|
case 'w':
|
||||||
|
return WEEK_OF_YEAR_STRATEGY;
|
||||||
|
case 'y':
|
||||||
|
return formatField.length() > 2 ? LITERAL_YEAR_STRATEGY : ABBREVIATED_YEAR_STRATEGY;
|
||||||
|
case 'Z':
|
||||||
|
case 'z':
|
||||||
|
return getLocaleSpecificStrategy(Calendar.ZONE_OFFSET, definingCalendar);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("unchecked") // OK because we are creating an array with no entries
|
||||||
|
private static final ConcurrentMap<Locale, Strategy>[] caches = new ConcurrentMap[Calendar.FIELD_COUNT];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get a cache of Strategies for a particular field
|
||||||
|
*
|
||||||
|
* @param field The Calendar field
|
||||||
|
* @return a cache of Locale to Strategy
|
||||||
|
*/
|
||||||
|
private static ConcurrentMap<Locale, Strategy> getCache(final int field) {
|
||||||
|
synchronized (caches) {
|
||||||
|
if (caches[field] == null) {
|
||||||
|
caches[field] = new ConcurrentHashMap<Locale, Strategy>(3);
|
||||||
|
}
|
||||||
|
return caches[field];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Construct a Strategy that parses a Text field
|
||||||
|
*
|
||||||
|
* @param field The Calendar field
|
||||||
|
* @param definingCalendar The calendar to obtain the short and long values
|
||||||
|
* @return a TextStrategy for the field and Locale
|
||||||
|
*/
|
||||||
|
private Strategy getLocaleSpecificStrategy(final int field, final Calendar definingCalendar) {
|
||||||
|
final ConcurrentMap<Locale, Strategy> cache = getCache(field);
|
||||||
|
Strategy strategy = cache.get(locale);
|
||||||
|
if (strategy == null) {
|
||||||
|
strategy = field == Calendar.ZONE_OFFSET
|
||||||
|
? new TimeZoneStrategy(locale)
|
||||||
|
: new TextStrategy(field, definingCalendar, locale);
|
||||||
|
final Strategy inCache = cache.putIfAbsent(locale, strategy);
|
||||||
|
if (inCache != null) {
|
||||||
|
return inCache;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return strategy;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A strategy that copies the static or quoted field in the parsing pattern
|
||||||
|
*/
|
||||||
|
private static class CopyQuotedStrategy extends Strategy {
|
||||||
|
private final String formatField;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Construct a Strategy that ensures the formatField has literal text
|
||||||
|
*
|
||||||
|
* @param formatField The literal text to match
|
||||||
|
*/
|
||||||
|
CopyQuotedStrategy(final String formatField) {
|
||||||
|
this.formatField = formatField;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
boolean isNumber() {
|
||||||
|
char c = formatField.charAt(0);
|
||||||
|
if (c == '\'') {
|
||||||
|
c = formatField.charAt(1);
|
||||||
|
}
|
||||||
|
return Character.isDigit(c);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
boolean addRegex(final FastDateParser parser, final StringBuilder regex) {
|
||||||
|
escapeRegex(regex, formatField, true);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A strategy that handles a text field in the parsing pattern
|
||||||
|
*/
|
||||||
|
private static class TextStrategy extends Strategy {
|
||||||
|
private final int field;
|
||||||
|
private final Map<String, Integer> keyValues;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Construct a Strategy that parses a Text field
|
||||||
|
*
|
||||||
|
* @param field The Calendar field
|
||||||
|
* @param definingCalendar The Calendar to use
|
||||||
|
* @param locale The Locale to use
|
||||||
|
*/
|
||||||
|
TextStrategy(final int field, final Calendar definingCalendar, final Locale locale) {
|
||||||
|
this.field = field;
|
||||||
|
this.keyValues = getDisplayNames(field, definingCalendar, locale);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
boolean addRegex(final FastDateParser parser, final StringBuilder regex) {
|
||||||
|
regex.append('(');
|
||||||
|
for (final String textKeyValue : keyValues.keySet()) {
|
||||||
|
escapeRegex(regex, textKeyValue, false).append('|');
|
||||||
|
}
|
||||||
|
regex.setCharAt(regex.length() - 1, ')');
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
void setCalendar(final FastDateParser parser, final Calendar cal, final String value) {
|
||||||
|
final Integer iVal = keyValues.get(value);
|
||||||
|
if (iVal == null) {
|
||||||
|
final StringBuilder sb = new StringBuilder(value);
|
||||||
|
sb.append(" not in (");
|
||||||
|
for (final String textKeyValue : keyValues.keySet()) {
|
||||||
|
sb.append(textKeyValue).append(' ');
|
||||||
|
}
|
||||||
|
sb.setCharAt(sb.length() - 1, ')');
|
||||||
|
throw new IllegalArgumentException(sb.toString());
|
||||||
|
}
|
||||||
|
cal.set(field, iVal.intValue());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A strategy that handles a number field in the parsing pattern
|
||||||
|
*/
|
||||||
|
private static class NumberStrategy extends Strategy {
|
||||||
|
private final int field;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Construct a Strategy that parses a Number field
|
||||||
|
*
|
||||||
|
* @param field The Calendar field
|
||||||
|
*/
|
||||||
|
NumberStrategy(final int field) {
|
||||||
|
this.field = field;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
boolean isNumber() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
boolean addRegex(final FastDateParser parser, final StringBuilder regex) {
|
||||||
|
// See LANG-954: We use {Nd} rather than {IsNd} because Android does not support the Is prefix
|
||||||
|
if (parser.isNextNumber()) {
|
||||||
|
regex.append("(\\p{Nd}{").append(parser.getFieldWidth()).append("}+)");
|
||||||
|
} else {
|
||||||
|
regex.append("(\\p{Nd}++)");
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
void setCalendar(final FastDateParser parser, final Calendar cal, final String value) {
|
||||||
|
cal.set(field, modify(Integer.parseInt(value)));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Make any modifications to parsed integer
|
||||||
|
*
|
||||||
|
* @param iValue The parsed integer
|
||||||
|
* @return The modified value
|
||||||
|
*/
|
||||||
|
int modify(final int iValue) {
|
||||||
|
return iValue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static final Strategy ABBREVIATED_YEAR_STRATEGY = new NumberStrategy(Calendar.YEAR) {
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
void setCalendar(final FastDateParser parser, final Calendar cal, final String value) {
|
||||||
|
int iValue = Integer.parseInt(value);
|
||||||
|
if (iValue < 100) {
|
||||||
|
iValue = parser.adjustYear(iValue);
|
||||||
|
}
|
||||||
|
cal.set(Calendar.YEAR, iValue);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A strategy that handles a timezone field in the parsing pattern
|
||||||
|
*/
|
||||||
|
private static class TimeZoneStrategy extends Strategy {
|
||||||
|
|
||||||
|
private final String validTimeZoneChars;
|
||||||
|
private final SortedMap<String, TimeZone> tzNames = new TreeMap<String, TimeZone>(String.CASE_INSENSITIVE_ORDER);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Index of zone id
|
||||||
|
*/
|
||||||
|
private static final int ID = 0;
|
||||||
|
/**
|
||||||
|
* Index of the long name of zone in standard time
|
||||||
|
*/
|
||||||
|
private static final int LONG_STD = 1;
|
||||||
|
/**
|
||||||
|
* Index of the short name of zone in standard time
|
||||||
|
*/
|
||||||
|
private static final int SHORT_STD = 2;
|
||||||
|
/**
|
||||||
|
* Index of the long name of zone in daylight saving time
|
||||||
|
*/
|
||||||
|
private static final int LONG_DST = 3;
|
||||||
|
/**
|
||||||
|
* Index of the short name of zone in daylight saving time
|
||||||
|
*/
|
||||||
|
private static final int SHORT_DST = 4;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Construct a Strategy that parses a TimeZone
|
||||||
|
*
|
||||||
|
* @param locale The Locale
|
||||||
|
*/
|
||||||
|
TimeZoneStrategy(final Locale locale) {
|
||||||
|
final String[][] zones = DateFormatSymbols.getInstance(locale).getZoneStrings();
|
||||||
|
for (String[] zone : zones) {
|
||||||
|
if (zone[ID].startsWith("GMT")) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
final TimeZone tz = TimeZone.getTimeZone(zone[ID]);
|
||||||
|
if (!tzNames.containsKey(zone[LONG_STD])) {
|
||||||
|
tzNames.put(zone[LONG_STD], tz);
|
||||||
|
}
|
||||||
|
if (!tzNames.containsKey(zone[SHORT_STD])) {
|
||||||
|
tzNames.put(zone[SHORT_STD], tz);
|
||||||
|
}
|
||||||
|
if (tz.useDaylightTime()) {
|
||||||
|
if (!tzNames.containsKey(zone[LONG_DST])) {
|
||||||
|
tzNames.put(zone[LONG_DST], tz);
|
||||||
|
}
|
||||||
|
if (!tzNames.containsKey(zone[SHORT_DST])) {
|
||||||
|
tzNames.put(zone[SHORT_DST], tz);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
final StringBuilder sb = new StringBuilder();
|
||||||
|
sb.append("(GMT[+\\-]\\d{0,1}\\d{2}|[+\\-]\\d{2}:?\\d{2}|");
|
||||||
|
for (final String id : tzNames.keySet()) {
|
||||||
|
escapeRegex(sb, id, false).append('|');
|
||||||
|
}
|
||||||
|
sb.setCharAt(sb.length() - 1, ')');
|
||||||
|
validTimeZoneChars = sb.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
boolean addRegex(final FastDateParser parser, final StringBuilder regex) {
|
||||||
|
regex.append(validTimeZoneChars);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
void setCalendar(final FastDateParser parser, final Calendar cal, final String value) {
|
||||||
|
TimeZone tz;
|
||||||
|
if (value.charAt(0) == '+' || value.charAt(0) == '-') {
|
||||||
|
tz = TimeZone.getTimeZone("GMT" + value);
|
||||||
|
} else if (value.startsWith("GMT")) {
|
||||||
|
tz = TimeZone.getTimeZone(value);
|
||||||
|
} else {
|
||||||
|
tz = tzNames.get(value);
|
||||||
|
if (tz == null) {
|
||||||
|
throw new IllegalArgumentException(value + " is not a supported timezone name");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
cal.setTimeZone(tz);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static final Strategy NUMBER_MONTH_STRATEGY = new NumberStrategy(Calendar.MONTH) {
|
||||||
|
@Override
|
||||||
|
int modify(final int iValue) {
|
||||||
|
return iValue - 1;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
private static final Strategy LITERAL_YEAR_STRATEGY = new NumberStrategy(Calendar.YEAR);
|
||||||
|
private static final Strategy WEEK_OF_YEAR_STRATEGY = new NumberStrategy(Calendar.WEEK_OF_YEAR);
|
||||||
|
private static final Strategy WEEK_OF_MONTH_STRATEGY = new NumberStrategy(Calendar.WEEK_OF_MONTH);
|
||||||
|
private static final Strategy DAY_OF_YEAR_STRATEGY = new NumberStrategy(Calendar.DAY_OF_YEAR);
|
||||||
|
private static final Strategy DAY_OF_MONTH_STRATEGY = new NumberStrategy(Calendar.DAY_OF_MONTH);
|
||||||
|
private static final Strategy DAY_OF_WEEK_IN_MONTH_STRATEGY = new NumberStrategy(Calendar.DAY_OF_WEEK_IN_MONTH);
|
||||||
|
private static final Strategy HOUR_OF_DAY_STRATEGY = new NumberStrategy(Calendar.HOUR_OF_DAY);
|
||||||
|
private static final Strategy MODULO_HOUR_OF_DAY_STRATEGY = new NumberStrategy(Calendar.HOUR_OF_DAY) {
|
||||||
|
@Override
|
||||||
|
int modify(final int iValue) {
|
||||||
|
return iValue % 24;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
private static final Strategy MODULO_HOUR_STRATEGY = new NumberStrategy(Calendar.HOUR) {
|
||||||
|
@Override
|
||||||
|
int modify(final int iValue) {
|
||||||
|
return iValue % 12;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
private static final Strategy HOUR_STRATEGY = new NumberStrategy(Calendar.HOUR);
|
||||||
|
private static final Strategy MINUTE_STRATEGY = new NumberStrategy(Calendar.MINUTE);
|
||||||
|
private static final Strategy SECOND_STRATEGY = new NumberStrategy(Calendar.SECOND);
|
||||||
|
private static final Strategy MILLISECOND_STRATEGY = new NumberStrategy(Calendar.MILLISECOND);
|
||||||
|
}
|
@ -0,0 +1,267 @@
|
|||||||
|
/*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
|
* contributor license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright ownership.
|
||||||
|
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||||
|
* (the "License"); you may not use this file except in compliance with
|
||||||
|
* the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
package io.github.chronosx88.radium.utils.time;
|
||||||
|
|
||||||
|
import java.text.DateFormat;
|
||||||
|
import java.text.Format;
|
||||||
|
import java.text.SimpleDateFormat;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.Locale;
|
||||||
|
import java.util.TimeZone;
|
||||||
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
|
import java.util.concurrent.ConcurrentMap;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>FormatCache is a cache and factory for {@link Format}s.</p>
|
||||||
|
*
|
||||||
|
* @since 3.0
|
||||||
|
* @version $Id: FormatCache 892161 2009-12-18 07:21:10Z $
|
||||||
|
*/
|
||||||
|
// TODO: Before making public move from getDateTimeInstance(Integer,...) to int; or some other approach.
|
||||||
|
abstract class FormatCache<F extends Format> {
|
||||||
|
/**
|
||||||
|
* No date or no time. Used in same parameters as DateFormat.SHORT or DateFormat.LONG
|
||||||
|
*/
|
||||||
|
static final int NONE = -1;
|
||||||
|
|
||||||
|
private final ConcurrentMap<MultipartKey, F> cInstanceCache
|
||||||
|
= new ConcurrentHashMap<MultipartKey, F>(7);
|
||||||
|
|
||||||
|
private static final ConcurrentMap<MultipartKey, String> cDateTimeInstanceCache
|
||||||
|
= new ConcurrentHashMap<MultipartKey, String>(7);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a formatter instance using the default pattern in the
|
||||||
|
* default timezone and locale.</p>
|
||||||
|
*
|
||||||
|
* @return a date/time formatter
|
||||||
|
*/
|
||||||
|
public F getInstance() {
|
||||||
|
return getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT, TimeZone.getDefault(), Locale.getDefault());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a formatter instance using the specified pattern, time zone
|
||||||
|
* and locale.</p>
|
||||||
|
*
|
||||||
|
* @param pattern {@link java.text.SimpleDateFormat} compatible
|
||||||
|
* pattern, non-null
|
||||||
|
* @param timeZone the time zone, null means use the default TimeZone
|
||||||
|
* @param locale the locale, null means use the default Locale
|
||||||
|
* @return a pattern based date/time formatter
|
||||||
|
* @throws IllegalArgumentException if pattern is invalid
|
||||||
|
* or <code>null</code>
|
||||||
|
*/
|
||||||
|
public F getInstance(final String pattern, TimeZone timeZone, Locale locale) {
|
||||||
|
if (pattern == null) {
|
||||||
|
throw new NullPointerException("pattern must not be null");
|
||||||
|
}
|
||||||
|
if (timeZone == null) {
|
||||||
|
timeZone = TimeZone.getDefault();
|
||||||
|
}
|
||||||
|
if (locale == null) {
|
||||||
|
locale = Locale.getDefault();
|
||||||
|
}
|
||||||
|
final MultipartKey key = new MultipartKey(pattern, timeZone, locale);
|
||||||
|
F format = cInstanceCache.get(key);
|
||||||
|
if (format == null) {
|
||||||
|
format = createInstance(pattern, timeZone, locale);
|
||||||
|
final F previousValue = cInstanceCache.putIfAbsent(key, format);
|
||||||
|
if (previousValue != null) {
|
||||||
|
// another thread snuck in and did the same work
|
||||||
|
// we should return the instance that is in ConcurrentMap
|
||||||
|
format = previousValue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return format;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Create a format instance using the specified pattern, time zone
|
||||||
|
* and locale.</p>
|
||||||
|
*
|
||||||
|
* @param pattern {@link java.text.SimpleDateFormat} compatible pattern, this will not be null.
|
||||||
|
* @param timeZone time zone, this will not be null.
|
||||||
|
* @param locale locale, this will not be null.
|
||||||
|
* @return a pattern based date/time formatter
|
||||||
|
* @throws IllegalArgumentException if pattern is invalid
|
||||||
|
* or <code>null</code>
|
||||||
|
*/
|
||||||
|
abstract protected F createInstance(String pattern, TimeZone timeZone, Locale locale);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a date/time formatter instance using the specified style,
|
||||||
|
* time zone and locale.</p>
|
||||||
|
*
|
||||||
|
* @param dateStyle date style: FULL, LONG, MEDIUM, or SHORT, null indicates no date in format
|
||||||
|
* @param timeStyle time style: FULL, LONG, MEDIUM, or SHORT, null indicates no time in format
|
||||||
|
* @param timeZone optional time zone, overrides time zone of
|
||||||
|
* formatted date, null means use default Locale
|
||||||
|
* @param locale optional locale, overrides system locale
|
||||||
|
* @return a localized standard date/time formatter
|
||||||
|
* @throws IllegalArgumentException if the Locale has no date/time
|
||||||
|
* pattern defined
|
||||||
|
*/
|
||||||
|
// This must remain private, see LANG-884
|
||||||
|
private F getDateTimeInstance(final Integer dateStyle, final Integer timeStyle, final TimeZone timeZone, Locale locale) {
|
||||||
|
if (locale == null) {
|
||||||
|
locale = Locale.getDefault();
|
||||||
|
}
|
||||||
|
final String pattern = getPatternForStyle(dateStyle, timeStyle, locale);
|
||||||
|
return getInstance(pattern, timeZone, locale);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a date/time formatter instance using the specified style,
|
||||||
|
* time zone and locale.</p>
|
||||||
|
*
|
||||||
|
* @param dateStyle date style: FULL, LONG, MEDIUM, or SHORT
|
||||||
|
* @param timeStyle time style: FULL, LONG, MEDIUM, or SHORT
|
||||||
|
* @param timeZone optional time zone, overrides time zone of
|
||||||
|
* formatted date, null means use default Locale
|
||||||
|
* @param locale optional locale, overrides system locale
|
||||||
|
* @return a localized standard date/time formatter
|
||||||
|
* @throws IllegalArgumentException if the Locale has no date/time
|
||||||
|
* pattern defined
|
||||||
|
*/
|
||||||
|
// package protected, for access from FastDateFormat; do not make public or protected
|
||||||
|
F getDateTimeInstance(final int dateStyle, final int timeStyle, final TimeZone timeZone, Locale locale) {
|
||||||
|
return getDateTimeInstance(Integer.valueOf(dateStyle), Integer.valueOf(timeStyle), timeZone, locale);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a date formatter instance using the specified style,
|
||||||
|
* time zone and locale.</p>
|
||||||
|
*
|
||||||
|
* @param dateStyle date style: FULL, LONG, MEDIUM, or SHORT
|
||||||
|
* @param timeZone optional time zone, overrides time zone of
|
||||||
|
* formatted date, null means use default Locale
|
||||||
|
* @param locale optional locale, overrides system locale
|
||||||
|
* @return a localized standard date/time formatter
|
||||||
|
* @throws IllegalArgumentException if the Locale has no date/time
|
||||||
|
* pattern defined
|
||||||
|
*/
|
||||||
|
// package protected, for access from FastDateFormat; do not make public or protected
|
||||||
|
F getDateInstance(final int dateStyle, final TimeZone timeZone, Locale locale) {
|
||||||
|
return getDateTimeInstance(Integer.valueOf(dateStyle), null, timeZone, locale);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a time formatter instance using the specified style,
|
||||||
|
* time zone and locale.</p>
|
||||||
|
*
|
||||||
|
* @param timeStyle time style: FULL, LONG, MEDIUM, or SHORT
|
||||||
|
* @param timeZone optional time zone, overrides time zone of
|
||||||
|
* formatted date, null means use default Locale
|
||||||
|
* @param locale optional locale, overrides system locale
|
||||||
|
* @return a localized standard date/time formatter
|
||||||
|
* @throws IllegalArgumentException if the Locale has no date/time
|
||||||
|
* pattern defined
|
||||||
|
*/
|
||||||
|
// package protected, for access from FastDateFormat; do not make public or protected
|
||||||
|
F getTimeInstance(final int timeStyle, final TimeZone timeZone, Locale locale) {
|
||||||
|
return getDateTimeInstance(null, Integer.valueOf(timeStyle), timeZone, locale);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Gets a date/time format for the specified styles and locale.</p>
|
||||||
|
*
|
||||||
|
* @param dateStyle date style: FULL, LONG, MEDIUM, or SHORT, null indicates no date in format
|
||||||
|
* @param timeStyle time style: FULL, LONG, MEDIUM, or SHORT, null indicates no time in format
|
||||||
|
* @param locale The non-null locale of the desired format
|
||||||
|
* @return a localized standard date/time format
|
||||||
|
* @throws IllegalArgumentException if the Locale has no date/time pattern defined
|
||||||
|
*/
|
||||||
|
// package protected, for access from test code; do not make public or protected
|
||||||
|
static String getPatternForStyle(final Integer dateStyle, final Integer timeStyle, final Locale locale) {
|
||||||
|
final MultipartKey key = new MultipartKey(dateStyle, timeStyle, locale);
|
||||||
|
|
||||||
|
String pattern = cDateTimeInstanceCache.get(key);
|
||||||
|
if (pattern == null) {
|
||||||
|
try {
|
||||||
|
DateFormat formatter;
|
||||||
|
if (dateStyle == null) {
|
||||||
|
formatter = DateFormat.getTimeInstance(timeStyle.intValue(), locale);
|
||||||
|
} else if (timeStyle == null) {
|
||||||
|
formatter = DateFormat.getDateInstance(dateStyle.intValue(), locale);
|
||||||
|
} else {
|
||||||
|
formatter = DateFormat.getDateTimeInstance(dateStyle.intValue(), timeStyle.intValue(), locale);
|
||||||
|
}
|
||||||
|
pattern = ((SimpleDateFormat) formatter).toPattern();
|
||||||
|
final String previous = cDateTimeInstanceCache.putIfAbsent(key, pattern);
|
||||||
|
if (previous != null) {
|
||||||
|
// even though it doesn't matter if another thread put the pattern
|
||||||
|
// it's still good practice to return the String instance that is
|
||||||
|
// actually in the ConcurrentMap
|
||||||
|
pattern = previous;
|
||||||
|
}
|
||||||
|
} catch (final ClassCastException ex) {
|
||||||
|
throw new IllegalArgumentException("No date time pattern for locale: " + locale);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return pattern;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Helper class to hold multi-part Map keys</p>
|
||||||
|
*/
|
||||||
|
private static class MultipartKey {
|
||||||
|
private final Object[] keys;
|
||||||
|
private int hashCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs an instance of <code>MultipartKey</code> to hold the specified objects.
|
||||||
|
*
|
||||||
|
* @param keys the set of objects that make up the key. Each key may be null.
|
||||||
|
*/
|
||||||
|
public MultipartKey(final Object... keys) {
|
||||||
|
this.keys = keys;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public boolean equals(final Object obj) {
|
||||||
|
// Eliminate the usual boilerplate because
|
||||||
|
// this inner static class is only used in a generic ConcurrentHashMap
|
||||||
|
// which will not compare against other Object types
|
||||||
|
return Arrays.equals(keys, ((MultipartKey) obj).keys);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public int hashCode() {
|
||||||
|
if (hashCode == 0) {
|
||||||
|
int rc = 0;
|
||||||
|
for (final Object key : keys) {
|
||||||
|
if (key != null) {
|
||||||
|
rc = rc * 7 + key.hashCode();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
hashCode = rc;
|
||||||
|
}
|
||||||
|
return hashCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,87 @@
|
|||||||
|
/*
|
||||||
|
* This is the source code of Telegram for Android v. 1.3.x.
|
||||||
|
* It is licensed under GNU GPL v. 2 or later.
|
||||||
|
* You should have received a copy of the license in this archive (see LICENSE).
|
||||||
|
*
|
||||||
|
* Copyright Nikolai Kudashov, 2013-2018.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package io.github.chronosx88.radium.utils.time
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import android.text.format.DateFormat
|
||||||
|
import android.util.Log
|
||||||
|
import io.github.chronosx88.radium.R
|
||||||
|
import java.util.*
|
||||||
|
|
||||||
|
// NOTE kindly taken from https://github.com/DrKLO/Telegram
|
||||||
|
object LocaleUtils {
|
||||||
|
private lateinit var formatterDay: FastDateFormat
|
||||||
|
private lateinit var formatterWeek: FastDateFormat
|
||||||
|
private lateinit var formatterDayMonth: FastDateFormat
|
||||||
|
private lateinit var formatterYear: FastDateFormat
|
||||||
|
|
||||||
|
fun initFormatters(context: Context) {
|
||||||
|
val locale = Locale.getDefault();
|
||||||
|
val lang = locale.language.toLowerCase()
|
||||||
|
formatterDayMonth = createFormatter(
|
||||||
|
locale,
|
||||||
|
context.getString(R.string.formatterMonth),
|
||||||
|
"dd MMM"
|
||||||
|
)
|
||||||
|
formatterYear = createFormatter(
|
||||||
|
locale,
|
||||||
|
context.getString(R.string.formatterYear),
|
||||||
|
"dd.MM.yy"
|
||||||
|
)
|
||||||
|
formatterWeek = createFormatter(
|
||||||
|
locale,
|
||||||
|
context.getString(R.string.formatterWeek),
|
||||||
|
"EEE"
|
||||||
|
)
|
||||||
|
formatterDay = createFormatter(
|
||||||
|
if (lang.equals("ar") || lang.equals("ko")) locale else Locale.US,
|
||||||
|
if (DateFormat.is24HourFormat(context)) context.getString(R.string.formatterDay24H) else context.getString(R.string.formatterDay12H),
|
||||||
|
if (DateFormat.is24HourFormat(context)) "HH:mm" else "h:mm a"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun createFormatter(
|
||||||
|
locale: Locale,
|
||||||
|
format: String,
|
||||||
|
defaultFormat: String
|
||||||
|
): FastDateFormat {
|
||||||
|
var formatter: FastDateFormat?
|
||||||
|
try {
|
||||||
|
formatter = FastDateFormat.getInstance(format, locale)
|
||||||
|
} catch (e: java.lang.Exception) {
|
||||||
|
formatter = FastDateFormat.getInstance(defaultFormat, locale)
|
||||||
|
}
|
||||||
|
return formatter!!
|
||||||
|
}
|
||||||
|
|
||||||
|
fun stringForMessageListDate(date: Long): String? {
|
||||||
|
try {
|
||||||
|
// date *= 1000
|
||||||
|
val rightNow = Calendar.getInstance()
|
||||||
|
val day: Int = rightNow.get(Calendar.DAY_OF_YEAR)
|
||||||
|
rightNow.setTimeInMillis(date)
|
||||||
|
val dateDay: Int = rightNow.get(Calendar.DAY_OF_YEAR)
|
||||||
|
return if (Math.abs(System.currentTimeMillis() - date) >= 31536000000L) {
|
||||||
|
formatterYear.format(Date(date))
|
||||||
|
} else {
|
||||||
|
val dayDiff = dateDay - day
|
||||||
|
if (dayDiff == 0 || dayDiff == -1 && System.currentTimeMillis() - date < 60 * 60 * 8 * 1000) {
|
||||||
|
formatterDay.format(Date(date))
|
||||||
|
} else if (dayDiff > -7 && dayDiff <= -1) {
|
||||||
|
formatterWeek.format(Date(date))
|
||||||
|
} else {
|
||||||
|
formatterDayMonth.format(Date(date))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (e: Exception) {
|
||||||
|
Log.e("LOC_ERR", e.toString())
|
||||||
|
}
|
||||||
|
return "LOC_ERR"
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,152 @@
|
|||||||
|
/*
|
||||||
|
* This is the source code of Telegram for Android v. 5.x.x.
|
||||||
|
* It is licensed under GNU GPL v. 2 or later.
|
||||||
|
* You should have received a copy of the license in this archive (see LICENSE).
|
||||||
|
*
|
||||||
|
* Copyright Nikolai Kudashov, 2013-2018.
|
||||||
|
*/
|
||||||
|
package io.github.chronosx88.radium.utils.time;
|
||||||
|
|
||||||
|
import java.util.Calendar;
|
||||||
|
import java.util.TimeZone;
|
||||||
|
|
||||||
|
public class SunDate {
|
||||||
|
|
||||||
|
private static final double DEGRAD = Math.PI / 180.0;
|
||||||
|
private static final double RADEG = 180.0 / Math.PI;
|
||||||
|
private static final double INV360 = 1.0 / 360.0;
|
||||||
|
|
||||||
|
private static long days_since_2000_Jan_0(int y, int m, int d) {
|
||||||
|
return 367L * y - ((7 * (y + ((m + 9) / 12))) / 4) + ((275 * m) / 9) + d - 730530L;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static double revolution(double x) {
|
||||||
|
return x - 360.0 * Math.floor(x * INV360);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static double rev180(double x) {
|
||||||
|
return x - 360.0 * Math.floor(x * INV360 + 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static double GMST0(double d) {
|
||||||
|
return revolution((180.0 + 356.0470 + 282.9404) + (0.9856002585 + 4.70935E-5) * d);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static double sind(double x) {
|
||||||
|
return Math.sin(x * DEGRAD);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static double cosd(double x) {
|
||||||
|
return Math.cos(x * DEGRAD);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static double tand(double x) {
|
||||||
|
return Math.tan(x * DEGRAD);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static double acosd(double x) {
|
||||||
|
return RADEG * Math.acos(x);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static double atan2d(double y, double x) {
|
||||||
|
return RADEG * Math.atan2(y, x);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void sunposAtDay(double p, double[] ot, double[] d) {
|
||||||
|
double S, a, V, l, k, i;
|
||||||
|
|
||||||
|
S = revolution(356.0470 + 0.9856002585 * p);
|
||||||
|
l = 282.9404 + 4.70935E-5 * p;
|
||||||
|
a = 0.016709 - 1.151E-9 * p;
|
||||||
|
|
||||||
|
V = a * RADEG * sind(S) * (1.0 + a * cosd(S)) + S;
|
||||||
|
k = cosd(V) - a;
|
||||||
|
|
||||||
|
i = Math.sqrt(1.0 - a * a) * sind(V);
|
||||||
|
d[0] = Math.sqrt(k * k + i * i);
|
||||||
|
i = atan2d(i, k);
|
||||||
|
ot[0] = i + l;
|
||||||
|
if (ot[0] >= 360.0) {
|
||||||
|
ot[0] -= 360.0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void sun_RA_decAtDay(double d, double[] RA, double[] dec, double[] r) {
|
||||||
|
double[] lon = new double[1];
|
||||||
|
double obl_ecl;
|
||||||
|
double xs, ys;
|
||||||
|
double xe, ye, ze;
|
||||||
|
|
||||||
|
sunposAtDay(d, lon, r);
|
||||||
|
|
||||||
|
xs = r[0] * cosd(lon[0]);
|
||||||
|
ys = r[0] * sind(lon[0]);
|
||||||
|
|
||||||
|
obl_ecl = 23.4393 - 3.563E-7 * d;
|
||||||
|
|
||||||
|
xe = xs;
|
||||||
|
ye = ys * cosd(obl_ecl);
|
||||||
|
ze = ys * sind(obl_ecl);
|
||||||
|
|
||||||
|
RA[0] = atan2d(ye, xe);
|
||||||
|
dec[0] = atan2d(ze, Math.sqrt(xe * xe + ye * ye));
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int sunRiseSetHelperForYear(int year, int month, int day, double lon, double lat, double altit, int upper_limb, double[] sun) {
|
||||||
|
double[] sRA = new double[1];
|
||||||
|
double[] sdec = new double[1];
|
||||||
|
double[] sr = new double[1];
|
||||||
|
|
||||||
|
double d, sradius, t, tsouth, sidtime;
|
||||||
|
int rc = 0;
|
||||||
|
d = days_since_2000_Jan_0(year, month, day) + 0.5 - lon / 360.0;
|
||||||
|
sidtime = revolution(GMST0(d) + 180.0 + lon);
|
||||||
|
sun_RA_decAtDay(d, sRA, sdec, sr);
|
||||||
|
tsouth = 12.0 - rev180(sidtime - sRA[0]) / 15.0;
|
||||||
|
sradius = 0.2666 / sr[0];
|
||||||
|
if (upper_limb != 0) {
|
||||||
|
altit -= sradius;
|
||||||
|
}
|
||||||
|
|
||||||
|
double cost;
|
||||||
|
cost = (sind(altit) - sind(lat) * sind(sdec[0])) / (cosd(lat) * cosd(sdec[0]));
|
||||||
|
if (cost >= 1.0) {
|
||||||
|
rc = -1;
|
||||||
|
t = 0.0;
|
||||||
|
} else if (cost <= -1.0) {
|
||||||
|
rc = +1;
|
||||||
|
t = 12.0;
|
||||||
|
} else {
|
||||||
|
t = acosd(cost) / 15.0;
|
||||||
|
}
|
||||||
|
sun[0] = tsouth - t;
|
||||||
|
sun[1] = tsouth + t;
|
||||||
|
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int sunRiseSetForYear(int year, int month, int day, double lon, double lat, double[] sun) {
|
||||||
|
return sunRiseSetHelperForYear(year, month, day, lon, lat, (-35.0 / 60.0), 1, sun);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static int[] calculateSunriseSunset(double lat, double lon) {
|
||||||
|
Calendar calendar = Calendar.getInstance();
|
||||||
|
calendar.setTimeInMillis(System.currentTimeMillis());
|
||||||
|
double[] sun = new double[2];
|
||||||
|
sunRiseSetForYear(calendar.get(Calendar.YEAR), calendar.get(Calendar.MONTH) + 1, calendar.get(Calendar.DAY_OF_MONTH), lon, lat, sun);
|
||||||
|
int timeZoneOffset = TimeZone.getDefault().getOffset(System.currentTimeMillis()) / 1000 / 60;
|
||||||
|
int sunrise = (int) (sun[0] * 60) + timeZoneOffset;
|
||||||
|
int sunset = (int) (sun[1] * 60) + timeZoneOffset;
|
||||||
|
if (sunrise < 0) {
|
||||||
|
sunrise += 60 * 24;
|
||||||
|
} else if (sunrise > 60 * 24) {
|
||||||
|
sunrise -= 60 * 24;
|
||||||
|
}
|
||||||
|
if (sunset < 0) {
|
||||||
|
sunset += 60 * 24;
|
||||||
|
} else if (sunset > 60 * 24) {
|
||||||
|
sunset += 60 * 24;
|
||||||
|
}
|
||||||
|
return new int[] {sunrise, sunset};
|
||||||
|
}
|
||||||
|
}
|
30
app/src/main/res/drawable-v24/ic_launcher_foreground.xml
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:aapt="http://schemas.android.com/aapt"
|
||||||
|
android:width="108dp"
|
||||||
|
android:height="108dp"
|
||||||
|
android:viewportWidth="108"
|
||||||
|
android:viewportHeight="108">
|
||||||
|
<path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z">
|
||||||
|
<aapt:attr name="android:fillColor">
|
||||||
|
<gradient
|
||||||
|
android:endX="85.84757"
|
||||||
|
android:endY="92.4963"
|
||||||
|
android:startX="42.9492"
|
||||||
|
android:startY="49.59793"
|
||||||
|
android:type="linear">
|
||||||
|
<item
|
||||||
|
android:color="#44000000"
|
||||||
|
android:offset="0.0" />
|
||||||
|
<item
|
||||||
|
android:color="#00000000"
|
||||||
|
android:offset="1.0" />
|
||||||
|
</gradient>
|
||||||
|
</aapt:attr>
|
||||||
|
</path>
|
||||||
|
<path
|
||||||
|
android:fillColor="#FFFFFF"
|
||||||
|
android:fillType="nonZero"
|
||||||
|
android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z"
|
||||||
|
android:strokeWidth="1"
|
||||||
|
android:strokeColor="#00000000" />
|
||||||
|
</vector>
|
5
app/src/main/res/drawable/ic_done_all_purple_24.xml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<vector android:height="24dp" android:tint="#6200EE"
|
||||||
|
android:viewportHeight="24" android:viewportWidth="24"
|
||||||
|
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<path android:fillColor="@android:color/white" android:pathData="M18,7l-1.41,-1.41 -6.34,6.34 1.41,1.41L18,7zM22.24,5.59L11.66,16.17 7.48,12l-1.41,1.41L11.66,19l12,-12 -1.42,-1.41zM0.41,13.41L6,19l1.41,-1.41L1.83,12 0.41,13.41z"/>
|
||||||
|
</vector>
|
5
app/src/main/res/drawable/ic_done_purple_24.xml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<vector android:height="24dp" android:tint="#6200EE"
|
||||||
|
android:viewportHeight="24" android:viewportWidth="24"
|
||||||
|
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<path android:fillColor="@android:color/white" android:pathData="M9,16.2L4.8,12l-1.4,1.4L9,19 21,7l-1.4,-1.4L9,16.2z"/>
|
||||||
|
</vector>
|
10
app/src/main/res/drawable/ic_home_24.xml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="24dp"
|
||||||
|
android:height="24dp"
|
||||||
|
android:viewportWidth="24"
|
||||||
|
android:viewportHeight="24"
|
||||||
|
android:tint="?attr/colorControlNormal">
|
||||||
|
<path
|
||||||
|
android:fillColor="@android:color/white"
|
||||||
|
android:pathData="M10,20v-6h4v6h5v-8h3L12,3 2,12h3v8z"/>
|
||||||
|
</vector>
|
170
app/src/main/res/drawable/ic_launcher_background.xml
Normal file
@ -0,0 +1,170 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="108dp"
|
||||||
|
android:height="108dp"
|
||||||
|
android:viewportWidth="108"
|
||||||
|
android:viewportHeight="108">
|
||||||
|
<path
|
||||||
|
android:fillColor="#3DDC84"
|
||||||
|
android:pathData="M0,0h108v108h-108z" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M9,0L9,108"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M19,0L19,108"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M29,0L29,108"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M39,0L39,108"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M49,0L49,108"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M59,0L59,108"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M69,0L69,108"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M79,0L79,108"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M89,0L89,108"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M99,0L99,108"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,9L108,9"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,19L108,19"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,29L108,29"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,39L108,39"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,49L108,49"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,59L108,59"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,69L108,69"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,79L108,79"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,89L108,89"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,99L108,99"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M19,29L89,29"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M19,39L89,39"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M19,49L89,49"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M19,59L89,59"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M19,69L89,69"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M19,79L89,79"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M29,19L29,89"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M39,19L39,89"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M49,19L49,89"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M59,19L59,89"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M69,19L69,89"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M79,19L79,89"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
</vector>
|
10
app/src/main/res/drawable/ic_settings_24.xml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="24dp"
|
||||||
|
android:height="24dp"
|
||||||
|
android:viewportWidth="24"
|
||||||
|
android:viewportHeight="24"
|
||||||
|
android:tint="?attr/colorControlNormal">
|
||||||
|
<path
|
||||||
|
android:fillColor="@android:color/white"
|
||||||
|
android:pathData="M19.14,12.94c0.04,-0.3 0.06,-0.61 0.06,-0.94c0,-0.32 -0.02,-0.64 -0.07,-0.94l2.03,-1.58c0.18,-0.14 0.23,-0.41 0.12,-0.61l-1.92,-3.32c-0.12,-0.22 -0.37,-0.29 -0.59,-0.22l-2.39,0.96c-0.5,-0.38 -1.03,-0.7 -1.62,-0.94L14.4,2.81c-0.04,-0.24 -0.24,-0.41 -0.48,-0.41h-3.84c-0.24,0 -0.43,0.17 -0.47,0.41L9.25,5.35C8.66,5.59 8.12,5.92 7.63,6.29L5.24,5.33c-0.22,-0.08 -0.47,0 -0.59,0.22L2.74,8.87C2.62,9.08 2.66,9.34 2.86,9.48l2.03,1.58C4.84,11.36 4.8,11.69 4.8,12s0.02,0.64 0.07,0.94l-2.03,1.58c-0.18,0.14 -0.23,0.41 -0.12,0.61l1.92,3.32c0.12,0.22 0.37,0.29 0.59,0.22l2.39,-0.96c0.5,0.38 1.03,0.7 1.62,0.94l0.36,2.54c0.05,0.24 0.24,0.41 0.48,0.41h3.84c0.24,0 0.44,-0.17 0.47,-0.41l0.36,-2.54c0.59,-0.24 1.13,-0.56 1.62,-0.94l2.39,0.96c0.22,0.08 0.47,0 0.59,-0.22l1.92,-3.32c0.12,-0.22 0.07,-0.47 -0.12,-0.61L19.14,12.94zM12,15.6c-1.98,0 -3.6,-1.62 -3.6,-3.6s1.62,-3.6 3.6,-3.6s3.6,1.62 3.6,3.6S13.98,15.6 12,15.6z"/>
|
||||||
|
</vector>
|
5
app/src/main/res/drawable/ic_white_pen_24.xml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||||
|
android:viewportHeight="24" android:viewportWidth="24"
|
||||||
|
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<path android:fillColor="@android:color/white" android:pathData="M3,17.25V21h3.75L17.81,9.94l-3.75,-3.75L3,17.25zM20.71,7.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83 3.75,3.75 1.83,-1.83z"/>
|
||||||
|
</vector>
|
9
app/src/main/res/drawable/side_nav_bar.xml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:shape="rectangle">
|
||||||
|
<gradient
|
||||||
|
android:angle="135"
|
||||||
|
android:centerColor="#009688"
|
||||||
|
android:endColor="#00695C"
|
||||||
|
android:startColor="#4DB6AC"
|
||||||
|
android:type="linear" />
|
||||||
|
</shape>
|
24
app/src/main/res/layout/activity_main.xml
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:id="@+id/drawer_layout"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
|
tools:openDrawer="start">
|
||||||
|
|
||||||
|
<include
|
||||||
|
layout="@layout/app_bar_main"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent" />
|
||||||
|
|
||||||
|
<com.google.android.material.navigation.NavigationView
|
||||||
|
android:id="@+id/nav_view"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:layout_gravity="start"
|
||||||
|
android:fitsSystemWindows="true"
|
||||||
|
app:headerLayout="@layout/nav_header_main"
|
||||||
|
app:menu="@menu/activity_main_drawer" />
|
||||||
|
</androidx.drawerlayout.widget.DrawerLayout>
|
35
app/src/main/res/layout/app_bar_main.xml
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
tools:context=".ChatListActivity">
|
||||||
|
|
||||||
|
<com.google.android.material.appbar.AppBarLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:theme="@style/Theme.Radium.AppBarOverlay">
|
||||||
|
|
||||||
|
<androidx.appcompat.widget.Toolbar
|
||||||
|
android:id="@+id/toolbar"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:background="?attr/colorPrimary"
|
||||||
|
app:popupTheme="@style/Theme.Radium.PopupOverlay" />
|
||||||
|
|
||||||
|
</com.google.android.material.appbar.AppBarLayout>
|
||||||
|
|
||||||
|
<include layout="@layout/content_main" />
|
||||||
|
|
||||||
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
||||||
|
android:id="@+id/fab"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_gravity="bottom|end"
|
||||||
|
android:layout_margin="@dimen/fab_margin"
|
||||||
|
app:backgroundTint="@color/purple_500"
|
||||||
|
app:tint="@color/white"
|
||||||
|
android:src="@drawable/ic_white_pen_24" />
|
||||||
|
|
||||||
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
78
app/src/main/res/layout/chat_list_item.xml
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:background="?android:attr/selectableItemBackground"
|
||||||
|
android:clickable="true">
|
||||||
|
|
||||||
|
<de.hdodenhof.circleimageview.CircleImageView
|
||||||
|
android:id="@+id/chat_list_item_avatar"
|
||||||
|
android:layout_width="54dp"
|
||||||
|
android:layout_height="54dp"
|
||||||
|
android:layout_marginStart="8dp"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:src="@mipmap/ic_launcher"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/chat_list_item_name"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="16dp"
|
||||||
|
android:layout_marginTop="16dp"
|
||||||
|
android:text="TextView"
|
||||||
|
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:textSize="17sp"
|
||||||
|
app:layout_constraintStart_toEndOf="@+id/chat_list_item_avatar"
|
||||||
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/chat_list_item_last_msg"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="16dp"
|
||||||
|
android:layout_marginTop="4dp"
|
||||||
|
android:text="TextView"
|
||||||
|
android:textSize="16sp"
|
||||||
|
android:ellipsize="end"
|
||||||
|
android:maxLines="1"
|
||||||
|
app:layout_constraintEnd_toStartOf="@+id/chat_list_last_msg_timestamp"
|
||||||
|
app:layout_constraintStart_toEndOf="@+id/chat_list_item_avatar"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/chat_list_item_name" />
|
||||||
|
|
||||||
|
<View
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="0.01dp"
|
||||||
|
android:layout_marginTop="8dp"
|
||||||
|
android:background="@android:color/darker_gray"
|
||||||
|
android:layout_marginStart="16dp"
|
||||||
|
app:layout_constraintStart_toEndOf="@+id/chat_list_item_avatar"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/chat_list_item_avatar" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/chat_list_last_msg_timestamp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginEnd="16dp"
|
||||||
|
android:layout_marginTop="16dp"
|
||||||
|
android:text="8:00 AM"
|
||||||
|
android:textSize="13sp"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/chat_list_read_icon"
|
||||||
|
android:layout_width="19dp"
|
||||||
|
android:layout_height="19dp"
|
||||||
|
android:layout_marginTop="16dp"
|
||||||
|
android:layout_marginEnd="8dp"
|
||||||
|
android:src="@drawable/ic_done_purple_24"
|
||||||
|
app:layout_constraintEnd_toStartOf="@+id/chat_list_last_msg_timestamp"
|
||||||
|
app:layout_constraintHorizontal_bias="0.961"
|
||||||
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
16
app/src/main/res/layout/content_main.xml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
||||||
|
tools:showIn="@layout/app_bar_main">
|
||||||
|
|
||||||
|
<androidx.recyclerview.widget.RecyclerView
|
||||||
|
android:id="@+id/chat_list_rv"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
35
app/src/main/res/layout/nav_header_main.xml
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="@dimen/nav_header_height"
|
||||||
|
android:background="@drawable/side_nav_bar"
|
||||||
|
android:gravity="bottom"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
||||||
|
android:paddingTop="@dimen/activity_vertical_margin"
|
||||||
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
||||||
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
||||||
|
android:theme="@style/ThemeOverlay.AppCompat.Dark">
|
||||||
|
|
||||||
|
<de.hdodenhof.circleimageview.CircleImageView
|
||||||
|
android:id="@+id/imageView"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:contentDescription="@string/nav_header_desc"
|
||||||
|
android:paddingTop="@dimen/nav_header_vertical_spacing"
|
||||||
|
android:src="@mipmap/ic_launcher" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:paddingTop="@dimen/nav_header_vertical_spacing"
|
||||||
|
android:text="@string/nav_header_title"
|
||||||
|
android:textAppearance="@style/TextAppearance.AppCompat.Body1" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textView"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/nav_header_subtitle" />
|
||||||
|
</LinearLayout>
|
12
app/src/main/res/menu/activity_main_drawer.xml
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
tools:showIn="navigation_view">
|
||||||
|
|
||||||
|
<group android:checkableBehavior="single">
|
||||||
|
<item
|
||||||
|
android:id="@+id/nav_settings"
|
||||||
|
android:icon="@drawable/ic_settings_24"
|
||||||
|
android:title="@string/menu_settings" />
|
||||||
|
</group>
|
||||||
|
</menu>
|
5
app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<background android:drawable="@drawable/ic_launcher_background" />
|
||||||
|
<foreground android:drawable="@drawable/ic_launcher_foreground" />
|
||||||
|
</adaptive-icon>
|
5
app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<background android:drawable="@drawable/ic_launcher_background" />
|
||||||
|
<foreground android:drawable="@drawable/ic_launcher_foreground" />
|
||||||
|
</adaptive-icon>
|
BIN
app/src/main/res/mipmap-hdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
app/src/main/res/mipmap-hdpi/ic_launcher_round.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
app/src/main/res/mipmap-mdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
app/src/main/res/mipmap-mdpi/ic_launcher_round.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
app/src/main/res/mipmap-xhdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 4.8 KiB |
BIN
app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
Normal file
After Width: | Height: | Size: 7.3 KiB |
BIN
app/src/main/res/mipmap-xxhdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 7.7 KiB |
BIN
app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
Normal file
After Width: | Height: | Size: 16 KiB |
16
app/src/main/res/values-night/themes.xml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<!-- Base application theme. -->
|
||||||
|
<style name="Theme.Radium" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
|
||||||
|
<!-- Primary brand color. -->
|
||||||
|
<item name="colorPrimary">@color/purple_200</item>
|
||||||
|
<item name="colorPrimaryVariant">@color/purple_700</item>
|
||||||
|
<item name="colorOnPrimary">@color/black</item>
|
||||||
|
<!-- Secondary brand color. -->
|
||||||
|
<item name="colorSecondary">@color/teal_200</item>
|
||||||
|
<item name="colorSecondaryVariant">@color/teal_200</item>
|
||||||
|
<item name="colorOnSecondary">@color/black</item>
|
||||||
|
<!-- Status bar color. -->
|
||||||
|
<item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
|
||||||
|
<!-- Customize your theme here. -->
|
||||||
|
</style>
|
||||||
|
</resources>
|
20
app/src/main/res/values-v21/themes.xml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
|
||||||
|
<style name="Theme.Radium" parent="Theme.MaterialComponents.DayNight.NoActionBar">
|
||||||
|
<!-- Primary brand color. -->
|
||||||
|
<item name="colorPrimary">@color/purple_500</item>
|
||||||
|
<item name="colorPrimaryVariant">@color/purple_500</item>
|
||||||
|
<item name="colorOnPrimary">@color/white</item>
|
||||||
|
<!-- Secondary brand color. -->
|
||||||
|
<item name="colorSecondary">@color/teal_200</item>
|
||||||
|
<item name="colorSecondaryVariant">@color/teal_700</item>
|
||||||
|
<item name="colorOnSecondary">@color/black</item>
|
||||||
|
<!-- Status bar color. -->
|
||||||
|
<!-- <item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>-->
|
||||||
|
<!-- Customize your theme here. -->
|
||||||
|
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
|
||||||
|
<item name="android:statusBarColor">@android:color/transparent</item>
|
||||||
|
<item name="windowActionModeOverlay">true</item>
|
||||||
|
</style>
|
||||||
|
</resources>
|
10
app/src/main/res/values/colors.xml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<color name="purple_200">#FFBB86FC</color>
|
||||||
|
<color name="purple_500">#FF6200EE</color>
|
||||||
|
<color name="purple_700">#FF3700B3</color>
|
||||||
|
<color name="teal_200">#FF03DAC5</color>
|
||||||
|
<color name="teal_700">#FF018786</color>
|
||||||
|
<color name="black">#FF000000</color>
|
||||||
|
<color name="white">#FFFFFFFF</color>
|
||||||
|
</resources>
|
8
app/src/main/res/values/dimens.xml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<resources>
|
||||||
|
<!-- Default screen margins, per the Android Design guidelines. -->
|
||||||
|
<dimen name="activity_horizontal_margin">16dp</dimen>
|
||||||
|
<dimen name="activity_vertical_margin">16dp</dimen>
|
||||||
|
<dimen name="nav_header_vertical_spacing">8dp</dimen>
|
||||||
|
<dimen name="nav_header_height">176dp</dimen>
|
||||||
|
<dimen name="fab_margin">16dp</dimen>
|
||||||
|
</resources>
|
8
app/src/main/res/values/drawables.xml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<resources xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item name="ic_menu_camera" type="drawable">@android:drawable/ic_menu_camera</item>
|
||||||
|
<item name="ic_menu_gallery" type="drawable">@android:drawable/ic_menu_gallery</item>
|
||||||
|
<item name="ic_menu_slideshow" type="drawable">@android:drawable/ic_menu_slideshow</item>
|
||||||
|
<item name="ic_menu_manage" type="drawable">@android:drawable/ic_menu_manage</item>
|
||||||
|
<item name="ic_menu_share" type="drawable">@android:drawable/ic_menu_share</item>
|
||||||
|
<item name="ic_menu_send" type="drawable">@android:drawable/ic_menu_send</item>
|
||||||
|
</resources>
|
19
app/src/main/res/values/strings.xml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<resources>
|
||||||
|
<string name="app_name">Radium</string>
|
||||||
|
<string name="navigation_drawer_open">Open navigation drawer</string>
|
||||||
|
<string name="navigation_drawer_close">Close navigation drawer</string>
|
||||||
|
<string name="nav_header_title">Some user</string>
|
||||||
|
<string name="nav_header_subtitle">user@cadmium.org</string>
|
||||||
|
<string name="nav_header_desc">Navigation header</string>
|
||||||
|
<string name="action_settings">Settings</string>
|
||||||
|
|
||||||
|
<string name="menu_home">Home</string>
|
||||||
|
<string name="menu_settings">Settings</string>
|
||||||
|
|
||||||
|
<!--date formatters-->
|
||||||
|
<string name="formatterWeek">EEE</string>
|
||||||
|
<string name="formatterDay24H">HH:mm</string>
|
||||||
|
<string name="formatterDay12H">h:mm a</string>
|
||||||
|
<string name="formatterMonth">MMM dd</string>
|
||||||
|
<string name="formatterYear">dd.MM.yy</string>
|
||||||
|
</resources>
|
25
app/src/main/res/values/themes.xml
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<!-- Base application theme. -->
|
||||||
|
<style name="Theme.Radium" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
|
||||||
|
<!-- Primary brand color. -->
|
||||||
|
<item name="colorPrimary">@color/purple_500</item>
|
||||||
|
<item name="colorPrimaryVariant">@color/purple_500</item>
|
||||||
|
<item name="colorOnPrimary">@color/white</item>
|
||||||
|
<!-- Secondary brand color. -->
|
||||||
|
<item name="colorSecondary">@color/teal_200</item>
|
||||||
|
<item name="colorSecondaryVariant">@color/teal_700</item>
|
||||||
|
<item name="colorOnSecondary">@color/black</item>
|
||||||
|
<!-- Status bar color. -->
|
||||||
|
<item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
|
||||||
|
<!-- Customize your theme here. -->
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style name="Theme.Radium.NoActionBar">
|
||||||
|
<item name="windowActionBar">false</item>
|
||||||
|
<item name="windowNoTitle">true</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style name="Theme.Radium.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
|
||||||
|
|
||||||
|
<style name="Theme.Radium.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
|
||||||
|
</resources>
|
@ -0,0 +1,17 @@
|
|||||||
|
package io.github.chronosx88.radium
|
||||||
|
|
||||||
|
import org.junit.Test
|
||||||
|
|
||||||
|
import org.junit.Assert.*
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Example local unit test, which will execute on the development machine (host).
|
||||||
|
*
|
||||||
|
* See [testing documentation](http://d.android.com/tools/testing).
|
||||||
|
*/
|
||||||
|
class ExampleUnitTest {
|
||||||
|
@Test
|
||||||
|
fun addition_isCorrect() {
|
||||||
|
assertEquals(4, 2 + 2)
|
||||||
|
}
|
||||||
|
}
|
26
build.gradle
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||||
|
buildscript {
|
||||||
|
ext.kotlin_version = "1.4.31"
|
||||||
|
repositories {
|
||||||
|
google()
|
||||||
|
jcenter()
|
||||||
|
}
|
||||||
|
dependencies {
|
||||||
|
classpath "com.android.tools.build:gradle:4.1.1"
|
||||||
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||||
|
|
||||||
|
// NOTE: Do not place your application dependencies here; they belong
|
||||||
|
// in the individual module build.gradle files
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
allprojects {
|
||||||
|
repositories {
|
||||||
|
google()
|
||||||
|
jcenter()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
task clean(type: Delete) {
|
||||||
|
delete rootProject.buildDir
|
||||||
|
}
|
21
gradle.properties
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# Project-wide Gradle settings.
|
||||||
|
# IDE (e.g. Android Studio) users:
|
||||||
|
# Gradle settings configured through the IDE *will override*
|
||||||
|
# any settings specified in this file.
|
||||||
|
# For more details on how to configure your build environment visit
|
||||||
|
# http://www.gradle.org/docs/current/userguide/build_environment.html
|
||||||
|
# Specifies the JVM arguments used for the daemon process.
|
||||||
|
# The setting is particularly useful for tweaking memory settings.
|
||||||
|
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
|
||||||
|
# When configured, Gradle will run in incubating parallel mode.
|
||||||
|
# This option should only be used with decoupled projects. More details, visit
|
||||||
|
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
||||||
|
# org.gradle.parallel=true
|
||||||
|
# AndroidX package structure to make it clearer which packages are bundled with the
|
||||||
|
# Android operating system, and which are packaged with your app"s APK
|
||||||
|
# https://developer.android.com/topic/libraries/support-library/androidx-rn
|
||||||
|
android.useAndroidX=true
|
||||||
|
# Automatically convert third-party libraries to use AndroidX
|
||||||
|
android.enableJetifier=true
|
||||||
|
# Kotlin code style for this project: "official" or "obsolete":
|
||||||
|
kotlin.code.style=official
|
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Normal file
6
gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
#Wed Mar 17 21:40:25 MSK 2021
|
||||||
|
distributionBase=GRADLE_USER_HOME
|
||||||
|
distributionPath=wrapper/dists
|
||||||
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
zipStorePath=wrapper/dists
|
||||||
|
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip
|
172
gradlew
vendored
Executable file
@ -0,0 +1,172 @@
|
|||||||
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
##
|
||||||
|
## Gradle start up script for UN*X
|
||||||
|
##
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
# Attempt to set APP_HOME
|
||||||
|
# Resolve links: $0 may be a link
|
||||||
|
PRG="$0"
|
||||||
|
# Need this for relative symlinks.
|
||||||
|
while [ -h "$PRG" ] ; do
|
||||||
|
ls=`ls -ld "$PRG"`
|
||||||
|
link=`expr "$ls" : '.*-> \(.*\)$'`
|
||||||
|
if expr "$link" : '/.*' > /dev/null; then
|
||||||
|
PRG="$link"
|
||||||
|
else
|
||||||
|
PRG=`dirname "$PRG"`"/$link"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
SAVED="`pwd`"
|
||||||
|
cd "`dirname \"$PRG\"`/" >/dev/null
|
||||||
|
APP_HOME="`pwd -P`"
|
||||||
|
cd "$SAVED" >/dev/null
|
||||||
|
|
||||||
|
APP_NAME="Gradle"
|
||||||
|
APP_BASE_NAME=`basename "$0"`
|
||||||
|
|
||||||
|
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||||
|
DEFAULT_JVM_OPTS=""
|
||||||
|
|
||||||
|
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||||
|
MAX_FD="maximum"
|
||||||
|
|
||||||
|
warn () {
|
||||||
|
echo "$*"
|
||||||
|
}
|
||||||
|
|
||||||
|
die () {
|
||||||
|
echo
|
||||||
|
echo "$*"
|
||||||
|
echo
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
# OS specific support (must be 'true' or 'false').
|
||||||
|
cygwin=false
|
||||||
|
msys=false
|
||||||
|
darwin=false
|
||||||
|
nonstop=false
|
||||||
|
case "`uname`" in
|
||||||
|
CYGWIN* )
|
||||||
|
cygwin=true
|
||||||
|
;;
|
||||||
|
Darwin* )
|
||||||
|
darwin=true
|
||||||
|
;;
|
||||||
|
MINGW* )
|
||||||
|
msys=true
|
||||||
|
;;
|
||||||
|
NONSTOP* )
|
||||||
|
nonstop=true
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
|
||||||
|
|
||||||
|
# Determine the Java command to use to start the JVM.
|
||||||
|
if [ -n "$JAVA_HOME" ] ; then
|
||||||
|
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
||||||
|
# IBM's JDK on AIX uses strange locations for the executables
|
||||||
|
JAVACMD="$JAVA_HOME/jre/sh/java"
|
||||||
|
else
|
||||||
|
JAVACMD="$JAVA_HOME/bin/java"
|
||||||
|
fi
|
||||||
|
if [ ! -x "$JAVACMD" ] ; then
|
||||||
|
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
|
||||||
|
|
||||||
|
Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
location of your Java installation."
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
JAVACMD="java"
|
||||||
|
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||||
|
|
||||||
|
Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
location of your Java installation."
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Increase the maximum file descriptors if we can.
|
||||||
|
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
|
||||||
|
MAX_FD_LIMIT=`ulimit -H -n`
|
||||||
|
if [ $? -eq 0 ] ; then
|
||||||
|
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
|
||||||
|
MAX_FD="$MAX_FD_LIMIT"
|
||||||
|
fi
|
||||||
|
ulimit -n $MAX_FD
|
||||||
|
if [ $? -ne 0 ] ; then
|
||||||
|
warn "Could not set maximum file descriptor limit: $MAX_FD"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For Darwin, add options to specify how the application appears in the dock
|
||||||
|
if $darwin; then
|
||||||
|
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For Cygwin, switch paths to Windows format before running java
|
||||||
|
if $cygwin ; then
|
||||||
|
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
|
||||||
|
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
|
||||||
|
JAVACMD=`cygpath --unix "$JAVACMD"`
|
||||||
|
|
||||||
|
# We build the pattern for arguments to be converted via cygpath
|
||||||
|
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
|
||||||
|
SEP=""
|
||||||
|
for dir in $ROOTDIRSRAW ; do
|
||||||
|
ROOTDIRS="$ROOTDIRS$SEP$dir"
|
||||||
|
SEP="|"
|
||||||
|
done
|
||||||
|
OURCYGPATTERN="(^($ROOTDIRS))"
|
||||||
|
# Add a user-defined pattern to the cygpath arguments
|
||||||
|
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
|
||||||
|
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
|
||||||
|
fi
|
||||||
|
# Now convert the arguments - kludge to limit ourselves to /bin/sh
|
||||||
|
i=0
|
||||||
|
for arg in "$@" ; do
|
||||||
|
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
|
||||||
|
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
|
||||||
|
|
||||||
|
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
|
||||||
|
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
|
||||||
|
else
|
||||||
|
eval `echo args$i`="\"$arg\""
|
||||||
|
fi
|
||||||
|
i=$((i+1))
|
||||||
|
done
|
||||||
|
case $i in
|
||||||
|
(0) set -- ;;
|
||||||
|
(1) set -- "$args0" ;;
|
||||||
|
(2) set -- "$args0" "$args1" ;;
|
||||||
|
(3) set -- "$args0" "$args1" "$args2" ;;
|
||||||
|
(4) set -- "$args0" "$args1" "$args2" "$args3" ;;
|
||||||
|
(5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
|
||||||
|
(6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
|
||||||
|
(7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
|
||||||
|
(8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
|
||||||
|
(9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Escape application args
|
||||||
|
save () {
|
||||||
|
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
|
||||||
|
echo " "
|
||||||
|
}
|
||||||
|
APP_ARGS=$(save "$@")
|
||||||
|
|
||||||
|
# Collect all arguments for the java command, following the shell quoting and substitution rules
|
||||||
|
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
|
||||||
|
|
||||||
|
# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
|
||||||
|
if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
|
||||||
|
cd "$(dirname "$0")"
|
||||||
|
fi
|
||||||
|
|
||||||
|
exec "$JAVACMD" "$@"
|
84
gradlew.bat
vendored
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
@if "%DEBUG%" == "" @echo off
|
||||||
|
@rem ##########################################################################
|
||||||
|
@rem
|
||||||
|
@rem Gradle startup script for Windows
|
||||||
|
@rem
|
||||||
|
@rem ##########################################################################
|
||||||
|
|
||||||
|
@rem Set local scope for the variables with windows NT shell
|
||||||
|
if "%OS%"=="Windows_NT" setlocal
|
||||||
|
|
||||||
|
set DIRNAME=%~dp0
|
||||||
|
if "%DIRNAME%" == "" set DIRNAME=.
|
||||||
|
set APP_BASE_NAME=%~n0
|
||||||
|
set APP_HOME=%DIRNAME%
|
||||||
|
|
||||||
|
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||||
|
set DEFAULT_JVM_OPTS=
|
||||||
|
|
||||||
|
@rem Find java.exe
|
||||||
|
if defined JAVA_HOME goto findJavaFromJavaHome
|
||||||
|
|
||||||
|
set JAVA_EXE=java.exe
|
||||||
|
%JAVA_EXE% -version >NUL 2>&1
|
||||||
|
if "%ERRORLEVEL%" == "0" goto init
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||||
|
echo.
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
echo location of your Java installation.
|
||||||
|
|
||||||
|
goto fail
|
||||||
|
|
||||||
|
:findJavaFromJavaHome
|
||||||
|
set JAVA_HOME=%JAVA_HOME:"=%
|
||||||
|
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
||||||
|
|
||||||
|
if exist "%JAVA_EXE%" goto init
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
|
||||||
|
echo.
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
echo location of your Java installation.
|
||||||
|
|
||||||
|
goto fail
|
||||||
|
|
||||||
|
:init
|
||||||
|
@rem Get command-line arguments, handling Windows variants
|
||||||
|
|
||||||
|
if not "%OS%" == "Windows_NT" goto win9xME_args
|
||||||
|
|
||||||
|
:win9xME_args
|
||||||
|
@rem Slurp the command line arguments.
|
||||||
|
set CMD_LINE_ARGS=
|
||||||
|
set _SKIP=2
|
||||||
|
|
||||||
|
:win9xME_args_slurp
|
||||||
|
if "x%~1" == "x" goto execute
|
||||||
|
|
||||||
|
set CMD_LINE_ARGS=%*
|
||||||
|
|
||||||
|
:execute
|
||||||
|
@rem Setup the command line
|
||||||
|
|
||||||
|
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
|
||||||
|
|
||||||
|
@rem Execute Gradle
|
||||||
|
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
|
||||||
|
|
||||||
|
:end
|
||||||
|
@rem End local scope for the variables with windows NT shell
|
||||||
|
if "%ERRORLEVEL%"=="0" goto mainEnd
|
||||||
|
|
||||||
|
:fail
|
||||||
|
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
||||||
|
rem the _cmd.exe /c_ return code!
|
||||||
|
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
|
||||||
|
exit /b 1
|
||||||
|
|
||||||
|
:mainEnd
|
||||||
|
if "%OS%"=="Windows_NT" endlocal
|
||||||
|
|
||||||
|
:omega
|
2
settings.gradle
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
include ':app'
|
||||||
|
rootProject.name = "Radium"
|